body {
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

html,
body {
    height: 100%;
    width: 100%;
}

/*.hero-section {
         background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #3d7a52 100%);
         }*/
.hero-section {
    background: url("../images/hero-banner.webp") no-repeat center center;
    background-size: cover;
}

.hero-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e1e1e90 0%, #101010a0 50%, #1a1a1ac0 100%);
}
.logo-sm img {
   max-width: 100px;
}
.logo-background {
    width: 250px;
    /*height: 150px;*/
}

.accreditation {
    color: #ffffff;
    letter-spacing: 2px;
    font-size: 24px;
}

.program-heading {
    font-family: 'Cinzel', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.enroll-button {
    background-color: #ffcf24;
    color: #000000;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-size: 20px;
    border: 2px solid #fff;
}

.enroll-button:hover {
    background-color: #f0c75e;
    transform: translateY(-3px);
    color: #1a472a;
}

.info-section {
    background-color: #fff8ea;
}

.details-section {
    background-color: #f6e7cb;
}

.section-heading {
    /*font-family: 'Cinzel', serif;*/
    color: #8f6129;
    letter-spacing: 2px;
    font-weight: 600;
}

.decorative-dot {
    width: 8px;
    height: 8px;
    background-color: #8f6129;
}

.decorative-line {
    height: 2px;
    width: 200px;
    background-color: #8f6129;
}

.section-paragraph {
    color: #000000;
}

.detail-heading {
    /*font-family: 'Cinzel', serif;*/
    color: #000;
    font-size: 17px;
}

.detail-text {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}

.detail-icon {
    width: 40px;
    height: 40px;
}
.program-details img {
    width: 70px;
}

.divider-line {
    height: 2px;
    background-color: rgba(143, 97, 41, 0.5);
}

.overview-image {
    height: 400px;
    background: linear-gradient(135deg, #8f6129 0%, #b8874f 100%);
}

.overview-heading {
    /*font-family: 'Cinzel', serif;*/
    color: #8f6129;
    letter-spacing: 1px;
}

.overview-underline {
    height: 2px;
    width: 150px;
    background-color: #8f6129;
}

.overview-paragraph {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    text-align: justify;
}

.schedule-section {
    background-color: #fff8ea;
}

.schedule-main-heading {
    color: #8f6129;
    letter-spacing: 2px;
}

.schedule-underline {
    height: 3px;
    width: 200px;
    background-color: #8f6129;
}

.day-heading {
    color: #8f6129;
}

.day-subline {
    color: #000000;
}

.theme-heading {
    color: #8f6129;
}

.theme-subline {
    color: #000000;
}

.session-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.session-card img {
    border-radius: 8px;
}

.session-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(143, 97, 41, 0.25);
}

.session-heading {
    color: #8f6129;
}

.session-icon {
    width: 60px;
    height: 60px;
}

.session-list {
    list-style: none;
}

.session-list li {
    color: #000000;
    position: relative;
    font-size: 17px;
    font-weight: 500;
}

.session-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 1.5rem;
    line-height: 1.3;
}
.session-list.highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 1.5rem;
    line-height: 1.3;
    top:4px;
}

.valedictory-card {
    background: linear-gradient(135deg, #8f6129 0%, #b8874f 100%);
}

.valedictory-card .session-list li,
.valedictory-card .session-heading {
    color: #ffffff;
}

.valedictory-card .session-list li:before {
    color: #ffffff;
}

@media (max-width: 768px) {
    .logo-background {
        width: 120px;
        height: 120px;
    }

    .decorative-line {
        width: 120px;
    }

    .overview-image {
        height: 300px;
    }

    .overview-underline {
        width: 120px;
    }

    .schedule-underline {
        width: 150px;
    }

    .detail-icon {
        width: 35px;
        height: 35px;
    }

    .session-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .logo-background {
        width: 250px;
        height: 180px;
    }

    .accreditation {
        color: #ffffff;
        letter-spacing: 2px;
        font-size: 18px;
    }

    .decorative-line {
        width: 80px;
    }

    .decorative-dot {
        width: 6px;
        height: 6px;
    }

    .overview-image {
        height: 250px;
    }

    .overview-underline {
        width: 100px;
    }

    .schedule-underline {
        width: 120px;
        height: 2px;
    }

    .detail-icon {
        width: 30px;
        height: 30px;
    }

    .session-icon {
        width: 45px;
        height: 45px;
    }
}



#backToTop {
    transition: opacity 0.3s ease-in-out, transform 0.3s;
}
#backToTop:hover {
    transform: scale(1.1);
}
        /* Enhanced button styles with animations */
        .enroll-button.btn.shadow.float-btn {
            position: fixed;
            bottom: 0;
            left: 5px;
            z-index: 10;
            font-size: 14px;
            background: linear-gradient(135deg, #14541f 0%, #1a6b28 100%);
            color: #fff;
            padding: 4px 10px;
            font-weight: 600;
            border-top-right-radius: 10px !important;
            border-top-left-radius: 10px !important;
            text-decoration: none;
            text-align: center;
            line-height: 1.5;
            /* Hidden by default */
            opacity: 0;
            visibility: hidden;
            transform: translateY(100%);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 -5px 25px rgba(20, 84, 31, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            border-radius: 0px;
        }

        /* Shine effect overlay */
        .enroll-button.btn.shadow.float-btn::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(255, 255, 255, 0.1),
                transparent
            );
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }

        /* Pulse effect */
        .enroll-button.btn.shadow.float-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            animation: pulse 2s infinite;
        }

        /* Show button when scroll-active class is added */
        .enroll-button.btn.shadow.float-btn.scroll-active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            animation: bounce-in 0.6s ease-out;
        }

        /* Hover effect */
        .enroll-button.btn.shadow.float-btn:hover {
            background: linear-gradient(135deg, #1a6b28 0%, #14541f 100%);
            transform: translateY(-5px);
            box-shadow: 0 -8px 35px rgba(20, 84, 31, 0.5);
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* Icon/Text styling */
        .enroll-button .btn-text {
            position: relative;
            z-index: 1;
            display: block;
        }

        .enroll-button .icon {
            display: inline-block;
            margin-left: 5px;
            animation: arrow-move 1.5s infinite;
        }

        /* Keyframe animations */
        @keyframes shine {
            0% {
                left: -50%;
            }
            100% {
                left: 150%;
            }
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        @keyframes bounce-in {
            0% {
                transform: translateY(100%) scale(0.8);
            }
            50% {
                transform: translateY(-10px) scale(1.05);
            }
            100% {
                transform: translateY(0) scale(1);
            }
        }

        @keyframes arrow-move {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(5px);
            }
        }

        /* Glow effect */
        @keyframes glow {
            0%, 100% {
                box-shadow: 0 -5px 25px rgba(20, 84, 31, 0.3);
            }
            50% {
                box-shadow: 0 -5px 35px rgba(20, 84, 31, 0.6);
            }
        }

        .enroll-button.btn.shadow.float-btn.scroll-active {
            animation: bounce-in 0.6s ease-out, glow 2s infinite;
        }
         /* ========== TESTIMONIAL CARDS ========== */

.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    text-align: center;
    margin: 28px 5px;
}

.testimonial-card:hover {
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

/* ========== VIDEO CONTAINER (YouTube Shorts Size) ========== */

.video-thumb {
  position: relative;
  width: 100%;
  height: 420px;              /* 🔒 LOCKED SIZE */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.video-thumb img,
.video-thumb iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

/* ========== PLAY BUTTON OVERLAY ========== */

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.play-btn::before {
  content: '';
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
}

.play-btn::after {
  content: '';
  position: absolute;
  border-left: 16px solid #ffffff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
}

/* ========== NAME ========== */

.testimonial-card h6 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

/* ========== OWL NAV ARROWS ========== */

.testimonial-carousel .owl-nav button {
  position: absolute;
  top: 45%;
  width: 40px;
  height: 40px;
  background: #000 !important;
  color: #fff !important;
  border-radius: 50%;
}

.testimonial-carousel .owl-prev { left: -20px; }
.testimonial-carousel .owl-next { right: -20px; }

/* ========== MOBILE FIX ========== */

@media (max-width: 576px) {
  .video-thumb {
    height: 360px;
  }
}



.hero-program-section{
background:url("../images/hero-banner.webp") center/cover no-repeat;
position:relative;
}

.hero-program-section::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(135deg,#000000b5,#000000e0);
}

.hero-content,
.hero-cards{
position:relative;
z-index:2;
}

/* LOGOS */

.logo-sm{
max-width:110px;
}

.logo-lg{
max-width:150px;
}

.logo-divider{
width:1px;
height:60px;
background:#ffffff80;
margin:0 20px;
}

/* PROGRAM CARDS */

.program-card{
background:#ffffff;
padding:30px;
border-radius:16px;
box-shadow:0 20px 50px rgba(0,0,0,0.15);
transition:all .35s ease;
position:relative;
}

.program-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.25);
}

.program-card h3{
font-size:24px;
font-weight:700;
margin-bottom:12px;
color:#8f6129;
}

.program-card p{
font-size:16px;
color:#444;
margin-bottom:15px;
}

.program-meta{
font-size:20px;
color:#666;
}

/* Featured badge */

.program-badge{
position: absolute;
    top: -12px;
    left: 20px;
    background: #ffcf24;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #1b110b;
    border-radius: 13px;
}

/* MOBILE */

@media(max-width:991px){

.hero-content{
text-align:center;
}

.hero-cards{
margin-top:40px;
}

.hero-logos{
justify-content:center;
}

}

.enroll-offcanvas{
width:420px;
}

.form-highlight{
background:#f8f4ef;
padding:18px;
border-radius:10px;
margin-bottom:20px;
}

.form-group{
margin-bottom:18px;
}

.form-modern{
height:48px;
border-radius:8px;
border:1px solid #ddd;
}

.form-modern:focus{
border-color:#8f6129;
box-shadow:none;
}

.submit-btn{
background:#8f6129;
color:#fff;
padding:12px;
border-radius:8px;
font-weight:600;
}

.submit-btn:hover{
background:#734b1f;
}

.thankyou-box{
padding:40px 20px;
}

.thankyou-box h3{
color:#2e7d32;
font-weight:700;
margin-bottom:10px;
}
.program-card a {
    text-decoration: none;
}
