*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --green: #80bf4a;
    --green-light: #80bf4a;
    --green-dark: #63923a;
    --dark: #0E0E0E;
    --dark2: #1A1A1A;
    --dark3: #2A2A2A;
    --cream: #F8F4EE;
    --cream2: #F0E8DA;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --ff-serif: 'Cormorant Garamond', Georgia, serif;
    --ff-sans: 'Jost', sans-serif;
}

html {
    scroll-behavior: smooth
}


/* =========================
   SIDE SCROLLBAR
========================= */

  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-track {
    background: transparent;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #01c901, #0d790d);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0d790d, #01c901);
  }


/* =========================
   TEXT SELECTION
========================= */

::selection {
    background: var(--green);
    color: #fff;
}

::-moz-selection {
    background: var(--green);
    color: #fff;
}

body {
    font-family: var(--ff-sans);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}



/* ── UTILITIES ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.green {
    color: var(--green)
}

.tag {
    font-size: .9rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 8px
}

.section-title {
    font-family: var(--ff-serif);
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--ff-sans);
    font-size: .8rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    border: none
}

.btn-green {
    background: var(--green);
    color: var(--white)
}

.btn-green:hover {
    background: var(--green-dark)
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--green) !important;
    color: var(--green) !important
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white) !important
}

.divider {
    width: 48px;
    height: 2px;
    background: var(--green);
    margin: 16px 0 24px
}

/* ================= NAVBAR ================= */

/* ================= NAVBAR ================= */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 20px 0;
    transition: all .4s ease;
}

nav.scrolled {
    background: rgba(14, 14, 14, .95);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: .3s;
}

nav.scrolled .logo img {
    height: 50px;
}

/* DESKTOP MENU */

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: rgba(255, 255, 255, .85);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s;
}

.nav-links a:hover {
    color: var(--green);
}

/* CTA */

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    color: var(--green);
    font-size: .85rem;
    font-weight: 500;
}


/* ================= DESKTOP DROPDOWN ================= */

.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 10px;
    transition: .35s;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 140%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);

    min-width: 240px;
    padding: 12px 0;
    margin: 0;

    background: rgba(14, 14, 14, .98);
    backdrop-filter: blur(10px);

    border-top: 2px solid var(--green);

    list-style: none;

    opacity: 0;
    visibility: hidden;

    transition: .35s ease;
    z-index: 999;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 13px 20px;
    font-size: .74rem;
    color: rgba(255, 255, 255, .8);
    transition: .3s;
    text-align: center;
}

.dropdown-menu li a:hover {
    color: var(--green);
    background: rgba(128, 191, 74, .1);
}


/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
}


/* ================= MOBILE MENU ================= */

.mobile-menu {

    position: fixed;
    top: 0;
    right: -100%;

    width: 320px;
    max-width: 100%;
    height: 100vh;

    background: #0e0e0e;

    padding: 80px 25px;

    overflow-y: auto;

    transition: .45s ease;

    z-index: 99999;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;

    border: none;
    background: none;

    color: #fff;

    font-size: 28px;
    cursor: pointer;
}


/* MOBILE LINKS */

.mobile-menu a {

    display: block;

    padding: 14px 0;

    color: #fff;

    text-decoration: none;

    font-size: .82rem;

    letter-spacing: .08em;

    text-transform: uppercase;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.mobile-menu a:hover {
    color: var(--green);
}


/* MOBILE SUBMENU */

.mobile-menu-item {
    width: 100%;
}

.mobile-sub-links {

    max-height: 0;
    overflow: hidden;

    padding-left: 15px;

    transition: max-height .4s ease;
}

.mobile-sub-links.active {
    max-height: 250px;
}

.mobile-sub-links a {

    font-size: .72rem;

    color: rgba(255, 255, 255, .7);

    padding: 10px 0;

    border: none;

}


/* ================= RESPONSIVE ================= */

@media(max-width:991px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo img {
        height: 65px;
    }

    nav.scrolled .logo img {
        height: 50px;
    }

}

@media(max-width:480px) {

    .mobile-menu {
        width: 100%;
        padding: 75px 22px;
    }

    .mobile-menu a {
        font-size: .75rem;
    }

    .mobile-sub-links a {
        font-size: .68rem;
    }

    .logo img {
        height: 55px;
    }

}

/* ── HERO SLIDER ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end
}

.hero-slides {
    position: absolute;
    inset: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease;
    background-size: cover;
    background-position: center
}

.hero-slide.active {
    opacity: 1
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .25) 60%, rgba(0, 0, 0, .1) 100%)
}

.hero-content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    z-index: 2
}

.hero-content {
    padding: 0 0 90px;
    max-width: 640px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(101, 201, 76, 0.15);
    border: 1px solid rgba(76, 201, 86, 0.4);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 24px
}

.hero-badge span {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green-light)
}

/* slide content fade */
.slide-text {
    transition: opacity .5s ease, transform .5s ease
}

.slide-text.hide {
    opacity: 0;
    transform: translateY(18px)
}

.hero h1 {
    font-family: var(--ff-serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px
}

.hero h1 em {
    font-style: italic;
    color: var(--green-light)
}

.hero p {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 440px
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

/* dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3
}

.hero-dot {
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .3s
}

.hero-dot.active {
    background: var(--green);
    width: 48px
}

/* stats */
.hero-stats {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: flex;
    background: rgba(14, 14, 14, .85);
    backdrop-filter: blur(10px)
}

.stat-item {
    padding: 24px 32px;
    border-left: 1px solid rgba(255, 255, 255, .08);
    text-align: center
}

.stat-num {
    font-family: var(--ff-serif);
    font-size: 2rem;
    color: var(--green);
    font-weight: 600;
    display: block
}

.stat-label {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-top: 4px
}

/* progress bar */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--green);
    z-index: 4;
    width: 0;
    transition: width linear
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2
}

.scroll-indicator span {
    font-size: .65rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4)
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green), transparent);
    animation: scrollAnim 2s infinite
}

@keyframes scrollAnim {

    0%,
    100% {
        opacity: 1;
        transform: scaleY(1)
    }

    50% {
        opacity: .3;
        transform: scaleY(.6)
    }
}

/* ── ABOUT ── */
.about {
    padding: 100px 0;
    background: var(--white)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.about-images {
    position: relative;
    height: 520px
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 68%;
    height: 78%;
    object-fit: cover;
    filter: brightness(.95)
}

.about-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 52%;
    height: 55%;
    object-fit: cover;
    border: 6px solid var(--white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12)
}

.about-accent {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-serif);
    font-size: 1.8rem;
    color: var(--white)
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: .95rem;
    margin-bottom: 16px
}

.about-badges {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--cream2);
    background: var(--cream)
}

.badge-icon {
    font-size: 1.4rem
}

.badge-text {
    font-size: .9rem;
    font-weight: 500;
    color: var(--dark)
}

/* ── WHY CHOOSE ── */
.why {
    padding: 100px 0;
    background: var(--dark)
}

.why-header {
    text-align: center;
    margin-bottom: 64px
}

.why-header .section-title {
    color: var(--white)
}

.why-header .divider {
    margin: 16px auto 0
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .06)
}

.why-card {
    background: var(--dark2);
    padding: 48px 32px;
    text-align: center;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform .3s
}

.why-card:hover {
    background: var(--dark3)
}

.why-card:hover::before {
    transform: scaleX(1)
}

.why-num {
    font-family: var(--ff-serif);
    font-size: 3.5rem;
    color: var(--green);
    font-weight: 600;
    line-height: 1
}

.why-sup {
    font-size: 1.2rem;
    vertical-align: super
}

.why-label {
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: 8px
}

/* ── PROJECTS ── */
/* ───────── PROJECTS ───────── */

.projects {
    padding: 100px 0;
    background: var(--cream);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-auto-rows: 280px;
    gap: 24px;
}

.project-large {
    grid-row: span 2;
}

.project-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 24px;
    cursor: pointer;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .85) 0%,
            rgba(0, 0, 0, .25) 45%,
            transparent 100%);
}

.project-info {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
}

.project-num {
    font-family: var(--ff-serif);
    font-size: 3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .18);
    line-height: 1;
}

.project-name {
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    color: var(--white);
}

.project-loc {
    margin-top: 5px;
    color: rgba(255, 255, 255, .65);
    font-size: .75rem;
    letter-spacing: .14em;
}

.project-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--green);
    color: white;
    padding: 7px 14px;
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    z-index: 2;
}

@media(max-width:991px) {

    .projects-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }

    .project-large {
        grid-row: span 1;
    }

}

@media(max-width:768px) {

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .project-name {
        font-size: 1.3rem;
    }

}

/* ── FEATURES ── */
.features {
    padding: 100px 0;
    background: var(--white)
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px
}

.feature-img {
    position: relative
}

.feature-img img,
.feature-img-bg {
    width: 100%;
    height: 460px;
    object-fit: cover;
    background: linear-gradient(135deg, #1a3a1a, #2a4a2a)
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.feature-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--cream2);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    cursor: pointer;
    transition: all .3s
}

.feature-item:hover .fi-icon {
    background: var(--green);
    color: var(--white)
}

.fi-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 1px solid var(--cream2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all .3s
}

.fi-text h4 {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px
}

.fi-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6
}

/* ── PILLARS ── */
.pillars {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden
}

.pillars::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 201, 93, 0.08), transparent 70%)
}

.pillars-header {
    text-align: center;
    margin-bottom: 64px
}

.pillars-header .section-title {
    color: var(--white)
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.pillar-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    padding: 40px 24px;
    text-align: center;
    transition: all .35s
}

.pillar-card:hover {
    background: rgba(101, 201, 76, 0.05);
    border-color: rgba(101, 201, 76, 0.25);
    transform: translateY(-4px)
}

.pillar-icon {
    font-size: 2rem;
    margin-bottom: 20px
}

.pillar-card h4 {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 10px
}

.pillar-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6
}

/* ── PARTNERS ── */
.partners {
    padding: 48px 0;
    background: var(--cream);
    border-top: 1px solid var(--cream2);
    border-bottom: 1px solid var(--cream2)
}

.partners-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap
}

.partner-logo {
    font-family: var(--ff-sans);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--text-light);
    padding: 10px 24px;
    border: 1px solid var(--cream2);
    background: var(--white);
    transition: all .3s
}

.partner-logo:hover {
    border-color: var(--green);
    color: var(--green)
}


/* ── CTA ── */
.cta {
    padding: 100px 0;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.cta h2 {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    font-weight: 300;
    margin-bottom: 16px
}

.cta p {
    color: rgba(255, 255, 255, .55);
    font-size: 1rem;
    margin-bottom: 40px
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* ── CONTACT ── */
.contact {
    padding: 80px 0 0;
    background: var(--dark2)
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.contact-col h4 {
    font-family: var(--ff-serif);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 20px
}

.contact-col p,
.contact-col a {
    font-size: 1rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.8
}

.contact-col a:hover {
    color: var(--green)
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ci {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.ci-label {
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green);
    min-width: 60px;
    padding-top: 3px
}

.ci-val {
    font-size: .85rem;
    color: rgba(255, 255, 255, .65)
}

/* ── FOOTER ── */
.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px
}

.footer-bottom p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .25)
}

.footer-links {
    display: flex;
    gap: 24px
}

.footer-links a {
    font-size: .95rem;
    color: rgba(255, 255, 255, .25);
    transition: color .3s
}

.footer-links a:hover {
    color: var(--green)
}


/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

/* ── RESPONSIVE ── */
@media(max-width:900px) {

    .about-grid,
    .features-grid,
    .testi-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .about-images {
        height: 360px
    }

    .why-grid,
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr
    }

    .project-card:first-child {
        grid-column: span 2
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .hero-stats {
        display: none
    }

    .nav-links,
    .nav-cta {
        display: none
    }

    .hamburger {
        display: flex
    }
}

@media(max-width:600px) {

    .projects-grid,
    .why-grid,
    .pillars-grid {
        grid-template-columns: 1fr
    }

    .project-card:first-child {
        grid-column: span 1
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .testi-img {
        display: none
    }

    .partners-inner {
        gap: 16px
    }
}



/* =============================================================================== */
/* =============================================================================== */
/* =============================================================================== */
/* =============================================================================== */
/* ==================================About Us===================================== */
/* =============================================================================== */
/* =============================================================================== */
/* =============================================================================== */
/* =============================================================================== */
/* =============================================================================== */




/* Section wrapper */
.kb-about__page * {
    box-sizing: border-box;
}

/* ─── SHARED UTILITIES ─── */
.kb-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.kb-about__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--ff-sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}

.kb-about__eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1.5px;
    background: var(--green);
    flex-shrink: 0;
}

.kb-about__eyebrow--center::after {
    content: '';
    display: block;
    width: 2rem;
    height: 1.5px;
    background: var(--green);
    flex-shrink: 0;
}

.kb-about__btn {
    display: inline-block;
    padding: .85rem 2.2rem;
    font-family: var(--ff-sans);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background .3s, border-color .3s, color .3s;
    text-decoration: none;
}

.kb-about__btn--green {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.kb-about__btn--green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

.kb-about__btn--dark {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}

.kb-about__btn--dark:hover {
    background: var(--dark);
    color: #fff;
}


/* ════════════════════════════════════════════
   SECTION 1 — ABOUT HERO
════════════════════════════════════════════ */
.kb-about__hero {
    position: relative;
    height: 88vh;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--dark);
}

.kb-about__hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: .42;
    transform: scale(1.05);
    animation: kbHeroZoom 9s ease-out forwards;
}

@keyframes kbHeroZoom {
    to {
        transform: scale(1);
    }
}

.kb-about__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 28%, rgba(14, 14, 14, .88) 100%);
    z-index: 1;
}

.kb-about__hero-rule {
    position: absolute;
    top: 0;
    left: 3rem;
    width: 3px;
    height: 100%;
    background: var(--green);
    opacity: .55;
    z-index: 2;
}

.kb-about__hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: 5rem;
    width: 100%;
}

.kb-about__hero-content .kb-about__eyebrow {
    color: var(--green);
    margin-bottom: 1.2rem;
}

.kb-about__hero-h1 {
    font-family: var(--ff-serif);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.kb-about__hero-h1 em {
    font-style: italic;
    color: var(--green);
}

.kb-about__hero-desc {
    font-family: var(--ff-sans);
    font-size: .97rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .68);
    max-width: 500px;
    margin-bottom: 2.2rem;
}

.kb-about__hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
    flex-wrap: wrap;
}

.kb-about__stat-num {
    display: block;
    font-family: var(--ff-serif);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--green);
    line-height: 1;
}

.kb-about__stat-label {
    font-family: var(--ff-sans);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: .3rem;
}

.kb-about__hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .35);
    font-family: var(--ff-sans);
    font-size: .62rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.kb-about__hero-scroll-line {
    width: 1px;
    height: 3.5rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .35), transparent);
    animation: kbScrollPulse 2.2s infinite;
}

@keyframes kbScrollPulse {

    0%,
    100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}


/* ════════════════════════════════════════════
   SECTION 2 — OUR STORY
════════════════════════════════════════════ */
.kb-about__story {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.kb-about__story::before {
    content: '1984';
    position: absolute;
    font-family: var(--ff-serif);
    font-size: 22vw;
    font-weight: 300;
    color: rgba(0, 0, 0, .03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
    z-index: 0;
    line-height: 1;
}

.kb-about__story-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.kb-about__story-img-wrap {
    position: relative;
}

.kb-about__story-img-wrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.kb-about__story-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 60%;
    height: 60%;
    background: var(--green);
    opacity: .1;
    z-index: -1;
}

.kb-about__story-badge {
    position: absolute;
    top: 2rem;
    left: -1.5rem;
    background: var(--dark);
    color: #fff;
    padding: 1.2rem 1.6rem;
    text-align: center;
    z-index: 2;
}

.kb-about__story-badge-yr {
    display: block;
    font-family: var(--ff-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--green);
    line-height: 1;
}

.kb-about__story-badge-lbl {
    font-family: var(--ff-sans);
    font-size: .62rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    margin-top: .3rem;
    display: block;
}

.kb-about__story-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1.6rem;
}

.kb-about__story-h2 em {
    font-style: italic;
    color: var(--green);
}

.kb-about__story-p {
    font-family: var(--ff-sans);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.kb-about__story-p strong {
    font-weight: 500;
    color: var(--text);
}

.kb-about__story-quote {
    border-left: 3px solid var(--green);
    padding: .8rem 1.5rem;
    margin: 2rem 0;
    font-family: var(--ff-serif);
    font-size: 1.28rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    background: var(--cream);
}


/* ════════════════════════════════════════════
   SECTION 3 — MISSION & VALUES
════════════════════════════════════════════ */
.kb-about__values {
    padding: 8rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.kb-about__values::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}


.kb-about__values-hdr {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.kb-about__values-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
}

.kb-about__values-h2 em {
    font-style: italic;
    color: var(--green);
}

.kb-about__values-sub {
    font-family: var(--ff-sans);
    font-size: .93rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .45);
    max-width: 480px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

.kb-about__values-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
}

.kb-about__val-card {
    padding: 3rem 2.5rem;
    background: var(--dark2);
    transition: background .3s;
    position: relative;
    overflow: hidden;
}

.kb-about__val-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}

.kb-about__val-card:hover::after {
    transform: scaleX(1);
}

.kb-about__val-card:hover {
    background: var(--dark3);
}

.kb-about__val-icon {
    width: 3rem;
    height: 3rem;
    border: 1.5px solid rgba(128, 191, 74, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.6rem;
    color: var(--green);
}

.kb-about__val-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.kb-about__val-num {
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    font-family: var(--ff-serif);
    font-size: 3.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .04);
    line-height: 1;
    pointer-events: none;
}

.kb-about__val-h3 {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: .7rem;
}

.kb-about__val-p {
    font-family: var(--ff-sans);
    font-size: .87rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .48);
}


/* ════════════════════════════════════════════
   SECTION 4 — LEADERSHIP TEAM
════════════════════════════════════════════ */
.kb-about__team {
    padding: 8rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.kb-about__team::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 42%, rgba(128, 191, 74, .07) 42%);
    pointer-events: none;
}

.kb-about__team-hdr {
    margin-bottom: 4rem;
}

.kb-about__team-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
}

.kb-about__team-h2 em {
    font-style: italic;
    color: var(--green);
}

.kb-about__team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.kb-about__team-card {
    background: #fff;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.kb-about__team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .1);
}

.kb-about__team-img {
    position: relative;
    overflow: hidden;
    height: 320px;
}

.kb-about__team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.kb-about__team-card:hover .kb-about__team-img img {
    transform: scale(1.06);
}

.kb-about__team-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(128, 191, 74, .55) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .4s;
}

.kb-about__team-card:hover .kb-about__team-img::after {
    opacity: 1;
}

.kb-about__team-body {
    padding: 1.6rem 1.8rem;
    border-top: 3px solid var(--green);
}

.kb-about__team-name {
    font-family: var(--ff-serif);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: .2rem;
}

.kb-about__team-role {
    font-family: var(--ff-sans);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .8rem;
    display: block;
}

.kb-about__team-bio {
    font-family: var(--ff-sans);
    font-size: .96rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}


/* ════════════════════════════════════════════
   SECTION 5 — MILESTONES TIMELINE
════════════════════════════════════════════ */
.kb-about__timeline-sec {
    padding: 8rem 0;
    background: #fff;
}

.kb-about__timeline-hdr {
    text-align: center;
    margin-bottom: 5rem;
}

.kb-about__timeline-h2 {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    color: var(--dark);
    line-height: 1.2;
}

.kb-about__timeline-h2 em {
    font-style: italic;
    color: var(--green);
}

.kb-about__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.kb-about__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1.5px;
    background: linear-gradient(to bottom, var(--green), rgba(128, 191, 74, .1));
    transform: translateX(-50%);
}

.kb-about__tl-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.kb-about__tl-item:last-child {
    margin-bottom: 0;
}

/* odd → content left, spacer right */
.kb-about__tl-item:nth-child(odd) .kb-about__tl-content {
    grid-column: 1;
    text-align: right;
}

.kb-about__tl-item:nth-child(odd) .kb-about__tl-spacer {
    grid-column: 3;
}

/* even → spacer left, content right */
.kb-about__tl-item:nth-child(even) .kb-about__tl-content {
    grid-column: 3;
    text-align: left;
}

.kb-about__tl-item:nth-child(even) .kb-about__tl-spacer {
    grid-column: 1;
}

.kb-about__tl-mid {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: .2rem;
}

.kb-about__tl-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--green);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.kb-about__tl-year {
    font-family: var(--ff-serif);
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--green);
    margin-top: .5rem;
    white-space: nowrap;
}

.kb-about__tl-tag {
    display: inline-block;
    padding: .22rem .7rem;
    background: rgba(128, 191, 74, .12);
    color: var(--green-dark);
    font-family: var(--ff-sans);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .55rem;
}

.kb-about__tl-h3 {
    font-family: var(--ff-serif);
    font-size: 2.22rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: .4rem;
}

.kb-about__tl-p {
    font-family: var(--ff-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}










/* ════════════════════════════════════════════
   SECTION 6 — MILESTONES TIMELINE
════════════════════════════════════════════ */



.kb-fp__section {
    padding: 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

/* subtle dot-grid texture */
.kb-fp__section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.kb-fp__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
}

/* ── LEFT: IMAGE SIDE ── */
.kb-fp__img-side {
    position: relative;
    overflow: hidden;
}

.kb-fp__img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s ease;
}

.kb-fp__img-side:hover img {
    transform: scale(1.04);
}

/* green bar on top of image */
.kb-fp__img-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--green);
    z-index: 2;
}

/* status badge */
.kb-fp__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--green);
    color: #fff;
    font-family: var(--ff-sans);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 6px 14px;
    z-index: 3;
}

/* dark gradient over image bottom */
.kb-fp__img-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(14, 14, 14, .55) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ── RIGHT: CONTENT SIDE ── */
.kb-fp__content {
    padding: 64px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--dark);
    position: relative;
}

/* vertical green rule */
.kb-fp__content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(to bottom, var(--green), rgba(128, 191, 74, .1));
}

.kb-fp__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--ff-sans);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}

.kb-fp__eyebrow::before {
    content: '';
    display: block;
    width: 2rem;
    height: 1.5px;
    background: var(--green);
    flex-shrink: 0;
}

.kb-fp__title {
    font-family: var(--ff-serif);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.kb-fp__title em {
    font-style: italic;
    color: var(--green);
}

.kb-fp__desc {
    font-family: var(--ff-sans);
    font-size: .93rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, .58);
    margin-bottom: 2rem;
    max-width: 420px;
}

/* divider */
.kb-fp__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    margin-bottom: 2rem;
}

/* specs row */
.kb-fp__specs {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
}

.kb-fp__spec {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kb-fp__spec-label {
    font-family: var(--ff-sans);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
}

.kb-fp__spec-val {
    font-family: var(--ff-serif);
    font-size: 1.15rem;
    font-weight: 300;
    color: #fff;
}

/* buttons */
.kb-fp__btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.kb-fp__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-sans);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 28px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background .28s, border-color .28s, color .28s;
    background: none;
}

.kb-fp__btn--green {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.kb-fp__btn--green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
}

.kb-fp__btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, .3);
    color: rgba(255, 255, 255, .8);
}

.kb-fp__btn--outline:hover {
    border-color: #fff;
    color: #fff;
}

/* phone icon circle */
.kb-fp__btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kb-fp__btn-icon svg {
    width: 15px;
    height: 15px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .kb-fp__inner {
        grid-template-columns: 1fr;
    }

    .kb-fp__img-side {
        height: 320px;
    }

    .kb-fp__content {
        padding: 48px 32px;
    }

    .kb-fp__content::before {
        top: 0;
        bottom: auto;
        left: 32px;
        right: 32px;
        width: auto;
        height: 3px;
        background: linear-gradient(to right, var(--green), rgba(128, 191, 74, .1));
    }
}

@media (max-width: 560px) {
    .kb-fp__content {
        padding: 36px 20px;
    }

    .kb-fp__btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .kb-fp__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ────────────────── RESPONSIVE ────────────────── */
@media (max-width: 960px) {
    .kb-about__story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .kb-about__values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kb-about__team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .kb-about__hero-stats {
        gap: 1.8rem;
    }
}

@media (max-width: 640px) {
    .kb-about__values-grid {
        grid-template-columns: 1fr;
    }

    .kb-about__team-grid {
        grid-template-columns: 1fr;
    }

    .kb-about__hero-rule {
        left: 1rem;
    }

    /* Collapse timeline to single column */
    .kb-about__timeline::before {
        left: 1.4rem;
    }

    .kb-about__tl-item {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .kb-about__tl-item:nth-child(odd) .kb-about__tl-content,
    .kb-about__tl-item:nth-child(even) .kb-about__tl-content {
        grid-column: 2;
        text-align: left;
    }

    .kb-about__tl-item:nth-child(odd) .kb-about__tl-spacer,
    .kb-about__tl-item:nth-child(even) .kb-about__tl-spacer {
        display: none;
    }

    .kb-about__tl-mid {
        grid-column: 1;
    }
}



/* ════════════════════════════════════════════
   SECTION 7 — TESTIMONIALS
════════════════════════════════════════════ */

.kasturi-tm-section * {
    box-sizing: border-box;
}

.kasturi-tm-section {
    padding: 90px 0;
    background: #f8f6f1;
    width: 100%;
    position: relative;
}

.kasturi-tm-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width: 100%;
}

.kasturi-tm-head {
    text-align: center;
    margin-bottom: 50px;
}

.kasturi-tm-sub {
    font-size: 12px;
    letter-spacing: 4px;
    color: #80bf4a;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.kasturi-tm-title {
    font-size: 42px;
    font-weight: 300;
    margin: 0;
    line-height: 1.2;
    color: #222;
}

.kasturi-tm-line {
    height: 2px;
    width: 60px;
    background: #80bf4a;
    margin: 18px auto;
}

.kasturi-tm-slider {
    overflow: hidden;
    width: 100%;
}

.kasturi-tm-track {
    display: flex;
    gap: 25px;
    transition: transform .6s ease;
}

.kasturi-tm-card {
    flex: 0 0 calc(33.333% - 17px);
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    position: relative;
}

.kasturi-tm-quote {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 70px;
    color: #80bf4a;
    opacity: .15;
    line-height: 1;
}

.kasturi-tm-stars {
    color: #80bf4a;
    margin-bottom: 20px;
    font-size: 18px;
}

.kasturi-tm-text {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 25px;
}

.kasturi-tm-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kasturi-tm-avatar {
    height: 52px;
    width: 52px;
    border-radius: 50%;
    background: #80bf4a;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    flex-shrink: 0;
}

.kasturi-tm-name {
    font-weight: 700;
    color: #222;
}

.kasturi-tm-city {
    font-size: 13px;
    color: #777;
}

.kasturi-tm-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.kasturi-tm-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);
    transition: .3s;
}

.kasturi-tm-btn:hover {
    background: #80bf4a;
    color: #fff;
}


/* tablet */

@media(max-width:991px) {

    .kasturi-tm-card {
        flex: 0 0 calc(50% - 13px);
    }

    .kasturi-tm-title {
        font-size: 34px;
    }

}


/* mobile */

@media(max-width:767px) {

    .kasturi-tm-section {
        padding: 65px 0;
    }

    .kasturi-tm-container {
        padding: 0 15px;
    }

    .kasturi-tm-title {
        font-size: 28px;
    }

    .kasturi-tm-card {
        flex: 0 0 100%;
        padding: 25px;
    }

    .kasturi-tm-text {
        font-size: 14px;
    }

}
