:root{
    --primary:#031B4E;
    --primary-light:#0A2A73;
    --primary-dark:#02153C;

    --secondary:#EDF6FB;

    --ink:#031B4E;
    --ink-soft:#5B6475;

    --surface:#ffffff;
    --outline:#DCE8F1;

    --font-display:'Poppins',sans-serif;
    --font-body:'Poppins',sans-serif;

    --radius:12px;
    --radius-lg:18px;

    --shadow-sm:0 4px 15px rgba(3,27,78,.08);
    --shadow-md:0 12px 30px rgba(3,27,78,.12);

    --nav-ease:cubic-bezier(.4,0,.2,1);
    --nav-duration:.35s;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
    font-family:var(--font-body);
    color:var(--ink-soft);
    background:var(--surface);
    overflow-x:hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--ink); margin: 0; }
p { margin: 0; }


/* ===================== NAVBAR ===================== */
.navbar{
    background: #fff;
    box-shadow: 0 10px 30px rgba(27, 19, 13, .06);
    padding: 16px 0;
    transition: all .3s ease;
}

.navbar.sticky-top { transition: box-shadow .3s ease, background .3s ease; }

.navbar.sticky-top.is-stuck{
    background: linear-gradient(
        90deg,
        #d9d9dc 0%,
        #b9bbc4 20%,
        #5f6785 45%,
        #1b2d63 70%,
        #031B4E 100%
    );
    box-shadow: 0 8px 25px rgba(0,0,0,.15);
}

.navbar-brand img { width: 110px; max-width: 60vw; }

.navbar .nav-link,
.offcanvas .nav-link{
    color:#255bad !important;
    font-size:16px;
    font-weight:500;
    padding:8px 14px !important;
    transition:.3s ease;
}

.navbar .nav-link:hover,
.offcanvas .nav-link:hover{
    color:#24a8f1 !important;
    transform:translateY(-1px);
}

.navbar .nav-link.active,
.offcanvas .nav-link.active{
    color:#2a3f67 !important;
    font-weight:600;
}

/* ===================== SHARED PILL BUTTON (navbar style) ===================== */
.book-service-btn{
    background:#031B4E !important;
    color:#ffffff;
    border-radius:50px !important;
    padding:12px 26px !important;
    font-weight:600 !important;
    transition:.3s;

}

.book-service-btn:hover{
    background:#EDF6FB;
    color:#031B4E !important;
    transform:translateY(-2px);
}

/* Keep the label navy (not white) when focused/tapped so it stays visible on the white pill */
.book-service-btn:focus,
.book-service-btn:active { color:#031B4E !important; outline: none; }


/* ================= HERO BANNER ================= */
.hero-banner{
    position:relative;
    min-height:700px;
    overflow:hidden;
}

.hero-img{
    width:100%;
    height:700px;
    object-fit:cover;
}

/* Blue Overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(3,27,78,.78),
        rgba(3,27,78,.78)
    );
    z-index:1;
}

.hero-content{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    transform:translateY(-50%);
    z-index:2;
    text-align:center;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}

.hero-content h1{
    color:#fff;
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:15px;
}

.hero-content h2{
    color:#FFC107;
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    color:#EDF6FB;
    max-width:850px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* Buttons */
.hero-btns{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-btn-primary{
    background:#fff;
    color:#031B4E;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.hero-btn-primary:hover{
    background:#EDF6FB;
    color:#031B4E;
}

.hero-btn-secondary{
    border:2px solid rgba(255,255,255,.6);
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.hero-btn-secondary:hover{
    background:#fff;
    color:#031B4E;
}


/* ================= TRUST STRIP ================= */
.trust-strip{
    background:#EDF6FB;
    padding:20px 0;
}

.trust-item{
    text-align:center;
    position:relative;
}

.border-item::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:85px;
    background:#cfcfcf;
}

.trust-item img{
    width:55px;
    height:55px;
    object-fit:contain;
    margin: 0 auto;
}

.trust-item p{
    margin:0;
    color:#000;
    font-size:18px;
    font-weight:500;
    line-height:1.5;
    margin-top: 20px;
}
.footer-bottom-content p a:hover {
    color: #fff;
}

/* ================= ABOUT SECTION ================= */
.about-section{
    padding:100px 0;
    background:#ffffff;
}

.about-img{
    overflow:hidden;
    border-radius:30px;
}

.about-img img{
    width:100%;
    height:620px;
    object-fit:cover;
    border-radius:30px;
}

.section-tag{
    display:inline-block;
    background:#EDF6FB;
    color:#031B4E;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.about-content h2{
    color:#031B4E;
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;
}

.about-content p{
    color:#5f6785;
    font-size:18px;
    line-height:1.9;
    margin-bottom:18px;
}

.about-contact{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:35px;
}

/* Call icon is now a tappable, shaking CTA button */
.call-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#EDF6FB;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    text-decoration:none;
    animation:shakePhone 1.6s ease-in-out infinite;
    transition:background .3s ease, box-shadow .3s ease;
}

.call-icon i{
    font-size:32px;
    color:#031B4E;
    transition:color .3s ease;
}

/* Pause the shake and highlight when the visitor interacts */
.call-icon:hover,
.call-icon:focus-visible{
    background:#031B4E;
    box-shadow:0 10px 24px rgba(3,27,78,.22);
    animation-play-state:paused;
    outline:none;
}

.call-icon:hover i,
.call-icon:focus-visible i{
    color:#fff;
}

.about-contact span{
    display:block;
    color:#6b7280;
    font-size:15px;
    margin-bottom:4px;
}

.about-contact > div a{
    color:#031B4E;
    font-size:30px;
    font-weight:700;
    text-decoration:none;
}

/* Phone Shake Animation */
@keyframes shakePhone {
    0%   { transform:rotate(0deg); }
    10%  { transform:rotate(15deg); }
    20%  { transform:rotate(-15deg); }
    30%  { transform:rotate(15deg); }
    40%  { transform:rotate(-15deg); }
    50%  { transform:rotate(0deg); }
    100% { transform:rotate(0deg); }
}


/* ================= SERVICES SECTION ================= */
.services-section{
    padding:100px 0;
    background:#EDF6FB;
}

.section-heading{
    max-width:750px;
    margin:0 auto 60px;
}

.section-heading .section-tag{
    display:inline-block;
    background:#ffffff;
    color:#031B4E;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-heading h2{
    color:#031B4E;
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.section-heading p{
    color:#5f6785;
    font-size:18px;
}

/* Cards */
.service-card{
    background:#ffffff;
    border-radius:20px;
    padding:30px;
    height:100%;
    transition:.35s ease;
    border:1px solid rgba(3,27,78,.06);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(3,27,78,.08);
}

.service-card img{
    width:55px;
    height:55px;
    object-fit:contain;
    margin-bottom:20px;
}

.service-card h4{
    color:#031B4E;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.service-card p{
    color:#667085;
    font-size:15px;
    line-height:1.8;
    margin:0;
}


/* ================= PRODUCTS SECTION ================= */
.products-section{
    padding:30px 0;
    background:#ffffff;
}

.product-slider{
    margin-top:50px;
}

.product-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    margin:10px;
    border:1px solid rgba(3,27,78,.08);
    transition:.35s ease;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(3,27,78,.10);
}

.product-img{
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover .product-img img{
    transform:scale(1.08);
}

.product-content{
    padding:30px;
}

.product-category{
    display:inline-block;
    background:#EDF6FB;
    color:#031B4E;
    font-size:13px;
    font-weight:600;
    padding:8px 16px;
    border-radius:50px;
    margin-bottom:15px;
}

.product-content h3{
    color:#031B4E;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.product-content p{
    color:#667085;
    line-height:1.8;
    margin-bottom:25px;
}

.product-btn{
    display:inline-block;
    background:#031B4E;
    color:#fff;
    padding:12px 26px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.product-btn:hover{
    background:#0b2c73;
    color:#fff;
}

/* Owl Navigation */
.product-slider .owl-nav{
    margin-top:40px;
    text-align:center;
}

.product-slider .owl-prev,
.product-slider .owl-next{
    width:50px;
    height:50px;
    border-radius:50% !important;
    background:#EDF6FB !important;
    color:#031B4E !important;
    margin:0 8px;
    font-size:22px !important;
    transition:.3s;
}

.product-slider .owl-prev:hover,
.product-slider .owl-next:hover{
    background:#031B4E !important;
    color:#fff !important;
}

/* Dots */
.product-slider .owl-dot span{
    background:#cfd8e3 !important;
}

.product-slider .owl-dot.active span{
    background:#031B4E !important;
}


/* ================= PRODUCT CATEGORIES SECTION ================= */
.categories-section{
    padding-top:30px;
    background:#ffffff;
}

.category-card{
    display:block;
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    text-decoration:none;
    border:1px solid rgba(3,27,78,.08);
    transition:.35s ease;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(3,27,78,.12);
    border-color:transparent;
}

.category-img{
    overflow:hidden;
    background:#EDF6FB;
}

.category-img img{
    width:100%;
    height:210px;
    object-fit:cover;
    transition:.5s ease;
}

.category-card:hover .category-img img{
    transform:scale(1.08);
}

.category-body{
    padding:22px 24px;
    text-align:center;
}

.category-body h4{
    color:#031B4E;
    font-size:17px;
    font-weight:700;
    margin-bottom:10px;
}

.category-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#5f6785;
    font-size:14px;
    font-weight:600;
    transition:.3s ease;
}
.cat-btn-primary {
    background: #031B4E;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
    display: flex;
    justify-content: center;
    margin: 40px auto 0;
    width: 16%;
}
.category-link i{
    font-size:13px;
    transition:transform .3s ease;
}

.category-card:hover .category-link{
    color:#031B4E;
}

.category-card:hover .category-link i{
    transform:translateX(5px);
}

/* ================= INDUSTRIES WE SERVE SECTION ================= */
.industries-section{
    padding:100px 0;
    background:#EDF6FB;
}

/* Heading tag sits on white pill for contrast on the light-blue bg */
.industries-section .section-heading .section-tag{
    background:#ffffff;
}

.industry-card{
    position:relative;
    background:#ffffff;
    border-radius:20px;
    padding:40px 32px;
    height:100%;
    text-align:center;
    border:1px solid rgba(3,27,78,.06);
    overflow:hidden;
    transition:.35s ease;
}

/* Navy accent bar that grows on hover */
.industry-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:5px;
    background:#031B4E;
    transform:scaleY(0);
    transform-origin:top;
    transition:transform .35s ease;
}

.industry-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(3,27,78,.10);
}

.industry-card:hover::before{
    transform:scaleY(1);
}

.industry-icon{
    width:60px;
    height:60px;
    margin:0 auto 24px;
    border-radius:50%;
    background:#EDF6FB;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s ease;
}

.industry-icons{
    font-size:34px;
    color:#031B4E;
    transition:.35s ease;
}

.industry-card:hover .industry-icon{
    background:#031B4E;
    box-shadow:0 10px 24px rgba(3,27,78,.22);
}

.industry-card:hover .industry-icon i{
    color:#ffffff;
}

.industry-card h4{
    color:#031B4E;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.industry-card p{
    color:#667085;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

/* ================= TESTIMONIAL + COUNTER SECTION ================= */
.testimonial-section{
    position:relative;
    padding:100px 0;
    /* Parallax background — replace with your uploaded image */
    background:url('../images/testimonial-bg.png') center center / cover no-repeat fixed;
    overflow:hidden;
}

/* Navy blue overlay */
.testimonial-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(3,27,78,.92) 0%, rgba(3,27,78,.88) 100%);
    z-index:1;
}

.testimonial-section .container{ z-index:2; }

/* Heading turns white on the blue background */
.testimonial-section .section-heading .section-tag{
    background:rgba(255,255,255,.14);
    color:#ffffff;
}
.testimonial-section .section-heading h2{ color:#ffffff; }
.testimonial-section .section-heading p{ color:#dbe4f0; }

/* ---- Cards ---- */
.testimonial-slider{ margin-top:20px; }

.testimonial-card{
    position:relative;
    background:#ffffff;
    border-radius:24px;
    padding:45px 38px;
    margin:12px;
    text-align:center;
    overflow:hidden;
    min-height:340px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    box-shadow:0 20px 50px rgba(3,27,78,.20);
}

.quote-mark{
    position:absolute;
    right:28px;
    bottom:24px;
    font-size:80px;
    color:rgba(3,27,78,.05);
    z-index:0;
}

.testimonial-card h4{
    position:relative;
    color:#031B4E;
    font-size:21px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:16px;
    z-index:1;
}

.testimonial-card p{
    position:relative;
    color:#5f6785;
    font-size:16px;
    line-height:1.85;
    margin-bottom:26px;
    z-index:1;
}

.testimonial-author{ position:relative; z-index:1; }

.testimonial-author h5{
    color:#031B4E;
    font-size:19px;
    font-weight:700;
    margin-bottom:4px;
}

.testimonial-author span{
    color:#5f6785;
    font-size:14px;
    font-weight:500;
}

/* ---- Owl nav + dots (light theme for dark bg) ---- */
.testimonial-slider .owl-nav{ margin-top:35px; text-align:center; }

.testimonial-slider .owl-prev,
.testimonial-slider .owl-next{
    width:50px;
    height:50px;
    border-radius:50% !important;
    background:rgba(255,255,255,.15) !important;
    color:#ffffff !important;
    margin:0 8px;
    font-size:22px !important;
    transition:.3s;
}

.testimonial-slider .owl-prev:hover,
.testimonial-slider .owl-next:hover{
    background:#ffffff !important;
    color:#031B4E !important;
}

.testimonial-slider .owl-dots{ text-align:center; margin-top:18px; }
.testimonial-slider .owl-dot span{ background:rgba(255,255,255,.4) !important; }
.testimonial-slider .owl-dot.active span{ background:#ffffff !important; }

/* ---- Counter Strip ---- */
.counter-strip{
    position:relative;
    z-index:2;
    margin-top:30px;
    padding-top:45px;
    border-top:1px solid rgba(255,255,255,.15);
}

.counter-intro{
    display:flex;
    align-items:center;
    gap:16px;
    justify-content:center;
}


.counter-avatars{ display:flex; }

.counter-avatars img{
    width:46px;
    height:46px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #ffffff;
    margin-left:-12px;
}
.counter-avatars img:first-child{ margin-left:0; }

.counter-intro p{
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    line-height:1.4;
    margin:0;
}

.counter-box h3{
    color:#ffffff;
    font-size:46px;
    font-weight:800;
    line-height:1;
    margin-bottom:8px;
}

.counter-box p{
    color:#cdd8ea;
    font-size:16px;
    font-weight:500;
    margin:0;
}

/* ================= FAQ SECTION ================= */
.faq-section{
    padding:100px 0;
    background:#ffffff;
}

.faq-wrapper{
    max-width:850px;
    margin:0 auto;
}

.faq-item{
    background:#ffffff;
    border:1px solid rgba(3,27,78,.10);
    border-radius:16px;
    margin-bottom:18px;
    overflow:hidden;
    transition:.35s ease;
}

.faq-item.active{
    border-color:#031B4E;
    box-shadow:0 14px 34px rgba(3,27,78,.10);
}

.faq-question{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    text-align:left;
    background:transparent;
    border:none;
    padding:24px 28px;
    cursor:pointer;
    font-family:var(--font-display);
    font-size:18px;
    font-weight:600;
    color:#031B4E;
    transition:.3s ease;
}

.faq-question:focus{ outline:none; }

.faq-icon{
    flex-shrink:0;
    width:38px;
    height:38px;
    border-radius:50%;
    background:#EDF6FB;
    color:#031B4E;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    transition:.35s ease;
}

.faq-item.active .faq-icon{
    background:#031B4E;
    color:#ffffff;
    transform:rotate(45deg);
}

/* Smooth expand/collapse using max-height */
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    color:#667085;
    font-size:16px;
    line-height:1.85;
    padding:0 28px 26px;
    margin:0;
}


/* Floating WhatsApp */

.floating-whatsapp{
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #25D366;
    color: #fff;

    text-decoration: none;

    padding: 14px 20px;
    border-radius: 60px;

    font-size: 15px;
    font-weight: 600;

    box-shadow: 0 10px 30px rgba(37,211,102,.35);

    transition: all .3s ease;

    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp i{
    font-size: 28px;
}

.floating-whatsapp:hover{
    color:#fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(37,211,102,.45);
}

@keyframes whatsappPulse{

    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,.5);
    }

    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }

}



/* ================= CTA BANNER SECTION ================= */
.cta-banner{
    position:relative;
    padding:100px 0;
    background:linear-gradient(135deg, #031B4E 0%, #0A2A73 55%, #02153C 100%);
    overflow:hidden;
     background:url('../images/testimonial-bg.png') center center / cover no-repeat fixed;
}

.cta-banner:before {
    background: #031b4e;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* Soft dotted texture overlay */
.cta-banner::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.8;
    z-index:1;
}

/* Glowing accent blobs */
.cta-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    z-index:0;
}
.cta-glow-1{
    width:340px;
    height:340px;
    background:rgba(74,124,255,.35);
    top:-120px;
    left:-80px;
}
.cta-glow-2{
    width:300px;
    height:300px;
    background:rgba(13,42,115,.55);
    bottom:-120px;
    right:-60px;
}

.cta-banner .container{ z-index:2; }

.cta-inner{
    max-width:760px;
    margin:0 auto;
}

.cta-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.12);
    color:#ffffff;
    padding:9px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
    border:1px solid rgba(255,255,255,.18);
}

.cta-inner h2{
    color:#ffffff;
    font-size:46px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.cta-inner p{
    color:#d3ddee;
    font-size:18px;
    line-height:1.8;
    margin-bottom:38px;
}

.cta-btns{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    justify-content:center;
}

.cta-btn-primary,
.cta-btn-secondary{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 36px;
    border-radius:50px;
    font-size:17px;
    font-weight:600;
    text-decoration:none;
    transition:.35s ease;
}

/* Solid white primary button */
.cta-btn-primary{
    background:#ffffff;
    color:#031B4E;
    box-shadow:0 12px 30px rgba(0,0,0,.22);
}
.cta-btn-primary:hover{
    transform:translateY(-4px);
    background:#EDF6FB;
    color:#031B4E;
    box-shadow:0 18px 38px rgba(0,0,0,.28);
}

/* Outlined secondary button */
.cta-btn-secondary{
    background:transparent;
    color:#ffffff;
    border:2px solid rgba(255,255,255,.55);
}
.cta-btn-secondary:hover{
    transform:translateY(-4px);
    background:#ffffff;
    color:#031B4E;
    border-color:#ffffff;
}

/* ================= FOOTER ================= */

.site-footer{
    background:#031B4E;
    padding-top:80px;
    color:#EDF6FB;
}

.footer-widget h3{
    color:#fff;
    font-size:34px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-widget h4{
    color:#fff;
    font-size:24px;
    font-weight:600;
    margin-bottom:25px;
}

.footer-widget p{
    color:rgba(237,246,251,.85);
    line-height:1.9;
    margin:0;
}

/* Links */

.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:rgba(237,246,251,.85);
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:8px;
}

/* Contact */

.footer-contact{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-contact li{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:20px;
}

.footer-contact i{
    color:#EDF6FB;
    font-size:18px;
    margin-top:4px;
}

.footer-contact a,
.footer-contact span{
    color:rgba(237,246,251,.85);
}

.footer-contact a:hover{
    color:#fff;
}

/* Bottom Bar */

.footer-bottom{
    margin-top:60px;
    background:#021338;
    padding:20px 0;
}

.footer-bottom-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.footer-bottom p{
    margin:0;
    color:rgba(237,246,251,.75);
    font-size:14px;
}

.footer-widget img{
        width: 30%;
    margin-bottom: 15px;
}


/* ================= PAGE BANNER ================= */

.page-banner{
    position:relative;
    height:218px;
    overflow:hidden;
}

.page-banner-img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Blue Overlay */

.page-banner-overlay{
    position:absolute;
    inset:0;

    background:rgba(3,27,78,.65);

    z-index:1;
}

/* Content */

.page-banner-content{
    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    z-index:2;
}

.page-banner-content h1{
    color:#fff;
    font-size:52px;
    font-weight:800;
    margin:0;
    line-height:1.1;
}

.offcanvas-header{display: none;}

/* ================= GALLERY TABS ================= */

.gallery-tabs{
    display:flex;
    justify-content:center;
    gap:15px;
    margin-top:35px;
    margin-bottom:50px;
}

.gallery-tab{
    border:none;
    background:#EDF6FB;
    color:#031B4E;

    padding:12px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s ease;
}

.gallery-tab.active{
    background:#031B4E;
    color:#fff;
}

.gallery-tab:hover{
    transform:translateY(-2px);
}

/* ================= TAB CONTENT ================= */

.tab-content{
    display:none;
    animation:fadeContent .5s ease;
}

.tab-content.active{
    display:block;
}


.p-toop {
    
    padding-bottom: 50px;
}

@keyframes fadeContent{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ================= VIDEO CARD ================= */

.video-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;

    border:1px solid rgba(3,27,78,.08);

    transition:.3s;
}

.video-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(3,27,78,.08);
}

.video-card video{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.video-card h4{
    padding:20px;
    margin:0;

    color:#031B4E;

    font-size:20px;
    font-weight:700;
}






/*=========================================
GALLERY CARDS
=========================================*/

.category-card{
    display:block;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.category-img{
    height:260px;
    overflow:hidden;
}

.category-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.category-card:hover img{
    transform:scale(1.08);
}

/* Remove Product Name Space */

.category-body{
    display:none;
}

/*=========================================
LIGHTBOX
=========================================*/

.custom-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99999;
}

.custom-lightbox.active{
    opacity:1;
    visibility:visible;
}

.lightbox-image{
    max-width:90%;
    max-height:90vh;
    border-radius:12px;
    animation:zoomIn .35s ease;
}

@keyframes zoomIn{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

.close-lightbox{
    position:absolute;
    top:25px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
    line-height:1;
}

.close-lightbox:hover{
    color:#ffc107;
}

/*=========================================
VIDEO CARD
=========================================*/

.video-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.video-card video{
    width:100%;
    display:block;
    border-radius:18px;
}

.video-card h4{
    display:none;
}




/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:100px 0;
    background:#ffffff;
}

/* Contact Cards */

.contact-card{
    background:#EDF6FB;

    border-radius:24px;

    padding:35px 30px;

    height:100%;

    transition:.35s ease;
}

.contact-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 40px rgba(3,27,78,.08);
}

.contact-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;
}

.contact-icon i{

    color:#031B4E;

    font-size:26px;
}

.contact-card h4{

    color:#031B4E;

    font-size:22px;

    font-weight:700;

    margin-bottom:10px;
}

.contact-card p,
.contact-card a{

    color:#5f6785;

    font-size:16px;

    line-height:1.8;

    text-decoration:none;

    word-break:break-word;
}

.contact-card a:hover{

    color:#031B4E;
}

/* Map */

.map-wrapper{

    height:100%;

    min-height:520px;

    overflow:hidden;

    border-radius:24px;

    border:4px solid #EDF6FB;
}

.map-wrapper iframe{

    width:100%;
    height:100%;
    border:0;
}

/* Tablet */

@media(max-width:991px){

    .contact-section{
        padding:80px 0;
    }

    .map-wrapper{
        min-height:450px;
    }

}




















































































/* ===================== HAMBURGER TOGGLER ===================== */
.custom-toggler,
.custom-toggler:hover,
.custom-toggler:focus,
.custom-toggler:active {
    border: none;
    box-shadow: none;
    outline: none;
}
.custom-toggler:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
    border-radius: 6px;
}
.custom-toggler {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1060;
}
/* White bars so they are visible against the dark right side of the navbar gradient */
.custom-toggler .toggler-bar {
    display: block;
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background-color: #356bb7;
    border-radius: 2px;
    transition:
        transform var(--nav-duration) var(--nav-ease),
        opacity   var(--nav-duration) var(--nav-ease),
        top       var(--nav-duration) var(--nav-ease);
}
.custom-toggler .toggler-bar:nth-child(1) { top: 13px; }
.custom-toggler .toggler-bar:nth-child(2) { top: 19px; }
.custom-toggler .toggler-bar:nth-child(3) { top: 25px; }

.custom-toggler.is-open .toggler-bar:nth-child(1) { top: 19px; transform: rotate(45deg); }
.custom-toggler.is-open .toggler-bar:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
.custom-toggler.is-open .toggler-bar:nth-child(3) { top: 19px; transform: rotate(-45deg); }


/* ===================== DESKTOP NAV (>= 992px) ===================== */
@media (min-width: 992px) {
    .counter-intro{ justify-content:flex-start; }
    .testimonial-section{
        background-attachment:scroll;
        padding:70px 0;
    }
    .counter-box h3{ font-size:38px; }
    .about-section{ padding:80px 0; }
    .about-img img{ height:500px; }
    .about-content h2{ font-size:42px; }

    #mobileMenu.offcanvas {
        position: static;
        z-index: auto;
        flex-grow: 1;
        width: auto !important;
        height: auto !important;
        visibility: visible !important;
        background: transparent !important;
        border: 0 !important;
        transform: none !important;
        transition: none;
    }
    #mobileMenu .offcanvas-body { display: flex; align-items: center; flex-grow: 0; padding: 0; }
    #mobileMenu .offcanvas-header { display: none; }
    .custom-toggler { display: none; }
}


/* ===================== MOBILE (<= 991px) ===================== */
@media (max-width: 991px) {
        .page-banner{
        height:250px;
    }

    .page-banner-content h1{
        font-size:56px;
    }
     .site-footer{
        padding-top:60px;
    }

    .footer-widget h3{
        font-size:28px;
    }

    .footer-widget h4{
        font-size:22px;
    }

    .footer-bottom-content{
        flex-direction:column;
        text-align:center;
    }
    .services-section{ padding:80px 0; }
    .section-heading h2{ font-size:42px; }

    .hero-banner,
    .hero-img{
        min-height:650px;
        height:650px;
    }
    .hero-content h1{ font-size:48px; }
    .hero-content h2{ font-size:26px; }
    .hero-content p{ font-size:16px; }

    .about-img img { height: 420px; }

    .navbar { -webkit-backdrop-filter: none; backdrop-filter: none; }

    /* Dark panel so the white menu links are visible on mobile */
    #mobileMenu.offcanvas-end {
        width: min(320px, 85vw);
        background: #fff;
        transition: transform var(--nav-duration) var(--nav-ease);
    }
    #mobileMenu .offcanvas-header .btn-close { filter: invert(1) grayscale(1) brightness(2); }

    #mobileMenu .nav-item,
    #mobileMenu .d-flex {
        opacity: 0;
        transform: translateX(18px);
        transition:
            opacity   var(--nav-duration) var(--nav-ease),
            transform var(--nav-duration) var(--nav-ease);
    }
    #mobileMenu.items-in .nav-item,
    #mobileMenu.items-in .d-flex { opacity: 1; transform: translateX(0); }

    #mobileMenu.items-in .nav-item:nth-child(1) { transition-delay: 0.10s; }
    #mobileMenu.items-in .nav-item:nth-child(2) { transition-delay: 0.15s; }
    #mobileMenu.items-in .nav-item:nth-child(3) { transition-delay: 0.20s; }
    #mobileMenu.items-in .d-flex               { transition-delay: 0.30s; }

    /* Hide vertical dividers when trust items stack */
    .border-item::before { display: none; }
}


/* ===================== SMALL PHONES (<= 576px) ===================== */
@media (max-width: 576px) {
    .category-img {
    height: auto;
    overflow: hidden;
}
    .floating-whatsapp{
        right:15px;
        bottom:15px;
        padding:12px 14px;
    }

    .floating-whatsapp span{
        display:none;
    }

    .floating-whatsapp i{
        font-size:30px;
    }
    .custom-toggler .toggler-bar{
            background-color: #356bb7;
    }

    .navbar {
    background: #fff;
}


        .categories-section {
        padding: 0px 0;
    }

        .industries-section {
        padding: 40px 0;
    }

    .products-section {
    padding: 10px 0;
}
    .cat-btn-primary{
        width: 60%;
    }
    .gallery-tabs{
        flex-wrap:wrap;
    }

    .gallery-tab{
        width:100%;
    }
     .page-banner{
        height:220px;
    }

    .contact-section{
        padding:60px 0;
    }

    .contact-card{
        padding:25px;
    }

    .contact-card h4{
        font-size:22px;
    }

    .contact-card p,
    .contact-card a{
        font-size:16px;
    }

    .map-wrapper{
        min-height:350px;
    }

    .page-banner-content h1{
        font-size:40px;
    }
    .site-footer{
        padding-top:50px;
    }

    .footer-widget h3{
        font-size:26px;
    }

    .footer-widget h4{
        font-size:20px;
    }
    .cta-banner{ padding:70px 0; }
    .cta-inner h2{ font-size:32px; }
    .cta-inner p{ font-size:16px; }
    .cta-btn-primary,
    .cta-btn-secondary{
        width:100%;
        justify-content:center;
    }
    .counter-strip {
    margin-top: 0px;
    padding-top: 30px;
}

.testimonial-slider .owl-nav {
    margin-top: 15px;
}

.testimonial-section {
    position: relative;
    padding: 40px 0;
}

.product-slider .owl-nav {
    margin-top: 20px;
}
    .faq-section{ padding:30px 0; }
    .faq-question{ font-size:16px; padding:20px 22px; }
    .faq-answer p{ padding:0 22px 22px; }
     .industries-section{ padding:30px 0; }
    .industry-card{ padding:34px 26px; }
    .services-section{ padding:60px 0; }

    .section-heading{ margin-bottom:20px; }
    .section-heading h2{ font-size:32px; }
    .section-heading p{ font-size:16px; }

    .service-card{ padding:25px; }

    .about-section{ padding:30px 0; }
    .about-img img{ height:380px; }
    .about-content h2{ font-size:32px; }
    .about-content p{ font-size:16px; }

    .about-contact{ gap:15px; }
    .call-icon{ width:60px; height:60px; }
    .call-icon i{ font-size:24px; }
    .about-contact > div a{ font-size:22px; }

    .trust-strip{ padding:30px 0; }
    .trust-item img{ width:45px; height:45px; }
    .trust-item p{ font-size:16px; }

    .hero-banner,
    .hero-img{
        min-height:600px;
        height:600px;
    }
    .hero-content h1{ font-size:34px; }
    .hero-content h2{ font-size:22px; }
    .hero-badge{ font-size:12px; }
    .categories-section{ padding:00px 0; }
    .category-img img{ height:190px; }
}


/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
    .custom-toggler .toggler-bar,
    #mobileMenu,
    #mobileMenu .nav-item,
    #mobileMenu .d-flex,
    .call-icon { transition: none !important; animation: none !important; }
}