/*====================================================
    HEADER
====================================================*/

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

    .main-header::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient( 90deg, transparent, #2C4021, #8FAF7A, #2C4021, transparent );
    }

body {
    padding-top: 64px;
}

/*==============================
        LOGO
==============================*/

.site-logo {
    height: 58px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
}

.navbar {
    min-height: 64px;
    padding: 0;
}

.navbar-brand {
    padding: 0;
    margin-right: 12px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/*==============================
        NAVIGATION
==============================*/

.navbar-nav {
    margin-left: auto;
    align-items: center;
}

    .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar-nav .nav-link {
        padding: 20px 7px;
        font-size: 13px;
        font-weight: 600;
        color: #666;
        white-space: nowrap;
        transition: .25s;
    }

        .navbar-nav .nav-link:hover,
        .navbar-nav .active .nav-link {
            color: #2C4021;
        }

.navbar-toggler {
    border: none;
    padding: .25rem .5rem;
}

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

/*==============================
        LARGE DESKTOP
==============================*/

@media (min-width:1400px) {

    .site-logo {
        width: 150px;
        
    }

    .navbar-nav .nav-link {
        padding: 20px 10px;
        font-size: 14px;
    }
}

/*==============================
        TABLET & MOBILE
==============================*/

@media (max-width:1199.98px) {

    body {
        padding-top: 64px;
    }

    .site-logo {
        width: 150px;
    }

    .navbar {
        min-height: 64px;
    }

    .navbar-collapse {
        background: #fff;
        margin-top: 10px;
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
        padding: 8px 0;
    }

    .navbar-nav {
        align-items: flex-start;
    }

        .navbar-nav .nav-item {
            width: 100%;
        }

        .navbar-nav .nav-link {
            width: 100%;
            padding: 12px 20px;
            font-size: 14px;
            border-bottom: 1px solid #f2f2f2;
        }

        .navbar-nav .nav-item:last-child .nav-link {
            border-bottom: none;
        }
}
/*====================================================
    HERO SLIDER
====================================================*/

.hero-slider {
    position: relative;
    overflow: hidden;
}

    .hero-slider .carousel {
        position: relative;
    }

    .hero-slider .carousel-item {
        position: relative;
    }

    .hero-slider picture,
    .hero-slider img {
        display: block;
        width: 100%;
        height: auto;
    }

/* Overlay (keep only if you use it) */

.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
}

/* Controls */

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 8%;
    opacity: 0.8;
}

    .hero-slider .carousel-control-prev:hover,
    .hero-slider .carousel-control-next:hover {
        opacity: 1;
    }

/* Indicators */

.hero-slider .carousel-indicators {
    position: absolute;
    left: 50%;
    bottom: 25px; /* Distance from bottom of image */
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    z-index: 100;
}

    .hero-slider .carousel-indicators li {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        margin: 0 5px;
        background: rgba(255,255,255,.5);
        border: none;
    }

    .hero-slider .carousel-indicators .active {
        background: #ffffff;
    }


/*====================================================
    MOBILE
====================================================*/

@media (max-width:991px) {

    body {
        padding-top: 70px;
    }

    .navbar {
        min-height: 70px;
    }

    .site-logo {
        width: 150px;
    }

    .navbar-collapse {
        background: #fff;
        padding: 10px 0;
        box-shadow: 0 5px 20px rgba(0,0,0,.08);
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }

    .hero-slider .carousel-indicators {
        bottom: 10px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 12%;
    }
}
/*==========================
        DONATE BUTTON
==========================*/

.donate-wrapper {
    margin-left: 18px;
}

.donate-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    background: linear-gradient(135deg, #2C4021 0%, #3E5A2F 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: all .45s ease;
    box-shadow: 0 8px 24px rgba(44,64,33,.25);
    border: 1px solid rgba(255,255,255,.08);
}

    .donate-btn i {
        margin-right: 9px;
        color: #F4C542;
        transition: all .45s ease;
    }

    /* Gold shine */
    .donate-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 45%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.45), transparent );
        transform: skewX(-25deg);
        transition: .8s;
    }

    /* Soft gold glow behind */
    .donate-btn::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50px;
        background: radial-gradient(circle, rgba(244,197,66,.22) 0%, transparent 70%);
        opacity: 0;
        transition: .45s;
    }

    .donate-btn:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-5px);
        background: linear-gradient(135deg,#365029,#4E713A);
        box-shadow: 0 14px 34px rgba(44,64,33,.35), 0 0 25px rgba(244,197,66,.18);
    }

        .donate-btn:hover::before {
            left: 150%;
        }

        .donate-btn:hover::after {
            opacity: 1;
        }

        .donate-btn:hover i {
            transform: rotate(-15deg) scale(1.2);
            color: #FFD95A;
        }

    .donate-btn:active {
        transform: translateY(-2px);
    }

@media (max-width:1199.98px) {

    .donate-wrapper {
        width: 100%;
        margin: 15px 20px;
    }

    .donate-btn {
        width: 90%;
        justify-content: center;
    }
}


/*=====================================
        HERO
======================================*/

.contact-hero {
    background: linear-gradient(rgba(44,64,33,.90), rgba(44,64,33,.85)), url('../images/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}

.hero-subtitle {
    color: #d8c58b;
    letter-spacing: 4px;
    font-size: 15px;
    font-weight: 600;
}

.contact-hero h1 {
    font-size: 54px;
    font-weight: 700;
    margin: 15px 0;
}

.contact-hero p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 720px;
    margin: auto;
}


/*=====================================
        CONTACT CARDS
======================================*/

.contact-info {
    padding: 90px 0;
    background: #f9f8f5;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: .35s;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,.10);
    }

.contact-icon {
    width: 75px;
    height: 75px;
    background: #2C4021;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-icon i {
        font-size: 28px;
        color: #fff;
    }

.contact-card h4 {
    color: #2C4021;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    min-height: 90px;
}

.contact-card a {
    color: #2C4021;
    font-weight: 700;
    text-decoration: none;
    word-break: break-word;
}

    .contact-card a:hover {
        color: #b48b32;
    }

/*=====================================
        form
======================================*/
.contact-form-section {
    padding: 100px 0;
    background: #F8F7F2;
}

.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.contact-tag {
    display: inline-block;
    background: #EEF4EA;
    color: #2C4021;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.contact-title {
    color: #2C4021;
    font-size: 42px;
    margin: 20px 0;
    font-weight: 700;
}

.contact-subtitle {
    max-width: 650px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

.input-group-custom {
    position: relative;
}

    .input-group-custom i {
        position: absolute;
        left: 22px;
        top: 20px;
        color: #D4AF37;
        font-size: 18px;
    }

    .input-group-custom .form-control {
        height: 60px;
        border-radius: 15px;
        border: 1px solid #E5E5E5;
        padding-left: 58px;
        font-size: 16px;
        box-shadow: none;
        transition: .3s;
    }

.textarea-group .form-control {
    height: auto;
    padding-top: 18px;
}

.input-group-custom .form-control:focus {
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212,175,55,.15);
}

.contact-btn {
    background: #D4AF37;
    color: #2C4021;
    border: none;
    border-radius: 50px;
    padding: 15px 45px;
    font-size: 17px;
    font-weight: 600;
    transition: .35s;
}

    .contact-btn:hover {
        background: #2C4021;
        color: #fff;
        transform: translateY(-3px);
    }

    .contact-btn i {
        margin-right: 8px;
    }

/*=====================================
        CTA
======================================*/

.contact-cta {
    background: #2C4021;
    padding: 70px 0;
    color: #fff;
}

    .contact-cta h2 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .contact-cta p {
        font-size: 18px;
        color: #f1f1f1;
    }

.btn-call {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    background: #d8c58b;
    color: #222;
    font-weight: 700;
    margin-right: 15px;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(216,197,139,.25);
}

    .btn-call i {
        margin-right: 8px;
        transition: transform .35s ease;
    }

    /* Shine Effect */
    .btn-call::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 60%;
        height: 100%;
        background: rgba(255,255,255,.35);
        transform: skewX(-25deg);
        transition: .6s;
    }

    .btn-call:hover {
        background: #c9b06d;
        color: #222;
        text-decoration: none;
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 15px 35px rgba(44,64,33,.30);
    }

        .btn-call:hover::before {
            left: 150%;
        }

        .btn-call:hover i {
            transform: rotate(-12deg) scale(1.15);
        }

    .btn-call:active {
        transform: translateY(-1px);
    }

.btn-direction {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    background: #d8c58b;
    color: #222;
    font-weight: 700;
    transition: .3s;
}

    .btn-direction:hover {
        background: #fff;
        color: #2C4021;
        text-decoration: none;
    }


/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:991px) {

    .contact-hero {
        padding: 80px 20px;
    }

        .contact-hero h1 {
            font-size: 36px;
        }

        .contact-hero p {
            font-size: 16px;
        }

    .contact-info {
        padding: 60px 0;
    }

    .contact-card {
        margin-bottom: 30px;
    }

    .contact-cta {
        text-align: center;
    }

        .contact-cta h2 {
            font-size: 30px;
        }

    .btn-call,
    .btn-direction {
        width: 100%;
        margin: 8px 0;
    }
}
/*=====================================
        FULL WIDTH MAP
======================================*/

.location-map {
    padding: 90px 0 0;
    background: #fff;
}

.section-title {
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

    .section-title span {
        color: #B48B32;
        letter-spacing: 3px;
        font-weight: 600;
    }

    .section-title h2 {
        color: #2C4021;
        font-size: 42px;
        margin: 15px 0;
        font-weight: 700;
    }

    .section-title p {
        color: #666;
        line-height: 1.9;
    }

.map-full {
    width: 100%;
    overflow: hidden;
}

    .map-full iframe {
        width: 100%;
        height: 550px;
        border: 0;
        display: block;
    }

@media (max-width:991px) {

    .location-map {
        padding: 70px 0 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .map-full iframe {
        height: 400px;
    }
}
.location-map {
    padding: 0;
    background: #fff;
}

.section-title {
    padding: 80px 15px 50px;
}

/*==================================================
                PREMIUM FOOTER
==================================================*/

.footer-main {
    position: relative;
    background: linear-gradient(180deg,#2C4021 0%,#223319 100%);
    color: #fff;
    padding: 80px 0 0;
    overflow: hidden;
}

    /* Decorative circles */

    .footer-main::before {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(255,255,255,.03);
        top: -180px;
        left: -120px;
    }

    .footer-main::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(212,175,55,.05);
        right: -80px;
        bottom: 60px;
    }


/*==================================================
                    LOGO
==================================================*/

.footer-logo {
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
}

    .footer-logo img {
        height: 150px;
        width: auto;
        margin-bottom: 22px;
    }

    .footer-logo h4 {
        color: #D4AF37;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 14px;
        letter-spacing: .5px;
    }

    .footer-logo p {
        max-width: 700px;
        margin: 0 auto;
        color: rgba(255,255,255,.82);
        font-size: 16px;
        line-height: 30px;
    }


/*==================================================
                DIVIDER
==================================================*/

.footer-divider {
    width: 100%;
    margin: 0 auto 60px;
    text-align: center;
}

    .footer-divider span {
        display: inline-block;
        width: 140px;
        height: 3px;
        border-radius: 50px;
        background: linear-gradient(90deg,#D4AF37,#ffffff,#D4AF37);
    }


/*==================================================
                WIDGETS
==================================================*/

.footer-widget {
    position: relative;
    z-index: 2;
    margin-bottom: 45px;
}

    .footer-widget h3 {
        color: #fff;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 28px;
        position: relative;
        padding-bottom: 12px;
    }

        .footer-widget h3:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 55px;
            height: 3px;
            border-radius: 30px;
            background: #D4AF37;
        }


    /*==================================================
                PARAGRAPH
==================================================*/

    .footer-widget p {
        color: rgba(255,255,255,.75);
        line-height: 28px;
        font-size: 15px;
    }


    /*==================================================
                EXPLORE LINKS
==================================================*/

    .footer-widget ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-widget ul li {
            margin-bottom: 14px;
        }

            .footer-widget ul li a {
                color: rgba(255,255,255,.82);
                text-decoration: none;
                transition: all .35s ease;
                display: inline-flex;
                align-items: center;
                font-size: 15px;
            }

                .footer-widget ul li a i {
                    color: #D4AF37;
                    margin-right: 10px;
                    transition: .35s;
                }

                .footer-widget ul li a:hover {
                    color: #D4AF37;
                    padding-left: 8px;
                    text-decoration: none;
                }

                    .footer-widget ul li a:hover i {
                        transform: translateX(5px);
                    }


/*==================================================
                CONTACT
==================================================*/

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
}

    .footer-contact li i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(212,175,55,.12);
        color: #D4AF37;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
        font-size: 17px;
    }

    .footer-contact li a {
        color: rgba(255,255,255,.82);
        line-height: 28px;
        text-decoration: none;
        transition: .35s;
    }

        .footer-contact li a:hover {
            color: #D4AF37;
        }


/*==================================================
            COLUMN SPACING
==================================================*/

.footer-main .row {
    margin-bottom: 35px;
}

.footer-widget:last-child {
    margin-bottom: 0;
}

/*==================================================
                SOCIAL ICONS
==================================================*/

.footer-social {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

    .footer-social a {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 14px;
        font-size: 20px;
        text-decoration: none;
        transition: all .4s ease;
        position: relative;
        overflow: hidden;
    }

        /* Gold shine */

        .footer-social a::before {
            content: "";
            position: absolute;
            width: 0;
            height: 100%;
            left: 50%;
            top: 0;
            background: rgba(212,175,55,.18);
            transition: .45s;
            transform: translateX(-50%);
        }

        .footer-social a:hover {
            background: #D4AF37;
            color: #223319;
            transform: translateY(-8px) rotate(8deg);
            box-shadow: 0 14px 30px rgba(212,175,55,.30);
        }

            .footer-social a:hover::before {
                width: 100%;
            }


/*==================================================
                BUTTONS
==================================================*/

.footer-buttons {
    margin-top: 30px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    background: #D4AF37;
    color: #223319;
    font-weight: 600;
    text-decoration: none;
    margin: 0 12px 12px 0;
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

    .footer-btn i {
        margin-right: 8px;
    }

    .footer-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 45%;
        height: 100%;
        background: rgba(255,255,255,.45);
        transform: skewX(-25deg);
        transition: .7s;
    }

    .footer-btn:hover {
        text-decoration: none;
        color: #223319;
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(212,175,55,.28);
    }

        .footer-btn:hover::before {
            left: 160%;
        }

    /* Outline Button */

    .footer-btn.outline {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255,255,255,.25);
    }

        .footer-btn.outline:hover {
            background: #D4AF37;
            color: #223319;
            border-color: #D4AF37;
        }


/*==================================================
                FOOTER BOTTOM
==================================================*/

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin: 0px 0px -40px 0px;
    padding: 24px 0;
    background: rgba(0,0,0,.12);
}

.footer-bottom {
    font-size: 15px;
    color: rgba(255,255,255,.75);
}

.footer-quote {
    color: #D4AF37;
    font-style: italic;
    letter-spacing: .3px;
}


/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .footer-main {
        padding-top: 60px;
    }

    .footer-logo {
        margin-bottom: 40px;
    }

        .footer-logo img {
            height: 55px;
        }

        .footer-logo h4 {
            font-size: 21px;
        }

    .footer-widget {
        text-align: center;
    }

        .footer-widget h3:after {
            left: 50%;
            transform: translateX(-50%);
        }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-buttons {
        text-align: center;
    }

    .footer-btn {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-bottom {
        text-align: center;
    }

        .footer-bottom .text-md-right {
            margin-top: 12px;
        }
}

@media(max-width:575px) {

    .footer-logo img {
        height: 48px;
    }

    .footer-logo h4 {
        font-size: 18px;
    }

    .footer-logo p {
        font-size: 14px;
        line-height: 26px;
    }

    .footer-widget h3 {
        font-size: 22px;
    }

    .footer-social a {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}
/*=====================================
        DONATION HERO
======================================*/

.donation-hero {
    background: linear-gradient(rgba(32,49,25,.82), rgba(32,49,25,.82)), url('../images/donation-banner.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 150px 0 130px;
    text-align: center;
}

.hero-subtitle {
    color: #D4AF37;
    letter-spacing: 4px;
    font-weight: 600;
    font-size: 15px;
}

.donation-hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin: 18px 0;
}

.donation-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 34px;
    color: rgba(255,255,255,.92);
}

.hero-buttons {
    margin-top: 40px;
}

.btn-donate-now {
    display: inline-block;
    padding: 15px 38px;
    background: #D4AF37;
    color: #203119;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 15px;
    transition: .35s;
}

.btn-contact {
    display: inline-block;
    padding: 15px 38px;
    border: 2px solid rgba(255,255,255,.35);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    transition: .35s;
}

.btn-donate-now:hover {
    transform: translateY(-4px);
    color: #203119;
    text-decoration: none;
}

.btn-contact:hover {
    background: #fff;
    color: #203119;
    text-decoration: none;
}


/*=====================================
        WHY DONATE
======================================*/

.why-donate {
    padding: 90px 0 40px;
    background: #F8F7F2;
}

.section-title span {
    color: #D4AF37;
    letter-spacing: 3px;
    font-weight: 600;
}

.section-title h2 {
    font-size: 42px;
    color: #2C4021;
    margin: 18px 0;
    font-weight: 700;
}

.section-title p {
    max-width: 850px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 32px;
}


/*=====================================
        PURPOSE CARDS
======================================*/

.donation-purpose {
    background: #F8F7F2;
    padding: 40px 0 100px;
}

.purpose-card {
    background: #fff;
    border-radius: 18px;
    padding: 45px 30px;
    text-align: center;
    transition: .4s;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

    .purpose-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0,0,0,.12);
    }

.purpose-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #2C4021;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .purpose-icon i {
        color: #D4AF37;
        font-size: 34px;
    }

.purpose-card h4 {
    color: #2C4021;
    margin-bottom: 15px;
    font-weight: 700;
}

.purpose-card p {
    color: #666;
    line-height: 30px;
}


/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:991px) {

    .donation-hero {
        padding: 100px 20px;
    }

        .donation-hero h1 {
            font-size: 40px;
        }

        .donation-hero p {
            font-size: 17px;
        }

    .hero-buttons a {
        display: block;
        margin: 15px auto;
    }

    .section-title h2 {
        font-size: 32px;
    }
}
/*=====================================
        DONATION METHODS
======================================*/

.donation-methods {
    padding: 100px 0;
    background: #fff;
}

.donation-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    transition: .4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .donation-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(0,0,0,.12);
    }

.featured {
    border: 2px solid #D4AF37;
}

.donation-icon {
    width: 90px;
    height: 90px;
    background: #2C4021;
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

    .donation-icon i {
        color: #D4AF37;
        font-size: 34px;
    }

.donation-card h3 {
    color: #2C4021;
    font-weight: 700;
    margin-bottom: 25px;
}

.donation-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

    .donation-card ul li {
        padding: 12px 0;
        border-bottom: 1px solid #ececec;
        color: #666;
    }

.upi-id {
    color: #2C4021;
    margin: 20px 0;
    font-weight: 700;
    font-size: 24px;
}

.copy-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    border-radius: 50px;
    background: #2C4021;
    color: #fff;
    text-decoration: none;
    transition: .35s;
}

    .copy-btn:hover {
        background: #D4AF37;
        color: #222;
        text-decoration: none;
    }

.qr-box {
    margin: 25px 0;
}

    .qr-box img {
        width: 350px;
        border-radius: 12px;
        border: 8px solid #f5f5f5;
    }


/*=====================================
        CTA
======================================*/

.donation-cta {
    background: linear-gradient(135deg,#2C4021,#3D5A2F);
    padding: 80px 0;
    color: #fff;
}

    .donation-cta span {
        color: #D4AF37;
        letter-spacing: 3px;
        font-weight: 600;
    }

    .donation-cta h2 {
        margin: 15px 0;
        font-size: 42px;
        font-weight: 700;
    }

    .donation-cta p {
        font-size: 18px;
        line-height: 32px;
        color: rgba(255,255,255,.88);
    }

.btn-support {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    background: #D4AF37;
    color: #203119;
    font-weight: 700;
    text-decoration: none;
    transition: .35s;
}

    .btn-support:hover {
        background: #fff;
        color: #203119;
        text-decoration: none;
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(0,0,0,.20);
    }


/*=====================================
        RESPONSIVE
======================================*/

@media(max-width:991px) {

    .donation-methods {
        padding: 70px 0;
    }

    .donation-cta {
        text-align: center;
    }

        .donation-cta h2 {
            font-size: 32px;
        }

    .btn-support {
        margin-top: 20px;
    }

    .qr-box img {
        width: 170px;
    }
}
/*====================================
        IMPACT
=====================================*/

.impact-section {
    padding: 90px 0;
    background: #F8F7F2;
}

.impact-box {
    background: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
    transition: .35s;
}

    .impact-box:hover {
        transform: translateY(-8px);
    }

    .impact-box h3 {
        font-size: 46px;
        color: #2C4021;
        font-weight: 700;
    }

    .impact-box p {
        margin-top: 10px;
        color: #666;
    }



/*====================================
        FAQ
=====================================*/

.donation-faq {
    padding: 90px 0;
    background: #fff;
}

    .donation-faq .card {
        border: none;
        margin-bottom: 15px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0,0,0,.05);
    }

    .donation-faq .card-header {
        background: #2C4021;
        padding: 0;
    }

    .donation-faq .btn-link {
        display: block;
        width: 100%;
        padding: 20px;
        text-align: left;
        color: #fff;
        font-weight: 600;
        text-decoration: none;
    }

        .donation-faq .btn-link:hover {
            text-decoration: none;
            color: #D4AF37;
        }

    .donation-faq .card-body {
        padding: 25px;
        color: #666;
        line-height: 30px;
    }


/*====================================
        THANK YOU
=====================================*/

.thank-you-section {
    padding: 100px 0;
    background: #F8F7F2;
    text-align: center;
}

    .thank-you-section i {
        width: 90px;
        height: 90px;
        line-height: 90px;
        border-radius: 50%;
        background: #2C4021;
        color: #D4AF37;
        font-size: 40px;
        margin-bottom: 25px;
        box-shadow: 0 12px 30px rgba(44,64,33,.15);
    }

    .thank-you-section h2 {
        font-size: 46px;
        font-weight: 700;
        color: #2C4021;
        margin-bottom: 20px;
    }

    .thank-you-section p {
        max-width: 700px;
        margin: 0 auto;
        line-height: 34px;
        font-size: 18px;
        color: #666;
    }

.btn-thank {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 40px;
    border-radius: 50px;
    background: #2C4021;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
}

    .btn-thank:hover {
        background: #D4AF37;
        color: #2C4021;
        text-decoration: none;
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,0,0,.15);
    }


/*====================================
        MOBILE
=====================================*/

@media(max-width:991px) {

    .impact-section,
    .donation-faq,
    .thank-you-section {
        padding: 70px 0;
    }

        .thank-you-section h2 {
            font-size: 34px;
        }

    .impact-box {
        margin-bottom: 25px;
    }
}
/*=====================================
        WHATSAPP WIDGET
======================================*/

.whatsapp-widget {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: linear-gradient(135deg,#25D366,#128C7E);
    color: #fff;
    font-size: 34px;
    box-shadow: 0 15px 35px rgba(18,140,126,.35);
    position: relative;
    transition: .35s;
    animation: whatsapp-breath 2.5s infinite;
}

    .whatsapp-btn:hover {
        transform: translateY(-5px) scale(1.08);
        color: #fff;
        text-decoration: none;
        box-shadow: 0 20px 45px rgba(18,140,126,.45);
    }


    /* Ripple */

    .whatsapp-btn:before {
        content: "";
        position: absolute;
        inset: -8px;
        border-radius: 50%;
        border: 2px solid rgba(37,211,102,.45);
        animation: ripple 2.5s infinite;
    }

    .whatsapp-btn:after {
        content: "";
        position: absolute;
        inset: -18px;
        border-radius: 50%;
        border: 2px solid rgba(37,211,102,.20);
        animation: ripple 2.5s infinite .8s;
    }

.notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #ff4d4d;
    border: 2px solid #fff;
    border-radius: 50%;
}


/* Tooltip */

.whatsapp-tooltip {
    position: absolute;
    right: 82px;
    top: 50%;
    transform: translateY(-50%);
    background: #2C4021;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

    .whatsapp-tooltip:after {
        content: "";
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        border-left: 6px solid #2C4021;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}


/* Breathing */

@keyframes whatsapp-breath {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}


/* Ripple */

@keyframes ripple {

    0% {
        transform: scale(.9);
        opacity: .8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* Mobile */

@media(max-width:767px) {

    .whatsapp-widget {
        right: 18px;
        bottom: 18px;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}
.whatsapp-message {
    position: absolute;
    right: 85px;
    bottom: 6px;
    width: 220px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    border-left: 4px solid #25D366;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all .35s ease;
    pointer-events: none;
}

    .whatsapp-message strong {
        display: block;
        color: #2C4021;
        font-size: 15px;
        margin-bottom: 4px;
    }

    .whatsapp-message span {
        color: #666;
        font-size: 13px;
        line-height: 22px;
    }

    .whatsapp-message:after {
        content: "";
        position: absolute;
        right: -8px;
        bottom: 22px;
        border-left: 8px solid #fff;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
.whatsapp-widget:hover .whatsapp-message {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
@media (max-width:767px) {

    .whatsapp-message {
        display: none;
    }
}

@keyframes messageFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@media(max-width:767px) {

    .whatsapp-message {
        width: 180px;
        right: 72px;
        padding: 12px;
    }
}

/*==================================
        GALLERY SECTION
==================================*/

.gallery-section {
    background: #F8F7F2;
    padding: 90px 0;
}

.gallery-subtitle {
    display: inline-block;
    color: #D4AF37;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.gallery-title {
    font-size: 46px;
    color: #2C4021;
    font-weight: 700;
    margin-bottom: 18px;
}

.gallery-description {
    max-width: 720px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 30px;
}



/*==================================
        GALLERY CARD
==================================*/

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .45s;
}

    .gallery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,.18);
    }



    /*==================================
            IMAGE
==================================*/

    .gallery-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: transform .7s ease;
        display: block;
    }

    .gallery-card:hover img {
        transform: scale(1.12);
    }



/*==================================
        OVERLAY
==================================*/

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( rgba(44,64,33,.15), rgba(44,64,33,.92));
    opacity: 0;
    transition: .45s;
    pointer-events: none;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}



/*==================================
        CONTENT
==================================*/

.gallery-content {
    text-align: center;
    transform: translateY(30px);
    transition: .45s;
}

.gallery-card:hover .gallery-content {
    transform: translateY(0);
}



/*==================================
            ICON
==================================*/

.gallery-content i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: #D4AF37;
    color: #fff;
    font-size: 26px;
    margin-bottom: 18px;
    transition: .4s;
}

.gallery-card:hover .gallery-content i {
    transform: rotate(360deg);
}



/*==================================
            TEXT
==================================*/

.gallery-content h5 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.gallery-content p {
    color: #eee;
    margin-top: 8px;
}



/*==================================
        GOLD BORDER
==================================*/

.gallery-card:before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(212,175,55,.85);
    border-radius: 16px;
    opacity: 0;
    transform: scale(.9);
    transition: .45s;
    z-index: 2;
    pointer-events: none;
}

.gallery-card:hover:before {
    opacity: 1;
    transform: scale(1);
}

.gallery-overlay {
    pointer-events: none;
}

.gallery-card:before {
    pointer-events: none;
}
/*==================================
        LINK
==================================*/

.gallery-popup {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
    z-index: 5;
}

    .gallery-popup:hover {
        text-decoration: none;
        color: inherit;
    }

/*==================================
        MAGNIFIC POPUP
==================================*/

.mfp-bg {
    opacity: .96 !important;
    background: #111;
}

.mfp-figure:after {
    display: none;
}

img.mfp-img {
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

.mfp-bottom-bar {
    margin-top: 15px;
}

.mfp-title {
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.mfp-counter {
    color: #D4AF37;
}



/*==================================
        HOVER SHINE
==================================*/

.gallery-card:after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(255,255,255,.45), transparent);
    transform: skewX(-25deg);
}

.gallery-card:hover:after {
    animation: galleryShine .8s;
}

@keyframes galleryShine {

    100% {
        left: 170%;
    }
}



/*==================================
        RESPONSIVE
==================================*/

@media(max-width:991px) {

    .gallery-title {
        font-size: 38px;
    }

    .gallery-card img {
        height: 280px;
    }
}



@media(max-width:767px) {

    .gallery-section {
        padding: 70px 0;
    }

    .gallery-title {
        font-size: 30px;
    }

    .gallery-description {
        font-size: 15px;
        line-height: 28px;
    }

    .gallery-card {
        border-radius: 16px;
    }

        .gallery-card img {
            height: 240px;
        }

    .gallery-content i {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 22px;
    }

    .gallery-content h5 {
        font-size: 18px;
    }
}
.gallery-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #D4AF37;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: .4s;
}

.gallery-card:hover .gallery-icon {
    transform: scale(1.1) rotate(10deg);
}

/*====================================================
                    EVENTS HERO
====================================================*/

.events-hero {
    position: relative;
    background: #2C4021;
    padding: 50px 0;
    color: #fff;
}

.events-tag {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(212,175,55,.15);
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 50px;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.events-hero h1 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;
}

.events-hero p {
    font-size: 18px;
    color: #d4af37;
    line-height: 1.9;
    margin-bottom: 40px;
}

/*====================================================
                    BUTTONS
====================================================*/

.btn-event,
.btn-register,
.timeline-btn {
    display: inline-block;
    background: #D4AF37;
    color: #2C4021;
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
    text-decoration: none;
}

    .btn-event:hover,
    .btn-register:hover,
    .timeline-btn:hover {
        background: #2C4021;
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
    }

/*====================================================
                SECTION TITLE
====================================================*/

.events-section,
.past-events-section {
    padding: 10px 0;
    background: #F8F7F2;
}

.section-title {
    margin-bottom: 5px;
    padding-top:40px
}

    .section-title span {
        color: #D4AF37;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .section-title h2 {
        color: #2C4021;
        font-size: 42px;
        margin: 15px 0;
    }

    .section-title p {
        color: #666;
        max-width: 700px;
        margin: auto;
        line-height: 1.9;
    }

/*====================================================
                FEATURED EVENT
====================================================*/

.featured-event {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

    .featured-event img {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

    .featured-event .col-lg-6:last-child {
        padding: 50px;
    }

.event-date {
    color: #D4AF37;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.featured-event h3 {
    color: #2C4021;
    margin: 20px 0;
    font-size: 34px;
}

.featured-event p {
    color: #666;
    line-height: 1.9;
}

.event-info {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .event-info li {
        margin-bottom: 12px;
        color: #444;
    }

    .event-info i {
        width: 25px;
        color: #D4AF37;
    }

/*====================================================
                EVENT CARDS
====================================================*/

.event-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .35s;
    position: relative;
}

    .event-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 45px rgba(0,0,0,.12);
    }

    .event-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.event-body {
    padding: 28px;
}

    .event-body h4 {
        color: #2C4021;
        margin-bottom: 15px;
    }

    .event-body p {
        color: #666;
        line-height: 1.8;
    }

.event-meta {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

    .event-meta i {
        color: #D4AF37;
        margin-right: 5px;
    }

.event-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #D4AF37;
    color: #2C4021;
    padding: 8px 15px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 700;
}

/*====================================================
                TIMELINE
====================================================*/

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

    .timeline:before {
        content: "";
        position: absolute;
        left: 30px;
        width: 3px;
        background: #D4AF37;
        top: 0;
        bottom: 0;
    }

.timeline-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 50px;
}

    .timeline-item:before {
        content: "";
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #D4AF37;
        position: absolute;
        left: 22px;
        top: 10px;
    }

.timeline-date {
    color: #D4AF37;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

    .timeline-content h4 {
        color: #2C4021;
    }

    .timeline-content p {
        color: #666;
        line-height: 1.8;
    }

/*====================================================
                HIGHLIGHTS
====================================================*/

.event-highlight {
    background: #2C4021;
    padding: 90px 0;
}

.highlight-box {
    background: rgba(255,255,255,.06);
    padding: 40px;
    border-radius: 18px;
    transition: .35s;
}

    .highlight-box:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,.1);
    }

    .highlight-box h2 {
        color: #D4AF37;
        font-size: 42px;
        margin-bottom: 10px;
    }

    .highlight-box span {
        color: #fff;
    }

/*====================================================
                CTA
====================================================*/

.events-cta {
    padding: 90px 0;
    background: #F8F7F2;
    position: relative;
    overflow: hidden;
}

    .events-cta::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -120px;
        width: 280px;
        height: 280px;
        background: rgba(212, 175, 55, 0.08);
        border-radius: 50%;
    }

    .events-cta::after {
        content: "";
        position: absolute;
        bottom: -140px;
        left: -140px;
        width: 320px;
        height: 320px;
        background: rgba(44, 64, 33, 0.05);
        border-radius: 50%;
    }

    .events-cta .container {
        position: relative;
        z-index: 2;
    }

    .events-cta h2 {
        color: #2C4021;
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .events-cta p {
        color: #666;
        font-size: 17px;
        line-height: 1.9;
        max-width: 700px;
        margin: 0 auto 35px;
    }

/*====================================================
                RESPONSIVE
====================================================*/

@media(max-width:991px) {

    .events-hero {
        position: relative;
        background: #2C4021;
        padding: 30px 0px;
        color: #fff;
    }
        .events-hero h1 {
            font-size: 40px;
        }

    .featured-event .col-lg-6:last-child {
        padding: 35px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .timeline-item {
        padding-left: 70px;
    }
}

@media(max-width:767px) {

    .events-hero h1 {
        font-size: 30px;
    }

    .events-hero p {
        font-size: 16px;
    }

    .featured-event img {
        height: 260px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .timeline:before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 45px;
    }

        .timeline-item:before {
            left: 7px;
        }

    .event-meta {
        display: block;
    }

        .event-meta span {
            display: block;
            margin-bottom: 8px;
        }

    .events-cta h2 {
        font-size: 30px;
    }
}

/*=========================
Visitor Section
=========================*/

.visitor-section {
    padding: 100px 0;
    background: #fff;
}

.visitor-card {
    background: #F8F7F2;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: .35s;
    height: 100%;
}

    .visitor-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.08);
    }

    .visitor-card i {
        font-size: 42px;
        color: #D4AF37;
        margin-bottom: 20px;
    }

    .visitor-card h5 {
        color: #2C4021;
        font-weight: 600;
        margin-bottom: 12px;
    }

/*=========================
Heritage
=========================*/

.heritage-section {
    padding: 100px 0;
    background: #F8F7F2;
}

.heritage-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.heritage-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

    .heritage-list li {
        margin-bottom: 18px;
        font-size: 16px;
    }

    .heritage-list i {
        color: #D4AF37;
        margin-right: 12px;
    }

/*=========================
Quote
=========================*/

.birth-quote {
    background: #2C4021;
    color: #fff;
    padding: 110px 0;
}

.quote-icon {
    font-size: 46px;
    color: #D4AF37;
    margin-bottom: 25px;
}

.birth-quote blockquote {
    font-size: 34px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}

.birth-quote span {
    color: #D4AF37;
    letter-spacing: 2px;
}

/*=========================
CTA
=========================*/

.birth-cta {
    padding: 90px 0;
    background: #fff;
}

    .birth-cta h2 {
        color: #2C4021;
        margin-bottom: 15px;
    }

.btn-visit {
    display: inline-block;
    background: #D4AF37;
    color: #2C4021;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

    .btn-visit:hover {
        background: #2C4021;
        color: #fff;
        text-decoration: none;
    }
/*====================================================
                HERO
====================================================*/

.birthhouse-hero {
    background: #2C4021;
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .birthhouse-hero::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        background: rgba(212,175,55,.08);
        border-radius: 50%;
        top: -100px;
        left: -80px;
    }

    .birthhouse-hero::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(212,175,55,.06);
        border-radius: 50%;
        right: -60px;
        bottom: -60px;
    }

    .birthhouse-hero .container {
        position: relative;
        z-index: 2;
    }

.birth-tag {
    display: inline-block;
    background: rgba(212,175,55,.18);
    color: #D4AF37;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.birthhouse-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.birthhouse-hero p {
    font-size: 18px;
    color: rgba(255,255,255,.85);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.9;
}

/*====================================================
                STORY
====================================================*/

.birth-story {
    padding: 100px 0;
    background: #F8F7F2;
}

.birth-image {
    position: relative;
}

    .birth-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
        transition: .4s;
    }

    .birth-image:hover img {
        transform: scale(1.02);
    }

.section-subtitle {
    display: inline-block;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.birth-story h2 {
    color: #2C4021;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.birth-story p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.birth-features {
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

    .feature-item i {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #2C4021;
        color: #D4AF37;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        margin-right: 18px;
        transition: .35s;
    }

    .feature-item:hover i {
        background: #D4AF37;
        color: #2C4021;
    }

    .feature-item span {
        font-size: 17px;
        color: #333;
        font-weight: 500;
    }

/*====================================================
                HIGHLIGHTS
====================================================*/

.birth-highlights {
    padding: 100px 0;
    background: #fff;
}

.highlight-card {
    background: #F8F7F2;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    transition: .35s;
    height: 100%;
    border: 1px solid #ECECEC;
}

    .highlight-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0,0,0,.08);
    }

    .highlight-card i {
        width: 80px;
        height: 80px;
        line-height: 80px;
        font-size: 32px;
        color: #D4AF37;
        background: #2C4021;
        border-radius: 50%;
        margin-bottom: 25px;
        transition: .35s;
    }

    .highlight-card:hover i {
        background: #D4AF37;
        color: #2C4021;
    }

    .highlight-card h4 {
        color: #2C4021;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .highlight-card p {
        color: #666;
        line-height: 1.8;
        margin: 0;
    }

/*====================================================
                RESPONSIVE
====================================================*/

@media (max-width:991px) {

    .birthhouse-hero {
        padding: 70px 0;
    }

        .birthhouse-hero h1 {
            font-size: 38px;
        }

    .birth-story {
        padding: 80px 0;
    }

    .birth-image {
        margin-bottom: 40px;
    }

    .birth-story h2 {
        font-size: 32px;
    }
}

@media (max-width:767px) {

    .birthhouse-hero {
        padding: 60px 0;
    }

        .birthhouse-hero h1 {
            font-size: 30px;
        }

        .birthhouse-hero p {
            font-size: 16px;
        }

    .birth-story,
    .birth-highlights {
        padding: 70px 0;
    }

    .highlight-card {
        padding: 35px 25px;
    }
}

/*=========================
Gallery
=========================*/

.birth-gallery {
    padding: 100px 0;
    background: #F8F7F2;
}
.birth-gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    height: 280px; /* Same height for every card */
}

    .birth-gallery-card a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .birth-gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Fill the box */
        object-position: center; /* Center the image */
        transition: .4s;
    }

    .birth-gallery-card:hover img {
        transform: scale(1.08);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44,64,33,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
}

.birth-gallery-card:hover .gallery-overlay {
    opacity: 1;
}
/*=========================
Experience
=========================*/

.experience-section {
    padding: 100px 0;
    background: #fff;
}

    .experience-section img {
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }

    .experience-section h2 {
        color: #2C4021;
        margin: 15px 0 25px;
    }

    .experience-section p {
        color: #666;
        line-height: 1.9;
        margin-bottom: 20px;
    }

/*=========================
CTA
=========================*/

.visit-now {
    padding: 100px 0;
    background: #2C4021;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .visit-now::before {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        background: rgba(212,175,55,.08);
        border-radius: 50%;
        top: -100px;
        left: -80px;
    }

    .visit-now::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(212,175,55,.06);
        border-radius: 50%;
        right: -80px;
        bottom: -80px;
    }

    .visit-now .container {
        position: relative;
        z-index: 2;
    }

    .visit-now h2 {
        color: #fff;
        margin: 18px 0;
        font-size: 40px;
    }

    .visit-now p {
        color: rgba(255,255,255,.85);
        line-height: 1.9;
        margin-bottom: 35px;
    }

    .visit-now .btn-visit {
        display: inline-block;
        background: #D4AF37;
        color: #2C4021;
        padding: 16px 42px;
        border-radius: 50px;
        font-weight: 600;
        transition: .35s;
    }

        .visit-now .btn-visit:hover {
            background: #fff;
            color: #2C4021;
            text-decoration: none;
            transform: translateY(-3px);
        }

@media (max-width:991px) {

    .birth-gallery,
    .experience-section,
    .visit-now {
        padding: 80px 0;
    }

        .experience-section img {
            margin-bottom: 40px;
        }
}

@media (max-width:767px) {

    .birth-gallery,
    .experience-section,
    .visit-now {
        padding: 70px 0;
    }

        .visit-now h2 {
            font-size: 30px;
        }
}


/*=================================================
ABOUT HERO
=================================================*/

.about-hero {
    background: linear-gradient(rgba(44,64,33,.88), rgba(44,64,33,.88)), url('../images/about-banner.jpg') center center/cover;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}

.hero-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 30px;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.about-hero h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-hero p {
    max-width: 760px;
    margin: auto;
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255,255,255,.9);
}


/*=================================================
INTRO SECTION
=================================================*/

.about-intro {
    padding: 100px 0;
    background: #fff;
}

.intro-image {
    position: relative;
}

    .intro-image img {
        width: 100%;
        border-radius: 22px;
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }

.section-subtitle {
    display: inline-block;
    color: #D4AF37;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-intro h2 {
    color: #2C4021;
    font-size: 42px;
    margin-bottom: 25px;
}

.about-intro p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}


/*=================================================
HIGHLIGHT BOX
=================================================*/

.intro-highlight {
    background: #F8F7F2;
    border-left: 5px solid #D4AF37;
    padding: 25px;
    border-radius: 12px;
    margin-top: 35px;
    display: flex;
    align-items: center;
}

    .intro-highlight i {
        font-size: 30px;
        color: #2C4021;
        margin-right: 18px;
    }

    .intro-highlight span {
        color: #555;
        line-height: 1.8;
        font-style: italic;
    }


/*=================================================
BUTTON
=================================================*/

.btn-about {
    display: inline-block;
    margin-top: 35px;
    background: #2C4021;
    color: #fff;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    transition: .35s;
    font-weight: 600;
}

    .btn-about:hover {
        background: #D4AF37;
        color: #fff;
        text-decoration: none;
        transform: translateY(-3px);
    }


/*=================================================
LIFE SECTION
=================================================*/

.life-section {
    padding: 100px 0;
    background: #F8F7F2;
}

.life-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
    transition: .4s;
}

    .life-img:hover {
        transform: scale(1.03);
    }

.life-year {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: #D4AF37;
    color: #fff;
    font-weight: 600;
    margin-bottom: 18px;
}

.life-section h2 {
    color: #2C4021;
    font-size: 40px;
    margin-bottom: 25px;
}

.life-section p {
    color: #666;
    line-height: 1.9;
}

.life-points {
    margin-top: 25px;
    padding-left: 0;
    list-style: none;
}

    .life-points li {
        padding: 10px 0;
        color: #555;
    }

        .life-points li:before {
            content: "\f00c";
            font-family: FontAwesome;
            color: #D4AF37;
            margin-right: 12px;
        }


/*=================================================
QUOTE
=================================================*/

.quote-section {
    padding: 90px 0;
    background: #fff;
}

.quote-box {
    background: #2C4021;
    color: #fff;
    border-radius: 22px;
    padding: 70px;
    text-align: center;
}

    .quote-box i {
        color: #D4AF37;
        font-size: 42px;
        margin-bottom: 20px;
    }

    .quote-box h3 {
        font-size: 34px;
        line-height: 1.6;
        margin-bottom: 25px;
        font-style: italic;
    }

    .quote-box span {
        color: #D4AF37;
        letter-spacing: 2px;
    }


/*=================================================
RESPONSIVE
=================================================*/

@media (max-width:991px) {

    .about-hero {
        padding: 90px 0;
    }

        .about-hero h1 {
            font-size: 42px;
        }

    .about-intro {
        padding: 70px 0;
    }

        .about-intro h2 {
            font-size: 34px;
        }

    .life-section {
        padding: 70px 0;
    }

        .life-section h2 {
            font-size: 32px;
            margin-top: 30px;
        }

    .quote-box {
        padding: 45px 25px;
    }

        .quote-box h3 {
            font-size: 26px;
        }
}

@media (max-width:576px) {

    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-intro h2 {
        font-size: 28px;
    }

    .life-section h2 {
        font-size: 28px;
    }

    .hero-subtitle {
        letter-spacing: 2px;
        font-size: 12px;
    }

    .intro-highlight {
        display: block;
        text-align: center;
    }

        .intro-highlight i {
            margin-right: 0;
            margin-bottom: 15px;
            display: block;
        }
}
/*====================================
Age 13 & 14
====================================*/

.osho-teen-section {
    padding: 100px 0;
    background: #F8F7F2;
    position: relative;
}

.section-description {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

.timeline-row {
    position: relative;
    margin-top: 60px;
}

.timeline-center {
    position: absolute;
    left: 50%;
    top: 230px;
    bottom: 170px;
    width: 3px;
    background: #D4AF37;
    transform: translateX(-50%);
}

.timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #D4AF37;
    border: 5px solid #2C4021;
    margin: auto;
    margin-top: 160px;
    position: relative;
    z-index: 5;
}

.teen-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
    transition: .35s;
}

    .teen-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 28px 55px rgba(0,0,0,.12);
    }

.teen-image {
    overflow: hidden;
}

    .teen-image img {
        width: 100%;
        height: 380px;
        object-fit: cover;
        transition: .45s;
    }

.teen-card:hover img {
    transform: scale(1.08);
}

.teen-content {
    padding: 35px;
}

.age-badge {
    display: inline-block;
    background: #EEF4EA;
    color: #2C4021;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.teen-content h3 {
    color: #2C4021;
    margin-bottom: 18px;
    font-size: 28px;
}

.teen-content p {
    color: #666;
    line-height: 1.9;
}

.left-card {
    margin-right: 25px;
}

.right-card {
    margin-left: 25px;
}

.teen-quote {
    margin-top: 70px;
    background: #2C4021;
    color: #fff;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
}

    .teen-quote i {
        color: #D4AF37;
        font-size: 42px;
        margin-bottom: 20px;
    }

    .teen-quote blockquote {
        font-size: 28px;
        line-height: 1.7;
        font-style: italic;
    }

    .teen-quote span {
        display: block;
        margin-top: 20px;
        color: #D4AF37;
        letter-spacing: 2px;
    }

/*====================================
Responsive
====================================*/

@media(max-width:991px) {

    .timeline-center {
        display: none;
    }

    .timeline-dot {
        display: none;
    }

    .left-card,
    .right-card {
        margin: 0;
    }

    .teen-image img {
        height: auto;
    }

    .teen-content {
        padding: 30px;
    }

    .teen-quote {
        padding: 40px 30px;
    }

        .teen-quote blockquote {
            font-size: 22px;
        }
}
/*====================================
QUOTE SECTION
====================================*/

.osho-quote-section {
    padding: 110px 0;
    background: #ffffff;
}

.quote-card {
    background: #2C4021;
    padding: 80px 60px;
    border-radius: 28px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

    .quote-card:before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: rgba(212,175,55,.08);
        border-radius: 50%;
        top: -90px;
        right: -70px;
    }

    .quote-card:after {
        content: "";
        position: absolute;
        width: 160px;
        height: 160px;
        background: rgba(212,175,55,.06);
        border-radius: 50%;
        bottom: -60px;
        left: -60px;
    }

.quote-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50%;
    margin: auto auto 35px;
    font-size: 34px;
}

.quote-card h2 {
    font-size: 38px;
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 25px;
}

.quote-card span {
    color: #D4AF37;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@media(max-width:991px) {

    .quote-card {
        padding: 55px 30px;
    }

        .quote-card h2 {
            font-size: 28px;
        }
}

/*====================================
TRANSITION
====================================*/

.transition-section {
    padding: 110px 0;
    background: #F8F7F2;
}

.transition-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.10);
}

    .transition-image img {
        width: 100%;
        transition: .45s;
    }

    .transition-image:hover img {
        transform: scale(1.08);
    }

.transition-section h2 {
    color: #2C4021;
    font-size: 44px;
    margin-bottom: 25px;
}

.transition-section p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

@media(max-width:991px) {

    .transition-section {
        padding: 80px 0;
    }

    .transition-image {
        margin-bottom: 40px;
    }

    .transition-section h2 {
        font-size: 34px;
    }
}

/*====================================
AGE 19 & 20
====================================*/

.journey-section {
    padding: 110px 0;
    background: #ffffff;
}

.journey-desc {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

.journey-item {
    margin-top: 80px;
    position: relative;
}

    .journey-item:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #D4AF37;
        transform: translateX(-50%);
    }

    .journey-item.reverse {
        margin-top: 100px;
    }

.journey-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,.12);
}

    .journey-image img {
        width: 100%;
        transition: .5s;
    }

    .journey-image:hover img {
        transform: scale(1.08);
    }

.journey-content {
    background: #F8F7F2;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    position: relative;
}

    .journey-content:hover {
        transform: translateY(-6px);
        transition: .35s;
    }

.journey-year {
    display: inline-block;
    background: #2C4021;
    color: #fff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.journey-content h3 {
    color: #2C4021;
    margin-bottom: 20px;
    font-size: 32px;
}

.journey-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* Timeline Dot */

.journey-item:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: #D4AF37;
    border: 5px solid #2C4021;
    border-radius: 50%;
    left: 50%;
    top: 90px;
    transform: translateX(-50%);
}

/* Responsive */

@media(max-width:991px) {

    .journey-item:before,
    .journey-item:after {
        display: none;
    }

    .journey-content {
        margin-top: 30px;
        padding: 35px;
    }

    .journey-item {
        margin-top: 60px;
    }
}

@media(max-width:576px) {

    .journey-content h3 {
        font-size: 26px;
    }

    .journey-content {
        padding: 28px;
    }
}
/*====================================
ENLIGHTENMENT
====================================*/

.enlightenment-section {
    background: linear-gradient(135deg,#2C4021,#3b5630);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
}

    /* Decorative circles */

    .enlightenment-section:before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(212,175,55,.08);
        top: -180px;
        right: -120px;
    }

    .enlightenment-section:after {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        bottom: -120px;
        left: -100px;
    }

.enlightenment-image {
    position: relative;
    text-align: center;
}

.gold-circle {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: #D4AF37;
    opacity: .15;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.enlightenment-image img {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(255,255,255,.25);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
    transition: .45s;
}

.enlightenment-image:hover img {
    transform: scale(1.04);
}

.enlightenment-section h2 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #fff;
}

    .enlightenment-section h2 span {
        display: block;
        color: #D4AF37;
        font-size: 26px;
        margin-top: 10px;
    }

.enlightenment-section p {
    color: rgba(255,255,255,.88);
    line-height: 1.9;
    margin-bottom: 20px;
}

.enlightenment-highlight {
    margin-top: 40px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
}

    .enlightenment-highlight i {
        font-size: 42px;
        color: #D4AF37;
        margin-right: 20px;
    }

    .enlightenment-highlight strong {
        font-size: 24px;
        color: #fff;
        display: block;
        margin-bottom: 10px;
    }

    .enlightenment-highlight p {
        margin: 0;
        color: #E7D9A4;
    }

/* Responsive */

@media(max-width:991px) {

    .enlightenment-section {
        text-align: center;
        padding: 90px 0;
    }

    .enlightenment-image {
        margin-bottom: 50px;
    }

        .enlightenment-image img {
            width: 280px;
            height: 280px;
        }

    .gold-circle {
        width: 290px;
        height: 290px;
    }

    .enlightenment-section h2 {
        font-size: 40px;
    }

    .enlightenment-highlight {
        display: block;
        text-align: center;
    }

        .enlightenment-highlight i {
            margin: 0 0 20px;
            display: block;
        }
}

@media(max-width:576px) {

    .enlightenment-section h2 {
        font-size: 32px;
    }

        .enlightenment-section h2 span {
            font-size: 20px;
        }

    .enlightenment-image img {
        width: 230px;
        height: 230px;
    }
}
/*====================================
PROFESSOR SECTION
====================================*/

.professor-section {
    padding: 120px 0;
    background: #ffffff;
}

.professor-image {
    position: relative;
}

    .professor-image img {
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 20px 55px rgba(0,0,0,.12);
        transition: .45s;
    }

    .professor-image:hover img {
        transform: scale(1.03);
    }

.year-circle {
    position: absolute;
    width: 130px;
    height: 130px;
    background: #D4AF37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    right: -35px;
    top: -35px;
    z-index: 10;
    box-shadow: 0 12px 35px rgba(0,0,0,.18);
}

    .year-circle span {
        font-size: 16px;
        margin-top: 5px;
    }

.professor-section h2 {
    color: #2C4021;
    font-size: 44px;
    margin-bottom: 25px;
}

.professor-section p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

.professor-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 20px;
}

.feature-box {
    background: #F8F7F2;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    transition: .35s;
}

    .feature-box:hover {
        background: #2C4021;
        transform: translateY(-6px);
    }

    .feature-box i {
        font-size: 34px;
        color: #D4AF37;
        margin-bottom: 18px;
    }

    .feature-box h5 {
        margin: 0;
        color: #2C4021;
        transition: .35s;
    }

    .feature-box:hover h5 {
        color: #fff;
    }

@media(max-width:991px) {

    .professor-section {
        padding: 80px 0;
    }

    .professor-image {
        margin-bottom: 50px;
    }

    .year-circle {
        width: 100px;
        height: 100px;
        font-size: 22px;
        right: 15px;
        top: 15px;
    }

    .professor-features {
        grid-template-columns: 1fr;
    }

    .professor-section h2 {
        font-size: 34px;
    }
}
/*====================================
MEDITATION CAMPS
====================================*/

.meditation-section {
    padding: 120px 0;
    background: #F8F7F2;
}

.section-text {
    max-width: 820px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

.camp-image {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 55px rgba(0,0,0,.12);
}

    .camp-image img {
        width: 100%;
        transition: .5s;
    }

    .camp-image:hover img {
        transform: scale(1.08);
    }

.image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px;
    background: linear-gradient(transparent,rgba(0,0,0,.85));
}

    .image-overlay h3 {
        color: #fff;
        margin: 0;
        font-size: 30px;
    }

.camp-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.camp-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    margin-bottom: 25px;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
}

    .camp-card:hover {
        background: #2C4021;
        transform: translateX(10px);
    }

    .camp-card i {
        font-size: 34px;
        color: #D4AF37;
        margin-bottom: 18px;
    }

    .camp-card h4 {
        color: #2C4021;
        margin-bottom: 15px;
        transition: .35s;
    }

    .camp-card p {
        color: #666;
        margin: 0;
        line-height: 1.8;
        transition: .35s;
    }

    .camp-card:hover h4,
    .camp-card:hover p {
        color: #fff;
    }

@media(max-width:991px) {

    .meditation-section {
        padding: 80px 0;
    }

    .camp-image {
        margin-bottom: 40px;
    }
}
/*====================================
PUNE ASHRAM
====================================*/

.ashram-section {
    padding: 120px 0;
    background: #ffffff;
}

.ashram-content h2 {
    font-size: 50px;
    color: #2C4021;
    margin-bottom: 25px;
}

    .ashram-content h2 span {
        color: #D4AF37;
        font-size: 28px;
    }

.ashram-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.ashram-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0,0,0,.12);
}

    .ashram-image img {
        width: 100%;
        transition: .45s;
    }

    .ashram-image:hover img {
        transform: scale(1.08);
    }

.ashram-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    flex-wrap: wrap;
}

.stat-box {
    width: 31%;
    background: #F8F7F2;
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    transition: .35s;
}

    .stat-box:hover {
        background: #2C4021;
        transform: translateY(-8px);
    }

    .stat-box h3 {
        color: #D4AF37;
        font-size: 34px;
        margin-bottom: 10px;
    }

    .stat-box span {
        color: #555;
        font-weight: 600;
    }

    .stat-box:hover span {
        color: #fff;
    }

@media(max-width:991px) {

    .ashram-section {
        padding: 80px 0;
    }

    .ashram-image {
        margin-top: 40px;
    }

    .stat-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .ashram-content h2 {
        font-size: 38px;
    }
}
/*====================================
RAJNEESHPURAM
====================================*/

.rajneeshpuram-section {
    position: relative;
    padding: 140px 0;
    background: url('../images/aboutOsho/rajneeshpuram.jpeg') center center/cover no-repeat;
    overflow: hidden;
}

    .rajneeshpuram-section .overlay {
        position: absolute;
        inset: 0;
        background: rgba(44,64,33,.82);
    }

.rajneesh-card {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 28px;
    padding: 70px;
    color: #fff;
}

    .rajneesh-card h2 {
        font-size: 52px;
        margin: 20px 0;
        color: #fff;
    }

        .rajneesh-card h2 span {
            display: block;
            color: #D4AF37;
            font-size: 28px;
            margin-top: 10px;
        }

    .rajneesh-card p {
        color: rgba(255,255,255,.9);
        line-height: 1.9;
        margin-bottom: 22px;
    }

.rajneesh-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 45px;
}

.feature {
    background: rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: .35s;
}

    .feature:hover {
        background: #D4AF37;
        transform: translateY(-8px);
    }

    .feature i {
        font-size: 34px;
        color: #D4AF37;
        margin-bottom: 15px;
        transition: .35s;
    }

    .feature span {
        display: block;
        font-weight: 600;
    }

    .feature:hover i {
        color: #2C4021;
    }

    .feature:hover span {
        color: #2C4021;
    }

@media(max-width:991px) {

    .rajneeshpuram-section {
        padding: 90px 0;
    }

    .rajneesh-card {
        padding: 40px 30px;
    }

        .rajneesh-card h2 {
            font-size: 36px;
        }

    .rajneesh-features {
        grid-template-columns: 1fr;
    }
}
/*====================================
RETURN TO INDIA
====================================*/

.return-section {
    padding: 120px 0;
    background: #F8F7F2;
}

.return-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

    .return-image img {
        width: 100%;
        transition: .45s;
    }

    .return-image:hover img {
        transform: scale(1.08);
    }

.return-year {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: #D4AF37;
    color: #fff;
    padding: 16px 28px;
    border-radius: 40px;
    font-size: 22px;
    font-weight: 700;
}

.return-section h2 {
    color: #2C4021;
    font-size: 46px;
    margin-bottom: 25px;
}

.return-section p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.return-highlight {
    margin-top: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

    .return-highlight i {
        font-size: 40px;
        color: #D4AF37;
        margin-right: 20px;
    }

    .return-highlight h4 {
        color: #2C4021;
        margin-bottom: 12px;
    }

    .return-highlight p {
        margin: 0;
    }

@media(max-width:991px) {

    .return-section {
        padding: 80px 0;
    }

    .return-image {
        margin-bottom: 40px;
    }

    .return-section h2 {
        font-size: 34px;
    }

    .return-highlight {
        display: block;
        text-align: center;
    }

        .return-highlight i {
            margin: 0 0 20px;
            display: block;
        }
}
/*====================================
SAMADHI
====================================*/

.samadhi-section {
    background: #2C4021;
    padding: 130px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .samadhi-section:before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(212,175,55,.06);
        right: -180px;
        top: -150px;
    }

    .samadhi-section:after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        left: -120px;
        bottom: -120px;
    }

.samadhi-image {
    position: relative;
    text-align: center;
}

.samadhi-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    background: #D4AF37;
    opacity: .15;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.samadhi-image img {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(255,255,255,.25);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.samadhi-section h2 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 25px;
}

    .samadhi-section h2 span {
        display: block;
        color: #D4AF37;
        font-size: 26px;
        margin-top: 10px;
    }

.samadhi-section p {
    color: rgba(255,255,255,.9);
    line-height: 1.9;
}

.memorial-box {
    margin-top: 40px;
    background: rgba(255,255,255,.08);
    border-left: 5px solid #D4AF37;
    padding: 35px;
    border-radius: 18px;
}

    .memorial-box h3 {
        font-size: 36px;
        line-height: 1.5;
        color: #fff;
        margin-bottom: 20px;
    }

    .memorial-box p {
        color: #D4AF37;
        font-size: 20px;
        margin-bottom: 18px;
    }

    .memorial-box h4 {
        color: #fff;
        letter-spacing: 2px;
        font-size: 20px;
    }

.samadhi-buttons {
    margin-top: 45px;
}

.btn-samadhi {
    display: inline-block;
    background: #D4AF37;
    color: #fff;
    padding: 15px 36px;
    border-radius: 40px;
    margin-right: 15px;
    text-decoration: none;
    transition: .35s;
}

    .btn-samadhi:hover {
        background: #fff;
        color: #2C4021;
        text-decoration: none;
    }

.btn-outline-samadhi {
    display: inline-block;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 15px 36px;
    border-radius: 40px;
    text-decoration: none;
    transition: .35s;
}

    .btn-outline-samadhi:hover {
        background: #D4AF37;
        color: #fff;
        text-decoration: none;
    }

@media(max-width:991px) {

    .samadhi-section {
        text-align: center;
        padding: 90px 0;
    }

    .samadhi-image {
        margin-bottom: 50px;
    }

        .samadhi-image img {
            width: 280px;
            height: 280px;
        }

    .samadhi-glow {
        width: 290px;
        height: 290px;
    }

    .samadhi-section h2 {
        font-size: 38px;
    }

    .btn-samadhi,
    .btn-outline-samadhi {
        display: block;
        margin: 15px auto;
        max-width: 280px;
    }
}
/*====================================
FINAL CTA
====================================*/

.about-cta {
    position: relative;
    padding: 120px 0;
    background: #F8F7F2;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: #D4AF37;
    opacity: .08;
}

.shape-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    left: -80px;
}

.shape-2 {
    width: 220px;
    height: 220px;
    right: -70px;
    bottom: -70px;
}

.about-cta-card {
    background: #fff;
    border-radius: 30px;
    padding: 70px 60px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #2C4021;
    color: #D4AF37;
    font-size: 38px;
}

.about-cta h2 {
    color: #2C4021;
    font-size: 48px;
    line-height: 1.35;
    margin: 20px 0;
}

.about-cta p {
    max-width: 760px;
    margin: 0 auto;
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

.cta-buttons {
    margin-top: 45px;
}

.btn-cta-primary {
    display: inline-block;
    background: #2C4021;
    color: #fff;
    padding: 16px 38px;
    border-radius: 50px;
    margin: 10px;
    transition: .35s;
    text-decoration: none;
}

    .btn-cta-primary:hover {
        background: #D4AF37;
        color: #fff;
        text-decoration: none;
        transform: translateY(-4px);
    }

.btn-cta-outline {
    display: inline-block;
    border: 2px solid #2C4021;
    color: #2C4021;
    padding: 16px 38px;
    border-radius: 50px;
    margin: 10px;
    transition: .35s;
    text-decoration: none;
}

    .btn-cta-outline:hover {
        background: #2C4021;
        color: #fff;
        text-decoration: none;
    }

    .btn-cta-primary i,
    .btn-cta-outline i {
        margin-right: 10px;
    }

@media(max-width:991px) {

    .about-cta {
        padding: 80px 0;
    }

    .about-cta-card {
        padding: 45px 25px;
    }

    .about-cta h2 {
        font-size: 34px;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        display: block;
        margin: 15px auto;
        max-width: 280px;
    }
}

@media(max-width:576px) {

    .about-cta h2 {
        font-size: 28px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 30px;
    }
}
/*====================================
ACTIVITY HERO
====================================*/

.activity-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    background: url('../images/activity/banner.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44,64,33,.72);
}

.activity-hero .container {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    color: #D4AF37;
    font-size: 15px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 25px;
}

.activity-hero h1 {
    color: #fff;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
}

.activity-hero p {
    color: rgba(255,255,255,.9);
    font-size: 20px;
    line-height: 1.9;
    max-width: 760px;
    margin: auto;
}

.hero-buttons {
    margin-top: 45px;
}

.btn-hero-primary {
    display: inline-block;
    background: #D4AF37;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    margin: 10px;
    text-decoration: none;
    transition: .35s;
}

    .btn-hero-primary:hover {
        background: #fff;
        color: #2C4021;
        text-decoration: none;
    }

.btn-hero-outline {
    display: inline-block;
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    margin: 10px;
    transition: .35s;
    text-decoration: none;
}

    .btn-hero-outline:hover {
        background: #fff;
        color: #2C4021;
        text-decoration: none;
    }

@media(max-width:991px) {

    .activity-hero {
        min-height: 520px;
    }

        .activity-hero h1 {
            font-size: 42px;
        }

        .activity-hero p {
            font-size: 17px;
        }
}

@media(max-width:576px) {

    .activity-hero {
        min-height: 460px;
    }

        .activity-hero h1 {
            font-size: 34px;
        }

    .hero-buttons a {
        display: block;
        max-width: 260px;
        margin: 15px auto;
    }
}
/*====================================
INTRODUCTION
====================================*/

.activity-intro {
    padding: 110px 0;
    background: #fff;
}

.intro-image {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0,0,0,.10);
}

    .intro-image img {
        width: 100%;
        transition: .4s;
    }

    .intro-image:hover img {
        transform: scale(1.06);
    }

.activity-intro h2 {
    color: #2C4021;
    font-size: 48px;
    margin: 20px 0;
}

.activity-intro p {
    color: #666;
    line-height: 1.9;
}

.intro-highlight {
    margin-top: 35px;
    padding: 30px;
    background: #F8F7F2;
    border-left: 5px solid #D4AF37;
    border-radius: 15px;
}

    .intro-highlight i {
        color: #D4AF37;
        font-size: 30px;
    }

    .intro-highlight p {
        margin: 15px 0;
        font-size: 20px;
        color: #2C4021;
    }

    .intro-highlight span {
        color: #888;
    }
/*====================================
TIMELINE
====================================*/

.daily-schedule {
    background: #F8F7F2;
    padding: 110px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

    .timeline:before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: #D4AF37;
    }

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.time {
    width: 140px;
    text-align: right;
    font-weight: 700;
    color: #2C4021;
}

.content {
    width: 42%;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .content i {
        font-size: 34px;
        color: #D4AF37;
        margin-bottom: 15px;
    }

    .content h4 {
        color: #2C4021;
    }

@media(max-width:991px) {

    .timeline:before {
        display: none;
    }

    .timeline-item {
        display: block;
    }

    .time {
        text-align: left;
        margin-bottom: 10px;
    }

    .content {
        width: 100%;
    }
}
/*====================================
FEATURED ACTIVITIES
====================================*/

.activities-section {
    padding: 110px 0;
    background: #fff;
}

.activity-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
    border-top: 4px solid transparent;
}

    .activity-card:hover {
        transform: translateY(-10px);
        border-color: #D4AF37;
    }

    .activity-card i {
        font-size: 46px;
        color: #D4AF37;
        margin-bottom: 20px;
    }

    .activity-card h4 {
        color: #2C4021;
        margin-bottom: 15px;
    }

    .activity-card p {
        color: #666;
        line-height: 1.8;

    }

/*====================================
MEDITATION PYRAMID
====================================*/

.pyramid-section {
    padding: 120px 0;
    background: #F8F7F2;
}

.pyramid-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0,0,0,.12);
}

    .pyramid-image img {
        width: 100%;
        transition: .45s;
    }

    .pyramid-image:hover img {
        transform: scale(1.05);
    }

.image-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: #2C4021;
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
}

    .image-badge i {
        color: #D4AF37;
        margin-right: 8px;
    }

.pyramid-section h2 {
    color: #2C4021;
    font-size: 46px;
    margin: 20px 0;
}

.pyramid-section p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.pyramid-features {
    margin: 35px 0;
}

.feature-item {
    margin-bottom: 18px;
    font-size: 17px;
    color: #2C4021;
    font-weight: 500;
}

    .feature-item i {
        color: #D4AF37;
        margin-right: 12px;
    }

@media(max-width:991px) {

    .pyramid-section {
        padding: 80px 0;
    }

    .pyramid-image {
        margin-bottom: 40px;
    }

    .pyramid-section h2 {
        font-size: 34px;
    }
}
/*====================================
BIRTH HOUSE MEDITATION
====================================*/

.birth-meditation-section {
    padding: 120px 0;
    background: #fff;
}

.birth-house-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0,0,0,.10);
}

    .birth-house-image img {
        width: 100%;
        transition: .45s;
    }

    .birth-house-image:hover img {
        transform: scale(1.05);
    }

.heritage-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #D4AF37;
    color: #fff;
    padding: 12px 22px;
    border-radius: 40px;
    font-weight: 600;
}

.birth-meditation-section h2 {
    color: #2C4021;
    font-size: 46px;
    margin: 20px 0;
}

.birth-meditation-section p {
    color: #666;
    line-height: 1.9;
}

.heritage-box {
    margin: 35px 0;
    padding: 30px;
    border-left: 5px solid #D4AF37;
    background: #F8F7F2;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
}

    .heritage-box i {
        font-size: 42px;
        color: #D4AF37;
        margin-right: 20px;
    }

    .heritage-box h4 {
        color: #2C4021;
        margin-bottom: 10px;
    }

    .heritage-box p {
        margin: 0;
    }

@media(max-width:991px) {

    .birth-meditation-section {
        padding: 80px 0;
    }

    .birth-house-image {
        margin-bottom: 40px;
    }

    .birth-meditation-section h2 {
        font-size: 34px;
    }

    .heritage-box {
        display: block;
        text-align: center;
    }

        .heritage-box i {
            display: block;
            margin: 0 0 20px;
        }
}
/*====================================
NATURE SECTION
====================================*/

.nature-section {
    position: relative;
    padding: 120px 0;
    background: url('../images/activity/nature.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.nature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44,64,33,.75);
}

.nature-section .container {
    position: relative;
    z-index: 2;
}

.nature-section h2 {
    color: #fff;
    font-size: 52px;
    margin: 20px 0;
}

.nature-section p {
    color: rgba(255,255,255,.92);
    line-height: 1.9;
}

.nature-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: .35s;
}

    .nature-card:hover {
        background: #D4AF37;
        transform: translateY(-10px);
    }

    .nature-card i {
        font-size: 42px;
        color: #D4AF37;
        margin-bottom: 18px;
        transition: .35s;
    }

    .nature-card h4 {
        color: #fff;
        margin-bottom: 15px;
    }

    .nature-card p {
        color: rgba(255,255,255,.9);
        margin: 0;
    }

    .nature-card:hover i,
    .nature-card:hover h4,
    .nature-card:hover p {
        color: #2C4021;
    }

@media(max-width:991px) {

    .nature-section {
        padding: 80px 0;
    }

        .nature-section h2 {
            font-size: 36px;
        }
}
/*====================================
ACTIVITY GALLERY
====================================*/

.activity-gallery {
    padding: 120px 0;
    background: #fff;
}

    .activity-gallery p {
        max-width: 700px;
        margin: auto;
        color: #666;
        line-height: 1.9;
    }

.gallery-large,
.gallery-small {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.gallery-large {
    height: 100%;
    min-height: 520px;
}

.gallery-small {
    height: 245px;
}

    .gallery-large img,
    .gallery-small img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .45s;
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44,64,33,.45);
    opacity: 0;
    transition: .35s;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .gallery-overlay i {
        color: #fff;
        font-size: 42px;
    }

.gallery-large:hover img,
.gallery-small:hover img {
    transform: scale(1.08);
}

.gallery-large:hover .gallery-overlay,
.gallery-small:hover .gallery-overlay {
    opacity: 1;
}

@media(max-width:991px) {

    .gallery-large {
        min-height: 350px;
    }

    .gallery-small {
        height: 180px;
    }
}
/*====================================
FINAL CTA
====================================*/

.activity-cta {
    position: relative;
    padding: 120px 0;
    background: #F8F7F2;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: #D4AF37;
    opacity: .07;
}

.shape-left {
    width: 260px;
    height: 260px;
    top: -90px;
    left: -90px;
}

.shape-right {
    width: 220px;
    height: 220px;
    right: -70px;
    bottom: -70px;
}

.activity-cta-card {
    background: #fff;
    border-radius: 30px;
    padding: 70px 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    line-height: 90px;
    border-radius: 50%;
    background: #2C4021;
    color: #D4AF37;
    font-size: 36px;
    margin-bottom: 25px;
}

.activity-cta-card h2 {
    font-size: 48px;
    color: #2C4021;
    margin: 20px 0;
    line-height: 1.3;
}

.activity-cta-card p {
    max-width: 760px;
    margin: 0 auto;
    color: #666;
    line-height: 1.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 25px;
}

    .cta-features div {
        font-weight: 600;
        color: #2C4021;
    }

    .cta-features i {
        color: #D4AF37;
        margin-right: 8px;
    }

.cta-buttons {
    margin-top: 15px;
}

.btn-cta-primary {
    display: inline-block;
    background: #2C4021;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    margin: 10px;
    transition: .35s;
    text-decoration: none;
}

    .btn-cta-primary:hover {
        background: #D4AF37;
        color: #fff;
        text-decoration: none;
        transform: translateY(-4px);
    }

.btn-cta-outline {
    display: inline-block;
    border: 2px solid #2C4021;
    color: #2C4021;
    padding: 16px 40px;
    border-radius: 50px;
    margin: 10px;
    transition: .35s;
    text-decoration: none;
}

    .btn-cta-outline:hover {
        background: #2C4021;
        color: #fff;
        text-decoration: none;
    }

    .btn-cta-primary i,
    .btn-cta-outline i {
        margin-right: 8px;
    }

@media(max-width:991px) {

    .activity-cta {
        padding: 80px 0;
    }

    .activity-cta-card {
        padding: 45px 25px;
    }

        .activity-cta-card h2 {
            font-size: 34px;
        }

    .cta-features {
        display: block;
    }

        .cta-features div {
            margin-bottom: 15px;
        }

    .btn-cta-primary,
    .btn-cta-outline {
        display: block;
        max-width: 280px;
        margin: 15px auto;
    }
}

@media(max-width:576px) {

    .activity-cta-card h2 {
        font-size: 28px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        font-size: 28px;
    }
}
/*====================================
WELCOME SECTION
====================================*/

.welcome-section {
    padding: 110px 0;
    background: #fff;
}

.welcome-image {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

    .welcome-image img {
        width: 100%;
        transition: .45s;
    }

    .welcome-image:hover img {
        transform: scale(1.05);
    }

.welcome-section h2 {
    font-size: 48px;
    color: #2C4021;
    line-height: 1.3;
    margin: 20px 0 25px;
}

.welcome-section p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 17px;
}

.welcome-btn {
    margin-top: 35px;
}

@media(max-width:991px) {

    .welcome-section {
        padding: 80px 0;
    }

    .welcome-image {
        margin-bottom: 40px;
    }

    .welcome-section h2 {
        font-size: 36px;
    }
}

@media(max-width:576px) {

    .welcome-section h2 {
        font-size: 30px;
    }
}
/*====================================
DISCOVER SECTION
====================================*/

.discover-section {
    padding: 110px 0;
    background: #F8F7F2;
}

    .discover-section p {
        max-width: 700px;
        margin: 15px auto 0;
        color: #666;
        line-height: 1.8;
    }

.discover-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

    .discover-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

    .discover-card .icon {
        width: 80px;
        height: 80px;
        margin: auto;
        line-height: 80px;
        border-radius: 50%;
        background: #2C4021;
        color: #D4AF37;
        font-size: 34px;
        margin-bottom: 25px;
        transition: .35s;
    }

    .discover-card:hover .icon {
        background: #D4AF37;
        color: #2C4021;
    }

    .discover-card h4 {
        color: #2C4021;
        margin-bottom: 15px;
    }

    .discover-card p {
        color: #666;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .discover-card a {
        color: #2C4021;
        font-weight: 600;
        text-decoration: none;
    }

        .discover-card a i {
            margin-left: 6px;
            transition: .3s;
        }

    .discover-card:hover a i {
        margin-left: 12px;
    }

@media(max-width:991px) {

    .discover-section {
        padding: 80px 0;
    }
}
/*====================================
SIGNATURE EXPERIENCES
====================================*/

.signature-section {
    padding: 110px 0;
    background: #fff;
}

.experience-box {
    background: #F8F7F2;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

    .experience-box img {
        width: 100%;
        border-radius: 20px;
        transition: .4s;
    }

    .experience-box:hover img {
        transform: scale(1.04);
    }

.experience-tag {
    display: inline-block;
    background: #2C4021;
    color: #D4AF37;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.experience-box h3 {
    color: #2C4021;
    font-size: 36px;
    margin-bottom: 20px;
}

.experience-box p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

@media(max-width:991px) {

    .signature-section {
        padding: 80px 0;
    }

    .experience-box {
        padding: 25px;
    }

        .experience-box img {
            margin-bottom: 30px;
        }

        .experience-box h3 {
            font-size: 28px;
        }
}
/*====================================
PREMIUM CTA
====================================*/

.visit-premium {
    position: relative;
    padding: 120px 0;
    background: url('../images/home/visit-bg.jpg') center center/cover no-repeat;
    overflow: hidden;
}

.visit-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(44,64,33,.45), rgba(44,64,33,.60) );
}

.visit-card {
    position: relative;
    z-index: 2;
    background: #F8F7F2;
    border-radius: 30px;
    padding: 70px;
    box-shadow: 0 25px 70px rgba(0,0,0,.18);
    overflow: hidden;
}

    .visit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 8px;
        height: 100%;
        background: #D4AF37;
    }

    .visit-card h2 {
        color: #2C4021;
        font-size: 52px;
        line-height: 1.3;
        margin: 20px 0;
    }

        .visit-card h2 span {
            color: #D4AF37;
        }

    .visit-card p {
        color: #666;
        font-size: 17px;
        line-height: 1.9;
        margin: 25px 0;
    }

.visit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 35px;
}

    .visit-features span {
        display: flex;
        align-items: center;
        background: #fff;
        padding: 10px 18px;
        border-radius: 40px;
        color: #2C4021;
        font-weight: 600;
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

    .visit-features i {
        color: #D4AF37;
        margin-right: 10px;
        font-size: 18px;
    }

/* Right Card */

.visit-box {
    background: #fff;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

    .visit-box h3 {
        color: #2C4021;
        margin-bottom: 15px;
    }

    .visit-box p {
        color: #777;
        margin-bottom: 30px;
    }

/* Buttons */

.btn-premium {
    display: block;
    background: #2C4021;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
    margin-bottom: 15px;
}

    .btn-premium:hover {
        background: #D4AF37;
        color: #fff;
        text-decoration: none;
    }

.btn-premium-outline {
    display: block;
    border: 2px solid #2C4021;
    color: #2C4021;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

    .btn-premium-outline:hover {
        background: #2C4021;
        color: #fff;
        text-decoration: none;
    }

/* Mobile */

@media(max-width:991px) {

    .visit-premium {
        padding: 80px 0;
    }

    .visit-card {
        padding: 35px;
    }

        .visit-card h2 {
            font-size: 34px;
        }

    .visit-box {
        margin-top: 40px;
    }
}