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-background {
    width: 250px;
    /*height: 150px;*/
}

.accreditation {
    color: #ffffff;
    letter-spacing: 2px;
    font-size: 32px;
}

.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: 24px;
    }

    .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;
        }