/* ===========================
   HEADER & NAVBAR
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f7f9fc;
    color:#222;
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#07182f;
    z-index:9999;
    box-shadow:0 4px 15px rgba(0,0,0,.25);
}

.header .container{
    width:95%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:58px;
    height:58px;
    object-fit:contain;
}

.logo h2{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.navbar{
    display:flex;
    align-items:center;
    gap:26px;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.navbar a:hover{
    color:#00b4ff;
}
/* ===========================
   PREMIUM BUTTONS
=========================== */

.quote-btn{
    background:linear-gradient(135deg,#00b4ff,#0077ff);
    color:#fff !important;
    padding:12px 26px;
    border-radius:8px;
    font-weight:700;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    white-space:nowrap;
    transition:.35s;
    box-shadow:0 5px 18px rgba(0,180,255,.35);
}

.quote-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,180,255,.45);
}

.ai-support-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-left:12px;
    padding:12px 22px;
    border-radius:8px;
    background:linear-gradient(135deg,#00AEEF,#0066ff);
    color:#fff !important;
    font-weight:700;
    text-decoration:none;
    white-space:nowrap;
    transition:.35s;
    box-shadow:0 5px 18px rgba(0,174,239,.35);
}

.ai-support-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,174,239,.45);
}

.navbar .active{
    color:#00b4ff;
}
/* ===========================
   RESPONSIVE NAVBAR
=========================== */

.menu-toggle{
    display:none;
    font-size:30px;
    color:#fff;
    cursor:pointer;
}

@media (max-width:992px){

    .header .container{
        flex-wrap:wrap;
    }

    .menu-toggle{
        display:block;
    }

    .navbar{
        display:none;
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
        margin-top:18px;
        padding:20px;
        background:#07182f;
        border-top:1px solid rgba(255,255,255,.08);
    }

    .navbar.active{
        display:flex;
    }

    .navbar a,
    .quote-btn,
    .ai-support-btn{
        width:100%;
        justify-content:center;
        margin-left:0;
    }
}

@media (max-width:768px){

    .logo h2{
        font-size:22px;
    }

    .logo img{
        width:48px;
        height:48px;
    }

    .header .container{
        padding:14px 0;
    }
}
/* ===========================
   HERO SECTION
=========================== */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        linear-gradient(rgba(5,18,40,.72),rgba(5,18,40,.78)),
        url("assets/hero-bg.jpg") center center/cover no-repeat;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,102,255,.18),
        rgba(0,174,239,.12)
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
    color:#fff;
    padding:140px 0 90px;
}

.hero-tag{
    display:inline-block;
    background:rgba(0,174,239,.15);
    color:#00c8ff;
    border:1px solid rgba(0,174,239,.35);
    padding:8px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}
/* ===========================
   HERO CONTENT
=========================== */

.hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:22px;
    max-width:700px;
}

.hero-content h3{
    font-size:28px;
    font-weight:600;
    color:#00c8ff;
    margin-bottom:20px;
    max-width:700px;
}

.hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#e5e5e5;
    max-width:700px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.hero-btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:10px;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    color:#fff;
    background:linear-gradient(135deg,#00AEEF,#0066ff);
    transition:.35s;
    box-shadow:0 12px 28px rgba(0,174,239,.35);
}

.btn-primary:hover,
.hero-btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(0,174,239,.45);
}

.btn-secondary,
.hero-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:10px;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    color:#fff;
    border:2px solid rgba(255,255,255,.35);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    transition:.35s;
}

.btn-secondary:hover,
.hero-btn-secondary:hover{
    background:#fff;
    color:#07182f;
}

@media(max-width:768px){

.hero-content h1{
    font-size:42px;
}

.hero-content h3{
    font-size:22px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
    align-items:flex-start;
}

.btn-primary,
.btn-secondary{
    width:100%;
}
}
/* ===========================
   HERO RIGHT CARD
=========================== */

.hero-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

.hero-card{
    width:430px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.18);
    border-radius:22px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,.30);
    transition:.40s;
}

.hero-card:hover{
    transform:translateY(-8px);
}

.hero-card img{
    width:110px;
    margin-bottom:22px;
}

.hero-card h3{
    color:#fff;
    font-size:34px;
    margin-bottom:15px;
    font-weight:700;
}

.hero-card p{
    color:#d9d9d9;
    line-height:1.9;
    font-size:17px;
    margin-bottom:28px;
}

.hero-ai-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:16px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    font-size:17px;
    color:#fff;
    background:linear-gradient(135deg,#00AEEF,#0066ff);
    transition:.35s;
    box-shadow:0 12px 25px rgba(0,174,239,.35);
}

.hero-ai-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(0,174,239,.45);
}

@media(max-width:992px){

.hero-container{
    flex-direction:column;
    text-align:center;
}

.hero-right{
    justify-content:center;
}

.hero-card{
    width:100%;
    max-width:450px;
}

}
/* ===========================
   ABOUT SECTION
=========================== */

.about{
    padding:110px 0;
    background:#ffffff;
}

.about .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.about-left,
.about-right{
    flex:1;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#eaf7ff;
    color:#0099e6;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.about-left h2{
    font-size:48px;
    color:#07182f;
    font-weight:800;
    line-height:1.25;
    margin-bottom:22px;
}

.about-left p{
    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.about-buttons{
    display:flex;
    gap:18px;
    margin-top:28px;
    flex-wrap:wrap;
}

.about-btn,
.about-btn-outline{
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.about-btn{
    background:linear-gradient(135deg,#00AEEF,#0066ff);
    color:#fff;
}

.about-btn:hover{
    transform:translateY(-3px);
}

.about-btn-outline{
    border:2px solid #0066ff;
    color:#0066ff;
    background:#fff;
}

.about-btn-outline:hover{
    background:#0066ff;
    color:#fff;
}

.about-right img{
    width:100%;
    max-width:520px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

@media(max-width:992px){

.about .container{
    flex-direction:column;
}

.about-left{
    text-align:center;
}

.about-buttons{
    justify-content:center;
}

}
/* ===========================
   COMPANY STATS
=========================== */

.company-stats{
    background:#07182f;
    padding:80px 0;
}

.company-stats .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    background:#ffffff;
    border-radius:18px;
    text-align:center;
    padding:40px 25px;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card h2{
    font-size:46px;
    color:#0077ff;
    font-weight:800;
    margin-bottom:12px;
}

.stat-card p{
    font-size:17px;
    color:#555;
    font-weight:600;
}

/* ===========================
   MISSION VISION
=========================== */

.mission-vision{
    padding:110px 0;
    background:#f8fbff;
}

.mission-vision .container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.mission-box,
.vision-box,
.value-box{

    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.10);

}

.mission-box:hover,
.vision-box:hover,
.value-box:hover{

    transform:translateY(-8px);

}

.mission-box i,
.vision-box i,
.value-box i{

    font-size:50px;
    color:#0099ff;
    margin-bottom:22px;

}

.mission-box h3,
.vision-box h3,
.value-box h3{

    font-size:28px;
    margin-bottom:18px;
    color:#07182f;

}

.mission-box p,
.vision-box p{

    color:#666;
    line-height:1.9;
    font-size:16px;

}

.value-box ul{

    list-style:none;
    margin-top:20px;

}

.value-box ul li{

    padding:10px 0;
    color:#555;
    font-weight:600;

}

@media(max-width:992px){

.company-stats .container,
.mission-vision .container{

    grid-template-columns:1fr;

}

}
/* ===========================
   SERVICES SECTION
=========================== */

.services{
    padding:110px 0;
    background:#ffffff;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.section-title span{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#eaf7ff;
    color:#0099ff;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title p{
    font-size:15px;
    max-width:600px;
    margin:10px auto 0;
    line-height:1.6
}

.section-title p{
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.services-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.service-card{

    background:#fff;
    border-radius:20px;
    padding:35px 28px;
    text-align:center;
    transition:.35s;
    border:1px solid #e8eef5;
    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.service-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.service-card i{

    font-size:55px;
    color:#0099ff;
    margin-bottom:22px;

}

.service-card h3{

    font-size:26px;
    color:#07182f;
    margin-bottom:16px;

}

.service-card p{

    color:#666;
    line-height:1.8;
    margin-bottom:25px;

}

.service-card a{

    display:inline-block;
    text-decoration:none;
    background:#0099ff;
    color:#fff;
    padding:12px 26px;
    border-radius:8px;
    font-weight:700;
    transition:.35s;

}

.service-card a:hover{

    background:#0066ff;

}

@media(max-width:1200px){

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-grid{

    grid-template-columns:1fr;

}

.section-title h2{

    font-size:34px;

}

}
/* ===========================
   PRODUCTS SECTION
=========================== */

.products{
    padding:110px 0;
    background:#f8fbff;
}

.products-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.product-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.10);

}

.product-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.product-card img{

    width:100%;
    height:240px;
    object-fit:cover;

}

.product-content{

    padding:28px;

}

.product-content h3{

    font-size:26px;
    color:#07182f;
    margin-bottom:15px;
    font-weight:700;

}

.product-content p{

    color:#666;
    line-height:1.8;
    font-size:16px;
    margin-bottom:25px;

}

.product-buttons{

    display:flex;
    gap:12px;
    flex-wrap:wrap;

}

.product-buttons a{

    flex:1;
    min-width:140px;
    text-align:center;
    padding:12px 18px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.35s;

}

.view-btn,
.pcard-view-btn{

    background:#0099ff;
    color:#fff;

}

.view-btn:hover,
.pcard-view-btn:hover{

    background:#0066ff;

}

.quote-btn.pcard-quote-btn,
.pcard-quote-btn{

    background:#07182f;
    color:#fff;

}

.pcard-quote-btn:hover{

    background:#0099ff;

}

@media(max-width:1200px){

.products-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.products-grid{

    grid-template-columns:1fr;

}

.product-buttons{

    flex-direction:column;

}

.product-buttons a{

    width:100%;

}

}
/* ===========================
   INDUSTRIES SECTION
=========================== */

.industries{
    padding:110px 0;
    background:#ffffff;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-card{
    background:#fff;
    border:1px solid #e9eef5;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.industry-card i{
    font-size:55px;
    color:#0099ff;
    margin-bottom:22px;
}

.industry-card h3{
    font-size:26px;
    color:#07182f;
    margin-bottom:15px;
    font-weight:700;
}

.industry-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

@media(max-width:1200px){
    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .industries-grid{
        grid-template-columns:1fr;
    }

    .industry-card{
        padding:35px 25px;
    }
}
/* ===========================
   UNNATI AI SUPPORT
=========================== */

.ai-support-section{
    padding:110px 0;
    background:linear-gradient(135deg,#07182f,#0b2748);
}

.ai-support-section .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

.ai-support-left,
.ai-support-right{
    flex:1;
}

.ai-support-left h2{
    font-size:48px;
    color:#fff;
    margin-bottom:20px;
    font-weight:800;
}

.ai-support-left p{
    color:#d7d7d7;
    line-height:1.9;
    font-size:17px;
    margin-bottom:30px;
}

.ai-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.ai-feature{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-weight:600;
}

.ai-feature i{
    color:#00c8ff;
    font-size:22px;
}

.launch-ai-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    padding:16px 32px;
    border-radius:12px;
    background:linear-gradient(135deg,#00AEEF,#0066ff);
    color:#fff;
    font-size:17px;
    font-weight:700;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,174,239,.35);
}

.launch-ai-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 22px 45px rgba(0,174,239,.50);
}

.ai-preview-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:22px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 20px 45px rgba(0,0,0,.30);
}

.ai-preview-card img{
    width:110px;
    margin-bottom:22px;
}

.ai-preview-card h3{
    color:#fff;
    font-size:32px;
    margin-bottom:15px;
}

.ai-preview-card p{
    color:#d7d7d7;
    line-height:1.8;
    margin-bottom:20px;
}

.ai-status{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    border-radius:30px;
    background:rgba(0,255,120,.12);
    color:#fff;
}

.online-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#00ff66;
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);opacity:1;}
    50%{transform:scale(1.5);opacity:.5;}
    100%{transform:scale(1);opacity:1;}
}

@media(max-width:992px){

.ai-support-section .container{
    flex-direction:column;
}

.ai-features{
    grid-template-columns:1fr;
}

.ai-support-left{
    text-align:center;
}

.launch-ai-btn{
    justify-content:center;
}

}
/* ===========================
   CONTACT SECTION
=========================== */

.contact{
    padding:110px 0;
    background:#f8fbff;
}

.contact-wrapper{
    display:flex;
    justify-content:space-between;
    gap:50px;
    margin-top:60px;
}

.contact-info{
    flex:1;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.contact-box{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.contact-box:hover{
    transform:translateY(-8px);
}

.contact-box i{
    font-size:40px;
    color:#0099ff;
    margin-bottom:18px;
}

.contact-box h3{
    font-size:22px;
    color:#07182f;
    margin-bottom:12px;
}

.contact-box p{
    color:#666;
    line-height:1.8;
}

.contact-form{
    flex:1;
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:18px;
    border:1px solid #d9d9d9;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0099ff;
    box-shadow:0 0 8px rgba(0,153,255,.20);
}

.submit-btn{
    width:100%;
    border:none;
    padding:16px;
    border-radius:10px;
    background:linear-gradient(135deg,#00AEEF,#0066ff);
    color:#fff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.35s;
}

.submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(0,174,239,.35);
}

@media(max-width:992px){

.contact-wrapper{
    flex-direction:column;
}

.contact-info{
    grid-template-columns:1fr;
}

}
/* ===========================
   FOOTER
=========================== */

.footer{
    background:#07182f;
    color:#fff;
    padding:80px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:40px;
    margin-bottom:45px;
}

.footer-logo{
    width:75px;
    margin-bottom:18px;
}

.footer-column h3{
    font-size:28px;
    margin-bottom:18px;
    font-weight:700;
}

.footer-column h4{
    font-size:22px;
    margin-bottom:20px;
    color:#00b4ff;
}

.footer-column p{
    color:#d5d5d5;
    line-height:1.9;
    margin-bottom:12px;
}

.footer-column ul{
    list-style:none;
}

.footer-column ul li{
    margin-bottom:14px;
}

.footer-column ul li a{
    color:#d5d5d5;
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#00b4ff;
    padding-left:6px;
}

.footer-column i{
    color:#00b4ff;
    margin-right:10px;
}

.footer hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.12);
    margin:30px 0;
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    color:#cfcfcf;
    font-size:15px;
}

.footer-bottom strong{
    color:#00b4ff;
}

@media(max-width:1200px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo{
    margin:auto auto 18px;
}

}
/* ===========================
   FLOATING BUTTONS
=========================== */

/* AI SUPPORT */

#floating-ai{

    position:fixed;
    right:25px;
    bottom:30px;

    display:flex;
    align-items:center;
    gap:10px;

    background:linear-gradient(135deg,#00AEEF,#0066ff);
    color:#fff;

    padding:14px 20px;

    border-radius:50px;

    text-decoration:none;
    font-weight:700;
    font-size:16px;

    box-shadow:0 15px 35px rgba(0,174,239,.35);

    z-index:9999;

    transition:.35s;

}

#floating-ai:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(0,174,239,.55);

}

#floating-ai img{

    width:32px;
    height:32px;
    object-fit:contain;

}

/* WHATSAPP */

.whatsapp-btn{

    position:fixed;

    left:25px;
    bottom:30px;

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#25D366;
    color:#fff;

    font-size:30px;

    text-decoration:none;

    z-index:9998;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

    transition:.35s;

}

.whatsapp-btn:hover{

    transform:scale(1.08);

}

/* BACK TO TOP */

#backToTop{

    position:fixed;

    right:30px;
    bottom:110px;

    width:52px;
    height:52px;

    border:none;
    border-radius:50%;

    background:#07182f;
    color:#fff;

    font-size:20px;

    cursor:pointer;

    display:none;

    z-index:9998;

    transition:.35s;

    box-shadow:0 12px 30px rgba(0,0,0,.30);

}

#backToTop:hover{

    background:#0099ff;

}

@media(max-width:768px){

#floating-ai{

    right:15px;
    bottom:20px;

    padding:12px 16px;

    font-size:14px;

}

#floating-ai img{

    width:28px;
    height:28px;

}

.whatsapp-btn{

    left:15px;
    bottom:20px;

    width:55px;
    height:55px;

    font-size:26px;

}

#backToTop{

    right:18px;
    bottom:90px;

}

}
/* ===========================
   CATEGORY PAGES
   Added by Claude - Brands We Supply grid +
   Product catalogue cards (no images, per spec)
=========================== */

.cat-hero{
    position:relative;
    background:linear-gradient(135deg,#07182f,#103d70);
    color:#fff;
    padding:130px 0 70px;
    text-align:center;
}

.cat-hero h1{
    font-size:44px;
    font-weight:800;
    margin-bottom:18px;
}

.cat-hero p{
    max-width:760px;
    margin:0 auto 35px;
    font-size:17px;
    color:#dcecff;
    line-height:1.8;
}

.cat-hero-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.brands-section{
    padding:70px 0 40px;
    background:#f7fafd;
}

.brands-section .section-title{
    text-align:center;
    margin-bottom:40px;
}

.brands-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.brand-box{
    background:linear-gradient(135deg,#0077ff,#00aeef);
    color:#fff;
    text-align:center;
    padding:22px 10px;
    border-radius:12px;
    font-weight:700;
    font-size:15px;
    box-shadow:0 8px 20px rgba(0,119,255,.25);
    transition:.3s;
}

.brand-box:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 30px rgba(0,119,255,.35);
}

.catalogue-section{
    padding:60px 0 90px;
    background:#fff;
}

.catalogue-section .section-title{
    text-align:center;
    margin-bottom:40px;
}

.catalogue-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.catalogue-card{
    background:#fff;
    border:1px solid #eef1f6;
    border-radius:16px;
    padding:30px 24px;
    box-shadow:0 10px 28px rgba(0,0,0,.06);
    transition:.3s;
    display:flex;
    flex-direction:column;
}

.catalogue-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 36px rgba(0,0,0,.10);
}

.catalogue-card h3{
    font-size:19px;
    color:#07182f;
    margin-bottom:10px;
    font-weight:700;
}

.catalogue-card p{
    font-size:14.5px;
    color:#667;
    line-height:1.7;
    flex-grow:1;
    margin-bottom:20px;
}

.catalogue-buttons{
    display:flex;
    gap:10px;
}

.catalogue-buttons a{
    flex:1;
    text-align:center;
    padding:10px 12px;
    border-radius:8px;
    font-size:13.5px;
    font-weight:700;
    text-decoration:none;
    white-space:nowrap;
}

.cat-footer-note{
    background:#07182f;
    color:#dcecff;
    text-align:center;
    padding:40px 20px;
}

.cat-footer-note h3{
    color:#fff;
    margin-bottom:10px;
}

.cat-footer-note p{
    margin-bottom:6px;
}

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

@media(max-width:576px){
    .brands-grid{ grid-template-columns:repeat(2,1fr); }
    .catalogue-grid{ grid-template-columns:1fr; }
    .cat-hero h1{ font-size:30px; }
    .cat-hero-buttons{ flex-direction:column; align-items:center; }
    .cat-hero-buttons a{ width:100%; max-width:320px; text-align:center; }
}
