/* =========================================================
   GLOBAL RESET
========================================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f6f9;
    color:#333;
    overflow-x:hidden;
}

/* ================= LOADER ================= */
#loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0b1c2d, #071625);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-box {
    text-align: center;
    min-width: 280px;
}

.loader-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 18px;
}

/* Progress bar container */
.loader-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

/* Animated bar */
.loader-bar span {
    position: absolute;
    left: -40%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, #f17517f9, #ed4343);
    animation: loading 1.4s ease-in-out infinite;
}
body.loading {
    overflow: hidden;
}

/* Animation */
@keyframes loading {
    0% {
        left: -40%;
    }
    50% {
        left: 30%;
    }
    100% {
        left: 100%;
    }
}
/* =========================================================
   HEADER
========================================================= */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:64px;
    padding:0 20px;
    background:#0b1c2d;
    display:flex;
    align-items:center;
    justify-content:space-between;
    z-index:3000;
}

.logo{
    color:#fff;
    font-size:22px;
    font-weight:700;
}

/* =========================================================
   NAVIGATION
========================================================= */
nav ul{
    list-style:none;
    display:flex;
    gap:16px;
}

/* ================= MENU BASE ================= */
nav ul li a{
    position:relative;
    padding:6px 2px;
    font-size:14px;
    font-weight:500;
    color:#ffffff;
    text-decoration:none;
    transition:color .25s ease;
}

/* ================= UNDERLINE (HIDDEN DEFAULT) ================= */
nav ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:100%;
    height:2px;

    background:linear-gradient(
        90deg,
        #ff9800,
        #ff5722,
        #f44336
    );

    transform:scaleX(0);              /* PENTING */
    transform-origin:left;
    transition:transform .3s ease;
    border-radius:2px;
}

/* ================= HOVER ONLY ================= */
nav ul li a:hover{
    color:#ff9800;
}

nav ul li a:hover::after{
    transform:scaleX(1);
}

/* ================= HAPUS ACTIVE UNDERLINE ================= */
nav ul li a.active::after{
    transform:scaleX(0);   /* JANGAN tampil permanen */
}

/* =========================================================
   HAMBURGER (LEBIH KECIL & RAPI)
========================================================= */
.menu-toggle{
    width:26px;
    height:18px;
    display:none;
    flex-direction:column;
    justify-content:space-between;
    cursor:pointer;
}

.menu-toggle span{
    height:2px;
    width:100%;
    background:#fff;
    border-radius:2px;
}

/* =========================================================
   MOBILE NAV
========================================================= */
@media(max-width:768px){

    nav ul{
        position:fixed;
        top:0;
        right:-100%;
        width:75%;
        max-width:260px;
        height:100vh;
        background:#0b1c2d;
        flex-direction:column;
        padding:90px 24px;
        gap:18px;
        transition:.35s ease;
        z-index:3100;
    }

    nav ul.active{
        right:0;
    }

    nav ul li a{
        font-size:15px;
        padding:8px 0;
    }

    /* underline mobile (sedikit lebih dekat) */
    nav ul li a::after{
        bottom:-4px;
    }
}


/* =========================================================
   OVERLAY
========================================================= */
#menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:3050;
}

#menu-overlay.active{
    opacity:1;
    visibility:visible;
}

/* =========================================================
   HERO SLIDER
========================================================= */
.hero-slider{
    height:100vh;
    position:relative;
    overflow:hidden;
    margin-top:64px;
}

.slides,
.slide{
    position:absolute;
    inset:0;
}

.slide{
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.2s ease;
}

.slide.active{
    opacity:1;
}

.hero-slider::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(11,28,45,.65);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    padding:0 20px;
}

.hero-content h1{
    font-size:42px;
    font-weight:700;
}

.hero-content p{
    max-width:700px;
    margin:20px 0;
    font-size:17px;
}

.hero-content button{
    padding:14px 36px;
    border:none;
    border-radius:30px;
    background:#00bcd4;
    color:#fff;
    font-size:16px;
    cursor:pointer;
}

/* =========================================================
   SERVICES
========================================================= */
.section{
    padding:80px 40px;
    max-width:1200px;
    margin:auto;
}

.section h2{
    text-align:center;
    font-size:32px;
    margin-bottom:50px;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
}

.service-card{
    background:#fff;
    padding:30px 20px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card i{
    font-size:36px;
    color:#00bcd4;
    margin-bottom:15px;
}

.service-card:hover{
    transform:translateY(-6px);
}

/* =========================================================
   FOOTER
========================================================= */
footer{
    background:#0b1c2d;
    color:#fff;
    padding:20px 20px;
    text-align:center;
    font-size:14px;
}
/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #0b1c2d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3000;

    /* SHADOW STICKY */
    box-shadow:
        0 4px 12px rgba(0,0,0,.15),
        0 10px 30px rgba(0,0,0,.08);
}


.logo {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/* ================= NAV DESKTOP ================= */
nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
}

/* ================= DROPDOWN DESKTOP ================= */
.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s ease;
}

.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    color: #333;
    padding: 12px 18px;
    display: block;
}

/* ================= SUBMENU DESKTOP (KE KIRI) ================= */
.has-subdropdown {
    position: relative;
}

.subdropdown {
    position: absolute;
    top: 0;
    right: 100%;
    min-width: 250px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-12px);
    transition: .25s ease;
}

.has-subdropdown:hover > .subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.subdropdown li a {
    padding: 12px 20px;
    font-size: 13.5px;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
        z-index: 4000;
    }

    nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 85%;
        height: calc(100vh - 70px);
        background: #0b1c2d;
        transition: right .3s ease;
        z-index: 3500;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    nav ul li a {
        padding: 14px 10px;
        font-size: 15px;
    }

    /* dropdown jadi accordion */
    .dropdown,
    .subdropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border-radius: 12px;
    }

    .has-dropdown.active > .dropdown,
    .has-subdropdown.active > .subdropdown {
        display: block;
    }

    .dropdown {
        background: #fff;
        margin: 6px 0;
    }

    .subdropdown {
        background: #f2f6f9;
        margin: 6px 10px;
    }

    .dropdown li a {
        color: #333;
    }

    .subdropdown li a {
        padding-left: 36px;
        font-size: 14px;
    }
}

/* ================= OVERLAY ================= */
#menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 2500;
}

#menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
html, body {
    height: 100%;
    margin: 0;
}

/* Wrapper full height */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Konten utama fleksibel */
.main-content {
    flex: 1;
}

/* Footer normal */
.site-footer {
    background: #0b1c2d;
    color: #fff;
    text-align: center;
    padding: 18px 15px;
    font-size: 14px;
}
/* ================= VISION MISSION SLIDER ================= */

.vm-slider {
    margin-top: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
}

.vm-slide {
    display: none;
    animation: fadeSlide .6s ease;
}

.vm-slide.active {
    display: block;
}

.vm-slide h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: .5px;
}

.vm-slide p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,.85);
}

/* Animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= DOTS ================= */

.vm-dots {
    margin-top: 14px;
}

.vm-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,.4);
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: .3s;
}

.vm-dots .dot.active {
    background: #4fd1c5;
    transform: scale(1.2);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .vm-slide h3 {
        font-size: 18px;
    }

    .vm-slide p {
        font-size: 14px;
    }
}
/* ================= SECTION GENERAL ================= */
.section {
    padding: 80px 8%;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #666;
}

/* ================= WHY US ================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.why-card i {
    font-size: 36px;
    color: #00bcd4;
    margin-bottom: 15px;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* ================= TESTIMONIAL ================= */
.testimonials {
    background: #f8f9fb;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card p {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
}

.client strong {
    display: block;
    font-weight: 600;
}

.client span {
    font-size: 13px;
    color: #777;
}

/* ================= SCROLL ANIMATION ================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .section {
        padding: 60px 6%;
    }

    .section h2 {
        font-size: 26px;
    }
}
/* ================= TESTIMONIAL ================= */
.testimonials {
    background: linear-gradient(135deg, #f6f9fc, #eef3f8);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* CARD */
.testimonial-card {
    position: relative;
    background: #fff;
    padding: 70px 30px 40px;
    border-radius: 20px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.12);
}

/* AVATAR */
.testimonial-avatar {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* TEXT */
.testimonial-card p {
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
}

.testimonial-card strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
}

.testimonial-card span {
    font-size: 13px;
    color: #777;
}
@media (max-width: 768px) {
    .testimonial-card {
        padding: 65px 25px 35px;
    }

    .testimonial-avatar {
        width: 80px;
        height: 80px;
        top: -40px;
    }
}
/* ================= DROPDOWN BASE ================= */
.dropdown,
.subdropdown {
    list-style: none;
    margin: 0;
    padding: 8px 0;

    display: flex;              /* ⬅️ paksa flex */
    flex-direction: column;     /* ⬅️ VERTIKAL */
}

/* dropdown utama */
/* ================= DROPDOWN PRODUCT ================= */
.dropdown {
    position: absolute;
    top: 100%;
    right: 0;              /* ⬅️ nempel ke PRODUCT */
    min-width: 240px;

    background: #ffffff;
    border-radius: 3px;
    padding: 10px 0;

    box-shadow: 0 20px 50px rgba(0,0,0,.18);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
    z-index: 1000;
}
/* ================= PRODUCT ARROW INDICATOR (FIX) ================= */
.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

/* PANAH → PAKAI ::before (AMAN) */
.has-dropdown > a::before {
    content: "▾";
    font-size: 12px;
    margin-left: 6px;
    color: #ffffff;
    transition: transform .3s ease, color .3s ease;
}

/* hover effect */
.has-dropdown:hover > a::before {
    transform: rotate(180deg);
    color: #ff9800;
}


/* ================= SUBMENU (FLOW KE BAWAH) ================= */
.subdropdown {
    position: static;       /* ⬅️ INI KUNCI */
    margin-top: 3px;

    background: #f7fafc;
    border-radius: 3px;

    display: none;
}

/* buka submenu */
.has-subdropdown:hover > .subdropdown {
    display: block;
}

/* ================= ITEM ================= */
.dropdown li a,
.subdropdown li a {
    display: block;
    padding: 12px 22px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
}

/* indent anak */
.subdropdown li a {
    padding-left: 38px;
    font-size: 13.5px;
}

/* hover */
.dropdown li a:hover,
.subdropdown li a:hover {
    background: rgba(0,188,212,.12);
    color: #00bcd4;
}
/* ================= SUBMENU INFRASTRUKTUR (BUKA KE KIRI) ================= */
.has-subdropdown {
    position: relative;
}

/* submenu level 2 */
.has-subdropdown > .subdropdown {
    position: absolute;
    top: 0;
    right: 100%;           /* ⬅️ buka ke kiri */
    left: auto;

    min-width: 260px;
    background: #ffffff;
    border-radius: 3px;
    padding: 10px 0;

    box-shadow: 0 20px 50px rgba(0,0,0,.18);

    opacity: 0;
    visibility: hidden;
    transform: translateX(-12px);
    transition: all .25s ease;
    z-index: 1100;
}

/* tampil saat hover */
.has-subdropdown:hover > .subdropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.subdropdown li a {
    padding: 12px 22px;
    font-size: 13.5px;
    color: #333;
    white-space: nowrap;
}

.subdropdown li a:hover {
    background: rgba(0,188,212,.12);
    color: #00bcd4;
}

/* ================= MOBILE MENU FIX TOTAL ================= */
@media (max-width: 768px) {

  /* drawer */
  nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 85%;
    height: calc(100vh - 70px);
    background: #0b1c2d;
    transition: right .3s ease;
    z-index: 3000;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  nav ul li a {
    color: #fff;
    padding: 14px 12px;
    display: block;
    font-size: 15px;
  }

  /* PRODUCT dropdown */
  .dropdown {
    position: static;
    background: #ffffff;
    border-radius: 14px;
    margin-top: 10px;
    display: none;
  }

  .has-dropdown.active > .dropdown {
    display: block;
  }

  /* SUBMENU INFRASTRUKTUR */
  .subdropdown {
    position: static;
    background: #f2f6f9;
    border-radius: 12px;
    margin: 6px 10px 10px;
    display: none;
  }

  .has-subdropdown.active > .subdropdown {
    display: block;
  }

  /* item */
  .dropdown li a {
    color: #333;
    padding: 14px 18px;
  }

  .subdropdown li a {
    padding-left: 36px;
    font-size: 14px;
  }

  /* arrow */
  .has-dropdown > a::after,
  .has-subdropdown > a::after {
    content: "▾";
    float: right;
  }
}
@media (max-width: 768px) {
    .has-dropdown > a::before {
        content: "▸";
        margin-left: auto;
    }

    .has-dropdown.active > a::before {
        content: "▾";
    }
}

/* ================= MEGA MENU ================= */
.has-mega {
    position: static;
}

.mega-menu {
    position: fixed;          /* ⬅️ KUNCI UTAMA */
    top: 70px;                /* tinggi header */
    left: 0;                  /* mulai dari kiri layar */
    width: 100vw;             /* full layar */

    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
    padding: 40px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 2000;
}


.has-mega:hover > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}


.mega-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #0b1c2d;
}

.mega-col a {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    text-decoration: none;
    transition: .2s;
}

.mega-col a:hover {
    color: #00bcd4;
}

/* highlight column */
.mega-col.highlight {
    background: linear-gradient(135deg, #0b1c2d, #071625);
    border-radius: 16px;
    padding: 25px;
    color: #fff;
}

.mega-col.highlight h4 {
    color: #fff;
}

.mega-col.highlight p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.mega-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: #00bcd4;
    color: #fff !important;
    font-size: 14px;
}
@media (max-width: 768px) {

    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 20px 0;
        display: none;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .has-mega.active > .mega-menu {
        display: block;
    }

    .mega-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 25px;
    }
}
/* ================= ABOUT US ================= */
.about-section {
    padding: 90px 8%;
    background: linear-gradient(135deg, #f6f9fc, #eef3f8);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-label {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #00bcd4;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b1c2d;
    margin-bottom: 18px;
}

.about-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

.about-points .point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14.5px;
}

.about-points i {
    color: #00bcd4;
    font-size: 16px;
}

/* STATS */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.stat-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0b1c2d;
    margin-bottom: 6px;
}

/* ================= SCROLL ANIMATION ================= */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all .8s ease;
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal.show,
.reveal-left.show,
.reveal-right.show {
    opacity: 1;
    transform: translate(0,0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 70px 6%;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}
