:root {
    /* Brand */
    --brand: #ff6c00;
    --brand-2: #ff6b6b;
    --ink: #0f172a;
    --sub: #475569;
    --bg: #ffffff;
    --line: #e6eef7;
    --card-tint: #f7fbff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    --radius: 18px;
    --header-h: 64px;
    --hero-bg: url("images/cctv-camera-installation.webp");
    --blue: #2563eb;
    --blue-2: #3b82f6;
    --blue-ink: #0f172a;
    --blue-sub: #475569;
    --accent: #f97316;
    --font-size: 16px;
    --text: #222;
}

/* Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --accent: #e14e3b;
    --text: #222;
    --muted: #6b7280;
    --panel-bg: #fff;
    --shadow: 0 14px 40px rgba(10, 20, 30, .08);
    --maxw: 1200px;
    --header-h: 64px;
    --fast-transition: .12s ease;
}


html,
body {
    min-height: 100%;
    font-family: system-ui, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--ink);
}

/* Header */
.topbar {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 22px;
    background: #fff;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 5px #bfbfbf;
}

/* ================================
   TOP HEADER
================================ */

.top-header {
    background: #1f1f1f;
    padding: 8px 0;
    font-size: 14px;
}


.container-to {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.helpline-label {
    background: #ff3b3b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.helpline-number {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.top-header .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-header .right a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.top-header .right span {
    color: #aaa;
}

.social-icons {
    display: flex;
    gap: 8px;
    margin-left: 10px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff3b3b;
}

/* ================================
   MOBILE VERSION
================================ */

@media (max-width: 768px) {

    /* Hide right side completely */
    .top-header .right {
        display: none;
    }

    /* Center helpline */
    .container-to {
        justify-content: center;
        text-align: center;
    }

    /* Make phone bigger for conversions */
    .helpline-number {
        font-size: 18px;
        font-weight: 700;
    }
}

/* ===== Fixed header ===== */
.site-header-mega.fixed {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: #fff;
    z-index: 1400;
    border-bottom: 1px solid #eee;
}

.site-header-mega .inner {
    max-width: var(--maxw);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 18px;
}

.logo img {
    height: 36px;
    display: block
}

/* ===== General Header ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
    z-index: 1000;
}

.site-header__inner {
    max-width: 1180px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.brand-logo {
    height: 40px;
}

.main-nav {
    flex: 1;
    margin-left: 40px;
}

.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item a,
.nav-btn {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    padding: 8px 10px;
    border: none;
    background: none;
    cursor: pointer;
}

.nav-item a:hover,
.nav-btn:hover {
    color: #e14e3b;
}

/* Mega menu */
.has-mega .mega {
    position: absolute;
    top: 100%;
    left: 0;
    display: flex;
    gap: 40px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
    padding: 20px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.has-mega:hover .mega {
    opacity: 1;
    visibility: visible;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-col a {
    padding: 6px 0;
    color: #333;
    font-weight: 500;
}

.mega-col a:hover {
    color: #e14e3b;
}

.logo img {
    height: 50px !important;
    display: block;
}

/* Active highlight for submenu links */
.nav-list a.active,
.mega-col a.active,
.mobile-sub a.active {
    color: var(--accent) !important;
    font-weight: 700;
}

/* Optional underline */
.nav-list a.active::after,
.mega-col a.active::after,
.mobile-sub a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: var(--accent);
    margin-top: 3px;
    border-radius: 2px;
}

/* Nav layout */
.nav {
    flex: 1
}

.nav-list {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center
}

.nav-item a,
.nav-toggle {
    font-family: system-ui, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    text-decoration: none;
    padding: 8px 10px;
    border: 0;
    background: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px
}

.nav-toggle {
    background: transparent;
    border-radius: 4px
}

.nav-item a:hover,
.nav-toggle:hover {
    color: var(--accent)
}

/* pointer triangle */
.nav-pointer {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    transform: translateX(-50%) rotate(45deg);
    top: calc(var(--header-h) - 6px);
    left: 50%;
    display: none;
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}


/* Keep open on hover OR when .open (click) */
.nav-item.has-mega:hover .mega-panel,
.nav-item.has-mega:focus-within .mega-panel,
.nav-item.has-mega.open .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    background: #fff;
}

.nav-item.has-mega:hover .nav-pointer,
.nav-item.has-mega.open .nav-pointer {
    display: block;
}

/* Responsive behavior */
@media (max-width:980px) {
    .nav-list {
        display: none
    }

    .cta {
        display: none
    }

    .hamburger {
        display: block !important
    }

    .nav-pointer {
        display: none
    }

    .mega-panel {
        display: none
    }

    .mega-panel .mega-inner {
        grid-template-columns: 1fr
    }
}

/* accessibility focus */
.nav-toggle:focus .nav-item a:focus .mobile-acc:focus {
    outline: 3px solid rgba(225, 78, 59, .12);
    outline-offset: 3px;
    border-radius: 4px
}

/* =============================
   FIXED: Mega Menu Hover Logic
   ============================= */
.nav-item.has-mega {
    position: relative;
    font-weight: 500;
}

.nav-item.has-mega .mega-panel {
    position: absolute;
    top: 110%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s ease;
    z-index: 999;
}

.nav-item.has-mega:hover .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Highlight active menu when submenu is open */
.nav-item.has-mega:hover>.nav-toggle {
    color: #e63946 !important;
    /* or any highlight color */
    font-weight: 600;
}

/* Red underline + small triangle under Services when mega menu open */
.nav-item.has-mega:hover>.nav-toggle {
    position: relative;
}


/* Fade animations */
.fadeIn {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .4s ease, transform .4s ease;
}

.fadeOut {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .4s ease, transform .4s ease;
}

.nav-item.has-mega:hover>.nav-toggle::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 123%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #e63946;
    /* red triangle */
}

.liffft {
    left: -300px !important;

}


/* Mega panel (container used by both Marketing & Solutions) */
.mega-panel {
    position: absolute;
    left: 0;

    top: 100%;
    margin-top: 9px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--fast-transition), transform var(--fast-transition);

}

.mega-panel .mega-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 14px 18px;
    background: var(--panel-bg);
    box-shadow: var(--shadow);
    pointer-events: auto;
    border-top: 3px solid #ed3237;
}


/* Column and item styles */
.mega-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    min-width: 210px
}

.mega-col h4 {
    margin: 0;
    font-size: 15px;
    color: var(--text)
}

.mega-col p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.3
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 6px 0 0
}

.mega-col li {
    margin: 6px 0
}

.mega-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px
}

.mega-col a:hover {
    color: var(--text)
}

/* actions */

.actions {
    display: flex;
    align-items: center;
    gap: 12px
}

.cta {
    border: 0;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(90deg, #f46701, #9f4504);
    background-size: 200% 100%;
    transition: transform .15s, box-shadow .25s, background-position .4s;
    flex: 1;
}

.cta:hover {
    transform: translateY(-2px);
    background-position: 100% 0;
    box-shadow: 0 14px 28px rgba(230, 57, 70, .35);
}

/* Industries */
.sec-industries {
    padding: 60px 20px;
    background: var(--bg);
}

.cta {
    background: #ff6c00;
    color: #0f172a;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700
}

.cta.mobile {
    display: block;
    margin-top: 14px;
    padding: 10px;
    text-align: center;
    background: var(--accent);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700
}

/* ===== Mobile panel (fixed left) ===== */
.mobile-panel {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 320px;
    max-width: 88%;
    background: #fff;
    z-index: 1450;
    box-shadow: 6px 0 30px rgba(0, 0, 0, .18);
    transition: left .18s ease;
    display: flex;
    flex-direction: column;
}

.mobile-panel.active {
    left: 0
}

.mobile-top {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid #f1f1f1
}

.mobile-list {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    list-style: none;
    padding: 10px;
    margin: 0;
}

.mobile-list>li {
    padding: 8px 0;
    border-bottom: 1px solid #fafafa
}

.mobile-list a {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 6px 0
}


.mobile-acc {
    width: 100%;
    padding: 8px 0;
    border: 0;
    background: none;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    color: var(--text)
}

.mobile-sub {
    display: none;
    padding-left: 16px;
    list-style: none;
    margin-top: 8px
}

.mobile-acc[aria-expanded="true"]+.mobile-sub {
    display: block
}


/* Hero */
.hero {
    min-height: calc(100svh - var(--header-h));
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 28px;
    padding: 100px 22px 60px;
    position: relative;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(115deg, rgba(11, 15, 25, .85) 15%, rgba(11, 15, 25, .45) 48%, rgba(11, 15, 25, .55) 70%), var(--hero-bg) center / cover no-repeat;
}

/* Responsive */

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr !important;
        gap: 22px;
        padding: 80px 16px 40px;
    }

    .about-wrap {
        grid-template-columns: 1fr !important;
        gap: 22px;
    }
}

@media(max-width:900px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media(max-width: 768px) {
    .hero-left h1 {
        font-size: 28px;
        max-width: 100%;
    }

    .hero-right {
        margin-top: 20px;
        width: 100%;
        text-align: left;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .google-review-sec {

        padding: 80px 20px;

    }
}

@media(max-width: 480px) {
    .hero-left h1 {
        font-size: 24px !important;
    }
}

@media(max-width: 992px) {
    .hero-left h1 {
        font-size: 34px !important;
    }

    .hero-right {
        max-width: 490px !important;
    }
}



/* Hamburger */
.hamburger span {
    display: block;
    height: 2px;
    width: 22px;
    background: var(--text);
    margin: 4px 0;
    border-radius: 2px
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    padding: 6px;
    cursor: pointer;
}




/* Responsive */
@media(max-width:980px) {

    .main-nav,
    .cta-btn {
        display: none;
    }

}




/* ========== HERO SECTION ========== */
.hero {
    background: #103873;
    color: #fff;
    padding: 50px 5% 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    z-index: 2;
}

.hero-left {
    max-width: 600px;
    animation: fadeIn 1.3s ease forwards;

}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.3;
    animation: slideUp 1s ease forwards;
}

.hero-left p {
    font-size: 16px;
    opacity: .8;
    margin-bottom: 10px;
    animation: fadeIn 1.4s ease forwards;
    margin-top: 18px;
    color: #d0d6e1;
}

.about-creds {
    list-style: none;
    margin: 14px 0 20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--bg);
}

.about-pill svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
}

/* stats bar */
.about-stats {
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: slideUp 1.6s ease forwards;
    opacity: 0;
    padding-top: 40px;
}

/* Animated Floating Image */
.hero-right img {
    width: 480px;
    max-width: 100%;
    transform: translateY(0);
    animation: fadeIn 1.5s ease forwards,
        floatAnim 4s ease-in-out infinite;
}

.hero-right img {
    border-radius: 20px;
}

.hero-btn-primary {
    background: #ff6c00;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .25s;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn-video {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}

.hero-btn-video span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ============ ABOUT ============ */

.sec-about {
    padding: 64px 20px;
    background: var(--bg);
    color: var(--ink);
    max-width: 1200px;
    margin: auto;
}


.about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
}

.about-media {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 24px 60px rgba(2, 6, 23, .10);
    position: relative;
    background: #000;
}

.about-media img {
    display: block;
    width: 100%;
    height: auto;
}

.about-tag {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(11, 18, 32, .7);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    backdrop-filter: blur(6px);
}

.about-eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .14em;
    font-weight: 700;
    color: #7b8a9b;
    margin: 0 0 6px;
}

.about-title {
    margin: 0 0 8px;
    font-weight: 800;
    color: var(--blue-ink);
    font-size: clamp(24px, 3vw, 36px);

}

.about-sub {
    color: var(--blue-sub);
    margin: 0 0 16px;
    max-width: 65ch;
}

.about-stat {
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    padding: 14px 10px;
    box-shadow: 0 12px 26px rgba(2, 6, 23, .06);
    color: var(--text);
}

.about-stat b {
    display: block;
    font-size: 18px;
}

.about-stat small {
    color: var(--blue-sub);
}

/* bullet list */
.about-points {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.about-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.about-actionss {
    list-style: none;
    /* removes bullets */
    padding-left: 0;
    margin-left: 0;
}

.about-actionss li {
    position: relative;
    padding-left: 20px;
    /* space for the tick */
}

.about-actionss li::before {
    content: "✓";
    position: absolute;
    left: 0;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}


.about-cta {
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 800;
    color: #0b1220;
    text-decoration: none;
    background: linear-gradient(90deg, #f46701, #9f4504);
    box-shadow: 0 14px 28px rgba(230, 57, 70, .35);
}

.home-services {
    padding: 80px 0;
    background: #f7f9fc;
}

.home-services .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}




/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: #0b1a33;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #e9f1ff;
    color: #103873;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}


/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card .icon {
    font-size: 38px;
    margin-bottom: 16px;
}

/* Link */
.service-link {
    font-weight: 600;
    color: #103873;
    display: inline-block;
    margin-top: auto;
}

/* Service Card */
.service-card {
    background: #fff;
    padding: 32px;
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(16, 56, 115, 0.18);
}

/* Icon */


/* Titles */
.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #103873;
    margin-bottom: 10px;
}

/* Description */
.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}


.google-review-sec {
    background: #f4f6fb;
    padding-top: 60px;
    padding-bottom: 60px;

}

.max-width-1200px {
    max-width: 1150px;
    margin: auto;

}

.gr-title {
    text-align: center;
    font-size: 38px;
    color: #0f2c5c;
    margin-bottom: 6px;
}


.gr-sub {
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
}

.gr-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.gr-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #f4b400;
}

.count {
    color: #777;
}

.gr-btn {
    background: #4285f4;
    color: #fff;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
}

.gr-viewport {
    overflow: hidden;
}

.gr-track {
    display: flex;
    gap: 24px;
    transition: transform .6s ease;
}

.gr-card {
    min-width: calc(33.333% - 16px);
    background: #fff;
    padding: 26px;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
}

.gr-head {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.gr-head img,
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.avatar {
    background: #6b4b3e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gr-line {
    display: flex;
    gap: 8px;
    align-items: center;
}

.date {
    font-size: 13px;
    color: #777;
}

.gr-posted {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    margin-top: 16px;
}

.gr-posted img {
    width: 18%;
}

/* mobile */
@media (max-width: 768px) {
    .gr-top {
        flex-direction: column;
        gap: 20px;
    }

    .gr-card {
        min-width: 100%;
    }

}

.gr-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gr-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cfcfcf;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}

.gr-dots button.active {
    background: #0f2c5c;
    transform: scale(1.2);
}

/* ============ CTA / CALL-TO-ACTION ============ */
.sec-cta {
    position: relative;
    padding: 72px 20px;
    background: radial-gradient(1200px 600px at 10% -10%, rgba(37, 99, 235, .12), transparent 60%), radial-gradient(1200px 600px at 90% 110%, rgba(230, 57, 70, .10), transparent 60%), #0b1220;
    color: #fff;
    overflow: hidden;
}

.cta-wrap {
    max-width: 1170px;
    margin: 0 auto;
    position: relative;
}

.cta-card {
    display: grid;
    grid-template-columns: 1.25fr .9fr;
    gap: 32px;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(2, 6, 23, .35);
    backdrop-filter: blur(8px);
}

.cta-eyebrow {
    letter-spacing: .14em;
    text-transform: uppercase;
    font: 700 12px/1 system-ui;
    color: #c7d2fe;
    margin-bottom: 10px;
}

.cta-title {
    font-weight: 800;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.5;
    margin: 0 0 10px;
}

.cta-sub {
    color: #dbe3ff;
    opacity: .9;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}



.btn-outline {
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    background: transparent;
    border-radius: 999px;
    padding: 13px 18px;
    font-weight: 700;
}

.cta-side {
    background: linear-gradient(180deg, #0f172a, #0b1220);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 18px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, .15);
    color: #e5edff;
    border: 1px solid rgba(99, 102, 241, .35);
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 700;
}

.cta-list {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
    color: #cbd5e1;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-tick {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ff6c00;
}

.cta-tick svg {
    width: 12px;
    height: 12px;
    color: #0b1220;
}

.cta-help {
    margin-top: 12px;
    font-size: 13px;
    color: #cbd5e1;
}

.cta-help a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* floating glow */
.sec-cta:before,
.sec-cta:after {
    content: "";
    position: absolute;
    filter: blur(80px);
    opacity: .35;
    pointer-events: none;
}

.sec-cta:before {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #3b82f6;
    left: -40px;
    top: 20%;
}

.sec-cta:after {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #ef4444;
    right: -40px;
    bottom: 10%;
}

@media(max-width:960px) {
    .cta-card {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}






.home-packages-alt {
    padding: 100px 0;
    background: linear-gradient(120deg, #0b1a33, #103873);
    color: #fff;
}

.home-packages-alt .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Layout */
.packages-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .packages-wrapper {
        grid-template-columns: 1fr;
    }

}

/* Left Content */
.packages-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 14px 0;
}

.packages-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}


.packages-points {
    list-style: none;
    margin-top: 24px;
    padding: 0;
}

.packages-points li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    font-size: 15px;
}

.packages-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6c00;
    font-weight: 800;
}

/* Right Boxes */
.packages-boxes {
    display: grid;
    gap: 26px;
}

.package-box {
    background: #ffffff;
    color: #0b1a33;
    padding: 32px;
    border-radius: 14px;
}

.package-box.highlight {
    border: 2px solid #ff6c00;
}

.package-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.package-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
}

/* Camera Count Pills */
.camera-counts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.camera-counts span {
    background: #f0f4ff;
    color: #103873;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Button */
.package-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #103873;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.package-btn:hover {
    background: #0b1a33;
}

.highlight {
    color: #ff6c00;
    display: inline-block;
    transition: 0.3s ease-out;
}



@media (max-width: 768px) {

    .ss-clients-section {
        padding: 80px 35px !important;


    }

}

.ss-clients-section {
    padding: 80px 85px;
    background: #f9fafb;

}

.ss-clients-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 600;
    color: #111827;
}

.ss-clients-wrapper {
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.ss-clients-slider {
    overflow: hidden;
}

.ss-clients-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
}

/* Logo cards */
.ss-client-logo {
    flex: 0 0 calc((100% - 120px) / 6);
    background: #fff;
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    opacity: 0.4;
    filter: grayscale(100%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.ss-client-logo img {
    max-width: 120px;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

/* Active logos */
.ss-client-logo.active {
    opacity: 1;
    filter: grayscale(0);
}

.ss-client-logo.active img {
    filter: none;
    opacity: 1;
}

/* Hover effect */
.ss-client-logo:hover {
    transform: scale(1.08);
    filter: none !important;
    opacity: 1 !important;
    box-shadow:
        0 24px 60px rgba(249, 115, 22, 0.5),
        0 12px 30px rgba(249, 115, 22, 0.3);
    z-index: 10;
    cursor: pointer;
}

/* Navigation arrows */
.ss-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-size: 22px;
    color: #374151;
    z-index: 10;
    transition: 0.3s ease;
}

.ss-nav:hover {
    background: var(--accent);
    color: #fff;
}

.ss-nav.prev {
    left: -30px;
}

.ss-nav.next {
    right: -30px;
}

/* Mobile */
@media (max-width: 768px) {
    .ss-client-logo {
        flex: 0 0 calc((100% - 24px) / 2);
    }

    .ss-nav.prev {
        left: -10px;

        width: 30px;
        height: 30px;
        font-size: 14px;

    }

    .ss-nav.next {
        right: -10px;
        width: 30px;
        height: 30px;
        font-size: 14px;

    }
}



.brands-premium {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.brands-premium .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}





/* Mobile */
@media (max-width: 768px) {
    .brands-top h2 {
        font-size: 26px;
    }

    .brand-pill {
        min-width: 130px;
        height: 70px;
        padding: 14px 20px;
    }

    .brand-pill img {
        max-height: 34px;
    }
}



/* Header */
.brands-top {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.brands-top h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b1a33;
    margin: 12px 0;
}

.brands-top p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


/* Brand Strip */
.brands-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}




/* Brand Pill */
.brand-pill {
    background: #ffffff;
    border: 1px solid #dde4f2;
    border-radius: 40px;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 78px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 16px rgba(16, 56, 115, 0.06);
}

.brand-pill img {
    max-height: 38px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.25s ease;
}

/* Hover */
.brand-pill:hover {
    border-color: #103873;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(16, 56, 115, 0.18);
}

.brand-pill:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Footer Note */
.brands-footer {
    text-align: center;
    max-width: 760px;
    margin: auto;
}






.steps {
    padding: 64px 20px;
    color: var(--ink);
}


.steps__wrap {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 980px) {

    .steps__wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

}

.steps__progress {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 6px 0 20px;
    padding: 16px 0;
}

.steps__progress .line {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 50%;
    height: 2px;
    background: #e5e7eb;
    transform: translateY(-50%);
    z-index: 0;
}

.dot {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 2px solid #e5e7eb;
    color: #111;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
}

.dot.is-active {
    background: linear-gradient(90deg, #f46701, #9f4504);
    color: #fff;
    border-color: transparent;
}

.steps__panels {
    min-height: 150px;
}

.panel {
    display: none;
    animation: fade .35s ease both;
}

.panel.is-active {
    display: block;
}

.panel__title {
    color: #f46701;
    font-weight: 800;
    font-size: 20px;
    margin: 4px 0 8px;
}

.panel__body {
    color: #334155;
}

.steps__media img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(2, 6, 23, .12);
}


.hero-sec {
    position: relative;
    width: 100%;
    height: 380px;
    background: url('your-camera-image.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(25 63 120);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 50px;
}

@media(max-width: 768px) {

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 25px;
    }

    .btn-discover {
        padding: 12px 24px;
        font-size: 13px;
    }
}



.stat-item {
    width: calc(50% - 20px);
}

.stat-item h2 {
    font-size: 28px;
}

@media(max-width: 480px) {
    .stat-item {
        width: calc(50% - 15px);
    }



    .stats-box {
        width: 85%;
        background: #fff;
        box-shadow: 0 10px 25px rgb(0 0 0 / 41%);
        border-radius: 12px;
        padding: 40px 20px;
        display: flex;
        justify-content: space-around;
        text-align: center;
        z-index: 9;
    }

    .stat-item h2 {
        font-size: 34px;
        margin-bottom: 5px;
        font-weight: 700;
        color: #333;
    }

    .stat-item h2 span {
        color: #0056d6;
    }

    .stat-item p {
        font-size: 14px;
        color: #555;
    }




    .stat-item {
        width: calc(50% - 20px);
    }

    .stat-item h2 {
        font-size: 28px;
    }
}

@media(max-width: 480px) {
    .stat-item {
        width: calc(50% - 15px);
    }


}

.stats-box {
    width: 85%;
    background: #fff;
    box-shadow: 0 10px 25px rgb(0 0 0 / 41%);
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    z-index: 9;
}

.stat-item h2 {
    font-size: 34px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #333;
}

.stat-item h2 span {
    color: #0056d6;
}

.stat-item p {
    font-size: 14px;
    color: #555;
}

@media (max-width: 768px) {
    .stats-box {
        flex-wrap: wrap;
        gap: 25px;
        padding: 30px 15px;
        margin-top: -60px;
    }
}

.btn-discover {
    background: #ff6c00;
    color: #0f172a;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}



/* Stats */
.stats-sec {
    margin-top: -80px;
    display: flex;
    justify-content: center;
}

.support-section {
    padding: 80px 0;
    background: #f8f9fc;
}


.support-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
    margin: auto;
    gap: 40px;
    padding: 0 20px;
}

@media(max-width: 992px) {
    .support-container {
        flex-direction: column;
        text-align: left;
    }

    .support-right img {
        width: 100%;
        margin-top: 20px;
    }

}

/* Right Image */
.support-right img {
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    object-fit: cover;
}

.support-left {
    flex: 1;
}

.support-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #eef2ff;
    color: #5368ee;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.support-title {
    font-size: 38px;
    font-weight: 700;
    margin-top: 20px;
    color: #101828;
}

.support-title span {
    color: #ff004c;
}

.support-desc {
    margin-top: 18px;
    font-size: 15px;
    color: #555c6b;
    max-width: 550px;
    line-height: 1.6;
}

/* Features */
.support-features {
    margin-top: 35px;
    display: flex;
    gap: 35px;
}

@media(max-width: 600px) {
    .support-title {
        font-size: 28px;
    }
}

@media(max-width: 992px) {


    .support-features {
        flex-direction: column;
        gap: 20px;
    }
}

.feature-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    max-width: 250px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-blue {
    background: #dfe7ff;
}

.icon-red {
    background: #fde1e5;
}

.feature-icon img {
    width: 26px;
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1d2939;
}

.feature-box p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}



/* Button */
.support-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 12px 28px;
    border: 2px solid #101828;
    border-radius: 30px;
    text-decoration: none;
    color: #101828;
    font-weight: 600;
    transition: 0.3s;
}

.support-btn:hover {
    background: #101828;
    color: #fff;
}

.cta-glass {
    padding: 100px 20px;
    background: #0e1828;
    text-align: center;
    position: relative;
}

.cta-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    max-width: 800px;
    margin: auto;
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-box h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-box p {
    color: #d4deea;
    margin-bottom: 25px;
}

.cta-glass-btn {
    padding: 14px 36px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 18px rgba(0, 140, 255, 0.4);
    transition: .3s ease;
}

.cta-glass-btn:hover {
    transform: translateY(-4px);
}

.industries-corp {
    padding: 90px 0;
    background: linear-gradient(180deg, #f7faff 0%, #eef3f9 100%);

}

/* Header */
.corp-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    padding-bottom: 40px;
}

.corp-tag {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 6px 12px;
    background: #e9f1ff;
    color: #3366cc;
    border-radius: 20px;
}

.corp-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin: 18px 0 10px;
    color: #0e1f34;
}

.corp-header p {
    color: #516173;
    font-size: 16px;
}

/* Grid */
.corp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Card */
.corp-card {
    background: #ffffff;
    padding: 22px 25px;
    border-radius: 18px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.corp-card:hover {
    box-shadow: 0px 14px 35px rgba(0, 0, 0, 0.10);
    transform: translateY(-5px);
}

/* Icon Hover Motion */
.corp-card:hover .icon-wrap {
    background: linear-gradient(135deg, #dceaff, #c6dbff);
    transform: scale(1.08);
}

/* Title */
.corp-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #223044;
    line-height: 1.4;
}


/* Icon Circle */
.icon-wrap {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ecf4ff, #dceaff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #3366cc;
    transition: 0.3s ease;
}

/* ============ FAQS 2-COLUMN ============ */
.sec-faq2 {
    padding: 64px 20px;
    background: var(--bg);
}

.faq2-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    padding: 20px;
    gap: 34px;
    align-items: start;
}

@media(max-width:980px) {
    .faq2-wrap {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

.faq2-head {
    margin-bottom: 10px;
}

.faq2-eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .14em;
    font-weight: 700;
    color: #7b8a9b;
    margin: 0 0 6px;
}

.faq2-title {
    margin: 0 0 6px;
    font-weight: 800;
    color: var(--blue-ink);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
}

.faq2-sub {
    color: var(--blue-sub);
    margin: 0 0 14px;
    max-width: 60ch;
}

/* accordion (left) */
.faq2-acc {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(2, 6, 23, .06);
    overflow: hidden;
}

.faq2-item+.faq2-item {
    border-top: 1px solid var(--line);
}

.faq2-btn {
    width: 100%;
    text-align: left;
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 18px;
    border: 0;
    background: #fff;
    cursor: pointer;
    font-weight: 800;
    color: var(--blue-ink);
    font-size: 16px;
}

.faq2-btn:focus {
    outline: 2px solid #c7d2fe;
    outline-offset: -2px;
}

.faq2-icon {
    flex: 0 0 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--blue);
    background: radial-gradient(120% 120% at 30% 20%, #fff 0, #eef5ff 60%, #e8f0ff 100%);
    box-shadow: inset 0 0 0 1px var(--line);
}

.faq2-chevron {
    margin-left: auto;
    transition: transform .25s ease;
}

.faq2-item.is-open .faq2-chevron {
    transform: rotate(180deg);
}

.faq2-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .25s ease;
}

.faq2-item.is-open .faq2-panel {
    grid-template-rows: 1fr;
}

.faq2-panel>div {
    overflow: hidden;
}

.faq2-body {
    padding: 0 18px 18px;
    color: var(--blue-sub);
    line-height: 1.65;
}

.faq2-body p {
    margin: 0 0 10px;
}

/* right visual card */
.faq2-aside {
    position: sticky;
    top: calc(var(--header-h) + 16px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #0f172a, #0b1220);
    color: #fff;
    box-shadow: 0 24px 60px rgba(2, 6, 23, .45);
}

.faq2-media {
    aspect-ratio: 16/10;
    background: linear-gradient(0deg, rgb(11 18 32 / 0%), rgb(11 18 32 / 25%)), url(images/faq-cctv-camera.webp) center / cover no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.faq2-copy {
    padding: 18px 18px 16px;
}

.faq2-kicker {
    letter-spacing: .14em;
    text-transform: uppercase;
    font: 700 11px/1 system-ui;
    color: #c7d2fe;
    margin-bottom: 8px;
}

.faq2-h {
    font-weight: 800;
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 0 0 6px;
}

.faq2-p {
    margin: 0;
    color: #dbe3ff;
    opacity: .9;
}

.faq2-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 14px 0 0;
}

.faq2-stat {
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.faq2-stat b {
    display: block;
    font-size: 18px;
}

.faq2-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.faq2-btnpri {
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 800;
    color: #0b1220;
    cursor: pointer;
    background: linear-gradient(90deg, #f46701, #9f4504);
    box-shadow: 0 14px 28px rgba(230, 57, 70, .35);
    text-decoration: none;
}

.faq2-btnsec {
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    border-radius: 999px;
    padding: 11px 14px;
    font-weight: 700;
    text-decoration: none;
}


/* Main footer bg */
.footer-main {

    background: #fff;
    color: #333;
}

/* TOP SECTION */
.footer-top {
    padding: 60px 0;
}

.footer-container {
    max-width: 1170px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.ft-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    width: 160px;
}

.ft-col ul {
    padding: 0;
    margin: 0;
}

.ft-col ul li {
    list-style: none;
    margin-bottom: 7px;
}

.ft-col ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.social-icons a {
    font-size: 20px;
    margin-right: 10px;
}

.big .mt {
    margin-top: 18px;
}

.contact li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

/* MIDDLE SECTION */
.footer-middle {
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 40px 0;
}

.middle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mid-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mid-box p {
    font-size: 14px;
    line-height: 1.7;
}

.mid-box ul li {
    list-style: none;
    margin-bottom: 6px;
}

.mid-box ul li a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
}

/* BOTTOM BAR */
.footer-bottom {
    background: #111;
    color: #ddd;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.footer-bottom .dev span {
    color: #00aaff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .footer-container {
        flex-direction: column;
    }

    .middle-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}



/* Floating Keyframes */
@keyframes floatAnim {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Fade + Slide */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.breadcrumb {
    display: inline-block;
    color: #979797;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}


.about-left h1 {
    padding-bottom: 20px;
    font-size: 44px;
}

.about-left p {
    padding-bottom: 30px;
}



/* ===== ABOUT STATS BAR ===== */
.about-stats-bar {
    margin-top: 50px;
    /* pulls it into banner */
    position: relative;
    z-index: 2;
}

.stats-container {
    max-width: 1150px;
    margin: 0 auto;
    background: #0b5d4a;
    border-radius: 70px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-bottom: 6px solid #f4c430;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-item h3 {
    font-size: 28px;
    margin: 0;
    font-weight: 700;
}

.stat-item p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 992px) {
    .stats-container {
        flex-wrap: wrap;
        gap: 20px;
        border-radius: 30px;
        text-align: center;
    }

    .stat-item {
        width: 50%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .stat-item {
        width: 165px;
    }

    .about-stats-bar {
        padding: 20px;
    }
}

/* ===== FIX STATS LAYOUT FOR MOBILE ===== */
@media (max-width: 576px) {

    .stats-container {
        padding: 30px 20px;
    }

    .stat-item {
        flex-direction: column;
        /* stack items */
        text-align: center;
        gap: 8px;
    }

    .stat-icon {
        margin-bottom: 6px;
    }

    .stat-item h3 {
        font-size: 26px;
        line-height: 1.1;
    }

    .stat-item p {
        font-size: 14px;
        line-height: 1.4;
        opacity: 0.95;
    }
}

.white {
    color: #fff !important;
}



.mv-card-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 1200px;
    /* IMPORTANT */
    margin: 0 auto;
    /* CENTER */
    padding: 0 20px;
}

.mv-card {
    display: flex;
    gap: 18px;
    padding: 26px 28px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgb(0 0 0 / 18%);
    margin-top: 50px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .mv-card-wrap {
        grid-template-columns: 1fr;
        max-width: 560px;
        /* KEY FIX */
        padding: 0;
    }

    .mv-card {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .mv-card:hover {
        transform: translateY(-4px);
        transition: 0.25s ease;
    }
}


/* About page hero – responsive fix */
.about-hero {
    padding: 50px 0;
    position: relative;
    position: relative;
    color: #ffffff;

    /* MATCH HOME HERO COLOR */
    background: linear-gradient(135deg,
            #030b1c 0%,
            #071a3a 40%,
            #0b2f63 100%);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(115deg,
            rgba(11, 15, 25, 0.9) 18%,
            rgba(11, 15, 25, 0.55) 55%,
            rgba(11, 15, 25, 0.35) 80%),
        var(--hero-bg) right center / cover no-repeat;
}

@media (max-width: 768px) {
    .about-hero::before {
        background:
            linear-gradient(180deg,
                rgba(11, 15, 25, 0.92),
                rgba(11, 15, 25, 0.92)),
            var(--hero-bg) center / cover no-repeat;
    }
}


.about-hero-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    max-width: 1200px;
    /* KEY */
    margin: 0 auto;
    /* CENTER */
    padding: 0 20px;
}

.about-left {
    max-width: 620px;
}

.about-right img {
    max-width: 420px;
    width: 100%;
    border-radius: 14px;
}

/* Mobile fix */
@media (max-width: 768px) {
    .about-hero-wrap {
        flex-direction: column;
        text-align: center;
    }

    .about-left {
        max-width: 100%;
    }

    .about-right img {
        max-width: 100%;
    }

    .about-left h1 {
        font-size: 30px !important;
    }

    .corp-header h2 {
        font-size: 24px !important;
    }

}


@media (max-width: 1024px) {
    .about-right img {
        max-width: 340px;
    }
}



/* CTA Section */
.cta-pro {
    background: linear-gradient(135deg,
            #030b1c 0%,
            #071a3a 45%,
            #0b2f63 100%);
    color: #fff;
    padding: 60px 60px;
}

.cta-pro-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Content */
.cta-eyebrow {
    color: #ff7a00;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.cta-pro-content h2 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.cta-pro-content h2 span {
    color: #ff7a00;
}

.cta-desc {
    max-width: 560px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

/* Buttons */
.cta-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}



.btn-primary:hover {
    background: #0f3772;
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 14px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-outline:hover {
    border-color: #ff7a00;
    color: #ff7a00;


}

/* Trust Points */
.cta-trust {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* Badge */
.cta-pro-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 0px 30px 33px 32px;
    text-align: center;
    backdrop-filter: blur(8px);
}

.cta-pro-badge span {
    font-size: 120px;
    font-weight: 700;
    color: #ff7a00;
}

.cta-pro-badge small {
    display: block;
    font-size: 28px;
    opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
    .cta-pro-wrap {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-pro-content h2 {
        font-size: 32px;
    }
}

.linksurl {
    color: #979797;
    padding-bottom: 0px !important;
}

.allpages {
    padding-bottom: 50px !important;
}

.home-packages-alt-page {
    max-width: 1200px;
    margin: auto;
    padding: 75px 20px;
}

.blog-section {
    padding: 60px 20px;
    background: #ffffff;
}

.blog-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.image-wrap {
    position: relative;
}

.image-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0a5c52;
    color: #fff;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 500;
}

.blog-content {
    padding: 20px;
}



.blog-content h3 {
    font-size: 22px;
    color: #111827;
    line-height: 1.4;
    margin-bottom: 16px;
}

.read-more {
    text-decoration: none;
    font-weight: 600;
    color: #0a5c52;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr);

    }
}

@media (max-width: 600px) {
    .blog-container {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

.contact-section {
    padding: 75px 50px;
    background: #f8fafc;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0f172a;
}

.contact-info p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 25px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #334155;
}

.contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0a5c52;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background: #0a5c52;
    color: #ffffff;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #064c44;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

h2 {
    font-size: 34px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.captcha-box span {
    background: #0a5c52;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

.map-section {

    padding-top: 0;
    max-width: 1200px;
    margin: auto;

}


.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    gap: 10px;

    padding: 14px 28px;

    text-decoration: none;


    border-radius: 40px;
}

.whatsapp-btn img {
    width: 24px;
    height: 24px;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .display-none {
        display: none !important;
    }
}

.font-size-16px {
    font-size: 16px !important;
    color: #474747;
}

.center {
    max-width: 800px;
    text-align: center;
    margin: auto;

}

.corp-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

.corp-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-right: 54px !important;
}

.icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eaf2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.corp-card h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.corp-text {

    margin-top: 2px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.cams-seo {
    padding: 64px 20px;
    background: #f1f5fb
}

.camsseo__wrap {
    max-width: 1160px;
    margin: 0 auto
}

.camsseo__grid {
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
}

.camseo {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
    display: grid;
    grid-template-rows: 140px 1fr
}

.camseo:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(37, 99, 235, .12);
    border-color: #dbe7ff
}

.camseo__media {
    background-size: cover;
    background-position: center
}

.camseo--hd {
    background-image: url("images/cameras/hd.webp")
}

.camseo--ip {
    background-image: url("images/cameras/IP.webp")
}

.camseo--ptz {
    background-image: url("images/cameras/PTZ.webp")
}

.camseo--solar {
    background-image: url("images/cameras/solar-2.webp")
}

.camseo--wifi {
    background-image: url("images/cameras/wifi-camera.webp")
}

.camseo--sim {
    background-image: url("images/cameras/simbased.webp")
}

.camseo__body {
    padding: 16px 16px 18px
}

.camseo__title {
    font-weight: 700;
    color: var(--blue-ink);
    font-size: 22px;
    margin: 2px 0 6px
}

.camseo__desc {
    color: var(--blue-sub);
    margin: 0 0 12px;
    line-height: 1.55
}

.camseo__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0
}

.camseo__badges li {
    font-size: 12px;
    line-height: 1;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--blue-ink);
    background: linear-gradient(180deg, #f6f9ff, #eef3ff);
    border: 1px solid #e1eaff
}

@media (max-width:560px) {
    .camseo {
        grid-template-rows: 120px 1fr
    }
}

.camsseo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 🔑 3 boxes per row */
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .camsseo__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .camsseo__grid {
        grid-template-columns: 1fr;
    }
}

.event-section {
    padding: 60px 20px;
    background: #ffffff;
}

.event-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left & Right = 50% */
.event-left,
.event-right {
    width: 50%;
}

.event-left h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.event-points {
    list-style: none;
    padding: 0;
}

.event-points li {
    font-size: 16px;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
    color: #334155;
}

.event-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #fbbf24;
    /* yellow tick */
    font-weight: bold;
}

/* Right Image */
.event-right img {
    width: 100%;
    max-width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .event-container {
        flex-direction: column;
    }

    .event-left,
    .event-right {
        width: 100%;
    }
}

.cctv-cost-wrap {
    padding: 70px 20px;
    background: #ffffff;
}

.section-title {
    font-size: 30px;
    margin-bottom: 12px;
}

.section-desc {
    max-width: 820px;
    color: #555;
    margin-bottom: 45px;
}

.cost-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.cost-item {
    background: #f9fafc;
    padding: 26px 24px;
    border-radius: 10px;
    border-left: 4px solid var(--brand);
}

.cost-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.cost-item p {
    font-size: 15px;
    color: #666;
}

.cost-footer {
    margin-top: 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.cost-footer span {
    font-weight: 500;
    color: #333;
}

.primary-btn {
    padding: 14px 26px;
    background: var(--brand);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.service-area {
    padding: 80px 5%;
    background: #f8fafc;
}

.service-area__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-area__tag {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #3366cc;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 30px;
}

.service-area h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.service-area p {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.faq-section {
    padding: 90px 5%;
    background: #f8fafc;
}

.faq-wrap {
    max-width: 1000px;
    margin: auto;
}

.faq-head {
    text-align: center;
    margin-bottom: 50px;
}

.faq-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;

    color: #3366cc;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 30px;
    margin-bottom: 10px;
}

.faq-head h2 {
    font-size: 34px;

    margin-bottom: 12px;
    color: #0f172a;
}

.faq-head p {
    max-width: 750px;
    margin: auto;
    color: #475569;
    line-height: 1.7;
}

.faq-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: none;
    border: none;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding-bottom: 22px;
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: none;
}

.areas-section {
    padding: 60px 5%;
    background: #f9fbff
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.areas-tags span {
    display: inline-block;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e3e8ef;
    border-radius: 18px;
    font-size: 14px;
    color: #0f172a;
    transition: 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04)
}

.areas-tags span:hover {
    background: #ff6a00;
    color: #fff;
    border-color: #ff6a00;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.25)
}

@media (max-width: 768px) {
    .areas-tags span {
        padding: 8px 14px;
        font-size: 13px
    }
}

.areas-tags {
    gap: 10px
}

.areas-tags span {
    padding: 8px 12px;
    font-size: 12px
}

.google-review-sec .gr-viewport {
    overflow: hidden;
    width: 100%;
}

.google-review-sec .gr-track {
    display: flex;
    transition: transform 0.6s ease;
}

.google-review-sec .gr-card {
    flex: 0 0 33.333%;
    box-sizing: border-box;
}

/* tablet */
@media (max-width: 1024px) {
    .google-review-sec .gr-card {
        flex: 0 0 50%;
    }
}

/* mobile */
@media (max-width: 600px) {
    .google-review-sec .gr-card {
        flex: 0 0 100%;
    }
}

/* =========================================
   WEB DESIGN STICKY SECTION – FINAL
   ========================================= */

/* Section */
.web-design-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Container */
.web-design-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* prevents right overflow */
    display: grid;
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    gap: 40px;
    align-items: flex-start;
    box-sizing: border-box;
}

/* Ensure no overflow issues */
.web-design-section *,
.web-design-section *::before,
.web-design-section *::after {
    box-sizing: border-box;
}

/* LEFT STICKY CONTENT */
.web-design-section .left-content {
    position: sticky;
    top: 80px;
    /* fixed header height */
    align-self: flex-start;
}



.left-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.left-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* Button */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: 000;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

/* RIGHT CONTENT */
.right-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 120vh;
    /* enables sticky */
    overflow: hidden;
}

/* Service cards */
.service-box {
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    background: #f7f9fc;
    border-left: 4px solid transparent;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Color accents */
.ecommerce {
    border-color: #e32326;
}

.uiux {
    border-color: #cf1118;
}

.redesign {
    border-color: #6c5ce7;
    background: #f2f0ff;
}

.portal {
    border-color: #0984e3;
    background: #eef6ff;
}

.wireframe {
    border-color: #e84393;
    background: #fff0f7;
}

.single {
    border-color: #f9ca24;
    background: #fff9e6;
}

.mobile {
    border-color: #00cec9;
    background: #eafffe;
}

/* MOBILE FIX */
@media (max-width: 992px) {
    .web-design-section .container {
        grid-template-columns: 1fr;
    }

    .web-design-section .left-content {
        position: relative;
        top: auto;
    }

    .right-content {
        min-height: auto;
    }
}


/* Service inner layout */
.service-inner {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

/* Left icon */
.service-icon {
    flex-shrink: 0;
    width: 150px;
    height: 195px;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Icon image */
.service-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 14px !important;
}

/* Text */
.service-text h3 {
    margin-bottom: 8px;
}

/* Mobile alignment */
@media (max-width: 768px) {
    .service-inner {
        align-items: flex-start;
    }
}


@media (max-width: 768px) {
    .service-inner {
        flex-direction: column;
        /* 🔥 stack vertically */
        align-items: flex-start;
    }

    .service-icon {
        margin-bottom: 12px;
        height: auto;
        width: 100%;
        /* space between image & text */
    }
}

.app-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #374151;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 15.5px;
    font-weight: 500;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.nearby-section {
    padding: 60px 0;
    background: #f6f8fb;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.section-sub {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.nearby-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.nearby-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all .3s ease;
}

.nearby-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.nearby-icon {
    font-size: 26px;
    background: #eef3ff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.nearby-content h3 {
    font-size: 17px;
    margin: 0;
    color: #111;
}

.nearby-content span {
    font-size: 13px;
    color: #0073ff;
}



.locations-grid-section {
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    text-align: center;
}

.location-card {
    display: block;
    padding: 24px;
    background: #fff;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.location-card span {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.location-card h3 {
    margin: 0 0 6px;
    color: #111;
}

.location-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.locations-cta {
    padding: 60px 0;
    background: #0d6efd;
    color: #fff;
    text-align: center;
}

.btn-call {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    background: #fff;
    color: #0d6efd;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.pricing-section {
    padding: 80px 0;
    background: #fff;
}

.pricing-container {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT FIXED COLUMN */
.pricing-left {
    position: sticky;
    top: 100px;
    /* adjust based on header height */
}

.pricing-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-left p {
    color: #555;
    margin-bottom: 20px;
}

.pricing-points {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-points li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* RIGHT SCROLL CONTENT */
.pricing-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-right: 35px;
}

/* PRICING CARDS */
.pricing-card {
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 25px;
    background: #fff;
}

.pricing-card ul {
    padding-left: 18px;
    margin: 20px 0;
}

.card-header {
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.card-header.basic {
    background: #3f6f72;
}

.card-header.premium {
    background: #244b63;
}

.card-header h3 {
    font-size: 36px;
    margin: 10px 0;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}

/* FEATURED CARD */
.pricing-card.featured {
    border: 2px solid #0d6efd;
}

/* BUTTON */
.learn-more {
    padding: 14px 28px;
    border-radius: 30px;
}

/* MOBILE FIX */
@media (max-width: 992px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 85%;
    }

    .pricing-left {
        position: relative;
        top: auto;
    }

    .pricing-right {
        grid-template-columns: 1fr;
        padding-right: 0;
    }
}

.pricing-card {
    border-radius: 22px;
    padding: 22px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    max-width: 360px;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* TOP BLOCK */
.card-top {
    background: #244b63;
    color: #ffffff;
    border-radius: 18px;
    padding: 26px 22px;
    margin-bottom: 22px;
    position: relative;
}

.plan-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 12px;
}

.price {
    font-size: 42px;
    font-weight: 700;

}

.plan-subtitle {
    font-size: 15px;
    opacity: 0.9;
}

/* FEATURES */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.feature-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-weight: 500;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1cc88a;
    font-weight: 700;
}

/* BUTTON */
.btn-package {
    display: block;
    background: linear-gradient(135deg, #1cc88a, #17a673);
    color: #ffffff;
    text-align: center;
    padding: 14px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(28, 200, 138, 0.35);
    transition: all 0.3s ease;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(28, 200, 138, 0.45);
}

/* TRUST TEXT */
.trust-text {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 14px;
}

.card-top.with-brands {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.card-left {
    max-width: 70%;
}

.card-brands {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-wrap: wrap;
}

.card-brands img {
    max-height: 30px;
    background: #fff;

    padding: 3px 6px;
    border-radius: 5px;

}

/* Mobile optimization */
@media (max-width: 768px) {
    .card-top.with-brands {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-brands {
        flex-direction: row;
        margin-top: 12px;
    }
}

.brand-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
    display: block;
}


.brand-title {
    font-size: 12px;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.card-brands.horizontal {
    display: flex;
    gap: 10px;
    align-items: center;
}

.card-brands.horizontal img {
    max-height: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 3px 6px;
    border-radius: 5px;
}




@media (max-width: 375px) {
    .card-brands {
        font-size: 32px;
        display: none;
    }
}

.why-buy-section {
    background: #f8fafc;
    padding: 70px 20px;
    font-family: 'Segoe UI', sans-serif;
}



.section-title {
    font-size: 34px;
    color: #1f2933;
    margin-bottom: 10px;
}

.section-title span {
    color: var(--brand);
}

.section-subtitle {
    font-size: 16px;
    color: #5f6b7a;
    max-width: 700px;
    margin: 0 auto 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.benefit-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    font-size: 22px;
    color: #198754;
    display: inline-block;
    margin-bottom: 10px;
}

.benefit-box h4 {
    font-size: 18px;
    color: #1f2933;
    margin-bottom: 8px;
}

.benefit-box p {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
}

.cta-area {
    margin-top: 45px;
}


@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
}



.storage-cta {
    margin-top: 22px;
}

.cta-btn {
    display: inline-block;
    background: #0b5ed7;
    color: #ffffff;
    padding: 13px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #084298;
    transform: translateY(-2px);
}

.cta-note {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #6b7280;
}


.storage-layout {
    padding: 70px 20px;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}



.section-title {
    text-align: center;
    font-size: 32px;
    color: #1f2933;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    max-width: 760px;
    margin: 0 auto 45px;
    font-size: 16px;
}

.storage-row {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 30px;
    align-items: start;
}

/* LEFT SIDE */
.storage-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.storage-card {
    background: #f2f2f2;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.storage-card h4 {
    color: #0b5ed7;
    font-size: 20px;

}

.storage-card p {
    color: #6b7280;
    font-size: 14.5px;
    margin-bottom: 12px;
}

.storage-card span {
    background: #e7f1ff;
    color: #0b5ed7;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 600;
}







/* RIGHT SIDE */
.storage-right {
    background: #f1f5f9;
    border-left: 5px solid #0b5ed7;
    padding: 28px;
    border-radius: 14px;
}

.storage-right h5 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #1f2933;
}

.storage-right ul {
    padding-left: 18px;
    margin-bottom: 16px;
}

.storage-right ul li {
    font-size: 14.5px;
    color: #374151;
    margin-bottom: 8px;
}

.storage-right p {
    font-size: 14.5px;
    color: #4b5563;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .storage-row {
        grid-template-columns: 1fr;
    }

    .storage-left {
        grid-template-columns: 1fr;
    }
}



.comparison-section {
    padding: 70px 20px;
    background: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}



.section-title {
    text-align: center;
    font-size: 32px;
    color: #1f2933;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
    max-width: 760px;
    margin: 0 auto 40px;
}

.table-wrap {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.comparison-table thead {
    background: #f1f5f9;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 18px;
    text-align: left;
    font-size: 15px;
}

.comparison-table th {
    font-weight: 600;
    color: #1f2933;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #eef2f7;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    color: #374151;
}

.good {
    color: #198754;
    font-weight: 600;
}

.bad {
    color: #dc3545;
    font-weight: 600;
}

/* Recommendation Box */
.recommendation-box {
    margin-top: 30px;
    background: #f8fafc;
    border-left: 5px solid #0b5ed7;
    padding: 22px;
    border-radius: 12px;
    font-size: 16px;
    color: #1f2933;
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .comparison-table th,
    .comparison-table td {
        font-size: 14px;
        padding: 14px;
    }
}



.app-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #374151;
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 15.5px;
    font-weight: 500;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}




/* ==================================================
   FINAL CLEAN CAMERA SLIDER (DESKTOP + TABLET + MOBILE)
================================================== */

.camera-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1150px;
    margin: auto;
}

/* ===== TRACK ===== */
.camera-slider {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    scroll-behavior: smooth;
}

/* ===== DESKTOP (3 CARDS) ===== */
.camera-slider .camseo {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
}

/* ===== ARROWS ===== */
.camera-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background: #0b2a4a;
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

.camera-arrow.left {
    left: 8px;
}

.camera-arrow.right {
    right: 8px;
}

/* ===== TABLET (2 CARDS) ===== */
@media(max-width:992px) {
    .camera-slider {
        overflow: hidden;
    }

    .camera-slider .camseo {
        flex: 0 0 calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

/* ===== FINAL MOBILE FIX ===== */
@media(max-width:768px) {

    .camera-slider-wrapper {
        overflow: hidden;
    }

    .camera-slider {
        overflow-x: auto;
        overflow-y: hidden;
        gap: 16px;

        /* IMPORTANT FIX */
        padding-left: 0;
        padding-right: 0;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .camera-slider::-webkit-scrollbar {
        display: none;
    }

    /* PERFECT CENTERED CARD */
    .camera-slider .camseo {
        flex: 0 0 92%;
        max-width: 92%;
        margin: 0 4%;
        scroll-snap-align: center;
    }

    /* arrows aligned */
    .camera-arrow {
        width: 32px;
        height: 32px;
        top: 60%;
    }

    .camera-arrow.left {
        left: 6px;
    }

    .camera-arrow.right {
        right: 6px;
    }

}

.wwith100 {
    max-width: 100% !important;
    text-align: center;
}

.corp-top h3 a {
    color: inherit;
    text-decoration: none;
}


.white-link a {
    color: #fff;
    /* change this to your brand color */
    text-decoration: none !important;
    font-weight: 600;
}

.white-link a:hover {
    color: #ff6c00;
    /* hover colour */
    text-decoration: underline;
}


.black-link a {
    color: #474747;
    /* change this to your brand color */
    text-decoration: none !important;
    font-weight: 600;
}

.black-link a:hover {
    color: #000000;
    /* hover colour */
    text-decoration: underline;
}

.ultra-enquiry-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s;
    font-family: "Nunito", sans-serif;
}

.ultra-enquiry-overlay.show {
    opacity: 1;
    visibility: visible;
}

.ultra-enquiry-box {
    background: #fff;
    width: 92%;
    max-width: 420px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transform: translateY(40px) scale(0.96);
    transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.ultra-enquiry-overlay.show .ultra-enquiry-box {
    transform: translateY(0) scale(1);
}

.ultra-close {
    position: absolute;
    right: 16px;
    top: 14px;
    cursor: pointer;
    font-size: 18px;
}

.ultra-head h3 {
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
    text-align: center;
}

.ultra-head p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 18px;
    text-align: center;
}

.ultra-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ultra-form input,
.ultra-form select {
    padding: 15px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    font-size: 15px;
    transition: 0.2s;
}

.ultra-form input:focus,
.ultra-form select:focus {
    border-color: #ff6c00;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 108, 0, 0.12);
}

.ultra-submit {
    background: #ff6c00;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 14px 30px rgba(255, 108, 0, 0.35);
    font-size: 16px;
}

.ultra-whatsapp {
    margin-top: 12px;
    text-align: center;
    background: #25d366;
    color: #fff;
    padding: 15px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

@media (max-width: 600px) {
    .ultra-enquiry-overlay {
        align-items: flex-end;
    }

    .ultra-enquiry-box {
        width: 100%;
        max-width: none;
        border-radius: 22px 22px 0 0;
        padding: 24px 18px calc(30px + env(safe-area-inset-bottom));
        transform: translateY(100%);
        min-height: 80vh;
    }

    .ultra-enquiry-overlay.show .ultra-enquiry-box {
        transform: translateY(0);
    }

    .ultra-enquiry-box::before {
        content: "";
        width: 50px;
        height: 5px;
        background: #e5e7eb;
        border-radius: 10px;
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .ultra-head {
        margin-top: 20px;
    }

    .ultra-close {
        top: 16px;
        right: 18px;
        font-size: 20px;
    }

    .ultra-whatsapp {
        position: sticky;
        bottom: 0;
    }
}

.center-cta {
    justify-content: space-around;
}



.clients-section {
    padding: 70px 20px;
    text-align: center;
    background: #f5f6f8;
}

.clients-subtitle {
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
    color: #777;
    margin-bottom: 10px;
}

.clients-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.clients-grid {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
}

.client-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.client-card img {
    max-width: 100%;
    max-height: 55px;
    object-fit: contain;
}

/* Tablet */
@media (max-width:992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width:600px) {
    .clients-title {
        font-size: 24px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .client-card {
        padding: 18px;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #ff6c00;
    text-shadow: 0 0 5px rgba(255, 108, 0, 0.4);
}

.img-height-cctvcamera {

    height: 125px !important;
}

/* ===== BENEFITS PRO SECTION ===== */
/* ===== BENEFITS SECTION MODERN DESIGN ===== */

.benefits-pro {
    background: #fff;
    padding: 90px 6%;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: start;
}

/* ── LEFT ── */
.benefits-left {
    position: sticky;
    top: 40px;
}

.benefits-tag {
    display: inline-block;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #e86c00;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e86c00;
}

.benefits-title {
    line-height: 0.95;
    color: #0a0f1e;
    letter-spacing: 1px;
    margin: 0 0 24px;
}

.benefits-desc {
    line-height: 1.8;
    color: #6b7a99;
    margin: 0 0 40px;
}

.benefits-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #e86c00;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s;
}

.benefits-btn:hover {
    background: #c95c00;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.benefits-btn svg {
    transition: transform 0.2s;
}

.benefits-btn:hover svg {
    transform: translateX(4px);
}

/* ── RIGHT ── */
.benefits-right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

/* BENEFIT CARD */
.benefit-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    position: relative;
}

.benefit-card:first-child {
    border-top: 1px solid #f0f0f0;
}

.benefit-card:hover {
    background: #fff9f5;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 -16px;
    border-radius: 6px;
    border-color: transparent;
}

/* Oversized number */
.benefit-icon {
    font-size: 52px;
    line-height: 1;
    color: #f0ede8;
    letter-spacing: 0;
    transition: color 0.2s;
    padding-top: 2px;
    /* override any padding from parent */
    background: none;
    border-radius: 0;
    border: none;
    padding: 0;
    min-width: unset;
    height: auto;
    display: block;
    box-shadow: none;
}

.benefit-card:hover .benefit-icon {
    color: #e86c00;
}

.benefit-card-body {
    padding-top: 4px;
}

.benefit-card-body strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #0a0f1e;
    margin-bottom: 6px;
    font-family: 'Mulish', sans-serif;
}

/* TEXT INSIDE CARD */
.benefit-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7a99;
    margin: 0;
    font-weight: 400;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .benefits-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .benefits-left {
        position: static;
    }

    .benefits-title {
        font-size: 48px;
    }

    .benefit-card:hover {
        padding-left: 0;
        padding-right: 0;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
        background: none;
    }
}

.margin-bottom-50px {

    margin-bottom: 50px !important;

}

.corp-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #223044;
    line-height: 1.4;
}