
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Tahoma, sans-serif;
}

body{
    background:#f4f7fc;
    overflow-x:hidden;

    -webkit-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-touch-callout:none;
}
img{
    pointer-events:none;
}


::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:20px;
}
/* =========================
TOPBAR
========================= */

.topbar{
    width:100%;
    background:linear-gradient(45deg,#244a86,#4f7ed1);
    padding:12px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    flex-wrap:wrap;
    gap:15px;
}

.topbar i{
    margin-right:8px;
}

/* =========================
NAVBAR
========================= */

.navbar{
    width:100%;
    background:#fff;
    padding:15px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:999;
    overflow:visible;
}

/* =========================
LOGO
========================= */

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    height:65px;
    width:auto;
    max-width:220px;
    object-fit:contain;
    display:block;
}

.logo-box{
    width:65px;
    height:65px;
    border:3px solid #315ea8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    font-style:italic;
    font-weight:bold;
    color:#315ea8;
}

.logo-text{
    color:#244a86;
    font-size:20px;
    font-weight:bold;
    line-height:28px;
}

/* =========================
MENU
========================= */

.menu{
    list-style:none;
    display:flex;
    gap:35px;
    align-items:center;
}

.menu li{
    position:relative;
}

.menu li a{
    text-decoration:none;
    color:#111;
    font-size:17px;
    font-weight:700;
    transition:.3s;
}

.menu > li > a{
    display:inline-block;
}

.menu li a:hover{
    color:#315ea8;
}

/* =========================
PRODUCT SUBMENU
========================= */

.menu-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:100005;
    pointer-events:none;
}

.menu-overlay.active{
    display:block;
    pointer-events:auto;
}

body.menu-open{
    overflow:hidden;
}

.nav-products{
    position:relative;
}

.nav-products-row{
    display:inline-flex;
    align-items:center;
    gap:6px;
    flex-wrap:nowrap;
}

.nav-products-link{
    display:inline-flex;
    align-items:center;
    font-size:17px;
    font-weight:700;
    white-space:nowrap;
    padding:0;
    width:auto;
}

.nav-products-toggle{
    display:none;
    width:38px;
    height:38px;
    border:none;
    border-radius:8px;
    background:#eef2ff;
    color:#315ea8;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    font-size:14px;
    transition:.3s;
}

.nav-products-toggle:hover{
    background:#dbeafe;
}

.nav-products.is-open .nav-products-toggle i{
    transform:rotate(180deg);
}

.nav-products-toggle i{
    transition:transform .3s;
}

.product-submenu{
    list-style:none;
    margin:0;
    padding:0;
    background:#fff;
    display:none !important;
}

.product-submenu li{
    border-bottom:1px solid #e5e7eb;
}

.product-submenu li:last-child{
    border-bottom:none;
}

.product-submenu a{
    display:block;
    padding:14px 18px;
    color:#111;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    line-height:1.45;
    white-space:normal;
    transition:.3s;
}

.product-submenu a:hover{
    background:#2563eb;
    color:#fff;
}

.product-submenu a:hover .cat-count{
    color:#dbeafe;
}

.cat-count{
    color:#64748b;
    font-size:12px;
    font-weight:600;
}

.menu-close-item{
    display:none;
}

/* Desktop: hover + dropdown */
@media(min-width:1025px){

    .nav-products-row{
        display:inline-flex;
        align-items:center;
    }

    .nav-products-link{
        font-size:17px;
        font-weight:700;
        line-height:normal;
    }

    .nav-products-toggle{
        display:none !important;
    }

    .nav-products:hover > .product-submenu,
    .nav-products.is-open > .product-submenu{
        display:block !important;
        position:absolute;
        left:0;
        transform:none;
        top:calc(100% + 12px);
        min-width:400px;
        max-width:440px;
        max-height:460px;
        overflow-y:auto;
        overflow-x:hidden;
        border-radius:18px;
        border:1px solid rgba(49,94,168,0.12);
        background:#fff;
        box-shadow:0 22px 50px rgba(37,99,235,0.18), 0 8px 20px rgba(15,23,42,0.08);
        z-index:1001;
        animation:dropdownFadeIn 0.25s ease;
        scrollbar-width:thin;
        scrollbar-color:#2563eb #eef2ff;
        padding-bottom:12px;
    }

    .nav-products:hover > .product-submenu::before,
    .nav-products.is-open > .product-submenu::before{
        content:"";
        display:block;
        height:4px;
        background:linear-gradient(90deg,#244a86,#2563eb,#38bdf8);
        position:sticky;
        top:0;
        z-index:3;
    }

    .nav-products::after{
        content:"";
        position:absolute;
        left:0;
        top:100%;
        width:100%;
        height:12px;
    }

    .product-submenu li{
        border-bottom:none;
    }

    .submenu-all-item{
        position:sticky;
        top:4px;
        z-index:2;
        padding:16px 18px 12px;
        background:#fff;
    }

    .submenu-all-link{
        display:flex !important;
        align-items:center;
        gap:14px;
        padding:14px 18px 14px 20px !important;
        border-radius:12px;
        background:linear-gradient(135deg,#eff6ff,#dbeafe);
        color:#1e3a8a !important;
        font-size:15px !important;
        font-weight:700 !important;
        border:1px solid rgba(37,99,235,0.15);
        transition:.3s;
    }

    .submenu-all-link i{
        width:38px;
        height:38px;
        display:flex;
        align-items:center;
        justify-content:center;
        border-radius:10px;
        background:linear-gradient(135deg,#2563eb,#1e40af);
        color:#fff;
        font-size:15px;
        flex-shrink:0;
        margin-left:2px;
    }

    .submenu-all-link:hover{
        background:linear-gradient(135deg,#dbeafe,#bfdbfe) !important;
        color:#1e3a8a !important;
        transform:translateY(-1px);
        box-shadow:0 8px 20px rgba(37,99,235,0.15);
    }

    .submenu-section-title{
        padding:8px 24px 10px;
        font-size:11px;
        font-weight:800;
        letter-spacing:1.2px;
        text-transform:uppercase;
        color:#64748b;
        background:#f8fafc;
        border-top:1px solid #e2e8f0;
        border-bottom:1px solid #e2e8f0;
        position:sticky;
        top:78px;
        z-index:2;
    }

    .submenu-cat-item{
        padding:0 14px;
    }

    .submenu-cat-item a{
        display:flex !important;
        align-items:center;
        gap:10px;
        padding:13px 16px 13px 22px !important;
        margin-bottom:5px;
        border-radius:10px;
        font-size:14px !important;
        font-weight:600 !important;
        color:#334155 !important;
        border-left:4px solid transparent;
        transition:.25s ease;
    }

    .submenu-cat-icon{
        font-size:11px;
        color:#94a3b8;
        flex-shrink:0;
        width:14px;
        transition:.25s;
    }

    .submenu-cat-name{
        flex:1;
        line-height:1.5;
        padding-left:4px;
        padding-right:10px;
        word-break:break-word;
    }

    .submenu-cat-item a .cat-count{
        flex-shrink:0;
        min-width:30px;
        height:30px;
        padding:0 10px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        border-radius:20px;
        background:#f1f5f9;
        color:#475569;
        font-size:11px;
        font-weight:700;
    }

    .submenu-cat-item a:hover{
        background:#f0f6ff !important;
        color:#1e40af !important;
        border-left-color:#2563eb;
        padding-left:26px !important;
        box-shadow:0 4px 12px rgba(37,99,235,0.08);
    }

    .submenu-cat-item a:hover .submenu-cat-icon{
        color:#2563eb;
        transform:translateX(3px);
    }

    .submenu-cat-item a:hover .cat-count{
        background:#2563eb;
        color:#fff;
    }

    .product-submenu::-webkit-scrollbar{
        width:8px;
    }

    .product-submenu::-webkit-scrollbar-thumb{
        background:linear-gradient(#2563eb,#38bdf8);
        border-radius:10px;
    }

    .product-submenu::-webkit-scrollbar-track{
        background:#eef2ff;
        border-radius:10px;
    }

}

@keyframes dropdownFadeIn{
    from{
        opacity:0;
        transform:translateY(8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}


/* Tablet: click to open */
@media(min-width:851px) and (max-width:1024px){

    .nav-products-row{
        display:inline-flex;
        align-items:center;
        gap:6px;
        flex-wrap:nowrap;
    }

    .nav-products-link{
        font-size:17px;
        font-weight:700;
        width:auto;
        padding:0;
    }

    .nav-products-toggle{
        display:inline-flex !important;
        width:34px;
        height:34px;
        flex-shrink:0;
    }

    .nav-products.is-open > .product-submenu{
        display:block !important;
        position:absolute;
        left:0;
        top:calc(100% + 8px);
        min-width:300px;
        max-width:340px;
        max-height:60vh;
        overflow-y:auto;
        border-radius:14px;
        box-shadow:0 10px 30px rgba(0,0,0,0.15);
        z-index:1001;
    }

}

/* Mobile: inside slide menu */
@media(max-width:850px){

    .nav-products-toggle{
        display:inline-flex !important;
        align-items:center;
        justify-content:center;
        width:30px;
        height:30px;
        flex-shrink:0;
        margin:0;
        padding:0;
    }

    .nav-products-row{
        display:flex;
        flex-direction:row;
        flex-wrap:nowrap;
        align-items:center;
        justify-content:flex-start;
        gap:8px;
        width:100%;
        padding:18px 10px;
        box-sizing:border-box;
    }

    .nav-products-link{
        flex:0 0 auto;
        width:auto !important;
        padding:0 !important;
        font-size:18px !important;
        font-weight:700;
        line-height:1;
        display:inline-flex !important;
        align-items:center;
    }

    .nav-products.is-open > .product-submenu{
        display:block !important;
        width:100%;
        max-height:45vh;
        overflow-y:auto;
        border-radius:12px;
        margin:0 0 10px;
        box-shadow:0 5px 15px rgba(0,0,0,0.08);
    }

    .product-submenu a{
        font-size:13px;
        padding:12px 16px;
    }

    .submenu-all-link{
        display:flex !important;
        align-items:center;
        gap:10px;
        background:#f0f6ff;
        border-radius:10px;
        margin:0 4px 8px;
    }

    .submenu-all-link i{
        color:#2563eb;
        font-size:14px;
    }

    .submenu-cat-item a{
        display:flex !important;
        justify-content:space-between;
        align-items:center;
        gap:8px;
    }

    .submenu-cat-name{
        flex:1;
    }

    .submenu-cat-item a .cat-count{
        background:#eef2ff;
        color:#315ea8;
        padding:2px 8px;
        border-radius:12px;
        font-size:11px;
    }

    .submenu-section-title{
        padding:10px 16px 8px;
        font-size:11px;
        font-weight:700;
        color:#64748b;
        text-transform:uppercase;
        letter-spacing:1px;
        background:#f8fafc;
    }

    .submenu-cat-icon{
        display:none;
    }

    .nav-products{
        width:100%;
    }

}

/* =========================
MOBILE BUTTON
========================= */

.mobile-btn{
    display:none;
}

/* =========================
HERO SECTION
========================= */

.hero{
    width:100%;
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:70px 5%;
    gap:40px;
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#f4f7fc 0%,#eef4ff 45%,#f8fbff 100%);
}

.hero-animated{
    isolation:isolate;
}

.hero-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(60px);
    opacity:.45;
    z-index:0;
    animation:heroGlow 8s ease-in-out infinite;
}

.hero-bg-shape-1{
    width:320px;
    height:320px;
    background:#5f88d3;
    top:-80px;
    right:10%;
}

.hero-bg-shape-2{
    width:260px;
    height:260px;
    background:#38bdf8;
    bottom:-60px;
    left:5%;
    animation-delay:2s;
}

.hero-left,
.hero-right{
    position:relative;
    z-index:1;
}

.hero-left{
    flex:1;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    color:#315ea8;
    border:1px solid rgba(49,94,168,.15);
    padding:10px 16px;
    border-radius:999px;
    font-size:14px;
    font-weight:bold;
    margin-bottom:22px;
    box-shadow:0 8px 24px rgba(49,94,168,.08);
}

.hero-left h1{
    font-size:60px;
    color:#315ea8;
    margin-bottom:20px;
    line-height:1.1;
}

.hero-left h3{
    font-size:30px;
    margin-bottom:25px;
    color:#1e3a8a;
    line-height:1.4;
}

.hero-left p{
    font-size:24px;
    line-height:40px;
    margin-bottom:35px;
    font-weight:bold;
    color:#475569;
    max-width:620px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:18px 28px;
    background:linear-gradient(45deg,#315ea8,#5f88d3);
    color:#fff;
    border-radius:12px;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:.35s;
    box-shadow:0 12px 28px rgba(49,94,168,.22);
}

.hero-btn-outline{
    background:#fff;
    color:#315ea8;
    border:2px solid #315ea8;
    box-shadow:0 8px 20px rgba(49,94,168,.08);
}

.hero-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 32px rgba(49,94,168,.28);
}

.hero-btn-outline:hover{
    background:#315ea8;
    color:#fff;
}

.hero-right{
    flex:1;
}

.hero-visual{
    position:relative;
    width:100%;
    max-width:560px;
    margin:0 auto;
    animation:heroFloat 6s ease-in-out infinite;
}

.hero-image-glow{
    position:absolute;
    inset:8%;
    background:linear-gradient(135deg,#315ea8,#38bdf8);
    border-radius:24px;
    filter:blur(28px);
    opacity:.35;
    animation:heroPulse 4s ease-in-out infinite;
}

.hero-image-frame{
    position:relative;
    background:#fff;
    border-radius:24px;
    padding:14px;
    box-shadow:0 24px 50px rgba(15,23,42,.14);
    border:1px solid rgba(49,94,168,.12);
    overflow:hidden;
}

.hero-image-frame img{
    width:100%;
    display:block;
    border-radius:16px;
    object-fit:cover;
}

.hero-float-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(8px);
    border:1px solid rgba(49,94,168,.12);
    border-radius:16px;
    padding:14px 16px;
    box-shadow:0 14px 30px rgba(15,23,42,.12);
    animation:heroFloat 5s ease-in-out infinite;
}

.hero-float-card i{
    width:42px;
    height:42px;
    border-radius:12px;
    background:linear-gradient(135deg,#315ea8,#5f88d3);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    flex-shrink:0;
}

.hero-float-card strong{
    display:block;
    color:#1e3a8a;
    font-size:15px;
    line-height:1.2;
}

.hero-float-card span{
    display:block;
    color:#64748b;
    font-size:12px;
    margin-top:3px;
}

.hero-float-card-1{
    top:8%;
    left:-6%;
    animation-delay:.5s;
}

.hero-float-card-2{
    right:-4%;
    bottom:8%;
    animation-delay:1.2s;
}

.hero-animate{
    opacity:0;
    transform:translateY(30px);
    animation:heroFadeUp .9s ease forwards;
}

.hero-animate-1{ animation-delay:.1s; }
.hero-animate-2{ animation-delay:.25s; }
.hero-animate-3{ animation-delay:.4s; }
.hero-animate-4{ animation-delay:.55s; }
.hero-animate-5{ animation-delay:.7s; }
.hero-animate-6{
    transform:translateX(40px);
    animation-name:heroFadeRight;
    animation-delay:.45s;
}

@keyframes heroFadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes heroFadeRight{
    from{
        opacity:0;
        transform:translateX(40px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes heroFloat{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-12px); }
}

@keyframes heroPulse{
    0%,100%{ opacity:.28; transform:scale(.98); }
    50%{ opacity:.42; transform:scale(1.02); }
}

@keyframes heroGlow{
    0%,100%{ transform:translateY(0) scale(1); }
    50%{ transform:translateY(18px) scale(1.06); }
}

/* =========================
PRODUCTS SECTION
========================= */

.products-section{
    width:100%;
    padding:80px 5%;
}

.products-title{
    text-align:center;
    margin-bottom:50px;
}

.products-title h2{
    font-size:50px;
    color:#315ea8;
    margin-bottom:15px;
}

.products-line{
    width:120px;
    height:4px;
    background:#5f88d3;
    margin:auto;
    position:relative;
}

.products-line::after{
    content:'';
    width:40px;
    height:8px;
    background:#315ea8;
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:-2px;
    border-radius:20px;
}

/* =========================
PRODUCT GRID
========================= */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* =========================
PRODUCT CARD
========================= */

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:.4s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-img{
    width:100%;
    height:300px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-name{
    background:linear-gradient(45deg,#315ea8,#5f88d3);
    color:#fff;
    text-align:center;
    padding:22px;
    font-size:26px;
    font-weight:bold;
}

/* =========================
INFO CONTAINER
========================= */

.info-container{
    width:100%;
    margin-top:80px;
    background:linear-gradient(135deg,#315ea8,#5f88d3);
    border-radius:25px;
    padding:60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    color:#fff;
    flex-wrap:wrap;
}

.info-left{
    flex:1;
}

.info-left h2{
    font-size:45px;
    margin-bottom:20px;
}

.info-left p{
    font-size:22px;
    line-height:38px;
}

.info-btn{
    display:inline-block;
    margin-top:30px;
    background:#fff;
    color:#315ea8;
    padding:16px 35px;
    border-radius:10px;
    text-decoration:none;
    font-size:20px;
    font-weight:bold;
    transition:.3s;
}

.info-btn:hover{
    background:#244a86;
    color:#fff;
}

.info-right{
    flex:1;
    text-align:center;
}

.info-right img{
    width:100%;
    max-width:450px;
}

/* =========================
FOOTER
========================= */

.footer{
    width:100%;
    
    
    padding:30px 5%;
    text-align:center;
    margin-top:70px;
     background:#020617 !important;
    color:#fff !important;
}

/* =========================
WHATSAPP BUTTON
========================= */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25d366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:35px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    z-index:999;
}

/* =========================
TABLET RESPONSIVE
========================= */

@media(max-width:1100px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-left p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-float-card-1{
        left:0;
    }

    .hero-float-card-2{
        right:0;
    }

}

/* =========================
MOBILE MENU
========================= */

@media(max-width:850px){

    .mobile-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        background:none;
        border:none;
        font-size:30px;
        color:#315ea8;
        cursor:pointer;
        padding:0;
        position:relative;
        z-index:100002;
        min-width:44px;
        min-height:44px;
        touch-action:manipulation;
        -webkit-tap-highlight-color:transparent;
    }

    .menu-close-item{
        display:block;
        width:100%;
        border-bottom:none !important;
    }

    .close-btn{
        width:100%;
        text-align:right;
        font-size:35px;
        cursor:pointer;
        color:#111;
        padding-bottom:10px;
        background:none;
        border:none;
        font-weight:bold;
    }

    .menu{
        position:fixed;
        top:0;
        right:0;
        width:min(85vw,320px);
        height:100vh;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        padding:20px;
        transition:transform .35s ease, opacity .35s ease;
        z-index:100010;
        overflow-y:auto;
        gap:0;
        box-shadow:-5px 0 20px rgba(0,0,0,0.15);
        transform:translateX(100%);
        pointer-events:none;
        opacity:0;
        visibility:hidden;
    }

    .menu.active{
        transform:translateX(0);
        pointer-events:auto;
        opacity:1;
        visibility:visible;
    }

    .menu.active a,
    .menu.active button{
        pointer-events:auto;
        cursor:pointer;
    }

    body.menu-open #menuOpenBtn{
        opacity:0;
        visibility:hidden;
        pointer-events:none;
    }

    .menu li{
        width:100%;
        border-bottom:1px solid #ddd;
    }

    .menu > li > a{
        width:100%;
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:18px 10px;
        font-size:18px;
    }

    .nav-products{
        width:100%;
    }

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:768px){

    .topbar{
        flex-wrap:nowrap;
        justify-content:space-between;
        align-items:center;
        text-align:left;
        padding:10px 4%;
        font-size:13px;
        gap:10px;
    }

    .topbar > div{
        display:flex;
        align-items:center;
        min-width:0;
    }

    .topbar > div:first-child{
        justify-content:flex-start;
        flex:0 1 auto;
    }

    .topbar > div:last-child{
        justify-content:flex-end;
        text-align:right;
        flex:0 1 auto;
        margin-left:auto;
    }

    .topbar i{
        margin-right:5px;
        flex-shrink:0;
    }

    .hero{
        padding:50px 5%;
    }

    .hero-left h1{
        font-size:40px;
    }

    .hero-left h3{
        font-size:24px;
    }

    .hero-left p{
        font-size:20px;
        line-height:35px;
    }

    .hero-btn{
        width:100%;
        text-align:center;
        justify-content:center;
    }

    .hero-actions{
        flex-direction:column;
    }

    .hero-float-card{
        display:none;
    }

    .hero-left h3{
        font-size:22px;
    }

    .products-title h2{
        font-size:38px;
    }

    .product-grid{
        grid-template-columns:1fr;
    }

    .product-name{
        font-size:22px;
    }

    .info-container{
        padding:35px 25px;
        text-align:center;
    }

    .info-left h2{
        font-size:32px;
    }

    .info-left p{
        font-size:18px;
        line-height:32px;
    }

    .footer{
        font-size:14px;
    }

}
.close-btn{
    display:none;
}

/* MOBILE */

@media(max-width:850px){

    .close-btn{
        display:block;
        width:100%;
        text-align:right;
        font-size:35px;
        cursor:pointer;
        color:#111;
        padding-bottom:10px;
        font-weight:bold;
    }

}


/* =========================
MODERN FOOTER
========================= */

.footer{
    width:100%;
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    position:relative;
    overflow:hidden;
    color:#fff;
    margin-top:80px;
}

.footer-wave{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#00d2ff,#3a7bd5,#00d2ff);
    animation:wave 4s linear infinite;
    background-size:300% 100%;
}

@keyframes wave{

    0%{
        background-position:0% 50%;
    }

    100%{
        background-position:100% 50%;
    }

}

.footer-container{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    padding:70px 5%;
}

/* FOOTER LOGO */

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-logo-box{
    width:70px;
    height:70px;
    border:3px solid #60a5fa;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    font-style:italic;
    font-weight:bold;
    border-radius:12px;
    color:#60a5fa;
}

.footer-logo-text{
    font-size:28px;
    font-weight:bold;
    line-height:34px;
}

.footer-about p{
    font-size:16px;
    line-height:30px;
    color:#dbeafe;
}

/* CONTACT */

.footer-contact{
    margin-top:25px;
}

.footer-contact div{
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:12px;
    color:#e2e8f0;
}

.footer-contact i{
    width:40px;
    height:40px;
    background:rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    transition:.3s;
}

.footer-contact div:hover i{
    background:#60a5fa;
    transform:rotate(360deg);
}

/* HEADING */

.footer-box h3{
    font-size:28px;
    margin-bottom:25px;
    position:relative;
}

.footer-box h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:70px;
    height:4px;
    background:#60a5fa;
    border-radius:20px;
}

/* LINKS */

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:18px;
}

.footer-box ul li a{
    color:#dbeafe;
    text-decoration:none;
    transition:.3s;
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.footer-box ul li a:hover{
    color:#60a5fa;
    transform:translateX(8px);
}

/* SOCIAL */

.social-text{
    color:#dbeafe;
    line-height:30px;
    margin-bottom:25px;
}

.social-icons{
    display:flex;
    gap:15px;
}

.social-icons a{
    width:50px;
    height:50px;
    background:rgba(255,255,255,0.1);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    transition:.4s;
}

.social-icons a:hover{
    background:#60a5fa;
    transform:translateY(-10px) rotate(360deg);
}

/* COPYRIGHT */

.footer-bottom{
    width:100%;
    border-top:1px solid rgba(255,255,255,0.1);
    padding:25px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    color:#cbd5e1;
}

.footer-bottom span{
    color:#60a5fa;
    font-weight:bold;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
    }

    .footer-logo-text{
        font-size:22px;
        line-height:28px;
    }

    .footer-box h3{
        font-size:24px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

}

/* =========================
CONTACT SECTION
========================= */

.contact-section{
    width:100%;
    padding:90px 5%;
    background:#f8fbff;
}

.contact-container{
    width:100%;
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    display:grid;
    grid-template-columns:1fr 1fr;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* LEFT SIDE */

.contact-left{
    background:linear-gradient(135deg,#1e3a8a,#2563eb);
    padding:60px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.contact-left::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.contact-tag{
    background:rgba(255,255,255,0.15);
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    display:inline-block;
    margin-bottom:25px;
    letter-spacing:1px;
}

.contact-left h2{
    font-size:45px;
    line-height:58px;
    margin-bottom:25px;
}

.contact-left p{
    color:#dbeafe;
    line-height:32px;
    font-size:18px;
}

/* CONTACT BOX */

.contact-box{
    display:flex;
    gap:18px;
    align-items:flex-start;
    margin-top:35px;
}

.contact-icon{
    min-width:60px;
    height:60px;
    background:rgba(255,255,255,0.15);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.4s;
}

.contact-box:hover .contact-icon{
    background:#fff;
    color:#2563eb;
    transform:rotate(360deg);
}

.contact-details h4{
    font-size:22px;
    margin-bottom:8px;
}

.contact-details p{
    font-size:16px;
    line-height:28px;
}

/* RIGHT SIDE */

.contact-right{
    padding:60px;
    background:#fff;
}

.input-group{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.contact-right input,
.contact-right textarea{
    width:100%;
    padding:18px 20px;
    border:2px solid #e5e7eb;
    border-radius:15px;
    outline:none;
    font-size:16px;
    transition:.3s;
    background:#f9fafb;
}

.contact-right input:focus,
.contact-right textarea:focus{
    border-color:#2563eb;
    background:#fff;
}

.contact-right textarea{
    height:180px;
    resize:none;
    margin-bottom:25px;
}

.contact-right button{
    border:none;
    background:linear-gradient(45deg,#2563eb,#1e40af);
    color:#fff;
    padding:18px 35px;
    border-radius:15px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.4s;
    display:inline-flex;
    align-items:center;
    gap:12px;
}

.contact-right button:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(37,99,235,0.3);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1000px){

    .contact-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .contact-left,
    .contact-right{
        padding:35px 25px;
    }

    .contact-left h2{
        font-size:32px;
        line-height:45px;
    }

    .input-group{
        grid-template-columns:1fr;
    }

    .contact-right button{
        width:100%;
        justify-content:center;
    }

    .contact-details h4{
        font-size:20px;
    }

}