/* ══════════════════════════════════════════
   ROOT VARIABLES
══════════════════════════════════════════ */

:root {
    --teal: #006e65;
    --teal-light: #488d92;
    --teal-pale: #7abcbf;
    --teal-deep: #004d47;
    --yellow: #ffffff;
    --black: #000000;
    --dark: #081614;
    --dark2: #0c1e1c;
    --mid: #143230;
    --mid2: #1c3f3c;
    --white: #ffffff;
    --nav-h: 64px;
}


/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-text-size-adjust: 100%;
}


/* ══════════════════════════════════════════
   NAV — DESKTOP
══════════════════════════════════════════ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 60px;
    background: rgba(0, 0, 0, .97);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--teal);
    transition: height .3s;
}

nav.scrolled {
    height: 54px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--teal-light);
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
}

.logo-img {
    height: 38px;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 1.5px;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    flex-shrink: 0;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .83rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color .3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-light);
    transition: width .3s;
}

.nav-links a:hover {
    color: var(--teal-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--teal);
    color: var(--white);
    padding: 8px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .83rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--teal);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .3s, color .3s;
}

.nav-cta:hover {
    background: transparent;
    color: var(--teal-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--teal-light);
    border-radius: 2px;
}


/* ══════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════ */

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 4px;
    color: var(--white);
    text-decoration: none;
    transition: color .3s;
}

.mobile-menu a:hover {
    color: var(--teal-light);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--teal-light);
    background: none;
    border: none;
    line-height: 1;
    padding: 8px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
}

.sub-menu {
    padding-left: 15px;
    margin-top: 5px;
}

.sub-menu li {
    list-style: none;
}

.sub-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
}


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */

.hero {
    /* margin-top: var(--nav-h); */
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.hero-left {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.hero-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 0 0 / 0%) 0%, rgba(0, 110, 101, .15) 100%);
}

.hero-right {
    background: linear-gradient(155deg, #00e9d7 0%, #00ffeb 55%, #000000 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 48px;
    position: relative;
    overflow: hidden;
}

.hero-right::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border: 50px solid rgb(0, 0, 0);
    border-radius: 50%;
}

.hero-right::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border: 30px solid rgb(0 0 0);
    border-radius: 50%;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    line-height: .9;
    color: var(--white);
    letter-spacing: 1px;
    animation: fadeUp .9s both;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .3);
    position: relative;
    z-index: 1;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: var(--yellow);
    margin: 20px 0 8px;
    animation: expand .9s .3s both;
    position: relative;
    z-index: 1;
}

.hero-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(12px, 1.4vw, 16px);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 24px;
    animation: fadeUp 1s .15s both;
    position: relative;
    z-index: 1;
}

.hero-desc {
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.82);
    max-width: 380px;
    animation: fadeUp 1s .3s both;
    position: relative;
    z-index: 1;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-top: 36px;
    animation: fadeUp 1s .45s both;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    padding: 14px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .2s, box-shadow .3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, .6);
    color: var(--black);
    padding: 12px 30px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .3s, border-color .3s;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .15);
    border-color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Mobile Video Adjustment */

@media(max-width:768px) {
    .hero-bg {
        object-position: center;
    }
}

.hero-bg {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
}


/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */

.stats-strip {
    background: var(--teal-deep);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 3px solid var(--yellow);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.stat-item {
    padding: 32px 28px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    transition: background .3s;
}

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

.stat-item:hover {
    background: rgba(72, 141, 146, .15);
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--yellow);
    line-height: 1;
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--teal-pale);
    margin-top: 6px;
}


/* ══════════════════════════════════════════
   GLOBALS
══════════════════════════════════════════ */

section {
    padding: 22px 60px;
}

.section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--teal-light);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--teal-light);
    flex-shrink: 0;
}

h2.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 68px);
    line-height: .95;
    color: var(--white);
}

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

.section-lead {
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, .6);
    max-width: 560px;
    margin-top: 20px;
}


/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */

#about {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    height: 480px;
    background: url('../images/who-are.jpg') center/cover;
    position: relative;
    z-index: 1;
}

.about-img-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--teal);
    z-index: 0;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 3;
    background: var(--teal);
    padding: 20px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: .9rem;
    letter-spacing: 2px;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
}

.about-badge strong {
    font-size: 2.6rem;
    display: block;
    color: var(--yellow);
}

.about-list {
    margin-top: 32px;
    list-style: none;
}

.about-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(72, 141, 146, .15);
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-list li::before {
    content: '▸';
    color: var(--teal-light);
    flex-shrink: 0;
    margin-top: 2px;
}


/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */

#services {
    background: var(--black);
}


/* HEADER */

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 60px;
}


/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
}


/* CARD */

.service-card {
    background: var(--dark2);
    padding: 42px 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all .35s ease;
    border-left: 3px solid transparent;
    box-sizing: border-box;
}

.service-card:hover {
    background: var(--teal);
    border-left-color: var(--yellow);
    transform: translateY(-4px);
}


/* IMAGE WRAPPER (FIX HALF IMAGE ISSUE) */

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
}


/* IMAGE */

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* TITLE */

.service-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 10px;
}


/* DESCRIPTION */

.service-desc {
    font-size: .85rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, .55);
}


/* ARROW */

.service-arrow {
    margin-top: 22px;
    font-size: 1.3rem;
    color: var(--teal);
    display: block;
    transition: transform .3s ease, color .3s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(6px);
    color: var(--yellow);
}


/* HEADER RESPONSIVE */

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
    .service-card {
        padding: 28px 20px;
    }
    .service-icon {
        height: 200px;
    }
}


/* MOBILE */

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .service-icon {
        height: 180px;
    }
    .service-name {
        font-size: 1.05rem;
    }
    .service-desc {
        font-size: .82rem;
    }
}


/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */

#process {
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
    padding: 90px 60px;
    position: relative;
    overflow: hidden;
}

#process::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 60px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
}

#process::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 20%;
    width: 280px;
    height: 280px;
    border: 40px solid rgba(0, 0, 0, .07);
    border-radius: 50%;
}

.process-inner {
    max-width: 1799px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.process-tag {
    color: rgba(255, 255, 255, .8);
}

.process-tag::before {
    background: rgba(255, 255, 255, .5);
}

.process-title {
    color: var(--white);
}

.process-lead {
    color: rgba(255, 255, 255, .75);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: rgba(255, 255, 255, .2);
}

.process-step {
    text-align: center;
    padding: 0 12px;
    position: relative;
}

.process-dot {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--black);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, .2);
    transition: transform .3s, background .3s;
}

.process-step:hover .process-dot {
    transform: scale(1.15);
    background: var(--yellow);
    color: var(--black);
}

.process-step-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
}

.process-step-desc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    margin-top: 6px;
    line-height: 1.5;
}


/* ══════════════════════════════════════════
   INFRASTRUCTURE
══════════════════════════════════════════ */

#infrastructure {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
}

.infra-img {
    min-height: 560px;
    background: url('../images/built.png') center/cover no-repeat;
    position: relative;
}

.infra-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.infra-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.infra-metric {
    border-left: 3px solid var(--teal-light);
    padding-left: 20px;
    transition: border-color .3s;
}

.infra-metric:hover {
    border-left-color: var(--yellow);
}

.infra-metric-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 3vw, 40px);
    color: var(--teal-light);
    line-height: 1;
}

.infra-metric-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: 1px;
    margin-top: 4px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
}


/* ══════════════════════════════════════════
   SUSTAINABILITY
══════════════════════════════════════════ */

#sustainability {
    background: var(--dark2);
    padding: 100px 60px;
}

.sust-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.sust-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sust-card {
    background: var(--mid);
    padding: 32px 28px;
    border-bottom: 3px solid transparent;
    transition: border-color .3s, transform .3s, background .3s;
}

.sust-card:hover {
    border-color: var(--teal-light);
    transform: translateY(-4px);
    background: var(--mid2);
}

.sust-icon {
    margin-bottom: 16px;
}

.sust-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 10px;
}

.sust-card-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
}

.sust-right {
    position: relative;
}

.sust-img {
    width: 100%;
    height: 400px;
    background: url('../images/r.jpg') center/cover no-repeat;
    position: relative;
}

.sust-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 77, 70, .85) 0%, transparent 50%);
}

.sust-img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--white);
    z-index: 1;
}

.sust-img-label span {
    color: var(--yellow);
    display: block;
    font-size: .75rem;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 3px;
    margin-bottom: 6px;
}


/* ══════════════════════════════════════════
   CLIENTS
══════════════════════════════════════════ */

#clients {
    background: var(--black);
    padding: 80px 60px;
    text-align: center;
    border-top: 1px solid rgba(72, 141, 146, .15);
}

.clients-marquee-wrap {
    overflow: hidden;
    margin-top: 48px;
    border-top: 1px solid rgba(72, 141, 146, .2);
    border-bottom: 1px solid rgba(72, 141, 146, .2);
    padding: 32px 0;
}

.clients-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: marquee 22s linear infinite;
    width: max-content;
}

.client-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(72, 141, 146, .45);
    white-space: nowrap;
    transition: color .3s;
}

.client-logo:hover {
    color: var(--teal-light);
}

.client-dot {
    color: var(--yellow);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ══════════════════════════════════════════
   WHY US
══════════════════════════════════════════ */

#why {
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

#why::before {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    border: 55px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
}

.why-tag::before {
    background: rgba(255, 255, 255, .5);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(0, 0, 0, .4);
    padding: 36px 24px;
    border-top: 3px solid var(--yellow);
    backdrop-filter: blur(4px);
    transition: transform .3s, background .3s;
}

.why-card:hover {
    transform: translateY(-6px);
    background: rgba(0, 0, 0, .6);
}

.why-icon {
    margin-bottom: 20px;
}

.why-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
}

.why-desc {
    font-size: .87rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.7;
}


/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */

#contact {
    background: var(--dark);
    padding: 100px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .3s;
}

.contact-detail:hover .contact-detail-icon {
    background: var(--teal-light);
}

.contact-detail-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 4px;
}

.contact-detail-val {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(122, 188, 191, .7);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--dark2);
    border: 1px solid rgba(72, 141, 146, .2);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'Barlow', sans-serif;
    font-size: .9rem;
    outline: none;
    transition: border-color .3s, background .3s;
    width: 100%;
    resize: vertical;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--teal-light);
    background: var(--mid);
}

.form-group select option {
    background: var(--dark2);
}

.form-group textarea {
    min-height: 120px;
}

.form-submit {
    background: var(--teal);
    color: var(--white);
    border: 2px solid var(--teal);
    padding: 16px 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .3s, color .3s, border-color .3s, transform .2s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-submit:hover {
    background: transparent;
    color: var(--teal-light);
    border-color: var(--teal-light);
    transform: translateY(-2px);
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */

footer {
    background: var(--black);
    border-top: 3px solid var(--teal);
    padding: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--teal-light);
}

.footer-brand-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 4px;
}

.footer-brand-bar {
    width: 40px;
    height: 3px;
    background: var(--yellow);
    margin: 14px 0;
}

.footer-brand-desc {
    font-size: .85rem;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .3s;
}

.footer-links a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    border-top: 1px solid rgba(72, 141, 146, .15);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy,
.footer-made {
    font-size: .8rem;
    color: rgba(255, 255, 255, .25);
}

.footer-made span {
    color: var(--teal-light);
}


/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expand {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: none;
}


/* ══════════════════════════════════════════
   TABLET  ≤ 1100px
══════════════════════════════════════════ */

@media (max-width: 1100px) {
    nav {
        padding: 0 32px;
    }
    .logo-text {
        font-size: 15px;
    }
    .nav-links {
        gap: 18px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .process-steps::before {
        display: none;
    }
    .process-step {
        margin-bottom: 32px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ══════════════════════════════════════════
   TABLET MID  ≤ 900px
══════════════════════════════════════════ */

@media (max-width: 900px) {
    nav {
        padding: 0 24px;
    }
    .nav-links {
        gap: 14px;
    }
    .nav-links a {
        font-size: .75rem;
        letter-spacing: 1px;
    }
    .logo-text {
        font-size: 13px;
    }
    .nav-cta {
        padding: 7px 14px;
        font-size: .75rem;
    }
}


/* ══════════════════════════════════════════
   MOBILE  ≤ 768px
══════════════════════════════════════════ */

@media (max-width: 768px) {
     :root {
        --nav-h: 58px;
    }
    /* NAV */
    nav {
        padding: 0 14px;
        gap: 0;
    }
    nav.scrolled {
        height: 50px;
    }
    .nav-logo {
        flex: 1 1 0;
        min-width: 0;
        max-width: calc(100% - 52px);
        gap: 8px;
        overflow: hidden;
    }
    .logo-img {
        height: 30px;
        flex-shrink: 0;
    }
    .logo-text {
        font-size: 11px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-width: 100%;
    }
    .nav-links,
    .nav-cta {
        display: none !important;
    }
    .hamburger {
        display: flex;
        flex-shrink: 0;
        margin-left: 8px;
    }
    /* HERO */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-left {
        height: 56vw;
        min-height: 200px;
        max-height: 320px;
    }
    .hero-right {
        padding: 36px 20px 48px;
    }
    .hero-title {
        font-size: clamp(38px, 10vw, 62px);
    }
    .hero-desc {
        max-width: 100%;
    }
    .hero-btns {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .btn-primary,
    .btn-outline {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
    /* STATS */
    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }
    .stat-item {
        padding: 22px 16px;
    }
    .stat-item:nth-child(2) {
        border-right: none;
    }
    .stat-item:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, .08);
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
    .stat-item:nth-child(4) {
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
    /* SECTIONS */
    section {
        padding: 56px 20px;
    }
    /* ABOUT */
    #about {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 56px 20px;
    }
    .about-img-wrap {
        padding-bottom: 20px;
    }
    .about-img {
        height: 260px;
    }
    .about-img-frame {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }
    .about-badge {
        right: 0;
        bottom: -10px;
    }
    /* SERVICES */
    #services {
        padding: 56px 20px;
    }
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 28px 20px;
    }
    /* PROCESS */
    #process {
        padding: 56px 20px;
    }
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 32px;
    }
    .process-steps::before {
        display: none;
    }
    .process-dot {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
    }
    /* INFRASTRUCTURE */
    #infrastructure {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .infra-img {
        min-height: 240px;
        order: 1;
    }
    .infra-content {
        padding: 40px 20px;
        order: 2;
    }
    .infra-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 28px;
    }
    /* SUSTAINABILITY */
    #sustainability {
        padding: 56px 20px;
    }
    .sust-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .sust-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .sust-card {
        padding: 20px 14px;
    }
    .sust-img {
        height: 240px;
    }
    /* CLIENTS */
    #clients {
        padding: 56px 20px;
    }
    /* WHY */
    #why {
        padding: 56px 20px;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 32px;
    }
    .why-card {
        padding: 20px 14px;
    }
    /* CONTACT */
    #contact {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 56px 20px;
    }
    /* FOOTER */
    footer {
        padding: 40px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-bottom: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}


/* ══════════════════════════════════════════
   SMALL MOBILE  ≤ 480px
══════════════════════════════════════════ */

@media (max-width: 480px) {
     :root {
        --nav-h: 52px;
    }
    /* NAV */
    nav {
        padding: 0 12px;
    }
    .logo-img {
        height: 26px;
    }
    .logo-text {
        font-size: 10px;
        max-width: 200px;
    }
    .hamburger {
        width: 36px;
        height: 36px;
    }
    /* HERO */
    .hero-left {
        height: 60vw;
        max-height: 260px;
    }
    .hero-right {
        padding: 28px 16px 40px;
    }
    .hero-title {
        font-size: clamp(34px, 9vw, 52px);
    }
    /* PROCESS — horizontal card layout */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .process-step {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        text-align: left;
        padding: 0;
        margin-bottom: 0;
    }
    .process-dot {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        flex-shrink: 0;
        margin: 0;
    }
    /* SUSTAINABILITY */
    .sust-cards {
        grid-template-columns: 1fr;
    }
    /* WHY */
    .why-grid {
        grid-template-columns: 1fr;
    }
    /* CONTACT FORM */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    /* FOOTER */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-brand-desc {
        max-width: 100%;
    }
    /* MOBILE MENU */
    .mobile-menu a {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    /* SECTIONS */
    section {
        padding: 48px 16px;
    }
    footer {
        padding: 32px 16px;
    }
    /* INFRA */
    .infra-content {
        padding: 36px 16px;
    }
    .infra-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    /* STATS */
    .stat-item {
        padding: 18px 12px;
    }
    .stat-num {
        font-size: clamp(26px, 7vw, 38px);
    }
}


/* ══════════════════════════════════════════
   VERY SMALL  ≤ 360px
══════════════════════════════════════════ */

@media (max-width: 360px) {
     :root {
        --nav-h: 48px;
    }
    nav {
        padding: 0 10px;
    }
    .logo-img {
        height: 22px;
    }
    .logo-text {
        font-size: 9px;
        max-width: 140px;
    }
    .hero-left {
        height: 64vw;
    }
    .hero-right {
        padding: 24px 14px 36px;
    }
    .infra-metrics {
        grid-template-columns: 1fr;
    }
    .stat-num {
        font-size: 26px;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .sust-cards {
        grid-template-columns: 1fr;
    }
    .mobile-menu a {
        font-size: 1.5rem;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/**************************************clinte**************************************/


/* GRID */

.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* desktop always 6 */
    gap: 10px;
    padding: 10px;
}


/* IMAGE STYLE + ANIMATION */

.gallery img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* stagger animation */

.gallery img:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery img:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery img:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery img:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery img:nth-child(5) {
    animation-delay: 0.5s;
}

.gallery img:nth-child(6) {
    animation-delay: 0.6s;
}


/* hover effect */

.gallery img:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}


/* animation keyframe */

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


/* ====== TABLET ====== */

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


/* ====== MOBILE ====== */

@media (max-width: 576px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* IMAGE (default desktop same) */

.gallery img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}


/* 📱 MOBILE FIX - no cut image */

@media (max-width: 576px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery img {
        height: auto;
        /* remove fixed height */
        object-fit: contain;
        /* full image show */
        aspect-ratio: 1/1;
        /* nice square look (optional) */
        background: #f5f5f5;
        /* empty space look clean */
    }
}


/************************************************************what we do ********************************************/


/***********************************************************************women*******************************/

.banner-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.banner-section picture,
.banner-section img {
    display: block;
    width: 100%;
}

.banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}


/* Mobile */

@media (max-width:767px) {
    .banner-img {
        min-height: 250px;
        object-fit: cover;
    }
}


/* Tablet */

@media (min-width:768px) and (max-width:1024px) {
    .banner-img {
        min-height: 300px;
        object-fit: cover;
    }
}


/* Desktop */

@media (min-width:1025px) {
    .banner-img {
        min-height: 400px;
        object-fit: cover;
    }
}

h2.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap
}

.wrap {
    padding: 1.5rem 20px 2rem
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem
}

.header-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0
}

.header-count {
    font-size: 13px;
    color: var(--color-text-secondary);
    background: var(--color-background-secondary);
    padding: 3px 10px;
    border-radius: 2rem
}

.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem
}

.tab input[type=radio] {
    display: none
}

.tab label {
    display: block;
    background: none;
    border: 0.5px solid transparent;
    border-radius: var(--border-radius-md);
    padding: .38rem .9rem;
    font-size: .78rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: background .15s, color .15s
}

.tab label:hover {
    background: var(--color-background-secondary);
    color: var(--color-text-primary)
}

.tab input[type=radio]:checked+label {
    background: var(--color-background-secondary);
    color: var(--color-text-primary);
    border-color: var(--color-border-secondary)
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
    gap: 14px
}

.pane {
    display: none
}

#tab-all:checked~.panes #pane-all,
#tab-todo:checked~.panes #pane-todo,
#tab-inprogress:checked~.panes #pane-inprogress,
#tab-done:checked~.panes #pane-done {
    display: block
}

.card {
    background: var(--color-background-primary);
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: var(--border-radius-lg);
    overflow: hidden
}

.card:hover {
    border-color: var(--color-border-secondary)
}

.card-img-wrap {
    position: relative
}

.card-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: .67rem;
    font-weight: 500;
    padding: .2rem .6rem;
    border-radius: 2rem
}

.badge-todo {
    background: #F1EFE8;
    color: #5F5E5A
}

.badge-inprogress {
    background: #E6F1FB;
    color: #185FA5
}

.badge-done {
    background: #EAF3DE;
    color: #3B6D11
}

.card-body {
    padding: .85rem 1rem 1rem
}

.card-title {
    color: var(--color-text-primary);
    font-size: .88rem;
    font-weight: 500;
    margin: 0 0 3px
}

.card-sub {
    color: var(--color-text-tertiary);
    font-size: .73rem;
    margin: 0 0 .75rem;
    display: flex;
    align-items: center;
    gap: 5px
}

.dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0
}

.dot-todo {
    background: #888780
}

.dot-inprogress {
    background: #378ADD
}

.dot-done {
    background: #639922
}

.avatar-stack {
    display: flex;
    margin-bottom: .65rem
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-background-secondary);
    border: 1.5px solid var(--color-background-primary);
    margin-left: -6px;
    font-size: .6rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center
}

.avatar:first-child {
    margin-left: 0
}

.progress-bar {
    height: 3px;
    background: var(--color-border-tertiary);
    border-radius: 2px;
    overflow: hidden
}

.progress-fill {
    height: 100%;
    border-radius: 2px
}

.fill-todo {
    background: #888780
}

.fill-inprogress {
    background: #378ADD
}

.fill-done {
    background: #639922
}

.card {
    width: 400px;
}

.card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 14px
}

.tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 1.5rem;
    background: var(--color-background-secondary);
    padding: 6px;
    border-radius: var(--border-radius-lg);
    width: fit-content
}

.tab label {
    display: block;
    background: none;
    border: none;
    border-radius: var(--border-radius-md);
    padding: .6rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: background .15s, color .15s, box-shadow .15s
}

.tab label:hover {
    color: var(--color-text-primary)
}

.tab input[type=radio]:checked+label {
    background: var(--color-background-primary);
    color: var(--color-text-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08)
}

.wrap {
    padding: 1.5rem;
}

.card {
    width: 100%;
    max-width: 400px;
}

.card-img {
    width: 100%;
    height: 425px;
    object-fit: cover;
    display: block
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
    justify-content: start
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.5rem;
    background: var(--color-background-secondary);
    padding: 6px;
    border-radius: var(--border-radius-lg);
    width: fit-content;
    max-width: 100%
}

.tab label {
    display: block;
    background: none;
    border: none;
    border-radius: var(--border-radius-md);
    padding: .6rem 1.4rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: background .15s, color .15s, box-shadow .15s;
    white-space: nowrap
}

.tab label:hover {
    color: var(--color-text-primary)
}

.tab input[type=radio]:checked+label {
    background: var(--color-background-primary);
    color: var(--color-text-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08)
}

@media (max-width: 600px) {
    .card-img {
        height: 220px
    }
    .tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap
    }
    .tab label {
        padding: .5rem 1rem;
        font-size: .9rem
    }
}


/**********************banner text *********************/

.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    display: block;
}


/* Desktop text */

.banner-text {
    position: absolute;
    top: 50%;
    left: 16%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 420px;
}

.banner-text h1 {
    font-size: 70px;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 30px;
    margin-bottom: 20px;
}

.banner-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}


/* Tablet */

@media (max-width: 1024px) {
    .banner-text {
        left: 6%;
        max-width: 320px;
    }
    .banner-text h1 {
        font-size: 34px;
    }
}


/* Mobile */

@media (max-width: 767px) {
    .banner-text {
        left: 5%;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        max-width: 100%;
    }
    .banner-text h1 {
        font-size: 22px;
    }
    .banner-text p {
        font-size: 14px;
    }
    .banner-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}


/* Very small mobile (optional better look) */

@media (max-width: 480px) {
    .banner-text {
        top: auto;
        bottom: 15%;
        transform: none;
    }
}


/***********************************************************************women* end******************************/

.hero-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.hero-logo {
    width: 340px;
    height: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-title {
        gap: 10px;
        font-size: 32px;
    }
    .hero-logo {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        gap: 8px;
        font-size: 24px;
    }
    .hero-logo {
        width: 100px;
    }
}