/* =========================================================
   FPS ENTERPRISES — COMBINED STYLESHEET
   Merged from: assets/css/style.css, assets/css/responsive.css,
   assets/css/animations.css (loaded in this order in the original)
   ========================================================= */

/* =========================================================
   1) BASE STYLES (originally assets/css/style.css)
   ========================================================= */
:root{

    --primary:#e30613;
    --secondary:#b30000;
    --dark:#081524;
    --light:#f5f5f5;
    --gray:#6b7280;
    --white:#ffffff;

    --heading:'Montserrat',sans-serif;
    --body:'Inter',sans-serif;

    --c-bg:#0a0a0f;--c-border:rgba(255,255,255,0.08);--c-accent:#6C63FF;--c-teal:#00D4AA;
    --c-purple-mid:rgba(225,6,0,0.2);--c-purple-card:rgba(225,6,0,0.07);
    --c-menu:#111118;--c-menu-border:rgba(255,255,255,0.1);--c-text:#e8e8ee;--c-muted:#888;
    --c-hover:rgba(255,255,255,0.07);--c-item-hover:rgba(225,6,0,0.1);--nav-h:60px;

    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-2: #f1f5f9;
    --surface-3: #e2e8f0;
    --navy: #12162b;
    --navy-2: #1a2140;
    --text: #111827;
    --muted: #64748b;
    --brand: #cc0000;
    --brand-2: #ff1100;
    --success: #059669;
    --border: #dbe4ee;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --font-sans: 'Inter', 'Segoe UI', sans-serif;
    --font-display: 'Montserrat', 'Inter', sans-serif;
    --font-mono: 'IBM Plex Mono', 'SFMono-Regular', monospace;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
    overflow-x:hidden;
    width:100%;
}
body{ font-family:var(--body); color:var(--dark); background:#fff; width:100%; position:relative; }

h1,h2,h3,h4,h5,h6{

    font-family:var(--heading);
    font-weight:700;

}

section{

    padding:100px 0;

}

a{

    text-decoration:none;

}

img{

    max-width:100%;
    display:block;

}

.btn-primary{

    background:var(--primary);
    border:none;
    border-radius:50px;
    padding:14px 34px;

}

.btn-primary:hover{

    background:var(--secondary);

}

/* ===========================
   NAVBAR
=========================== */
.site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1000;
}

.nav{
    background:var(--c-bg);
    border-bottom:1px solid var(--c-border);
    height:var(--nav-h);
    display:flex;
    align-items:center;
    padding:0 24px;
    /* no position/top/z-index here anymore — wrapper handles it */
}

.top-bar{
    background:#0a1022;
    color:#fff;
    padding:8px 0;
    font-size:14px;
    /* no position here either — wrapper handles it */
}
#mainNavbar {
    transition:.4s ease;
    z-index:9999;
    background:transparent;
}

#mainNavbar.scrolled {
    background:rgba(17,24,39,.92);
    backdrop-filter:blur(14px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    padding:10px 0;
}

.navbar-nav .nav-link.active {
    color:#fff;
}
.navbar-nav .nav-link.show {
    color:var(--primary);
}

.navbar-brand {
    font-family:var(--heading);
}

.nav-link {
    color:#fff;
    font-weight:600;
    margin:0 10px;
    position:relative;
    transition:.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color:var(--primary);
}

.nav-link::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}
.dropdown-toggle::after {
    display:none !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width:100%;
}

.btn-success {
    border-radius:50px;
    padding:12px 28px;
    font-weight:600;

}

.navbar-toggler{

    color:#fff;

}

.navbar-toggler:focus{
    box-shadow:none;
}
.hero-image,
.about-image,
.about-section,
.contact-form,
.contact-section{
    overflow-x:clip;
}
.nav{background:var(--c-bg);width:100%;border-bottom:1px solid var(--c-border);height:var(--nav-h);display:flex;align-items:center;padding:0 24px;position:sticky;top:0;z-index:1000}
.nav-logo{display:flex;align-items:center;gap:8px;text-decoration:none;margin-right:36px;flex-shrink:0}
.nav-logo-icon{width:30px;height:30px;border-radius:8px;background:var(--c-accent);display:flex;align-items:center;justify-content:center}
.nav-logo-text{font-size:15px;font-weight:600;color:#fff;letter-spacing:-0.3px}
.nav-links{display:flex;align-items:center;gap:2px;flex:1}
.nav-actions{display:flex;align-items:center;gap:10px}
.nav-btn{background:none;border:none;color:rgba(255,255,255,0.75);cursor:pointer;padding:8px 12px;border-radius:7px;font-size:13px;font-weight:500;font-family:inherit;display:flex;align-items:center;gap:4px;transition:color .15s,background .15s;text-decoration:none}
.nav-btn:hover,.nav-btn[aria-expanded="true"]{color:#fff;background:var(--c-hover)}
.nav-btn.muted{color:var(--c-muted)}
.btn-secondary{background:none;border:1px solid var(--c-border);color:var(--c-text);cursor:pointer;padding:7px 14px;border-radius:7px;font-size:13px;font-family:inherit}
.btn-primary{background:var(--c-accent);border:none;color:#fff;cursor:pointer;padding:7px 16px;border-radius:7px;font-size:13px;font-weight:500;font-family:inherit}
.hamburger{display:none;background:none;border:none;color:var(--c-text);cursor:pointer;padding:8px;border-radius:7px;margin-left:auto;flex-direction:column;gap:5px;align-items:center;justify-content:center}
.hamburger span{display:block;width:20px;height:2px;background:currentColor;border-radius:2px;transition:transform .2s,opacity .2s}
.hamburger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger[aria-expanded="true"] span:nth-child(2){opacity:0}
.hamburger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.chevron{width:12px;height:12px;flex-shrink:0;transition:transform .2s;pointer-events:none}
[aria-expanded="true"] .chevron{transform:rotate(180deg)}
.overlay{
    position:fixed;
    top:var(--header-h, var(--nav-h));
    left:0;
    right:0;
    bottom:0;
    z-index:100;
    display:none;
}
.overlay.open{display:block}

.desktop-dd{
    position:fixed;
    top:var(--header-h, 60px);
    left:80px;
    background:var(--c-menu);
    border:1px solid var(--c-menu-border);
    border-radius:7px;
    padding:20px;
    z-index:150;
    width:min(680px,95vw);
    overflow:hidden;
    opacity:0;
    transform:translateY(8px);
    pointer-events:none;
    transition:opacity .18s ease,transform .18s ease;
}
.desktop-dd.open{opacity:1;transform:translateY(0);pointer-events:auto}

.panel{display:none}
.panel.active{display:grid}
.panel-sub{grid-template-columns:1fr 2fr;gap:0;border-radius:10px;overflow:hidden;animation:fadeSlide .18s ease}
@keyframes fadeSlide{from{opacity:0;transform:translateX(8px)}to{opacity:1;transform:translateX(0)}}

.section-label{font-size:10px;font-weight:600;letter-spacing:.8px;color:var(--c-muted);text-transform:uppercase;margin-bottom:10px}
.item{display:flex;align-items:center;gap:10px;padding:9px 10px;border-radius:7px;cursor:pointer;transition:background .15s;margin-bottom:3px;text-decoration:none;color:var(--c-text);border:none;background:none;width:100%;font-family:inherit;text-align:left}
.item:hover,.item:focus-visible{background:var(--c-item-hover);outline-offset:0}
.item-icon-sm{width:28px;height:28px;border-radius:6px;display:flex;align-items:center;justify-content:center;flex-shrink:0;background:var(--c-purple-mid)}
.item-title{font-weight:500;font-size:13px;color:#fff;margin-bottom:2px}
.item-sub{font-size:12px;color:var(--c-muted);line-height:1.4}
.item-row-between{display:flex;align-items:center;justify-content:space-between;flex:1}
.arrow{opacity:.5;flex-shrink:0;transition:opacity .15s}
.item:hover .arrow{opacity:1}

.exp-link{display:flex;align-items:center;gap:9px;padding:8px 10px;border-radius:7px;text-decoration:none;color:var(--c-muted);font-size:13px;transition:background .12s,color .12s;margin-bottom:2px}
.exp-link:hover,.exp-link:focus-visible{background:var(--c-item-hover);color:#fff;outline-offset:0}

.sub-left{padding:4px 0}
.sub-left .section-label{padding:0 10px 8px}
.sub-right{border-left:1px solid var(--c-menu-border);padding:4px 0 4px 20px}
.sub-right .section-label{padding:0 0 8px}
.sub-left .item.active-group .item-title{color:var(--c-accent)}
.sub-left .item.active-group{background:var(--c-purple-card)}

.text-col-title{font-size:14px;font-weight:600;color:#fff;margin-bottom:6px}
.text-col-desc{font-size:12px;color:var(--c-muted);line-height:1.5}

.reset-bar{display:none;margin-top:40px;padding-top:12px;border-top:1px solid var(--c-menu-border)}
.reset-bar.visible{display:block}
.reset-btn{background:none;border:none;color:var(--c-muted);width:100%;font-size:12px;font-family:inherit;display:block;align-items:center;gap:4px;padding:4px 6px;border-radius:5px}
.reset-btn:hover{color:var(--c-text)}

.mobile-menu{
    display:none;
    flex-direction:column;
    background:var(--c-menu);
    border-top:1px solid var(--c-menu-border);
    position:fixed;
    left:0;
    right:0;
    top:var(--header-h, 60px);
    z-index:150;
    overflow-y:auto;
    max-height:calc(100svh - var(--nav-h));
    -webkit-overflow-scrolling:touch;
}
/* ===== MOBILE STABILITY FIXES ===== */
@media (max-width: 480px) {
  .trust-strip{ margin-top:-10px; }
  .trust-box{ border-radius:12px; }
  .trust-item{
    padding:14px 8px;
    gap:8px;
  }
  .trust-item h6{
    font-size:13px;
    white-space:normal;
  }
  .trust-item small{ font-size:10px; }
  .trust-item i{ font-size:24px; }

  .stat-card{ padding:22px 10px; }
  .stat-card i{ font-size:30px; margin-bottom:10px; }
  .stat-card h2{
    font-size:26px;
    word-break:break-word;
  }
  .stat-card p{ font-size:13px; }

  .section-title{ font-size:22px; }
  .hero-title{ font-size:22px; }
}
.mobile-menu.open{display:flex}
.mob-nav{display:flex;flex-direction:column;gap:2px;padding:10px 12px}
.mob-btn{background:none;border:none;color:rgba(255,255,255,0.75);cursor:pointer;padding:10px 12px;border-radius:7px;font-size:14px;font-weight:500;font-family:inherit;display:flex;align-items:center;justify-content:space-between;width:100%;transition:color .15s,background .15s;text-decoration:none}
.mob-btn:hover,.mob-btn[aria-expanded="true"]{color:#fff;background:var(--c-hover)}
.mob-btn.muted{color:var(--c-muted)}
.mob-accordion{display:none;flex-direction:column;padding:0 12px}
.mob-accordion.open{display:flex}
.mob-section{padding:12px 2px 6px}
.mob-section .section-label{margin-bottom:8px}
.mob-expandable{display:flex;align-items:center;gap:10px;padding:9px 10px;border-radius:7px;cursor:pointer;transition:background .15s;margin-bottom:2px;background:none;border:none;width:100%;font-family:inherit;color:var(--c-text);text-align:left}
.mob-expandable:hover,.mob-expandable[aria-expanded="true"]{background:var(--c-item-hover)}
.mob-expandable[aria-expanded="true"] .chevron{transform:rotate(180deg)}
.mob-subpanel{display:none;flex-direction:column;margin:0 10px 6px;border-left:2px solid var(--c-menu-border);padding-left:12px}
.mob-subpanel.open{display:flex}
.mob-link{display:flex;align-items:center;gap:8px;padding:7px 8px;border-radius:6px;text-decoration:none;color:var(--c-muted);font-size:13px;transition:background .12s,color .12s}
.mob-link:hover,.mob-link:focus-visible{background:var(--c-item-hover);color:#fff;outline-offset:0}
.mob-divider{height:1px;background:var(--c-menu-border);margin:4px 2px}
.mob-actions{display:flex;gap:10px;padding:12px 2px 16px}
.mob-actions .btn-secondary,.mob-actions .btn-primary{flex:1;padding:9px 14px;font-size:13px}

@media(max-width:768px){
    .nav-links,.nav-actions{display:none}
    .hamburger{display:flex}
    .desktop-dd{display:none!important}
    .panel-main{grid-template-columns:1fr}
}
@media(max-width:991px){

    #navbarMenu{

        margin-top:20px;

        padding:25px;

        border-radius:15px;

    }

    .nav-link{

        margin:12px 0;

    }

}
/*==============================
HERO
==============================*/

#hero{
    position:relative;
    overflow:hidden;
    min-height:80vh;
    display:flex;
    align-items:center;

    background-size:cover;
    background-position:center;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0, 0, 0, 0.36);

}

.hero-content{

    position:relative;

    z-index:5;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    padding:10px 20px;

    border-radius:50px;

}

.hero-content h1{

    line-height:1.15;

}

.hero-content p{

    color:#ddd;

    max-width:550px;

}

.hero-image{

    position:relative;

    z-index:5;

}

.hero-image img{

    border-radius:25px;

    box-shadow:0 30px 80px rgba(0,0,0,.4);

}

.floating-card{

    position:absolute;

    background:#fff;

    border-radius:20px;

    padding:18px 28px;

    box-shadow:0 15px 40px rgba(0,0,0,.2);

    text-align:center;

}

.floating-card h3{

    color:var(--primary);

    margin-bottom:5px;

}

.card-one{

    top:15%;

    left:-40px;

}

.card-two{

    bottom:10%;

    right:-30px;

}

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:30px;

    animation:bounce 2s infinite;

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-10px);

    }

    60%{

        transform:translate(-50%,-5px);

    }

}

/*==============================
STATISTICS
==============================*/

.stats-section{
    background:#f8f9fa;
}

.stat-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:40px 20px;
    border-radius:18px;
    cursor:pointer;

    transform-style:preserve-3d;
    transition:transform .15s ease;

    box-shadow:
        0 20px 25px -5px rgba(0,0,0,.1),
        0 8px 10px -6px rgba(0,0,0,.08);
}

.stat-card i,
.stat-card h2,
.stat-card p{
    position:relative;
    z-index:2;
}

.stat-card i{
    font-size:45px;
    color:var(--primary);
    margin-bottom:20px;
}

.stat-card h2{
    font-size:42px;
    font-weight:700;
}

.stat-card p{
    color:#666;
    margin:0;
}

.stat-card{
    background:rgba(255,255,255,.65);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.5);
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.stat-card{
    position: relative;
    isolation: isolate;
    background: #fff;
    border-radius: 18px;
}

.stat-card::after{
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;

    background: conic-gradient(
        from var(--angle),
        #ff4545,
        #00ff99,
        #006aff,
        #ff0095,
        #ff4545
    );

    padding: 2px;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: opacity 0.3s ease;

    animation: spin 3s linear infinite;
    pointer-events: none;
}

.stat-card{
    overflow: visible;
}

.stat-card:hover::after{
    opacity: 1;
}

@keyframes spin{
    from{
        --angle: 0deg;
    }
    to{
        --angle: 360deg;
    }
}

/*=========================
ABOUT
==========================*/

.about-section{
    background:#fff;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.experience-box{
    position:absolute;
    bottom:30px;
    left:-20px;
    background:var(--primary);
    color:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.experience-box h2{
    font-size:46px;
    margin-bottom:0;
}

.section-subtitle{
    color:var(--primary);
    font-weight:700;
    letter-spacing:2px;
}

.section-title{
    font-size:44px;
    font-weight:700;
}

.about-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.about-item{
    font-weight:600;
}

.about-item i{
    color:var(--primary);
    margin-right:10px;
}

@media (max-width: 991px) {

    .about-list {
        grid-template-columns: 1fr;
    }

    .experience-box {
        left: 20px;
        bottom: 20px;
    }

    .section-title {
        font-size: 34px;
    }

}

@media (max-width: 576px) {

    .experience-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        display: inline-block;

    }

    .section-title {
        font-size: 28px;
    }

}

/*=========================
WHY CHOOSE US
==========================*/

.why-us{
    background:#f8f9fa;
}

.feature-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.feature-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.feature-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:32px;
    margin-bottom:25px;
}

.feature-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
    margin:0;
}

/*=========================
SERVICES
==========================*/

.services-section{
    background:#fff;
}

.service-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-image{
    overflow:hidden;
}

.service-image img{
    width:100%;
    transition:.6s;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-content{
    padding:30px;
    text-align:center;
}

.service-icon{
    width:80px;
    height:80px;
    line-height:80px;
    margin:auto;
    margin-top:-70px;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    font-size:30px;
    position:relative;
    border:5px solid #fff;
}

.service-content h4{
    margin-top:25px;
    font-weight:700;
}

.service-content p{
    color:#666;
    margin:20px 0;
}

/*=========================
PRODUCTS
==========================*/

.products-section{

    background:#f8f9fa;

}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #f1f1f1;
}

.pr-item:hover {
    background: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 0px 24px 5px rgb(255 99 99 / 15%);
}

/* Image Area */
.product-image {
    width: 100%;
    height: 220px; /* Same height for every image */
    background: #f8f9fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes every image same size */
    transition: transform .4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Content */
.product-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-content h6 {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;

    /* Keep same height even if text differs */
    min-height: 48px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button stays at bottom */
.product-content .btn {
    margin-top: auto;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    transition: .3s;
}

.product-content .btn-danger {
    background: #d62828;
    border: none;
}

.product-content .btn-danger:hover {
    background: #b71c1c;
}

.owl-nav button.owl-next, .owl-nav button.owl-prev {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--highlight-color) !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 20px !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: all var(--transition-speed) ease !important;
    border: none !important;
    box-shadow: var(--shadow-light) !important;
}
.owl-nav button.owl-prev {
    left: 20px !important;
}
.owl-nav button.owl-next {
    right: 20px !important;
}

.price{

    color:var(--primary);

    font-size:24px;

}

/*=========================
TESTIMONIALS
==========================*/

.testimonials-section{

    background:#fff;

}

.testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin:15px;
    width: 100%;
}

.testimonial-avatar{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:20px;
}

.stars{
    color:#ffc107;
    margin-bottom:20px;
}

.testimonial-text{
    color:#666;
    font-style:italic;
    margin-bottom:20px;
}

.testimonial-card h5{
    font-weight:700;
    margin-bottom:5px;
}

/*=========================
FAQ
==========================*/

.faq-section{
    background:#f8f9fa;
}

.faq-item{
    border:none;
    border-radius:15px;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.accordion-button{
    font-weight:700;
    font-size:18px;
    padding:22px;
    background:#fff;
}

.accordion-button:not(.collapsed){
    background:var(--primary);
    color:#fff;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    padding:25px;
    color:#666;
    line-height:1.8;
}

/*=========================
CONTACT
==========================*/

.contact-section{
    background:#fff;
}

.contact-box{
    display:flex;
    gap:20px;
    align-items:flex-start;
    padding:25px;
    margin-bottom:20px;
    background:#f8f9fa;
    border-radius:18px;
    transition:.35s;
}

.contact-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.contact-box i{
    width:60px;
    height:60px;
    line-height:60px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    text-align:center;
    font-size:22px;
}

.contact-box h5{
    font-weight:700;
}

.contact-box p{
    margin:0;
    color:#666;
}

.contact-form{
    background:#f8f9fa;
    padding:40px;
    border-radius:20px;
}

.contact-form .form-control{
    padding:15px;
    border:none;
    border-radius:12px;
}

.contact-form textarea{
    resize:none;
}

.social-icons a{
    width:45px;
    height:45px;
    display:inline-flex;
    justify-content:center;
    align-items:center;
    background:var(--primary);
    color:#fff;
    border-radius:50%;
    margin-right:10px;
    transition:.3s;
    text-decoration:none;
}

.social-icons a:hover{
    background:#111;
}
/*=========================
NEW: TOP BAR LAYOUT
==========================*/
.top-bar-left span{ color:#ddd; }
.top-bar-right a{
    color:#fff;
    margin-left:10px;
    display:inline-flex;
    width:30px;height:30px;
    align-items:center;justify-content:center;
    background:rgba(255,255,255,.1);
    border-radius:50%;
    transition:.3s;
}
.top-bar-right a:hover{ background:var(--primary); }

.dropdown-menu{
    border:none;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.2);
    padding:10px;
}
.dropdown-item{ border-radius:8px; padding:8px 14px; }
.dropdown-item:hover{ background:var(--primary); color:#fff; }

/*=========================
HERO EXTRAS
==========================*/
.hero-title{ font-size:46px; font-weight:800; line-height:1.2; }
.hero-title span{ color:var(--primary); }
.hero-list{ list-style:none; padding:0; margin:25px 0; display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.hero-list li{ font-size:15px; }
.hero-list li::before{ content:"\f00c"; font-family:"Font Awesome 6 Free"; font-weight:900; color:var(--primary); margin-right:10px; }
.hero-product-img{ border-radius:20px; }

.call-now-badge{
    position:absolute;
    top:280px;
    right:0;
    width:100px;
    z-index:9;
}
.call-now-badge > div
{
    color: #fff;
    padding: 10px 10px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
    height: 110px;
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.call-now-badge .call-box 
{
    background: #ff000fad;
    border-radius: 10px 0 0 0;
}
.call-now-badge .support-box
{
    background: #00000080;
    border-radius: 0 0 0 10px;
}
@media(min-width:1200px){
    .call-now-badge{ display:block; right:0; }
}
.call-now-badge i{ font-size:30px; margin-bottom:6px; }

/* TRUST STRIP */
.trust-strip {
    position: relative;
    margin-top: -20px; /* pulls strip over banner */
    z-index: 10;
}

.trust-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    overflow: hidden;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    height: 100%;
    padding: 25px 15px;
    border-right: 1px solid #ececec;
    transition: all .3s ease;
}

.trust-item:last-child {
    border-right: none;
}

.trust-item i {
    font-size: 34px;
    color: #e31e24;
    flex-shrink: 0;
}

.trust-item h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    text-align: left;
    white-space: nowrap;
}

.trust-item small {
    display: block;
    font-size: 13px;
    color: #777;
    text-align: left;
}

.trust-item:hover {
    background: #fff5f5;
}

.trust-item:hover i {
    transform: scale(1.1);
}

.about-box
{
    display:flex;
    align-items:center;
    gap:15px;
}

.trust-item i {
    transition: .3s;
}

/* Tablet */
@media (max-width: 991px) {
    .trust-item {
        border-right: none;
        border-bottom: 1px solid #ececec;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .trust-strip {
        margin-top: -10px;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 10px;
    }

    .trust-item h6,
    .trust-item small {
        text-align: center;
    }

    .trust-item i {
        font-size: 30px;
    }

    .about-box
    {
        flex-direction:column;
        text-align:center;
    }
}

/*=========================
ABOUT EXTRAS
==========================*/
.play-btn{
    position:absolute;
    top:50%;left:50%;
    transform:translate(-50%,-50%);
    width:70px;height:70px;
    background:#fff;
    color:var(--primary);
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}
.about-list-single .about-item{ margin-bottom:12px; font-weight:600; }
.about-list-single i{ color:var(--primary); margin-right:10px; }

/* "Trusted By" continuously scrolling logo strip */
.trusted-by-label{
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    color:#999;
    margin-bottom:14px;
}
.logo-scroll-wrap{
    position:relative;
    height:420px;
    overflow:hidden;
    border-radius:14px;
    -webkit-mask-image:linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image:linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-scroll-track{
    display:flex;
    flex-direction:column;
    gap:16px;
    animation:logoScrollUp 18s linear infinite;
}
.logo-scroll-wrap:hover .logo-scroll-track{
    animation-play-state:paused;
}
.logo-scroll-item{
    background:#fff;
    border-radius:12px;
    padding:14px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    flex-shrink:0;
}
.logo-scroll-item img{
    width:100%;
    height:auto;
    display:block;
    border-radius:6px;
}
@keyframes logoScrollUp{
    from{ transform:translateY(0); }
    to{ transform:translateY(-50%); }
}
@media (prefers-reduced-motion: reduce){
    .logo-scroll-track{ animation:none; }
}

/*=========================
CATEGORIES
==========================*/
.categories-section{ background:#f8f9fa; }
.category-card{
    background:#fff;
    padding:35px 15px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
    height:100%;
}
.category-card:hover{ transform:translateY(-8px); box-shadow:0 15px 35px rgba(0,0,0,.12); }
.category-card i{ font-size:36px; color:var(--primary); margin-bottom:15px; }
.category-card h6{ margin:0; font-weight:700; }

/*=========================
SERVICES STRIP
==========================*/
.services-strip{ background:var(--dark); }
.service-strip-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    border-radius:14px;
    padding:30px 10px;
    text-align:center;
    transition:.3s;
}
.service-strip-card:hover{ background:var(--primary); border-color:var(--primary); }
.service-strip-card i{ font-size:28px; color:var(--primary); margin-bottom:12px; display:block; }
.service-strip-card:hover i{ color:#fff; }
.service-strip-card h6{ color:#fff; margin:0; font-size:14px; }

/*=========================
INDUSTRIES
==========================*/
.industries-section{ background:#fff; }
.industry-card img{
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,.1);
    aspect-ratio:1/1;
    object-fit:cover;
}
.industry-card p{ margin-top:10px; font-weight:600; font-size:14px; }

/*=========================
WHY CHOOSE BOX
==========================*/
.why-choose-box{
    background:#f8f9fa;
    border-radius:20px;
    padding:35px;
    position:relative;
    height:100%;
}
.why-list{ list-style:none; padding:0; margin-top:20px; }
.why-list li{ margin-bottom:12px; font-weight:600; }
.why-list i{ color:var(--primary); margin-right:10px; }
.why-choose-icon{
    width:90px;height:90px;line-height:90px;
    background:var(--dark);
    color:#fff;
    border-radius:50%;
    text-align:center;
    font-size:34px;
    margin:30px auto 0;
}

/*=========================
FEATURED PRODUCTS (compact)
==========================*/
.products-section .product-card{ border:1px solid #eee; }
.products-section .product-content{ padding:15px; }
.products-section .product-content h6{ font-weight:700; margin-bottom:12px; }

/*=========================
BRANDS
==========================*/
.brands-section{ background:#fff; border-top:1px solid #eee; border-bottom:1px solid #eee; }
.brand-name{
    font-weight:800;
    font-size:18px;
    color:#444;
    opacity:.7;
    letter-spacing:1px;
}

/*=========================
PROJECTS GRID
==========================*/
.project-card{ position:relative; border-radius:16px; overflow:hidden; }
.project-card img{ width:100%; height:220px; object-fit:cover; transition:.4s; }
.project-card:hover img{ transform:scale(1.08); }
.project-overlay{
    position:absolute; inset:0;
    background:linear-gradient(transparent 40%, rgba(0,0,0,.85));
    display:flex; align-items:flex-end;
    padding:20px;
}
.project-overlay h6{ color:#fff; margin:0; }

/*=========================
EMERGENCY RESPONSE STRIP
==========================*/
.response-section{ background:linear-gradient(135deg,var(--primary),var(--secondary)); }
.response-step{
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    border-radius:14px;
    padding:25px 15px;
    height:100%;
    position:relative;
    color:#fff;
    transition:.3s;
}
.response-step:hover{ background:rgba(255,255,255,.18); transform:translateY(-4px); }
.response-step-number{
    position:absolute;
    top:-14px; left:-14px;
    width:30px; height:30px; line-height:30px;
    background:#fff; color:var(--primary);
    font-weight:800; font-size:14px;
    border-radius:50%; text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,.2);
}
.response-step i{ font-size:28px; display:block; margin-bottom:10px; }
.response-step h6{ margin-bottom:8px; font-weight:700; }
.response-step p{ opacity:.9; }

/*=========================
TESTIMONIALS/BLOG/CERT ROW
==========================*/
.testimonials-section{ background:#f8f9fa; }
.testimonials-section .testimonial-card{ box-shadow:0 8px 25px rgba(0,0,0,.06); padding:25px; }
.testimonialCarousel{ width:100%; }
.testimonialCarousel .owl-stage-outer{ overflow:hidden; }
.owl-dots { text-align:left; margin-top:10px; }
.owl-dots .owl-dot span{
    width:10px; height:10px; margin:5px 4px; background:#ddd; border-radius:50%;
    display:inline-block; transition:.3s;
}
.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span{
    background:var(--primary) !important; width:24px !important; border-radius:5px;
}
.blog-mini img{ width:80px;height:60px;object-fit:cover;border-radius:8px; }
.cert-badge{
    background:#fff; border:1px solid #eee; border-radius:12px;
    padding:18px 5px; font-weight:700; color:#555;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
}
.hero-carousel .owl-dots{ text-align:center; margin-top:20px; position:absolute; bottom:40px; left:auto; right:auto; width:100%; transition:.3s; }
/* .hero-carousel .owl-dots button.owl-dot{ left:50%; transform:translateX(-50%); width:12px; height:12px; border-radius:50%; background:#ddd; border:none; transition:.3s; } */
/*=========================
CONTACT (dark)
==========================*/
.contact-section{ background:var(--dark); }
.contact-section h5{ color:#fff; }
.contact-section .contact-box{
    background:rgba(255,255,255,.05);
    color:#ddd;
}
.contact-section .contact-box h6{ color:#fff; margin:0; font-size:14px; }
.contact-section .contact-box i{ background:var(--primary); }

/*=========================
FOOTER
==========================*/
.site-footer{ background:#05080f; color:#aaa; }
.footer-logo{ font-size:24px; font-weight:800; color:#fff; }
.footer-heading{ color:#fff; margin-bottom:18px; font-weight:700; }
.footer-links{ list-style:none; padding:0; }
.footer-links li{ margin-bottom:10px; }
.footer-links a{ color:#aaa; transition:.3s; }
.footer-links a:hover{ color:var(--primary); padding-left:5px; }
.footer-bottom{ background:#000; color:#888; font-size:14px; }

.whatsapp-float{
    position:fixed;
    bottom:25px; right:25px;
    width:55px;height:55px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    font-size:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.3);
    z-index:999;
}

/* =========================================================
   2) RESPONSIVE FIXES (originally assets/css/responsive.css)
   ========================================================= */
/*=========================================
RESPONSIVE FIXES - MOBILE / TABLET
==========================================*/

/* ---------- Top bar ---------- */
@media (max-width: 767px) {
    .top-bar{
        padding:6px 0;
        font-size:12px;
    }
    .top-bar .container{
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
    }
    .top-bar-left{
        display:flex;
        flex-direction:column;
        gap:2px;
    }
    .top-bar-left span{
        margin-left:0 !important;
        display:inline-flex;
        align-items:center;
        gap:6px;
    }
    .top-bar-right{
        align-self:flex-start;
    }
}

/* ---------- Navbar ---------- */
@media (max-width: 991px) {
    #mainNavbar{
        padding:12px 0;
    }
    .navbar-brand{
        font-size:20px;
    }
    .navbar .container{
        flex-wrap:nowrap;
    }
    #navbarMenu{
        max-height:75vh;
        overflow-y:auto;
    }
}

@media (max-width: 575px) {
    .navbar-brand{
        font-size:16px;
        white-space:nowrap;
    }
    .navbar-brand i{
        font-size:18px;
    }
}

/* ---------- Hero ---------- */
@media (max-width: 991px) {
    #hero{
        padding-top:170px;
        padding-bottom:50px;
    }
    .hero-title{
        font-size:34px;
    }
}

@media (max-width: 575px) {
    #hero{
        padding-top:190px;
    }
    .hero-title{
        font-size:28px;
    }
    .hero-list{
        grid-template-columns:1fr;
    }
}

.call-now-badge{
    display:none;
}
@media (min-width:1200px){
    .call-now-badge{
        display:block;
        position:absolute;
        top:160px;
        right:0;
    }
}
@media (max-width:1199px){
    .call-now-badge{
        display:flex;
        align-items:center;
        justify-content:center;
        width:fit-content;
        text-align:left;
        flex-wrap:wrap;
        width:100px;
        top: 100px;
    }
}

/* ---------- Trust strip ---------- */
@media (max-width: 575px) {
    .trust-strip{
        padding:20px 0;
    }
    .trust-strip i{
        font-size:20px;
    }
    .trust-strip h6{
        font-size:13px;
    }
    .call-now-badge{
        display:none;
    }
}

/* ---------- WhatsApp float: keep clear of content & nav toggler ---------- */
@media (max-width: 575px) {
    .whatsapp-float{
        width:48px;
        height:48px;
        font-size:24px;
        bottom:18px;
        right:18px;
    }
}

/* ---------- About / stats / categories stacking ---------- */
@media (max-width: 991px) {
    .section-title{
        font-size:30px;
    }
    .logo-scroll-wrap{
        height:260px;
        margin-top:20px;
    }
}

/* ---------- Generic section spacing on mobile ---------- */
@media (max-width: 575px) {
    section{
        padding:60px 0;
    }
}
/* ---------- Fix fixed navbar overlapping/under top-bar on mobile ---------- */

.top-bar{
    position:relative;
    z-index:1040;
}

#mainNavbar{
    position:absolute;
    transform:none !important;
    left:0;
    right:0;
}

#mainNavbar.scrolled{
    position:fixed;
}

body{
    padding-top:0 !important; /* topbar stays in normal flow, navbar floats below it via margin trick below */
}

/* Reserve space so hero content never sits under the sticky navbar */
@media (max-width: 991px){
    #hero{
        padding-top:40px !important;
    }
}

@media (max-width: 575px){
    .top-bar .container{
        flex-direction:column;
        align-items:flex-start;
        gap:4px;
        padding:8px 12px;
    }
    .top-bar-left{
        display:flex;
        flex-direction:column;
        gap:2px;
        font-size:12px;
    }
    .top-bar-left span{
        margin-left:0 !important;
    }
    .navbar-brand{
        font-size:16px;
    }
    #hero{
        padding-top:25px !important;
    }
    .hero-title{
        font-size:26px;
    }
}
#hero{
    position:relative;
}

.hero-overlay{
    z-index:1;
}

#hero .container{
    position:relative;
    z-index:2;
}
/* =========================================================
   3) ANIMATIONS (originally assets/css/animations.css)
   ========================================================= */
/*=========================================
ANIMATIONS
==========================================*/

@keyframes fadeInUp{
    from{ opacity:0; transform:translateY(30px); }
    to{ opacity:1; transform:translateY(0); }
}

@keyframes fadeInDown{
    from{ opacity:0; transform:translateY(-30px); }
    to{ opacity:1; transform:translateY(0); }
}

@keyframes fadeInLeft{
    from{ opacity:0; transform:translateX(-40px); }
    to{ opacity:1; transform:translateX(0); }
}

@keyframes fadeInRight{
    from{ opacity:0; transform:translateX(40px); }
    to{ opacity:1; transform:translateX(0); }
}

@keyframes zoomIn{
    from{ opacity:0; transform:scale(.9); }
    to{ opacity:1; transform:scale(1); }
}

@keyframes pulse{
    0%,100%{ transform:scale(1); }
    50%{ transform:scale(1.05); }
}

/* Hero entrance */
.hero-title{
    animation:fadeInUp .8s ease both;
}
.hero-title + p{
    animation:fadeInUp .8s ease .15s both;
}
.hero-list{
    animation:fadeInUp .8s ease .3s both;
}
.hero-product-img{
    animation:fadeInRight .9s ease .2s both;
}

/* Card hover lift (extra polish on top of existing transitions) */
.stat-card, .feature-card, .service-card, .product-card,
.category-card, .why-choose-box, .logo-scroll-item{
    transition:transform .35s ease, box-shadow .35s ease;
}

/* Call badge subtle pulse so it draws the eye without being annoying */
.call-now-badge{
    animation:pulse 2.5s ease-in-out infinite;
}

/* Trust strip icons */
.trust-strip i{
    transition:transform .3s ease;
}
.trust-strip > div:hover i{
    transform:translateY(-4px) scale(1.1);
}

/* Fade-up utility class, usable anywhere via class="reveal-up" */
.reveal-up{
    animation:fadeInUp .7s ease both;
}
.reveal-zoom{
    animation:zoomIn .6s ease both;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce){
    *, *::before, *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }
}

.mobile-menu{
    position:fixed;
}
.nav.scrolled{
    background:rgba(17,24,39,.92);
    backdrop-filter:blur(14px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

/* Kill nowrap everywhere it can force overflow on narrow screens */
.trust-item h6,
.trust-item small {
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 767px) {
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 16px 8px;
        min-width: 0;      /* critical: lets flex items shrink below content size */
    }
    .trust-item h6,
    .trust-item small {
        text-align: center;
        white-space: normal;
    }
}


#hero,
.about-section,
.contact-section,
.trust-strip,
section {
    overflow-x: clip;
}

/* Any flex/grid child needs this or nowrap text can blow out the row */
.trust-box .row,
.trust-item,
.hero-list li {
    min-width: 0;
}