/*===============================
        GOOGLE RESET
================================*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:#08130F;
    min-height:100vh;
}
/*===============================
        COLORS
================================*/
:root{
    --primary:#2EE59D;
    --primary-dark:#18B67A;
    --white:#ffffff;
    --text:#E8F4F0;
    --glass:rgba(255,255,255,.08);
    --glass-hover:rgba(255,255,255,.12);
    --border:rgba(255,255,255,.18);
}
/*===============================
        NAVBAR
================================*/
/*===============================
            NAVBAR
================================*/
.navbar{
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 84px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    border-radius: 24px;
    backdrop-filter: blur(25px);
    background: var(--glass);
    border: 1px solid var(--border);
    z-index: 999;
}
/*===============================
            LOGO
================================*/
.logo{
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}
.logo img{
    width: 190px;
    display: block;
}
/*===============================
        NAV LINKS
================================*/
.nav-links{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 22px;
    margin: 0;
    padding: 0;
}
.nav-links li{
    position: relative;
}
.nav-links li a{
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 999px;
    transition: .35s;
    display: block;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
/* Glass Hover */
.nav-links li a::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46,229,157,.25);
    opacity: 0;
    transition: .35s;
}
.nav-links li a:hover::before{
    opacity: 1;
}
.nav-links li a:hover{
    color: var(--primary);
}
.nav-links li a span{
    position: relative;
    z-index: 2;
}
.nav-links li a.active{
    background: rgba(46,229,157,.12);
    border: 1px solid rgba(46,229,157,.3);
    color: var(--primary);
}
/*===============================
        BOOK BUTTON
================================*/
.book-btn{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    background:white;
    color:#08130F;
    padding:13px 22px;
    border-radius:999px;
    font-weight:600;
    transition:.35s;
    white-space:nowrap;
}
.book-btn span{
    width:36px;
    height:36px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    background:var(--primary);
    color:white;
    transition:.35s;
}
.book-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 35px rgba(46,229,157,.30);
}
.book-btn:hover span{
    transform:rotate(45deg);
}
/*===============================
        MENU TOGGLE
================================*/
.menu-toggle{
    width:48px;
    height:48px;
    display:none;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:6px;
    cursor:pointer;
    border-radius:14px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.15);
}
.menu-toggle span{
    width:24px;
    height:2px;
    background:white;
    transition:.35s;
}
/* Animation */
.menu-toggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
    opacity:0;
}
.menu-toggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}
/*===============================
        MOBILE MENU
================================*/
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:#08130F;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:30px;
    transition:.45s ease;
    z-index:998;
}
.mobile-menu.active{
    right:0;
}
.mobile-menu a{
    color:white;
    text-decoration:none;
    font-size:24px;
    font-weight:600;
    transition:.3s;
}
.mobile-menu a:hover{
    color:var(--primary);
}
.mobile-btn{
    margin-top:20px;
    background:white;
    color:#08130F !important;
    padding:14px 28px;
    border-radius:999px;
}
/* =========================================================
   MOBILE RESOURCE LINKS
========================================================= */
/* Collapsed by default; confirmed straight from main.js that
   mobileResourcesBtn's click handler does:
   mobileResourceLinks.classList.toggle("active")
   - so "active" is the real toggle class, matching the same convention
   the desktop dropdown already uses elsewhere in this file. NOT is-open,
   NOT .mobile-resources. */
.mobile-resource-links {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease, padding-top 0.3s ease;
}
.mobile-resource-links.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/* Individual resource links */
.mobile-resource-links a {
    width: 100%;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: color 0.25s ease;
}
.mobile-resource-links a:hover {
    color: #2EE59D;
}
/* Bonus: rotate the chevron icon when open - safe to include even if you
   already have chevron styling elsewhere, this only keys off the
   aria-expanded attribute your JS already sets correctly. */
.mobile-resource-toggle i {
    transition: transform 0.25s ease;
}
.mobile-resource-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}
/*=========================================
        4K MONITORS (2560px+)
=========================================*/
@media (min-width:2560px){
    .navbar{
        width:80%;
        height:92px;
    }
    .logo img{
        width:220px;
    }
    .nav-links{
        gap:30px;
    }
    .nav-links li a{
        font-size:18px;
        padding:15px 22px;
    }
    .book-btn{
        padding:16px 28px;
        font-size:17px;
    }
}
/*=========================================
        LARGE DESKTOP
=========================================*/
@media (max-width:1600px){
    .navbar{
        width:92%;
    }
    .nav-links{
        gap:20px;
    }
}
/*=========================================
        DESKTOP
=========================================*/
@media (max-width:1440px){
    .logo img{
        width:180px;
    }
    .nav-links{
        gap:18px;
    }
    .nav-links li a{
        font-size:15px;
        padding:12px 16px;
    }
}
/*=========================================
        LAPTOP (MacBook Air / Surface)
=========================================*/
@media (max-width:1280px){
    .navbar{
        padding:0 22px;
    }
    .logo{
        width:180px;
    }
    .book-btn{
        width:auto;
    }
    .nav-links{
        gap:14px;
    }
    .nav-links li a{
        font-size:14px;
        padding:11px 14px;
    }
}
/*=========================================
        SMALL LAPTOP
=========================================*/
@media (max-width:1100px){
    .logo img{
        width:155px;
    }
    .nav-links{
        gap:10px;
    }
    .nav-links li a{
        font-size:13px;
        padding:10px 12px;
    }
    .book-btn{
        padding:10px 16px;
        font-size:13px;
    }
}
/*=========================================
        TABLETS
=========================================*/
@media (max-width:992px){
    .navbar{
        height:74px;
        padding:0 18px;
    }
    .logo img{
        width:145px;
    }
    .nav-links{
        gap:6px;
    }
    .nav-links li a{
        font-size:12px;
        padding:9px 10px;
    }
    .book-btn{
        padding:9px 15px;
        font-size:12px;
    }
}
/*=========================================
        TABLET & LARGE MOBILE
=========================================*/
@media (max-width:768px){
    .navbar{
        height:72px;
        padding:0 18px;
        justify-content:space-between;
    }
    .nav-links{
        display:none;
    }
    .book-btn{
        display:none;
    }
    .menu-toggle{
        display:flex;
    }
    .logo{
        width:auto;
    }
    .logo img{
        width:145px;
    }
}
/*=========================================
        LARGE MOBILE
=========================================*/
@media (max-width:576px){
    .navbar{
        width:94%;
        height:68px;
        padding:0 15px;
        border-radius:18px;
    }
    .logo img{
        width:130px;
    }
    .menu-toggle{
        width:42px;
        height:42px;
    }
}
/*=========================================
        MOBILE
=========================================*/
@media (max-width:430px){
    .navbar{
        height:64px;
        top:12px;
    }
    .logo img{
        width:120px;
    }
    .menu-toggle{
        width:40px;
        height:40px;
    }
}
/*=========================================
        SMALL MOBILE
=========================================*/
@media (max-width:375px){
    .navbar{
        width:96%;
        padding:0 12px;
    }
    .logo img{
        width:110px;
    }
    .menu-toggle{
        width:38px;
        height:38px;
    }
}
/*=========================================
        EXTRA SMALL MOBILE
=========================================*/
@media (max-width:320px){
    .logo img{
        width:100px;
    }
    .menu-toggle{
        width:36px;
        height:36px;
    }
}
/*===============================
            HERO
================================*/
/*.hero{*/
/*    position:relative;*/
/*    min-height:100vh;*/
/*    display:flex;*/
/*    align-items:center;*/
/*    overflow:hidden;*/
/*    background:*/
/*    linear-gradient(*/
/*        90deg,*/
/*        rgba(4,10,8,.95) 0%,*/
/*        rgba(4,10,8,.82) 40%,*/
/*        rgba(4,10,8,.45) 70%,*/
/*        rgba(4,10,8,.25) 100%*/
/*    ),*/
/*    url("../assets/images/pollution-bg.webp");*/
/*    background-size:cover;*/
/*    background-position:center;*/
/*}*/
.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:140px;          /* ← add this line */
    overflow:hidden;
    background:
    linear-gradient(
        90deg,
        rgba(4,10,8,.95) 0%,
        rgba(4,10,8,.82) 40%,
        rgba(4,10,8,.45) 70%,
        rgba(4,10,8,.25) 100%
    ),
    url("../assets/images/pollution-bg.webp");
    background-size:cover;
    background-position:center;
}
/* Dark Overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at right,
    rgba(46,229,157,.08),
    transparent 45%);
}
/*===============================
        CONTAINER
================================*/
.hero-container{
    width:92%;
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}
.hero-left{
    color:white;
}
.hero-badge{
    display:flex;
    align-items:center;
    gap:15px;
    padding:14px 22px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    width:max-content;
}
.badge-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#2EE59D;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:20px;
}
.badge-content span{
    display:block;
    color:white;
    font-weight:600;
    font-size:16px;
}
.badge-content small{
    color:#d6d6d6;
    font-size:14px;
}
.hero-left h1{
    font-size:72px;
    line-height:1.08;
    font-weight:800;
}
.hero-left h1 span{
    color:#2EE59D;
}
.hero-left p{
    margin:35px 0;
    color:#cfd6d2;
    font-size:19px;
    line-height:1.8;
    max-width:650px;
}
.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:45px;
}
.primary-btn{
    background:#2EE59D;
    color:#08130F;
    padding:17px 34px;
    border-radius:999px;
    font-weight:600;
    text-decoration:none;
}
.secondary-btn{
    color:white;
    border:1px solid rgba(255,255,255,.15);
    padding:17px 34px;
    border-radius:999px;
    text-decoration:none;
    backdrop-filter:blur(20px);
}
.hero-features{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
    color:#d5d5d5;
}
.hero-right{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}
.image-wrapper{
    position:relative;
    width:650px;
    display:flex;
    justify-content:center;
    align-items:center;
}
.hero-image{
    width:100%;
    max-width:850px;
    position:relative;
    z-index:2;
    animation:float 5s ease-in-out infinite;
}
/* Green Ambient Glow */
.glow{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:#2EE59D;
    filter:blur(120px);
    opacity:.18;
    z-index:1;
}
/*=========================================================
                    4K DISPLAY (2560px+)
=========================================================*/
@media (min-width:2560px){
    .hero{
        min-height:100vh;
    }
    .hero-container{
        width:85%;
        max-width:1900px;
        gap:140px;
    }
    .hero-left h1{
        font-size:95px;
    }
    .hero-left p{
        font-size:24px;
        max-width:760px;
    }
    .hero-image{
        max-width:1050px;
    }
    .image-wrapper{
        width:950px;
    }
    .hero-buttons{
        gap:24px;
    }
    .primary-btn,
    .secondary-btn{
        padding:20px 42px;
        font-size:18px;
    }
}
/*=========================================================
                    LARGE DESKTOP
=========================================================*/
@media (max-width:1600px){
    .hero-container{
        gap:80px;
    }
    .hero-left h1{
        font-size:68px;
    }
    .hero-left p{
        font-size:18px;
    }
    .hero-image{
        max-width:760px;
    }
}
/*=========================================================
                    DESKTOP
=========================================================*/
@media (max-width:1440px){
    .hero-container{
        width:92%;
        gap:60px;
    }
    .hero-left h1{
        font-size:60px;
    }
    .hero-left p{
        font-size:18px;
    }
    .hero-image{
        max-width:700px;
    }
}
/*=========================================================
            MACBOOK / SURFACE LAPTOP
=========================================================*/
@media (max-width:1280px){
    .hero-container{
        gap:45px;
    }
    .hero-left h1{
        font-size:54px;
    }
    .hero-left p{
        font-size:17px;
    }
    .image-wrapper{
        width:600px;
    }
    .hero-image{
        max-width:620px;
    }
}
/*=========================================================
                SMALL LAPTOP
=========================================================*/
@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: 1.6fr 1fr;
        gap: 70px;
    }
    .footer-right {
        padding-left: 0;
    }
    .footer-links a {
        font-size: 16px;
    }
    .partner-site a {
        font-size: 18px;
    }
}
/*=========================================================
            SURFACE PRO / IPAD PRO
=========================================================*/
@media (max-width:992px){
    .hero{
        padding:130px 0 70px;
        min-height:auto;
    }
    .hero-container{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }
    .hero-left{
        order:1;
        display:flex;
        flex-direction:column;
        align-items:center;
    }
    .hero-right{
        order:2;
        justify-content:center;
    }
    .hero-left h1{
        font-size:48px;
    }
    .hero-left p{
        font-size:17px;
        max-width:700px;
    }
    .hero-buttons{
        justify-content:center;
    }
    .hero-features{
        justify-content:center;
    }
    .hero-image{
        width:100%;
        max-width:580px;
    }
}
/*=========================================================
                IPAD AIR / TABLETS
=========================================================*/
@media (max-width:768px){
    .hero{
        padding:120px 0 60px;
    }
    .hero-container{
        width:90%;
        grid-template-columns:1fr;
        gap:45px;
    }
    .hero-left{
        order:1;
    }
    .hero-right{
        order:2;
    }
    .hero-left h1{
        font-size:40px;
        line-height:1.2;
    }
    .hero-left p{
        font-size:16px;
        line-height:1.8;
    }
    .hero-buttons{
        width:100%;
        flex-direction:column;
        gap:15px;
    }
    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }
    .hero-features{
        flex-direction:column;
        gap:16px;
    }
    .hero-image{
        max-width:450px;
    }
    .glow{
        width:330px;
        height:330px;
    }
}
/*=========================================================
                LARGE MOBILE
=========================================================*/
@media (max-width:576px){
    .hero{
        padding:110px 0 50px;
    }
    .hero-left h1{
        font-size:34px;
    }
    .hero-left p{
        font-size:15px;
    }
    .hero-badge{
        width:100%;
        justify-content:center;
    }
    .hero-right{
        margin-top:10px;
    }
    .hero-image{
        max-width:340px;
    }
    .image-wrapper{
        width:100%;
    }
    .glow{
        width:250px;
        height:250px;
    }
}
/*=========================================================
                    MOBILE
=========================================================*/
@media (max-width:430px){
    .hero{
        padding:100px 0 40px;
    }
    .hero-left h1{
        font-size:30px;
    }
    .hero-left p{
        font-size:14px;
    }
    .hero-image{
        max-width:300px;
    }
    .badge-content span{
        font-size:15px;
    }
    .badge-content small{
        font-size:12px;
    }
}
/*=========================================================
                SMALL MOBILE
=========================================================*/
@media (max-width:375px){
    .hero-left h1{
        font-size:26px;
    }
    .hero-left p{
        font-size:13px;
    }
    .primary-btn,
    .secondary-btn{
        padding:14px 18px;
        font-size:14px;
    }
    .hero-image{
        max-width:260px;
    }
}
/*=========================================================
                EXTRA SMALL MOBILE
=========================================================*/
@media (max-width:320px){
    .hero{
        padding-top:90px;
    }
    .hero-left h1{
        font-size:22px;
    }
    .hero-left p{
        font-size:12px;
    }
    .hero-image{
        max-width:220px;
    }
    .hero-badge{
        padding:10px 14px;
    }
}
/*=====================================
        AIR POLLUTION
======================================*/
.air-pollution{
    padding:140px 0;
    background:#07110F;
}
.air-container{
    width:90%;
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:45% 55%;
    gap:70px;
    align-items:center;
}
/*=====================================
            IMAGE
======================================*/
.air-image{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    height:720px;
}
.air-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}
.air-image:hover img{
    transform:scale(1.08);
}
.image-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
    rgba(0,0,0,.75),
    rgba(0,0,0,.1));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:40px;
}
.image-overlay span{
    color:#2EE59D;
    font-size:15px;
    letter-spacing:2px;
    text-transform:uppercase;
}
.image-overlay h3{
    color:#fff;
    font-size:38px;
    margin-top:12px;
}
/*=====================================
            CONTENT
======================================*/
.section-tag{
    color:#2EE59D;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:15px;
}
.air-content h2{
    font-size:58px;
    color:#fff;
    margin:20px 0;
    line-height:1.1;
}
.air-content>p{
    color:#cfd6d2;
    line-height:1.9;
    font-size:18px;
    max-width:700px;
    margin-bottom:45px;
}
/*=====================================
            GRID
======================================*/
.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}
.info-card{
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:28px;
    display:flex;
    gap:18px;
    transition:.35s;
}
.info-card:hover{
    transform:translateY(-8px);
    border-color:#2EE59D;
    box-shadow:0 20px 40px rgba(46,229,157,.15);
}
.icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#2EE59D;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#07110F;
    font-size:24px;
    flex-shrink:0;
}
.info-card h4{
    color:#fff;
    margin-bottom:10px;
    font-size:22px;
}
.info-card p{
    color:#cfd6d2;
    line-height:1.7;
    font-size:15px;
}
/*=====================================
        LARGE DESKTOP
======================================*/
@media(max-width:1440px){
    .air-content h2{
    
    font-size:52px;
    
    }
    
    .air-image{
    
    height:650px;
    
    }
    
    }
    
    
    /*=====================================
                LAPTOP
    ======================================*/
    
    @media(max-width:1200px){
    
    .air-container{
    
    gap:45px;
    
    }
    
    .air-content h2{
    
    font-size:44px;
    
    }
    
    .info-card{
    
    padding:22px;
    
    }
    
    }
    
    
    /*=====================================
                TABLET
    ======================================*/
    
    @media(max-width:992px){
    
    .air-container{
    
    grid-template-columns:1fr;
    
    }
    
    .air-image{
    
    height:520px;
    
    order:1;
    
    }
    
    .air-content{
    
    order:2;
    
    text-align:center;
    
    }
    
    .air-content>p{
    
    margin:auto;
    
    margin-bottom:40px;
    
    }
    
    .info-grid{
    
    margin-top:40px;
    
    }
    
    }
    
    
    /*=====================================
            TABLET / MOBILE
    ======================================*/
    
    @media(max-width:768px){
    
    .air-pollution{
    
    padding:90px 0;
    
    }
    
    .air-content h2{
    
    font-size:38px;
    
    }
    
    .info-grid{
    
    grid-template-columns:1fr;
    
    }
    
    .air-image{
    
    height:420px;
    
    }
    
    }
    
    
    /*=====================================
            LARGE MOBILE
    ======================================*/
    
    @media(max-width:576px){
    
    .air-content h2{
    
    font-size:32px;
    
    }
    
    .air-image{
    
    height:350px;
    
    border-radius:22px;
    
    }
    
    .image-overlay{
    
    padding:25px;
    
    }
    
    .image-overlay h3{
    
    font-size:28px;
    
    }
    
    .info-card{
    
    padding:20px;
    
    }
    
    }
    
    
    /*=====================================
                MOBILE
    ======================================*/
    
    @media(max-width:430px){
    
    .air-content h2{
    
    font-size:28px;
    
    }
    
    .air-content>p{
    
    font-size:15px;
    
    }
    
    .icon{
    
    width:52px;
    
    height:52px;
    
    font-size:20px;
    
    }
    
    .info-card h4{
    
    font-size:18px;
    
    }
    
    }
    
    
    /*=====================================
            SMALL MOBILE
    ======================================*/
    
    @media(max-width:375px){
    
    .air-content h2{
    
    font-size:25px;
    
    }
    
    .air-image{
    
    height:300px;
    
    }
    
    .info-card{
    
    padding:18px;
    
    }
    
    }
    
    
    /*=====================================
        EXTRA SMALL MOBILE
    ======================================*/
    
    @media(max-width:320px){
    
    .air-content h2{
    
    font-size:22px;
    
    }
    
    .image-overlay h3{
    
    font-size:22px;
    
    }
    
    }
/*=========================================================
                OXIDATIVE STRESS SECTION
=========================================================*/
.oxidative{
    position:relative;
    padding:140px 0;
    background:#07110F;
    overflow:hidden;
}
/*=========================================================
                    CONTAINER
=========================================================*/
.oxidative-container{
    width:90%;
    max-width:1450px;
    margin:auto;
    display:grid;
    grid-template-columns:55% 45%;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:2;
}
/*=========================================================
                LEFT CONTENT
=========================================================*/
.oxidative-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.section-tag{
    display:inline-block;
    color:#2EE59D;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:18px;
}
.oxidative-content h2{
    font-size:60px;
    line-height:1.08;
    font-weight:800;
    color:#fff;
    margin-bottom:28px;
}
.oxidative-content h2 span{
    color:#2EE59D;
}
.oxidative-content>p{
    font-size:18px;
    line-height:1.9;
    color:#C7D0CC;
    max-width:680px;
    margin-bottom:55px;
}
.oxidative-content strong{
    color:#2EE59D;
    font-weight:600;
}
/*=========================================================
                    TIMELINE
=========================================================*/
.timeline{
    display:flex;
    flex-direction:column;
}
.timeline-item{
    display:flex;
    align-items:flex-start;
    gap:22px;
    padding:20px 0;
}
.timeline-icon{
    width:64px;
    height:64px;
    min-width:64px;
    border-radius:20px;
    background:#2EE59D;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#07110F;
    font-size:24px;
}
.timeline-item h4{
    color:#fff;
    font-size:22px;
    margin-bottom:8px;
    font-weight:600;
}
.timeline-item p{
    color:#BFC9C4;
    font-size:15px;
    line-height:1.7;
}
.timeline-line{
    width:3px;
    height:45px;
    margin-left:30px;
    background:linear-gradient(
        #2EE59D,
        rgba(46,229,157,.15)
    );
}
/*=========================================================
                    RIGHT IMAGE
=========================================================*/
.oxidative-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}
.oxidative-image img{
    width:100%;
    max-width:520px;
    position:relative;
    z-index:2;
}
/*=========================================================
                    IMAGE GLOW
=========================================================*/
.image-glow{
    position:absolute;
    width:460px;
    height:460px;
    border-radius:50%;
    background:#2EE59D;
    filter:blur(120px);
    opacity:.15;
    z-index:1;
}
/*=========================================================
                    DNA RING
=========================================================*/
.dna-ring{
    position:absolute;
    width:580px;
    height:580px;
    border-radius:50%;
    border:2px dashed rgba(46,229,157,.18);
    z-index:0;
}
/*=========================================================
                FLOATING CARDS
=========================================================*/
.floating-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:15px;
    min-width:220px;
    padding:16px 22px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(22px);
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 15px 40px rgba(0,0,0,.18);
    color:#fff;
    z-index:3;
}
.floating-card i{
    width:48px;
    height:48px;
    border-radius:14px;
    background:#2EE59D;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#07110F;
    font-size:18px;
    flex-shrink:0;
}
.floating-card h5{
    font-size:16px;
    margin-bottom:5px;
    font-weight:600;
}
.floating-card small{
    font-size:13px;
    color:#D4DDD8;
    display:block;
}
/*=========================================================
            FLOATING CARD POSITIONS
=========================================================*/
.card-one{
    top:40px;
    left:-20px;
}
.card-two{
    bottom:40px;
    right:-20px;
}
.card-three{
    top:50%;
    right:-60px;
    transform:translateY(-50%);
}
/*=========================================================
                    PREMIUM HOVER EFFECTS
=========================================================*/
.timeline-item{
    transition:.45s ease;
    border-radius:22px;
    padding:22px;
}
.timeline-item:hover{
    background:rgba(255,255,255,.05);
    transform:translateX(12px);
}
.timeline-item:hover .timeline-icon{
    transform:rotate(8deg) scale(1.08);
    box-shadow:0 0 25px rgba(46,229,157,.45);
}
.timeline-icon{
    transition:.45s;
}
/*=========================================================
                    FLOATING CARDS
=========================================================*/
.floating-card{
    transition:.45s;
}
.floating-card:hover{
    transform:translateY(-10px) scale(1.04);
    border-color:#2EE59D;
    box-shadow:0 20px 55px rgba(46,229,157,.25);
}
/*=========================================================
                IMAGE HOVER EFFECT
=========================================================*/
.oxidative-image img{
    transition:.7s ease;
}
.oxidative-image:hover img{
    transform:
    scale(1.05)
    rotate(2deg);
}
/*=========================================================
                IMAGE GLOW
=========================================================*/
.image-glow{
    animation:glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse{
    0%{
        transform:scale(.9);
        opacity:.12;
    }
    50%{
        transform:scale(1.08);
        opacity:.25;
    }
    100%{
        transform:scale(.9);
        opacity:.12;
    }
}
/*=========================================================
                DNA RING ROTATION
=========================================================*/
.dna-ring{
    animation:rotateDNA 35s linear infinite;
}
@keyframes rotateDNA{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
/*=========================================================
                IMAGE FLOATING
=========================================================*/
.oxidative-image img{
    animation:imageFloat 6s ease-in-out infinite;
}
@keyframes imageFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-18px);
    }
    100%{
        transform:translateY(0);
    }
}
/*=========================================================
                FLOATING CARD ANIMATION
=========================================================*/
.card-one{
    animation:cardFloat1 5s ease-in-out infinite;
}
.card-two{
    animation:cardFloat2 5s ease-in-out infinite;
}
.card-three{
    animation:cardFloat3 6s ease-in-out infinite;
}
@keyframes cardFloat1{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}
@keyframes cardFloat2{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(10px);
    }
}
@keyframes cardFloat3{
    0%,100%{
        transform:translateY(-50%);
    }
    50%{
        transform:translateY(calc(-50% - 10px));
    }
}
/*=========================================================
                BACKGROUND PARTICLES
=========================================================*/
.particles{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
}
.particles span{
    position:absolute;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#2EE59D;
    opacity:.25;
    animation:particleMove 15s linear infinite;
}
.particles span:nth-child(1){
    left:8%;
    top:95%;
    animation-delay:0s;
}
.particles span:nth-child(2){
    left:25%;
    top:90%;
    animation-delay:3s;
}
.particles span:nth-child(3){
    left:48%;
    top:94%;
    animation-delay:6s;
}
.particles span:nth-child(4){
    left:70%;
    top:88%;
    animation-delay:2s;
}
.particles span:nth-child(5){
    left:90%;
    top:96%;
    animation-delay:4s;
}
@keyframes particleMove{
    0%{
        transform:
        translateY(0)
        scale(.4);
        opacity:0;
    }
    30%{
        opacity:.35;
    }
    100%{
        transform:
        translateY(-500px)
        scale(1.5);
        opacity:0;
    }
}
/*=========================================================
                SECTION BACKGROUND
=========================================================*/
.oxidative{
    background:
    radial-gradient(
    circle at right,
    rgba(46,229,157,.08),
    transparent 40%
    ),
    radial-gradient(
    circle at left,
    rgba(255,255,255,.02),
    transparent 45%
    ),
    #07110F;
}
/*=========================================================
                SCROLL REVEAL
=========================================================*/
.reveal{
    opacity:0;
    transform:translateY(70px);
    transition:1s ease;
}
.reveal.active{
    opacity:1;
    transform:translateY(0);
}
/*=========================================================
                BUTTON HOVER
=========================================================*/
.timeline-item:hover h4{
    color:#2EE59D;
}
.timeline-item h4{
    transition:.35s;
}
/*=========================================================
            CARD BORDER GLOW
=========================================================*/
.floating-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    padding:1px;
    background:linear-gradient(
    120deg,
    rgba(46,229,157,.5),
    transparent,
    rgba(46,229,157,.5)
    );
    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
    opacity:0;
    transition:.4s;
}
.floating-card:hover::before{
    opacity:1;
}
/*=========================================================
            TIMELINE GLOW
=========================================================*/
.timeline-line{
    box-shadow:
    0 0 12px rgba(46,229,157,.25);
}
/*=========================================================
                    4K DISPLAY
=========================================================*/
@media (min-width:2560px){
    .oxidative{
        padding:180px 0;
    }
    .oxidative-container{
        max-width:1850px;
        gap:120px;
    }
    .oxidative-content h2{
        font-size:92px;
    }
    .oxidative-content>p{
        font-size:24px;
        max-width:850px;
    }
    .timeline-item h4{
        font-size:30px;
    }
    .timeline-item p{
        font-size:18px;
    }
    .oxidative-image img{
        max-width:720px;
    }
    .dna-ring{
        width:760px;
        height:760px;
    }
    .image-glow{
        width:620px;
        height:620px;
    }
}
/*=========================================================
                LARGE DESKTOP
=========================================================*/
@media (max-width:1600px){
    .oxidative-content h2{
        font-size:64px;
    }
    .oxidative-image img{
        max-width:560px;
    }
}
/*=========================================================
                    DESKTOP
=========================================================*/
@media (max-width:1440px){
    .oxidative-container{
        gap:60px;
    }
    .oxidative-content h2{
        font-size:56px;
    }
    .oxidative-content>p{
        font-size:17px;
    }
    .oxidative-image img{
        max-width:500px;
    }
}
/*=========================================================
            MACBOOK / SURFACE LAPTOP
=========================================================*/
@media (max-width:1280px){
    .oxidative-container{
        gap:45px;
    }
    .oxidative-content h2{
        font-size:48px;
    }
    .timeline-item h4{
        font-size:20px;
    }
    .timeline-icon{
        width:58px;
        height:58px;
        min-width:58px;
    }
    .oxidative-image img{
        max-width:440px;
    }
    .floating-card{
        min-width:190px;
        padding:14px 18px;
    }
}
/*=========================================================
                SMALL LAPTOP
=========================================================*/
@media (max-width:1100px){
    .oxidative-content h2{
        font-size:42px;
    }
    .timeline-item{
        gap:16px;
    }
    .oxidative-image img{
        max-width:400px;
    }
    .dna-ring{
        width:470px;
        height:470px;
    }
}
/*=========================================================
                SURFACE PRO / iPAD PRO
=========================================================*/
@media (max-width:992px){
    .oxidative{
        padding:100px 0;
    }
    .oxidative-container{
        grid-template-columns:1fr;
        gap:60px;
        text-align:center;
    }
    .oxidative-content{
        order:1;
        align-items:center;
    }
    .oxidative-image{
        order:2;
    }
    .oxidative-content>p{
        max-width:700px;
    }
    .timeline{
        width:100%;
        max-width:700px;
    }
    .oxidative-image img{
        max-width:480px;
    }
    .card-one{
        left:20px;
    }
    .card-two{
        right:20px;
    }
    .card-three{
        right:-10px;
    }
}
/*=========================================================
                    TABLETS
=========================================================*/
@media (max-width:768px){
    .oxidative{
        padding:90px 0;
    }
    .oxidative-content h2{
        font-size:38px;
        line-height:1.2;
    }
    .oxidative-content>p{
        font-size:16px;
    }
    .timeline-item{
        text-align:left;
        padding:16px;
    }
    .timeline-icon{
        width:54px;
        height:54px;
        min-width:54px;
        font-size:20px;
    }
    .timeline-item h4{
        font-size:18px;
    }
    .timeline-item p{
        font-size:14px;
    }
    .oxidative-image img{
        max-width:380px;
    }
    .dna-ring{
        width:420px;
        height:420px;
    }
    .image-glow{
        width:320px;
        height:320px;
    }
    .floating-card{
        min-width:170px;
    }
}
/*=========================================================
                LARGE MOBILE
=========================================================*/
@media (max-width:576px){
    .oxidative{
        padding:80px 0;
    }
    .oxidative-container{
        width:92%;
    }
    .oxidative-content h2{
        font-size:32px;
    }
    .oxidative-content>p{
        font-size:15px;
    }
    .timeline-item{
        gap:14px;
    }
    .timeline-icon{
        width:50px;
        height:50px;
        min-width:50px;
        border-radius:16px;
    }
    .timeline-line{
        margin-left:24px;
    }
    .oxidative-image img{
        max-width:310px;
    }
    .dna-ring{
        width:340px;
        height:340px;
    }
    .image-glow{
        width:250px;
        height:250px;
    }
    .floating-card{
        min-width:150px;
        padding:12px 14px;
    }
    .floating-card h5{
        font-size:14px;
    }
    .floating-card small{
        font-size:11px;
    }
    .card-one{
        left:0;
        top:20px;
    }
    .card-two{
        right:0;
        bottom:20px;
    }
    .card-three{
        display:none;
    }
}
/*=========================================================
                    MOBILE
=========================================================*/
@media (max-width:430px){
    .oxidative-content h2{
        font-size:28px;
    }
    .oxidative-content>p{
        font-size:14px;
    }
    .oxidative-image img{
        max-width:270px;
    }
    .timeline-item{
        padding:12px;
    }
    .timeline-icon{
        width:46px;
        height:46px;
        min-width:46px;
        font-size:18px;
    }
    .timeline-item h4{
        font-size:17px;
    }
    .timeline-item p{
        font-size:13px;
    }
}
/*=========================================================
                SMALL MOBILE
=========================================================*/
@media (max-width:375px){
    .oxidative-content h2{
        font-size:24px;
    }
    .oxidative-content>p{
        font-size:13px;
    }
    .oxidative-image img{
        max-width:240px;
    }
    .dna-ring{
        width:280px;
        height:280px;
    }
    .image-glow{
        width:210px;
        height:210px;
    }
    .floating-card{
        display:none;
    }
}
/*=========================================================
            EXTRA SMALL MOBILE
=========================================================*/
@media (max-width:320px){
    .oxidative{
        padding:70px 0;
    }
    .oxidative-content h2{
        font-size:22px;
    }
    .oxidative-content>p{
        font-size:12px;
    }
    .timeline-icon{
        width:40px;
        height:40px;
        min-width:40px;
        font-size:16px;
    }
    .timeline-item h4{
        font-size:15px;
    }
    .timeline-item p{
        font-size:12px;
    }
    .oxidative-image img{
        max-width:210px;
    }
}
/*=====================================
        VIDEO SECTION
======================================*/
.video-section{
    position:relative;
    padding:140px 0;
    background:linear-gradient(180deg,#07110F,#020403);
    overflow:hidden;
}
/* Glow */
.video-glow{
    position:absolute;
    width:650px;
    height:650px;
    border-radius:50%;
    background:#2EE59D;
    filter:blur(180px);
    opacity:.08;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
/* Container */
.video-container{
    width:90%;
    max-width:1450px;
    margin:auto;
    position:relative;
    z-index:2;
}
/* Heading */
.video-heading{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}
.video-heading h2{
    color:#fff;
    font-size:60px;
    line-height:1.15;
    margin:20px 0;
}
.video-heading p{
    color:#C7D0CC;
    font-size:18px;
    line-height:1.9;
}
/* Video */
.video-wrapper{
    position:relative;
    border-radius:32px;
    overflow:hidden;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(25px);
    box-shadow:0 35px 70px rgba(0,0,0,.35);
    transition:.4s;
}
.video-wrapper:hover{
    transform:translateY(-8px);
    border-color:#2EE59D;
    box-shadow:0 45px 90px rgba(46,229,157,.18);
}
.video-wrapper video{
    width:100%;
    display:block;
}
/* Stats */
.video-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:70px;
}
.stat-card{
    padding:35px;
    border-radius:24px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.08);
    text-align:center;
    transition:.4s;
}
.stat-card:hover{
    transform:translateY(-8px);
    border-color:#2EE59D;
    box-shadow:0 20px 50px rgba(46,229,157,.18);
}
.stat-card h3{
    color:#2EE59D;
    font-size:48px;
    margin-bottom:12px;
}
.stat-card p{
    color:#D5DDD9;
    font-size:16px;
    line-height:1.7;
}
/*=====================================
        RESPONSIVE
======================================*/
@media(max-width:1280px){
    .video-heading h2{
    
    font-size:52px;
    
    }
    
    }
    
    @media(max-width:992px){
    
    .video-section{
    
    padding:100px 0;
    
    }
    
    .video-heading h2{
    
    font-size:42px;
    
    }
    
    .video-stats{
    
    grid-template-columns:1fr;
    
    gap:22px;
    
    }
    
    }
    
    @media(max-width:768px){
    
    .video-heading h2{
    
    font-size:34px;
    
    }
    
    .video-heading p{
    
    font-size:16px;
    
    }
    
    .video-wrapper{
    
    border-radius:22px;
    
    }
    
    }
    
    @media(max-width:576px){
    
    .video-heading h2{
    
    font-size:28px;
    
    }
    
    .video-heading{
    
    margin-bottom:45px;
    
    }
    
    .stat-card{
    
    padding:28px;
    
    }
    
    .stat-card h3{
    
    font-size:38px;
    
    }
    
    }
    
    @media(max-width:430px){
    
    .video-heading h2{
    
    font-size:24px;
    
    }
    
    .video-heading p{
    
    font-size:14px;
    
    }
    
    .stat-card h3{
    
    font-size:30px;
    
    }
    
    .stat-card p{
    
    font-size:14px;
    
    }
    
    }
/*==================================================*/
/*                    FOOTER*/
/*==================================================*/
.footer{
    position:relative;
    width:100%;
    overflow:hidden;
    background:linear-gradient(
        180deg,
        #07110F 0%,
        #04100D 60%,
        #020705 100%
    );
    padding:90px 0 35px;
    border-top:1px solid rgba(255,255,255,.08);
}
/*====================================*/
/*        BACKGROUND GLOW*/
/*====================================*/
.footer::before{
    content:"";
    position:absolute;
    width:900px;
    height:900px;
    background:#2EE59D;
    border-radius:50%;
    filter:blur(220px);
    opacity:.06;
    left:50%;
    top:-450px;
    transform:translateX(-50%);
}
.footer::after{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    background:#FF9F2A;
    border-radius:50%;
    filter:blur(220px);
    opacity:.03;
    right:-200px;
    bottom:-250px;
}
/*====================================*/
/*            CONTAINER*/
/*====================================*/
.footer-container{
    width:90%;
    max-width:1450px;
    margin:auto;
    position:relative;
    z-index:2;
}
/*====================================*/
/*            DIVIDER*/
/*====================================*/
.footer-divider{
    width:100%;
    height:1px;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.18),
        transparent
    );
}
.bottom-divider{
    margin-top:65px;
}
/*====================================*/
/*            CONTENT*/
/*====================================*/
.footer-content {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 180px;
    padding: 70px 0;
}
/*====================================*/
/*            LEFT*/
/*====================================*/
.company-header{
    display:flex;
    align-items:center;
    gap:22px;
    margin-bottom:45px;
}
.company-header img{
    width:72px;
    transition:.45s;
}
.company-header img:hover{
    transform:rotate(-5deg) scale(1.05);
}
.company-header h3{
    color:#fff;
    font-size:26px;
    margin-bottom:8px;
    font-weight:700;
}
.company-header span{
    color:#2EE59D;
    font-size:16px;
}
.footer-contact{
    display:flex;
    flex-direction:column;
    gap:28px;
}
/*====================================*/
/*        CONTACT ITEM*/
/*====================================*/
.contact-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
}
.contact-icon {
    width: 62px;
    height: 62px;
    padding: 12px;
    box-sizing: border-box;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: rgba(46,229,157,.10);
    border: 1px solid rgba(46,229,157,.20);
    color: #2EE59D;
    font-size: 20px;
    transition: .4s;
}
.contact-item:hover .contact-icon{
    transform:translateY(-6px);
    background:#2EE59D;
    color:#07110F;
    box-shadow:0 15px 30px rgba(46,229,157,.25);
}
.contact-item p,
.contact-item a{
    color:#D4DDD9;
    text-decoration:none;
    line-height:1.8;
    transition:.35s;
}
.contact-item a:hover{
    color:#2EE59D;
}
.phones{
    display:flex;
    flex-direction:column;
    gap:8px;
}
/*====================================*/
/*            RIGHT*/
/*====================================*/
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 30px;
}
.footer-logo{
    margin-bottom:35px;
}
.footer-logo img{
    width:180px;
    transition:.45s;
}
.footer-logo img:hover{
    transform:scale(1.05);
}
.footer-links ul{
    list-style:none;
}
.footer-links li{
    margin-bottom:18px;
}
.footer-links a{
    color:#D4DDD9;
    text-decoration:none;
    position:relative;
    transition:.35s;
    display:inline-block;
    font-size:17px;
}
.footer-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#2EE59D;
    transition:.35s;
}
.footer-links a:hover{
    color:#fff;
    transform:translateX(8px);
}
.footer-links a:hover::after{
    width:100%;
}
/*====================================*/
/*        CDS SITE*/
/*====================================*/
.partner-site{
    margin-top:40px;
}
.partner-site span{
    display:block;
    color:#9EA8A4;
    margin-bottom:10px;
    font-size:14px;
}
.partner-site a{
    color:#2EE59D;
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    position:relative;
}
.partner-site a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#2EE59D;
    transition:.35s;
}
.partner-site a:hover::after{
    width:100%;
}
/*====================================*/
/*        COPYRIGHT*/
/*====================================*/
.footer-bottom{
    padding-top:30px;
    text-align:center;
}
.footer-bottom p{
    color:#AEB7B3;
    font-size:15px;
    letter-spacing:.5px;
}
/*==================================================*/
/*                4K DISPLAY*/
/*==================================================*/
@media (min-width:2560px){
    .footer{
    
    padding:120px 0 40px;
    
    }
    
    .footer-container{
    
    max-width:1800px;
    
    }
    
    .footer-content{
    
    gap:180px;
    
    padding:90px 0;
    
    }
    
    .company-header h3{
    
    font-size:34px;
    
    }
    
    .company-header span{
    
    font-size:18px;
    
    }
    
    .contact-item p,
    .contact-item a{
    
    font-size:20px;
    
    }
    
    .footer-links a{
    
    font-size:22px;
    
    }
    
    .partner-site a{
    
    font-size:24px;
    
    }
    
    .footer-logo img{
    
    width:240px;
    
    }
    
    }
    
    /*==================================================*/
    /*            LARGE DESKTOP*/
    /*==================================================*/
    
    @media (max-width:1600px){
    
    .footer-content{
    
    gap:120px;
    
    }
    
    }
    
    /*==================================================*/
    /*                DESKTOP*/
    /*==================================================*/
    
    @media (max-width:1440px){
    
    .footer-content{
    
    gap:90px;
    
    }
    
    .company-header h3{
    
    font-size:24px;
    
    }
    
    .footer-logo img{
    
    width:170px;
    
    }
    
    }
    
    /*==================================================*/
    /*            MACBOOK / SURFACE LAPTOP*/
    /*==================================================*/
    
@media (max-width: 1280px) {
    .footer-content {
        grid-template-columns: 1.7fr 1fr;
        gap: 100px;
    }
    .footer-right {
        padding-left: 15px;
    }
    .company-header img {
        width: 65px;
    }
    .company-header h3 {
        font-size: 22px;
    }
    .contact-icon {
        width: 58px;
        height: 58px;
        padding: 11px;
        font-size: 19px;
    }
}
    
    /*==================================================*/
    /*                SMALL LAPTOP*/
    /*==================================================*/
    
    @media (max-width:1100px){
    
    .footer-content{
    
    gap:55px;
    
    }
    
    .footer-links a{
    
    font-size:16px;
    
    }
    
    .partner-site a{
    
    font-size:18px;
    
    }
    
    }
    
    /*==================================================*/
    /*        SURFACE PRO / iPAD PRO*/
    /*==================================================*/
    
    @media (max-width:992px){
    
    .footer{
    
    padding:80px 0 30px;
    
    }
    
    .footer-content{
    
    grid-template-columns:1fr;
    
    gap:60px;
    
    }
    
    .footer-right{
    
    align-items:flex-start;
    
    }
    
    .footer-logo{
    
    margin-bottom:30px;
    
    }
    
    .footer-divider{
    
    margin:15px 0;
    
    }
    
    .bottom-divider{
    
    margin-top:40px;
    
    }
    
    }
    
    /*==================================================*/
    /*                TABLET*/
    /*==================================================*/
    
    @media (max-width:768px){
    
    .footer{
    
    padding:70px 0 25px;
    
    }
    
    .footer-container{
    
    width:92%;
    
    }
    
    .footer-content{
    
    padding:50px 0;
    
    gap:50px;
    
    }
    
    .company-header{
    
    flex-direction:column;
    
    align-items:flex-start;
    
    }
    
    .company-header img{
    
    width:60px;
    
    }
    
    .company-header h3{
    
    font-size:21px;
    
    }
    
    .contact-item{
    
    gap:15px;
    
    }
    
    .contact-icon{
    
    width:48px;
    
    height:48px;
    
    font-size:18px;
    
    }
    
    .footer-logo img{
    
    width:155px;
    
    }
    
    .partner-site{
    
    margin-top:30px;
    
    }
    
    }
    
    /*==================================================*/
    /*            LARGE MOBILE*/
    /*==================================================*/
    
    @media (max-width:576px){
    
    .footer{
    
    padding:60px 0 20px;
    
    }
    
    .footer-container{
    
    width:92%;
    
    }
    
    .company-header{
    
    flex-direction:column;
    
    align-items:center;
    
    text-align:center;
    
    }
    
    .footer-left{
    
    text-align:center;
    
    }
    
    .contact-item{
    
    flex-direction:column;
    
    align-items:center;
    
    text-align:center;
    
    gap:12px;
    
    }
    
    .contact-icon{
    
    margin-bottom:5px;
    
    }
    
    .footer-right{
    
    align-items:center;
    
    text-align:center;
    
    }
    
    .footer-links ul{
    
    padding:0;
    
    }
    
    .footer-links li{
    
    margin-bottom:16px;
    
    }
    
    .partner-site{
    
    text-align:center;
    
    }
    
    .footer-logo img{
    
    width:140px;
    
    }
    
    .footer-bottom{
    
    padding-top:22px;
    
    }
    
    }
    
    /*==================================================*/
    /*                MOBILE*/
    /*==================================================*/
    
    @media (max-width:430px){
    
    .footer{
    
    padding:55px 0 20px;
    
    }
    
    .footer-content{
    
    gap:40px;
    
    }
    
    .company-header img{
    
    width:55px;
    
    }
    
    .company-header h3{
    
    font-size:18px;
    
    }
    
    .company-header span{
    
    font-size:13px;
    
    }
    
    .contact-item p,
    .contact-item a{
    
    font-size:14px;
    
    line-height:1.6;
    
    }
    
    .contact-icon{
    
    width:44px;
    
    height:44px;
    
    font-size:17px;
    
    }
    
    .footer-logo img{
    
    width:125px;
    
    }
    
    .footer-links a{
    
    font-size:15px;
    
    }
    
    .partner-site a{
    
    font-size:17px;
    
    }
    
    .footer-bottom p{
    
    font-size:13px;
    
    }
    
    }
    
    /*==================================================*/
    /*            SMALL MOBILE*/
    /*==================================================*/
    
    @media (max-width:375px){
    
    .footer{
    
    padding:50px 0 15px;
    
    }
    
    .company-header img{
    
    width:50px;
    
    }
    
    .company-header h3{
    
    font-size:16px;
    
    }
    
    .company-header span{
    
    font-size:12px;
    
    }
    
    .contact-item{
    
    gap:10px;
    
    }
    
    .contact-icon{
    
    width:40px;
    
    height:40px;
    
    font-size:15px;
    
    }
    
    .footer-logo img{
    
    width:110px;
    
    }
    
    .footer-links a{
    
    font-size:14px;
    
    }
    
    .partner-site a{
    
    font-size:15px;
    
    }
    
    }
    
    /*==================================================*/
    /*            EXTRA SMALL MOBILE*/
    /*==================================================*/
    
    @media (max-width:320px){
    
    .footer{
    
    padding:40px 0 15px;
    
    }
    
    .company-header h3{
    
    font-size:15px;
    
    }
    
    .company-header span{
    
    font-size:11px;
    
    }
    
    .contact-item p,
    .contact-item a{
    
    font-size:12px;
    
    }
    
    .contact-icon{
    
    width:38px;
    
    height:38px;
    
    font-size:14px;
    
    }
    
    .footer-logo img{
    
    width:100px;
    
    }
    
    .footer-links a{
    
    font-size:13px;
    
    }
    
    .partner-site a{
    
    font-size:14px;
    
    }
    
    .footer-bottom p{
    
    font-size:12px;
    
    }
    
    }
    /* =========================================================
   RESOURCES DROPDOWN
========================================================= */
.nav-dropdown {
    position: relative;
}
/* RESOURCES BUTTON */
.nav-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 0;
    transition: color 0.3s ease;
}
.nav-dropdown-btn:hover {
    color: #2EE59D;
}
/* CHEVRON */
.nav-dropdown-btn i {
    font-size: 10px;
    transition:
        transform 0.3s ease,
        color 0.3s ease;
}
.nav-dropdown.active .nav-dropdown-btn {
    color: #2EE59D;
}
.nav-dropdown.active .nav-dropdown-btn i {
    transform: rotate(180deg);
}
/* =========================================================
   DROPDOWN MENU
========================================================= */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 230px;
    padding: 10px;
    background: rgba(8, 25, 21, 0.96);
    border: 1px solid rgba(46, 229, 157, 0.25);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(46, 229, 157, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
    z-index: 9999;
}
/* OPEN */
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* =========================================================
   DROPDOWN LINKS
========================================================= */
.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 15px;
    border-radius: 11px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}
.nav-dropdown-menu a i {
    font-size: 11px;
    color: #2EE59D;
    opacity: 0;
    transform: translateX(-5px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}
.nav-dropdown-menu a:hover {
    background: rgba(46, 229, 157, 0.10);
    color: #ffffff;
    transform: translateX(2px);
}
.nav-dropdown-menu a:hover i {
    opacity: 1;
    transform: translateX(0);
}
/* =========================================================
   AIRSHIP TRANSITION SECTION
========================================================= */
.airship-transition {
    position: relative;
    width: 100%;
    padding: 150px 6vw 160px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(46, 229, 157, 0.09),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #020807,
            #031612,
            #00100d
        );
}
/* =========================================================
   SUBTLE GRID
========================================================= */
.airship-transition::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(
            rgba(46,229,157,.06) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(46,229,157,.06) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
}
/* =========================================================
   HEADING
========================================================= */
.transition-heading {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 110px;
    text-align: center;
}
.transition-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: #2EE59D;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.transition-eyebrow::before,
.transition-eyebrow::after {
    content: "";
    width: 35px;
    height: 1px;
    background: #2EE59D;
}
.transition-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(
        48px,
        6vw,
        90px
    );
    line-height: .95;
    letter-spacing: -4px;
    font-weight: 800;
}
.transition-heading h2 span {
    color: #2EE59D;
}
.transition-heading p {
    max-width: 700px;
    margin: 30px auto 0;
    color: rgba(255,255,255,.62);
    font-size: 17px;
    line-height: 1.8;
}
/* =========================================================
   JOURNEY
========================================================= */
.transition-journey {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: auto;
}
/* =========================================================
   STEP
========================================================= */
.transition-step {
    position: relative;
    display: grid;
    grid-template-columns:
        70px
        minmax(350px, 1fr)
        minmax(350px, 1fr);
    align-items: center;
    gap: 55px;
    min-height: 400px;
}
/* =========================================================
   NUMBER
========================================================= */
.transition-number {
    align-self: start;
    padding-top: 12px;
    color: #2EE59D;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}
/* =========================================================
   IMAGE
========================================================= */
.transition-image {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 28px;
    background: #071712;
}
.transition-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(46,229,157,.14),
            transparent 55%
        );
    pointer-events: none;
}
.transition-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform .7s ease,
        filter .7s ease;
    filter:
        saturate(.85)
        brightness(.82);
}
.transition-step:hover
.transition-image img {
    transform: scale(1.04);
    filter:
        saturate(1)
        brightness(.95);
}
/* =========================================================
   IMAGE BORDER
========================================================= */
.transition-image {
    border: 1px solid
        rgba(255,255,255,.16);
    box-shadow:
        0 30px 80px
        rgba(0,0,0,.35);
}
/* =========================================================
   CONTENT
========================================================= */
.transition-content {
    padding-right: 30px;
}
.transition-label {
    display: block;
    margin-bottom: 18px;
    color: #FF9F2A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}
.transition-content h3 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(
        42px,
        5vw,
        70px
    );
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 800;
}
.transition-content p {
    max-width: 500px;
    margin: 0;
    color:
        rgba(255,255,255,.62);
    font-size: 17px;
    line-height: 1.8;
}
/* =========================================================
   ALTERNATING LAYOUT
========================================================= */
.transition-step-reverse {
    grid-template-columns:
        70px
        minmax(350px, 1fr)
        minmax(350px, 1fr);
}
.transition-step-reverse
.transition-image {
    order: 3;
}
.transition-step-reverse
.transition-content {
    order: 2;
}
/* =========================================================
   CONNECTING LINE
========================================================= */
.transition-line {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
}
.transition-line::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background:
        linear-gradient(
            to bottom,
            transparent,
            #2EE59D,
            transparent
        );
}
.transition-line span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 9px;
    transform:
        translate(
            -50%,
            -50%
        );
    border-radius: 50%;
    background: #2EE59D;
    box-shadow:
        0 0 20px
        rgba(46,229,157,.8);
}
/* =========================================================
   BOTTOM STATEMENT
========================================================= */
.transition-statement {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 110px;
}
.transition-statement span {
    width: 80px;
    height: 1px;
    background:
        rgba(46,229,157,.45);
}
.transition-statement p {
    margin: 0;
    color:
        rgba(255,255,255,.55);
    font-size: 16px;
    letter-spacing: 1px;
    text-align: center;
}
.transition-statement strong {
    color: #2EE59D;
    font-weight: 600;
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1000px) {
    .airship-transition {
        padding:
            110px 5vw
            120px;
    }
    .transition-step {
        grid-template-columns:
            50px 1fr 1fr;
        gap: 30px;
    }
    .transition-image {
        height: 300px;
    }
    .transition-content h3 {
        font-size: 48px;
    }
}
/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 700px) {
    .airship-transition {
        padding:
            90px 24px
            100px;
    }
    .transition-heading {
        margin-bottom: 70px;
    }
    .transition-heading h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }
    .transition-heading p {
        font-size: 15px;
    }
    .transition-step,
    .transition-step-reverse {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
        min-height: auto;
    }
    .transition-number {
        padding: 0;
    }
    .transition-image {
        width: 100%;
        height: 260px;
        order: 2 !important;
        border-radius: 20px;
    }
    .transition-content {
        order: 3 !important;
        padding: 0;
    }
    .transition-content h3 {
        font-size: 46px;
        letter-spacing: -2px;
    }
    .transition-content p {
        font-size: 15px;
    }
    .transition-line {
        height: 80px;
    }
    .transition-statement {
        margin-top: 80px;
        gap: 15px;
    }
    .transition-statement span {
        width: 30px;
    }
    .transition-statement p {
        font-size: 13px;
        line-height: 1.6;
    }
}