/* =========================
   ROOT VARIABLES
========================= */
:root{
    --primary:#00aeef;
    --secondary:#00b4db;
    --dark:#081b33;
    --text:#475569;
    --light:#f7fbff;
    --white:#ffffff;
    --radius:22px;
    --shadow:0 15px 45px rgba(2,20,40,0.08);
    --shadow-hover:0 25px 70px rgba(2,20,40,0.14);
}

/* =========================
   GLOBAL
========================= */
.section-block{
    padding:90px 0;
}

.bg-light{
    background:linear-gradient(to bottom,#ffffff,#f8fcff);
}

.bg-alt{
    background:linear-gradient(to bottom,#f8fcff,#eef6fc);
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.mini-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:linear-gradient(135deg, rgba(0,180,219,.12), rgba(11,107,203,.12));
    color:var(--primary);
    font-size:13px;
    font-weight:600;
    letter-spacing:.4px;
    margin-bottom:16px;
    border:1px solid rgba(11,107,203,.12);
}

.section-heading h2{
    font-size:44px;
    font-weight:800;
    letter-spacing:-0.5px;
    margin-bottom:14px;
    color:var(--dark);
    position:relative;
    display:inline-block;
}

.section-heading h2::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-12px;
    width:80px;
    height:4px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--secondary),var(--primary));
}

.section-heading .section-sub{
    margin-top:24px;
    font-size:16px;
    color:#64748b;
}
@media(max-width:768px){
    .section-heading h2{
        font-size:28px;
    }

    .section-heading .section-sub{
        font-size:14px;
    }
}

.container p{
   
    line-height:1.8;
    font-size:15px;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
    text-decoration:none;
    transition:.35s ease;
}

/* =========================
   HERO — PREMIUM UPGRADE
========================= */

/* =========================
   HERO SECTION
========================= */
.hero{
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

/* BACKGROUND */
.hero-bg{
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg img{
    object-position:center;
}
.hero-overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(
        90deg,
        rgba(5,18,50,0.75) 0%,
        rgba(5,18,50,0.55) 45%,
        rgba(5,18,50,0.35) 100%
    );
}

/* MAIN WRAPPER */
.hero-wrapper{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.hero-left{
    color: #fff;
}

.slide-content{
    max-width: 650px;
}

.badge{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.slide-content h1{
    font-size:52px;
    line-height:1.08;
    max-width:580px;
}

.slide-content p{
    font-size: 18px;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* OPTIONAL BULLETS */
.slide-content ul{
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.slide-content ul li{
    margin-bottom: 10px;
    font-size: 16px;
    color: rgba(255,255,255,0.92);
}

/* BUTTONS */
.hero-buttons{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-buttons .btn{
    padding: 14px 26px;
    border-radius: 32px;
    text-decoration: none;
     font-size:15px;
    font-weight: 600;
    transition: 0.3s;
}

.hero-buttons .btn.call{
    background: #fff;
    color: #111;
}

.hero-buttons .btn.outline{
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
}

/* TRUST BADGES */
.trust-badges{
    display:flex;
    gap:18px;
    margin-top:28px;
    flex-wrap:wrap;
}

.badge-item{
    width:130px;
    padding:18px 14px;
    border-radius:18px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    text-align:center;
    border:1px solid rgba(255,255,255,0.08);
    transition:0.3s ease;
}

.badge-item:hover{
    transform:translateY(-4px);
}

.badge-item img{
    width:70px;
    height:70px;
    object-fit:contain;
    display:block;
    margin:0 auto 10px;
}

.badge-item span{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#fff;
    letter-spacing:0.5px;
}

/* FORM COLUMN */
.hero-form{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

/* FORM CARD */
.enquiry-box{
    width:100%;
    max-width:430px;
    background:rgba(255,255,255,0.97);
    border-radius:24px;
    padding:20px 22px;
    box-shadow:0 20px 50px rgba(0,0,0,0.18);
    backdrop-filter:blur(12px);
}

.enquiry-box h3{
    font-size:25px;
    font-weight:700;
    color:#111;
    margin-bottom:4px;
    line-height:1.2;
}

.form-sub{
    font-size:15px;
    color:#777;
    margin-bottom:14px;
}

/* FORM */
#heroEnquiryForm{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.field{
    width:calc(50% - 4px);
}

.full{
    width:100%;
}

#heroEnquiryForm label{
    display:block;
    font-size:11px;
    font-weight:600;
    color:#444;
    margin-bottom:5px;
}

/* INPUTS */
#heroEnquiryForm input,
#heroEnquiryForm textarea{
    width:100%;
    height:40px;
    padding:0 14px;
    border:1px solid #e7ebf3;
    border-radius:12px;
    background:#f3f3f3;
    font-size:15px;
    outline:none;
    transition:all .3s ease;
}

#heroEnquiryForm textarea{
    height:58px;
    padding-top:12px;
    resize:none;
}

#heroEnquiryForm input:focus,
#heroEnquiryForm textarea:focus{
    border-color:#0a84ff;
    background:#fff;
    box-shadow:0 0 0 4px rgba(10,132,255,0.08);
}

/* TAG GROUP */
.tag-group{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
}

.tag{
    padding:7px 12px;
    border-radius:20px;
    background:#e7eaed;
    color:#555;
    font-size:11px;
    font-weight:600;
    cursor:pointer;
    transition:all .3s ease;
    border:1px solid transparent;
}

.tag:hover{
    background:#eef5ff;
}

.tag.active{
    background:#00AEEF;
    color:#fff;
    box-shadow:0 8px 18px rgba(10,132,255,0.25);
}

/* PHONE ROW */
.iti{
    width:100%;
}

.iti input{
    width:100% !important;
    height:40px;
    padding-left:90px !important;
    border:1px solid #e7ebf3;
    border-radius:12px;
    background:#f8fafd;
    font-size:13px;
    transition:all .3s ease;
}

.iti input:focus{
    border-color:#0a84ff;
    background:#fff;
    box-shadow:0 0 0 4px rgba(10,132,255,0.08);
}

.iti__selected-flag{
    padding:0 12px;
    border-radius:12px 0 0 12px;
}

.iti__country-list{
    border-radius:14px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
    font-size:13px;
}
/* BUTTON */
#heroEnquiryForm button{
    width:100%;
    height:42px;
    border:none;
    border-radius:12px;
    background:linear-gradient(90deg,#111,#222);
    color:#fff;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:all .3s ease;
}

#heroEnquiryForm button:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 28px rgba(0,0,0,0.18);
}
.captcha-note{
    margin-top:10px;
    font-size:11px;
    line-height:1.5;
    color:#777;
    text-align:center;
}

.captcha-note a{
    color:#0a84ff;
    text-decoration:none;
    font-weight:500;
}

.captcha-note a:hover{
    text-decoration:underline;
}
/* MOBILE */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 100px 15px 40px;
        overflow: visible;
    }

    .hero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .hero-left {
        order: 1;
    }

    .hero-form {
        order: 2;
        width: 100%;
    }
}
/* =========================
   STATS
========================= */
.stats-section{
    margin-top:-70px;
    position:relative;
    z-index:5;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.stat-card{
    background:#fff;
    padding:28px;
    text-align:center;
    border-radius:22px;
    box-shadow:var(--shadow);
    transition:.35s;
}

.stat-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.stat-icon{
    font-size:28px;
    margin-bottom:12px;
}

.stat-card h3{
    color:var(--primary);
    font-size:30px;
}

/* =========================
   ABOUT SECTION
========================= */


.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:var(--text);
    margin-bottom:22px;
}

.about-highlight{
    display:inline-block;
    margin-bottom:18px;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(11,107,203,.08);
    color:var(--primary);
    font-size:13px;
    font-weight:600;
}

/* =========================
   SERVICE / WHY
========================= */
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.why-card{
    background:#fff;
    padding:30px;
    border-radius:22px;
    text-align:center;
    box-shadow:var(--shadow);
    transition:.35s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.why-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 16px;
    background:#eef6ff;
    font-size:28px;
}

.why-card h3{
    margin-bottom:10px;
    color:var(--dark);
}

/* =========================
   PRODUCTS
========================= */
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.product-card{
    background:#fff;
    padding:24px;
    border-radius:22px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-hover);
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:contain;
    margin-bottom:18px;
}

.product-card h3{
    margin-bottom:10px;
}

.product-card h3 a{
    text-decoration:none;
    color:var(--dark);
}

.product-card h3 a:hover{
    color:var(--primary);
}
.productSwiper {
    padding-bottom: 40px;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination-bullet {
    background: #0a6cff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}
/* =========================
   CITIES
========================= */
.city-grid{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    justify-content:center;
    margin-top:30px;
}

.city-pill{
    padding:12px 20px;
    border-radius:40px;
    text-decoration:none;
    background:#fff;
    color:var(--primary);
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.city-pill:hover{
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    color:#fff;
}

/* =========================
   CTA
========================= */
.cta{
    text-align:center;
    padding:80px 30px;
    border-radius:28px;
    color:#fff;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    box-shadow:0 25px 70px rgba(11,107,203,.22);
}

.cta h2{
    color:#fff;
}

.cta p{
    color:#fff;
    margin-bottom:24px;
}

/* =========================
   FAQ
========================= */
/* =========================
   FAQ ACCORDION
========================= */
.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border-radius:18px;
    box-shadow:var(--shadow);
    margin-bottom:18px;
    overflow:hidden;
    transition:.3s ease;
}

.faq-item:hover{
    box-shadow:var(--shadow-hover);
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    padding:22px 26px;
    font-size:18px;
    font-weight:600;
    color:var(--dark);
    position:relative;
    padding-right:60px;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::after{
    content:"+";
    position:absolute;
    right:24px;
    top:50%;
    transform:translateY(-50%);
    font-size:24px;
    color:var(--primary);
    transition:.3s ease;
}

.faq-item[open] summary::after{
    content:"−";
}

.faq-item p{
    padding:0 26px 22px;
    color:var(--text);
    line-height:1.8;
    font-size:15px;
}
.faq-item[open]{
    border-left:4px solid var(--primary);
}

/* =========================
   HELPERS
========================= */
.text-center{
    text-align:center;
}

.mt-20{
    margin-top:20px;
}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:768px){

    .hero{
        padding:20px 0 35px;
    }

    .hero-wrapper{
        flex-direction:column;
        gap:16px;
    }

    .hero-left{
        min-height:auto;
        position:relative;
        border-radius:22px;
        background:linear-gradient(135deg,#0b6bcb,#081b33);
        overflow:hidden;
    }

    .hero-left img{
        display:none;
    }

    .hero-overlay{
        position:absolute;
        inset:0;
        z-index:1;
        background:linear-gradient(
            135deg,
            rgba(8,27,51,.15),
            rgba(11,107,203,.35)
        );
    }

    .slide-content{
        position:relative;
        top:auto;
        left:auto;
        transform:none;
        padding:16px;
        max-width:100%;
        z-index:2;
    }

    .slide-content h1{
        font-size:27px;
        line-height:1.2;
        margin-bottom:10px;
    }

    .slide-content p{
        font-size:13px;
        line-height:1.5;
        margin-bottom:12px;
    }

    .slide-content ul{
        margin-bottom:14px;
    }

    .slide-content li{
        font-size:13px;
        margin-bottom:6px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:10px;
        margin-bottom:14px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .trust-badges{
        justify-content:center;
        gap:8px;
        margin-top:6px;
    }

    .badge-item{
        padding:6px 9px;
        font-size:10px;
    }

    .badge-item img{
        width:120px;
        height:120px;
        object-fit:contain;
        display:block;
    }

    .hero-form{
        width:100%;
    }

    .enquiry-box{
        padding:18px;
    }
}
/* =========================
   PRODUCT ENQUIRY POPUP
========================= */
.popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.popup-box{
    background: #fff;
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    padding: 35px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    animation: popupFade 0.25s ease;
}

@keyframes popupFade{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.popup-close{
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    cursor: pointer;
    color: #444;
    font-weight: 600;
    line-height: 1;
}

.popup-close:hover{
    color: #000;
}

.popup-box h3{
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: #1d3557;
    font-weight: 700;
}

#productEnquiryForm{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#productEnquiryForm input,
#productEnquiryForm textarea{
    width: 100%;
    border: 1px solid #d8dce3;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    font-family: inherit;
}

#productEnquiryForm input:focus,
#productEnquiryForm textarea:focus{
    border-color: #0099e5;
    box-shadow: 0 0 0 3px rgba(0,153,229,0.08);
}

#productEnquiryForm textarea{
    min-height: 120px;
    resize: none;
    background: #f8fafc;
}

#productEnquiryForm button{
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    font-size: 16px;
}
.popup-note{
    font-size: 12px;
    color: #777;
    margin-top: 12px;
    text-align: center;
    line-height: 1.6;
}

.popup-note a{
    color: inherit;
    text-decoration: underline;
}

/* =========================
   MOBILE
========================= */
@media(max-width: 768px){

    .popup-box{
        padding: 28px 20px;
        border-radius: 14px;
    }

    .popup-box h3{
        font-size: 22px;
    }

    .popup-close{
        top: 10px;
        right: 14px;
        font-size: 24px;
    }
}
@media(max-width:768px){

    .stats-section{
        margin-top:20px;
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .stat-card{
        padding:18px 12px;
        border-radius:16px;
    }

    .stat-icon{
        font-size:22px;
        margin-bottom:8px;
    }

    .stat-card h3{
        font-size:22px;
        margin-bottom:4px;
    }

    .stat-card p{
        font-size:12px;
        line-height:1.4;
        margin:0;
    }
}
/* MOBILE */
@media(max-width:768px){
    .about-content{
        text-align:left;
    }

    .about-content p{
        font-size:14px;
        line-height:1.8;
        margin-bottom:18px;
    }

    .about-highlight{
        font-size:12px;
        padding:7px 14px;
    }
}
@media(max-width:768px){
    .section-heading h2{
        font-size:30px;
    }
}
/* MOBILE */
@media(max-width:768px){
    .faq-item summary{
        font-size:15px;
        padding:18px 20px;
        padding-right:50px;
    }

    .faq-item p{
        padding:0 20px 18px;
        font-size:14px;
    }
}
@media(max-width:768px){
    .section-heading .mini-badge{
        display:block;
        width:max-content;
        margin:0 auto 14px;
    }

    .section-heading h2{
        display:block;
    }
}