:root {
    --green: #149A52;
    --green-light: #149a52;
    --black: #16241c;
    --white: #fff;

    --bg: #ffffff;
    --bg-soft: #f3f9f5;
    --panel: #eef6f0;
    --panel-2: #ffffff;
    --green: #0ca854;
    --green-bright: #149a52;
    --green-dim: #e3f7ea;
    --text: #16241c;
    --grey: #57655c;
    --grey-dim: #98a59d;
    --line: rgba(22, 36, 28, 0.10);
    --maxw: 1240px;
    --shadow-sm: 0 10px 26px -16px rgba(22, 36, 28, .16);
    --shadow-md: 0 24px 46px -20px rgba(22, 36, 28, .18);
    --glow: 0 0 0 6px rgba(23, 168, 82, .12);

}


html {
    scroll-behavior: smooth;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    min-height: 100%;
    background-color: white;
}

body {
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    color: #16241c;
    background-color: white;
    padding: 0px;
    margin: 0px;
    min-height: 100vh;
}



p {
    color: #16241c;
}

a {
    color: #16241c;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--green);
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-style: normal;
    color: #16241c;
}

h1 {
    font-size: 60px;
    font-weight: 600;
}

h2 {
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
}

h3 {
    font-size: 40px;
    font-weight: 600;
}


::-moz-selection {
    background-color: var(--green);
    color: white;
}

::selection {
    background-color: var(--green);
    color: white;
}

body::-webkit-scrollbar {
    width: 4px;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px white;
    box-shadow: inset 0 0 6px white;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--green);
    outline: 1px solid var(--green);
}


.section {
    padding: 100px 0px;
}

.image-white {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
    -webkit-filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
}

.image-green {
    filter: invert(42%) sepia(54%) saturate(1363%) hue-rotate(110deg) brightness(90%) contrast(89%);
    -webkit-filter: invert(42%) sepia(54%) saturate(1363%) hue-rotate(110deg) brightness(90%) contrast(89%);
}

.image-gray {
    filter: invert(52%) sepia(7%) saturate(193%) hue-rotate(169deg) brightness(92%) contrast(86%);
    -webkit-filter: invert(52%) sepia(7%) saturate(193%) hue-rotate(169deg) brightness(92%) contrast(86%);
}


@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }
}


.font-100 {
    font-weight: 100 !important;
}

.font-200 {
    font-weight: 200 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-700 {
    font-weight: 700 !important;
}

.font-800 {
    font-weight: 800 !important;
}

.font-900 {
    font-weight: 900 !important;
}


.text-green {
    color: var(--green) !important;
}

.text-light-green {
    color: #9db857 !important;
}

.text-white {
    color: #fff !important;
}

/* backgrounds */
.bg-white {
    background-color: #ffffff !important;
}

.bg-gray {
    background-color: #f0f5ef !important;
}

.bg-gradient-footer {
    background-image: linear-gradient(to bottom, #0a4a34f0, #0f2f1d);
}

.bg-green {
    background-color: var(--green) !important;
}

.bg-green-light {
    background: linear-gradient(180deg, #eef6f0 0%, #eaf6ee 55%, #eef6f0 100%);
}

.footer-section {
    padding-bottom: 50px;
}

.footer-bottom {
    background-color: #0f2f1d;
}



.border-radius-6 {
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    overflow: hidden;
}

.border-radius-10 {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.border-radius-15 {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.border-radius-20 {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    overflow: hidden;
}

.border-radius-50 {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
}

.form-border-red {
    border: 2px solid red !important;
}

/* Buttons */

button:focus {
    outline: 0;
    box-shadow: none;
}

.btn {
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    position: relative;
    overflow: hidden !important;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    padding: 12px 40px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.1px;
    font-weight: 500;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: white;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 1;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-green {
    background-color: var(--green) !important;
    color: white !important;
}

.btn-outline-green {
    background-color: transparent !important;
    color: var(--green) !important;
    border-color: var(--green) !important;
}



.btn-light-green {
    background-color: #9db857 !important;
    color: white !important;
}

.btn-registration {
    background: var(--green) !important;
    color: #fff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 10px 18px;
    border-radius: 100px;
    transition: all .3s;
    flex-shrink: 0;
}

.btn-outline-registration {
    background: none;
    border: 1px solid var(--line) !important;
    color: var(--text) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 10px 18px;
    border-radius: 100px;
    transition: all .3s;
    flex-shrink: 0;
}


.splide__slide {

    width: 100%;

}

.splide__slide img {

    width: 100%;

}



.btn-outline-white {
    background-color: transparent !important;
    color: var(--white) !important;
    border: 1px solid var(--white) !important;
    color: white !important;
}


/* Banner */
.banner-section {
    margin-top: 80px;
    height: calc(100vh - 80px);
}

.home-banner-wrapper {
    position: relative;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.home-banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transform: scale(1);
}

/* Gradient */
.home-banner-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(60deg, rgb(1 31 14) 0%, #4caf5075 80%, rgb(139 195 74 / 1%) 100%);
    z-index: 1;
}

/* Content */
.home-banner-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.home-banner-content p.lead {
    font-size: 16px;
}

.home-banner-content h2 {
    font-size: 46px;
    line-height: 47px;
}

/* Zoom effect */
.home-banner-wrapper.is-active img {
    animation: bannerZoom 8s ease forwards;
}

@keyframes bannerZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

/* Counter Starts */
.stats-band {
    background: linear-gradient(180deg, var(--panel) 0%, #eaf6ee 55%, var(--panel) 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stats-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 34px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    padding: 0 20px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.stat:last-child {
    border-right: none;
}

.stat .num {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    color: var(--green-bright);
    font-variant-numeric: tabular-nums;
    display: inline-block;
    text-shadow: 0 0 0 rgba(23, 168, 82, 0);
    transition: text-shadow .15s ease;
}

.stat .num.counting {
    animation: numPulse .55s ease-in-out infinite;
    text-shadow: 0 0 18px rgba(23, 168, 82, .55);
}

.stat .num.done {
    animation: numDone .5s cubic-bezier(.2, .8, .2, 1);
}

@keyframes numPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-2px) scale(1.05);
    }
}

@keyframes numDone {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.18);
        text-shadow: 0 0 26px rgba(23, 168, 82, .8);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 0 rgba(23, 168, 82, 0);
    }
}

.stat .lbl {
    font-size: 11.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--grey);
    margin-top: 8px;
}

@media(prefers-reduced-motion:reduce) {

    .stat .num.counting,
    .stat .num.done {
        animation: none;
    }
}

.scroll-cue {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-cue .dot-track {
    width: 2px;
    height: 38px;
    background: rgba(255, 255, 255, .25);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.scroll-cue .dot-track::after {
    content: '';
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--green-bright);
    animation: scrollDot 1.8s ease infinite;
}

@keyframes scrollDot {
    0% {
        top: -40%;
    }

    100% {
        top: 100%;
    }
}

/* Counter Ends */



/* default visible state */
.home-banner-content {
    opacity: 1;
    transform: translateY(0);
}

/* animate only when active */
#home-carousel .owl-item.active .home-banner-content {
    animation: bannerFadeUp 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes bannerFadeUp {
    from {
        opacity: 0;
        transform: translateY(-80px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Intro  */
.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 700;
    margin-bottom: 5px;
}

.section-title {
    font-size: clamp(20px, 2.6vw, 32px);
    letter-spacing: .02em;
    margin-bottom: 18px;
}


.section-title em {
    font-style: normal;
    color: var(--green-light);
}

.home-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission */
.mission-box {
    min-height: 319px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.mission-icon {
    margin-bottom: 27px;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.mission-box h5 {
    font-size: 23px;
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.modal.fade {
    backdrop-filter: blur(16px);
}

.search-icon {
    transition: all 0.3s ease;
}

.search-icon.image-white {
    filter: brightness(0) invert(1);
}

.navbar.bg-white,
.navbar.bg-transparent {
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.nav-link {
    color: var(--black);
    font-size: 13px;
}




/* Service Starts */
.offer-card {
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .4s ease;
    box-shadow: var(--shadow-sm);
}

.offer-card:hover {
    border-color: rgba(23, 168, 82, .45);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.offer-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.offer-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 18, 12, 0) 55%, rgba(6, 18, 12, .5) 100%);
    pointer-events: none;
}

.offer-card:hover .offer-img img {
    transform: scale(1.08);
}

.offer-num {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--green-bright);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px -8px rgba(0, 0, 0, .35);
}

.offer-txt {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.offer-txt-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.offer-txt h4 {
    font-size: 15.5px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
    line-height: 1.4;
}

.offer-txt p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.65;
    margin: 0;
}

.offer-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-bright);
    transition: all .3s;
}

.offer-card:hover .offer-arrow {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    transform: rotate(45deg);
}

/* Service Ends */

/* Director Starts */
.director-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.director-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: border-color .4s ease;
    box-shadow: var(--shadow-sm);
}

.director-img:hover {
    border-color: rgba(23, 168, 82, .4);
}

.director-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    filter: grayscale(10%);
    transition: transform .6s ease, filter .6s ease;
}

.director-img:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.director-txt .quote-mark {
    font-size: 64px;
    color: var(--green-bright);
    font-weight: 800;
    line-height: .6;
    margin-bottom: 20px;
    display: block;
}

.director-txt p.msg {
    font-size: 19px;
    line-height: 1.85;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 28px;
}

.director-txt .who b {
    display: block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.director-txt .who span {
    color: var(--grey);
    font-size: 13px;
}

@media(max-width:1080px) {

    .why-grid,
    .activities-grid,
    .video-grid,
    .experts-grid,
    .cards-3,
    .cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .news-grid,
    .director-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ev-card {
        flex: 0 0 calc(50% - 11px);
    }

    .director-grid {
        direction: ltr;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Director Ends */


/* Team Starts*/
.expert-card {
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px 26px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    transition: all .4s ease;
    box-shadow: var(--shadow-sm);
}

.expert-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 168, 82, .4);
    box-shadow: var(--shadow-md);
}

.expert-card-photo {
    position: relative;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--green-dim);
    margin-bottom: 18px;
    transition: border-color .4s ease;
}

.expert-card:hover .expert-card-photo {
    border-color: var(--green-bright);
}

.expert-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.expert-card-num {
    position: absolute;
    bottom: -2px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--green-bright), var(--green));
    border: 2px solid var(--panel-2);
    box-shadow: 0 6px 14px -6px rgba(12, 168, 84, .6);
}

.expert-card-name {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.expert-card-role {
    font-size: 12.5px;
    color: var(--grey);
    line-height: 1.55;
    max-width: 270px;
    margin-bottom: 14px;
}

.expert-card-tag {
    display: inline-flex;
    align-items: center;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-bright);
    background: var(--green-dim);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.expert-card-text {
    color: var(--grey);
    font-size: 13.5px;
    line-height: 1.75;
    text-align: left;
    flex: 1;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

/* Team Ends */

/* Member Section Starts */
.member-section {
    position: relative;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
    color: #ffffff;
    padding: 100px 0 96px;
    overflow: hidden;
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 94%);
}

.member-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image: repeating-linear-gradient(45deg, #ffffff 0 2px, transparent 2px 22px);
}

.member-glow {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    filter: blur(70px);
    top: -180px;
    right: -100px;
    pointer-events: none;
}

.member-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
}

.member-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    color: #fff;
}

.member-section h2 {
    color: #ffffff;
    font-size: clamp(24px, 3.6vw, 38px);
    margin-bottom: 18px;
}

.member-section p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    opacity: .92;
    margin-bottom: 34px;
}

.member-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.member-section .btn-solid {
    background: #ffffff;
    color: var(--green);
}

.member-section .btn-solid:hover {
    background: #f0fbf4;
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .2);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, .55);
    color: #fff !important;
    transition: all .35s cubic-bezier(.2, .8, .2, 1);
}

.btn-ghost:hover {
    border-color: #fff !important;
    background: rgba(255, 255, 255, .14);
    transform: translateY(-3px);
}

.member-points {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .3px;
    opacity: .92;
}

.member-points i {
    margin-right: 6px;
}

@media(max-width:560px) {
    .member-actions {
        flex-direction: column;
        width: 100%;
    }

    .member-actions .btn,
    .member-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .member-points {
        gap: 12px 18px;
        font-size: 11px;
    }
}

/* Member Section Ends */

/* Gallery Starts */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    background: var(--panel);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.big {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 18, 12, 0) 45%, rgba(6, 18, 12, .72) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 14px;
    opacity: 0;
    transition: opacity .35s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: var(--green-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

@media(max-width:1080px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 160px;
    }
}

@media(max-width:760px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 135px;
        gap: 10px;
        margin-top: 36px;
    }

    .gallery-item.wide {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(180deg, rgba(6, 18, 12, 0) 60%, rgba(6, 18, 12, .55) 100%);
        padding: 10px;
    }

    .gallery-overlay img {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
}

/* Gallery Ends */

/* News Starts */

.media-img.news-img {
    height: 500px !important;
}

.media-img.news-img img {
    height: 500px !important;
}

.news-media-card {
    height: auto !important;
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 60px;
}

.media-card,
.blog-card {
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    transition: all .4s ease;
    box-shadow: var(--shadow-sm);
    height: 360px;
}

.blog-card {
    height: auto;
}

.media-card:hover,
.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 168, 82, .4);
    box-shadow: var(--shadow-md);
}

.media-img {
    overflow: hidden;
    height: 250px;
}


.media-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    object-position: top;
}

.media-card:hover .media-img img,
.blog-card:hover .media-img img {
    transform: scale(1.08);
}

.media-tag {
    display: inline-block;
    font-size: 10.5px;
    color: var(--green-bright);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 18px 20px 0;
}

.media-card h5,
.blog-card h5 {
    padding: 8px 20px 20px;
    font-size: 14.5px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5;
}

/* News ENds */

/* Testimonials Starts */
.testimonials {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.testi-card {
    background: linear-gradient(180deg, var(--panel) 0%, #eaf6ee 55%, var(--panel) 100%);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all .4s ease;
    box-shadow: var(--shadow-sm);
}

.testi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 168, 82, .4);
    box-shadow: var(--shadow-md);
}

.testi-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--green-dim);
    transition: border-color .4s ease;
}

.testi-card:hover .testi-avatar {
    border-color: var(--green-bright);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-name {
    font-size: 14.5px;
    font-weight: 700;
}

.testi-role {
    font-size: 12px;
    color: var(--grey);
    margin-top: 2px;
}

.testi-stars {
    color: var(--green-bright);
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.testi-quote-mark {
    font-size: 36px;
    color: var(--green-bright);
    opacity: .5;
    font-weight: 800;
    line-height: .5;
    margin-bottom: 10px;
}

.testi-text {
    color: var(--text);
    font-size: 14.5px;
    line-height: 1.75;
    flex: 1;
}

/* Testimonials Ends */

/* Subscribe Starts */
.newsletter {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.news-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    max-width: 440px;
}

.news-form input {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px 18px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .3s;
}

.news-form input:focus {
    border-color: var(--green-bright);
}

.news-form .btn {
    align-self: flex-start;
    border: none;
}

.news-img {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition: border-color .4s ease;
    box-shadow: var(--shadow-sm);
}

.news-img:hover {
    border-color: rgba(23, 168, 82, .4);
}

.news-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform .6s ease;
}

.news-img:hover img {
    transform: scale(1.06);
}

/* Subscribe Ends */

/* Popup Starts */

/* ===== CONTACT US ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 50px;
    margin-top: 50px;
    align-items: start;
}

.contact-form {
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-row.name-age {
    grid-template-columns: 2.2fr 1fr;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.form-field label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .4px;
    color: #fff;
}

.form-field input,
.form-field textarea {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .3s;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--green-bright);
}

.contact-form .btn {
    align-self: flex-start;
    border: none;
    margin-top: 6px;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: var(--shadow-sm);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ci-ico {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-dim);
    color: var(--green-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-info-item b {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info-item span {
    font-size: 13.5px;
    color: var(--grey);
    line-height: 1.6;
}

.contact-info-item span a {
    color: var(--grey);
    transition: color .3s;
}

.contact-info-item span a:hover {
    color: var(--green-bright);
}

.contact-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    height: 260px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media(max-width:1080px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-map {
        height: 300px;
    }
}

@media(max-width:640px) {
    .contact-form {
        padding: 26px 22px;
    }

    .contact-form-row,
    .contact-form-row.name-age {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info-card {
        padding: 22px;
    }

    .contact-map {
        height: 220px;
    }

    .contact-form .btn {
        align-self: stretch;
        justify-content: center;
    }
}

/* honeypot â€” invisible to real visitors, still reachable by bots */
.hp-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

/* submit status / thank-you message */
.form-status {
    display: none;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.55;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
}

.form-status.show {
    display: flex;
}

.form-status.success {
    background: var(--green-dim, #e9f9ef);
    border-color: rgba(23, 168, 82, .35);
    color: var(--green, #149a52);
}

.form-status.error {
    background: #fdecec;
    border-color: rgba(214, 59, 59, .35);
    color: #c0392b;
}

.form-status i {
    margin-top: 2px;
}

.contact-form .btn[disabled] {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

.contact-form .btn .btn-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.reg-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(8, 20, 13, .45);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    backdrop-filter: blur(10px) saturate(120%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility 0s linear .4s;
}

.reg-popup-overlay.open {
    opacity: 1;
    visibility: visible;
    transition: opacity .4s ease, visibility 0s linear 0s;
}

body.reg-popup-locked {
    overflow: hidden;
}

.reg-popup-card {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    display: flex;
    align-items: stretch;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 22px;
    box-shadow: 0 30px 70px -24px rgba(8, 20, 13, .45), 0 0 0 1px rgba(255, 255, 255, .25) inset;
    transform: translateY(24px) scale(.96);
    opacity: 0;
    transition: transform .45s cubic-bezier(.2, .9, .25, 1.1), opacity .35s ease;
}

.reg-popup-overlay.open .reg-popup-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.reg-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    z-index: 5;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .6);
    color: var(--text);
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px -4px rgba(8, 20, 13, .35);
    transition: background .2s, transform .2s;
}

.reg-popup-close:hover {
    background: var(--green-dim);
    transform: rotate(90deg);
}

/* ---- Visual / image panel (uses the FIT Gurugram event photo as a background) ---- */
.reg-popup-visual {
    position: relative;
    flex: 0 0 42%;
    min-height: 100%;
    background-color: var(--text);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 22px 0 0 22px;
    overflow: hidden;
}

.reg-popup-visual-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 20, 13, .15) 0%, rgba(8, 20, 13, .55) 68%, rgba(8, 20, 13, .86) 100%),
        linear-gradient(0deg, rgba(12, 168, 84, .35), rgba(12, 168, 84, 0) 55%);
}

.reg-popup-visual-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px 24px;
    color: #fff;
    z-index: 2;
}

.reg-popup-visual-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 6px 12px;
    border-radius: 99px;
    margin-bottom: 12px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.reg-popup-visual-content h4 {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .35);
}

.reg-popup-visual-points {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.reg-popup-visual-points li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, .92);
}

.reg-popup-visual-points i {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Form panel ---- */
.reg-popup-body {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 36px 32px 30px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.9)),
        url("../../../../uploads/2026/07/hospital-image.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.reg-popup-body .eyebrow {
    justify-content: center;
    margin-bottom: 10px;
}

.reg-popup-body h3 {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: .2px;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #fff
}

.reg-popup-sub {
    font-size: 13px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 22px;
}

.reg-popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.reg-popup-form .contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.reg-popup-form .btn {
    width: 100%;
    justify-content: center;
    border: none;
}

.reg-popup-later {
    background: none;
    border: none;
    color: var(--grey);
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 2px;
    align-self: center;
}

.reg-popup-later:hover {
    color: var(--text);
}

/* ---- Responsive: tablet â€” stack visual on top, shorter banner ---- */
@media(max-width:860px) {
    .reg-popup-card {
        max-width: 520px;
        flex-direction: column;
    }

    .reg-popup-visual {
        flex: 0 0 200px;
        min-height: 200px;
        border-radius: 22px 22px 0 0;
    }

    .reg-popup-visual-content h4 {
        font-size: 17px;
        margin-bottom: 10px;
    }
}

/* ---- Responsive: mobile â€” bottom-sheet, compact image strip ---- */
@media(max-width:640px) {
    .reg-popup-overlay {
        padding: 0;
        align-items: flex-end;
    }

    .reg-popup-card {
        max-width: 100%;
        max-height: 92vh;
        border-radius: 22px 22px 0 0;
        flex-direction: column;
        transform: translateY(100%);
    }

    .reg-popup-overlay.open .reg-popup-card {
        transform: translateY(0);
    }

    .reg-popup-visual {
        flex: 0 0 150px;
        min-height: 150px;
        border-radius: 22px 22px 0 0;
    }

    .reg-popup-visual-badge {
        font-size: 10.5px;
        padding: 5px 10px;
        margin-bottom: 8px;
    }

    .reg-popup-visual-content {
        padding: 16px 20px;
    }

    .reg-popup-visual-content h4 {
        font-size: 15px;
        margin-bottom: 0;
    }

    .reg-popup-visual-points {
        display: none;
    }

    .reg-popup-body {
        padding: 26px 22px 24px;
    }

    .reg-popup-form .contact-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reg-popup-body h3 {
        font-size: 19px;
    }
}

@media (max-width: 767px) {
    .reg-popup-visual {
        display: none !important;
    }
}

@media(max-width:360px) {
    .reg-popup-visual {
        flex: 0 0 120px;
        min-height: 120px;
    }
}

@media(prefers-reduced-motion:reduce) {

    .reg-popup-card,
    .reg-popup-overlay {
        transition: none !important;
    }
}



/* Popup Ends */







/* Join */
.join-section {
    position: relative;
}

.join-content {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

/* Event */
.event-card {
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    flex: 0 0 calc(33.333% - 16px);
    background: var(--panel-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: visible;
    transition: all .4s ease;
    box-shadow: var(--shadow-sm);
}

.event-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 168, 82, .45);
    box-shadow: var(--shadow-md);
}

.event-image {
    position: relative;
    height: 250px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.08);
}

.event-date {
    position: absolute;
    bottom: -5px;
    left: 16px;
    z-index: 2;
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    line-height: 1.1;
    min-width: 46px;
    box-shadow: 0 10px 22px -8px rgba(12, 168, 84, .5);
}

.event-date.muted {
    background: var(--panel-2);
    color: var(--text);
    border: 1px solid var(--line);
}

.event-date b {
    display: block;
    font-size: 17px;
    font-weight: 800;
}

.event-date span {
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-body {
    padding: 32px 20px 20px;
}

.event-body h4 {
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
    line-height: 1.4;
    min-height: 42px;
}

.event-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-pill {
    font-size: 11px;
    font-weight: 700;
    color: var(--green-light);
    background: var(--green-dim);
    border-radius: 100px;
    padding: 5px 11px;
}

.event-rating {
    margin-left: auto;
    font-size: 12.5px;
    color: var(--grey);
    font-weight: 600;
}

.event-category {
    margin-top: 12px;
    font-size: 13px;
    color: var(--grey);
}

.event-divider {
    height: 1px;
    background: var(--line);
    margin: 16px 0;
}

.event-status {
    font-size: 12px;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 7px;
}

.event-status b {
    color: var(--text);
}

.event-status.completed {
    color: var(--green-light);
    font-weight: 600;
}

.event-status .event-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* ===== EVENT CARD — HOVER DETAILS POPUP ===== */
.event-view-hint {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    background: rgba(15, 26, 19, .55);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .2px;
    padding: 6px 11px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 5px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .3s ease, transform .3s ease;
}

.event-card:hover .event-view-hint,
.event-card:focus-within .event-view-hint {
    opacity: 1;
    transform: translateY(0);
}

.event-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(190deg, rgba(10, 22, 15, .35) 0%, rgba(7, 16, 11, .94) 78%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
}

.event-card:hover .event-overlay,
.event-card:focus-within .event-overlay,
.event-card.is-active .event-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .35s ease, transform .35s ease, visibility 0s;
}

.event-overlay-content {
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    padding: 22px 44px 20px 20px;
    -ms-overflow-style: none;
    scrollbar-width: thin;
}

.event-overlay-content::-webkit-scrollbar {
    width: 4px;
}

.event-overlay-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .3);
    border-radius: 10px;
}

.event-overlay-title {
    color: #fff;
    font-size: 15.5px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 9px;
    letter-spacing: .1px;
}

.event-overlay-desc {
    color: rgba(255, 255, 255, .86);
    font-size: 12.5px;
    line-height: 1.65;
    font-weight: 400;
}

.event-overlay-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s ease;
}

.event-overlay-close:hover {
    background: rgba(255, 255, 255, .25);
}

.event-card.is-active .event-overlay-close {
    display: flex;
}

@media(hover:none) {
    .event-view-hint {
        opacity: 1;
        transform: translateY(0);
    }

    .event-card.is-active .event-view-hint {
        opacity: 0;
    }
}

.event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    gap: 10px;
}

.event-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

.event-price span {
    font-size: 11px;
    color: var(--grey);
    font-weight: 500;
}

.event-price.muted {
    color: var(--grey);
    font-size: 13px;
    font-weight: 600;
}

.event-location {
    margin-top: 14px;
    font-size: 12px;
    color: var(--grey-dim);
}

/* Events Ends */




/* Blog */
.blog-box {
    position: relative;
}

.blog-box .blog-image {
    height: 255px;
    object-fit: cover;
    object-position: center;
}

.blog-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    background-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.592) 100%);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.blog-content:hover {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(16px);
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.blog-content .more-icon {
    width: auto !important;
}

/* Testimonials Starts */
.testi-box {
    padding: 30px;
    text-align: center;
}

.testi-box p {
    color: white !important;
}

.testi-box h5 {
    font-size: 25px;
}

.testi-box img {
    height: 40px;
    width: auto !important;
    margin: 0 auto;
    margin-top: 40px;
}

/* Testimonials Ends */


/* Footer Starts */
footer {
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    width: 200px;
    height: 50px;
    transform: translateX(-50%);
    background: #9db857;
    filter: blur(22px);
    -webkit-filter: blur(38px);
    opacity: 0.5;
}

footer::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    width: 12%;
    height: 8px;
    transform: translateX(-50%);
    background: #9db857;
    filter: blur(22px);
    -webkit-filter: blur(22px);
    opacity: 0.8;
}

.footer-content-wrapper h5,
.footer-content-wrapper .h5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
}

.footer-content-wrapper h5::after,
.footer-content-wrapper .h5::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    width: 50%;
    height: 1px;
    background: linear-gradient(to right,
            #3ddf83 0%,
            #1ec466 20%,
            var(--green-light) 100%);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.footer-links {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: #3c414d;
}

.footer-links li a img {
    height: 16px;
}

.social-icons {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.social-icons li {
    margin-right: 8px
}


.whatsapp-sticky {
    position: fixed;
    bottom: 40px;
    right: 20px;
    padding: 10px 30px;
    background-color: white !important;
    border: 1px solid var(--green) !important;
    color: var(--green) !important;
    z-index: 200;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}



.footer-bottom {
    position: relative;
    background: #0f2f1d;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 30%;
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to right,
            transparent,
            #9db857,
            transparent);
}

/* Glow only in the center */
.footer-bottom::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    width: 12%;
    height: 8px;
    transform: translateX(-50%);
    background: #9db857;
    filter: blur(22px);
    -webkit-filter: blur(22px);
    opacity: 0.8;
}

/* Activity Starts */
/* ===== REVEAL ANIM ===== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal-scale.in {
    opacity: 1;
    transform: scale(1);
}

/* ===== ACTIVITIES ===== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.act-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 305px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.act-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
    position: absolute;
    inset: 0;
}

.act-card:hover img {
    transform: scale(1.12);
}

.act-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 18, 12, .96) 15%, rgba(6, 18, 12, .4) 55%, transparent 80%);
}

.act-bib {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--green-bright);
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(23, 168, 82, .4);
    padding: 5px 12px;
    border-radius: 100px;
}

.act-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.act-body h4 {
    font-size: 17px;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
}

.act-body p {
    color: rgba(255, 255, 255, .82);
    font-size: 13.5px;
    line-height: 1.65;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all .4s ease;
}

.act-card:hover .act-body p {
    max-height: 160px;
    opacity: 1;
    margin-top: 4px;
}

/* Activity Ends */

/* Sponcer Starts */
.sponcer-section {
    background-image: url('../../../../uploads/2026/06/sponcer-bg-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.sponcer-content {
    backdrop-filter: blur(16px);
    background-color: #ffffffcf;
}

/* Sponcer Ends */


.splide__pagination__page.is-active {
    box-shadow: 0px 0px 6px 2px var(--green-light) !important;
}

/* Video Starts */
.splide__pagination {
    bottom: -30px;
}

.splide__pagination__page {
    background: var(--green-light) !important;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 60px;
}

.video-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--panel-2);
    transition: transform .4s ease, border-color .4s ease;
    box-shadow: var(--shadow-sm);
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(23, 168, 82, .4);
}

.video-frame {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}


.video-card h5 {
    padding: 18px 20px;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    line-height: 1.5;
    min-height: 78px;
}




/* Video Ends */


.mt-0 {
    margin-top: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}


.sticky-side-btn {
    background-color: red !important;
    position: fixed;
    top: 50%;
    right: 110px;
    transform: translate(50%, -50%) rotate(-90deg);
    transform-origin: right center;
    z-index: 9999;
    touch-action: manipulation;
    white-space: nowrap;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    -webkit-transform: translate(50%, -50%) rotate(-90deg);
    -moz-transform: translate(50%, -50%) rotate(-90deg);
    -ms-transform: translate(50%, -50%) rotate(-90deg);
    -o-transform: translate(50%, -50%) rotate(-90deg);
}



/* ===== MOBILE HERO â€” keeps the same left-text / right-subject composition as desktop ===== */
@media(max-width:760px) {
    header {
        padding: 14px 0;
    }

    header.scrolled {
        padding: 10px 0;
    }

    .logo img {
        height: 34px;
    }
}

@media(max-width:760px) {

    .navlinks,
    .nav-cta .btn-outline {
        display: none;
    }

    .burger {
        display: flex;
    }

    .section-pad {
        padding: 70px 0;
    }

    .why-grid,
    .activities-grid,
    .video-grid,
    .experts-grid,
    .cards-3,
    .cards-4 {
        grid-template-columns: 1fr;
    }

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .ev-card {
        flex: 0 0 85%;
    }

    .ev-head {
        align-items: flex-start;
    }

    .ev-nav {
        display: none;
    }

    .ev-overlay-content {
        padding: 18px 40px 16px 16px;
    }

    .ev-overlay-title {
        font-size: 14.5px;
    }

    .ev-overlay-desc {
        font-size: 12px;
    }

    .about-imgs .tag {
        position: static;
        margin-top: 18px;
        display: inline-block;
    }

    .whatsapp-fab {
        display: none;
    }

    .hero {
        min-height: 100svh;
        padding-top: 88px;
        padding-bottom: 56px;
    }

    /* on a tall narrow screen "cover" crops the sides â€” bias the crop
       toward the right so the subject in the banner stays visible,
       same as it is on desktop, instead of showing a plain centre slice */
    .hero-slide {
        background-position: 78% center;
    }

    .hero-gradient {
        background: linear-gradient(100deg, rgba(8, 26, 17, .94) 32%, rgba(8, 26, 17, .7) 58%, rgba(8, 26, 17, .32) 88%);
    }

    .hero-dots {
        right: 16px;
    }

    .hero h1 {
        font-size: clamp(24px, 6.4vw, 32px);
        letter-spacing: .01em;
    }

    .hero-sub {
        font-size: 15px;
        margin-top: 18px;
    }

    .hero-actions {
        margin-top: 28px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin-top: 36px;
        row-gap: 22px;
        column-gap: 16px;
    }

    .stat {
        padding-right: 16px;
        border-right: 1px solid var(--line);
    }

    .stat:nth-child(2n) {
        border-right: none;
        padding-right: 0;
    }

    .stat .num {
        font-size: clamp(20px, 6vw, 28px);
    }

    .stat .lbl {
        font-size: 10px;
        letter-spacing: .6px;
    }
}

@media(max-width:420px) {
    .hero-stats {
        gap: 18px 10px;
    }

    .stat .num {
        font-size: clamp(18px, 6.5vw, 24px);
    }

    .stat .lbl {
        font-size: 9px;
        letter-spacing: .3px;
    }
}






@media (max-width: 575.98px) {
    body {
        font-size: 14px;
    }

    .home-banner-content p.lead {
        font-size: 16px;
    }

    .home-banner-content h2 {
        font-size: 39px;
        line-height: 39px;
    }

    .home-banner-content {
        position: absolute;
        bottom: 30px;
        left: 0px;
        padding: 20px;
    }

    h2 {
        font-size: 30px;
        font-weight: 600;
        text-transform: uppercase;
    }


    .join-section img {
        height: 400px;
        object-fit: cover;
        object-position: center;
    }

    .join-content {
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
    }

    .join-content h2 {
        font-size: 24px;
        margin-bottom: 15px !important;
    }

    .join-content p {
        font-size: 14px;
    }

    .section {
        padding: 40px 0px;
    }

    .btn {
        padding: 13px 40px;
        font-size: 12px;
    }

    .mission-box {
        min-height: 215px;
    }

    .home-banner-wrapper img {
        object-position: right;
    }

    .mobile-menu-btn span {
        background: var(--green)
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}