
/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {
    --primary: #e50914;
    --primary-dark: #b8000a;
    --primary-light: #ff2633;

    --black: #050505;
    --black-soft: #0b0b0b;
    --black-card: #111111;
    --black-light: #171717;

    --white: #ffffff;
    --text: #f5f5f5;
    --text-muted: #a5a5a5;
    --border: rgba(255, 255, 255, 0.10);

    --container: 1240px;

    --transition: 0.3s ease;
}


/* =========================================================
   02. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   03. COMMON CONTAINER
   ========================================================= */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* =========================================================
   FIXED HEADER
   ========================================================= */

.main-header {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 84px;
    z-index: 9999;
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    background: #050505;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(229, 9, 20, 0.18);
}

/* =========================================================
   LOGO STYLING (WITH IMAGE & RESPONSIVE)
   ========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
    text-decoration: none;
}

/* Logo Image Wrapper & Styling */
.logo-icon-wrapper {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ff2733, #a80009);
    border-radius: 11px;
    box-shadow: 0 0 25px rgba(229, 9, 20, 0.28);
    overflow: hidden;
    padding: 5px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Logo Text Content Styling */
.logo-content {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-content strong {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.logo-content span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.1px;
    color: #d8d8d8;
    margin-top: 4px;
}

.logo-content small {
    font-size: 6px;
    letter-spacing: 1.3px;
    color: #777;
    margin-top: 5px;
    text-transform: uppercase;
}
/* =========================================================
   1. Brand Column (Footer Logo with Image)
   ========================================================= */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #141419;
    padding: 5px;
    border-radius: 6px;
    border: 1px solid #222;
    overflow: hidden;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo-text strong {
    color: #ffffff;
    font-size: 16px;
    display: block;
    letter-spacing: 0.5px;
}

.footer-logo-text span {
    color: #e60000;
    font-size: 9px;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-bio {
    color: #8b919d;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}
/* =========================================================
   RESPONSIVE DESIGN FOR MOBILE PHONES
   ========================================================= */
@media (max-width: 768px) {
    .logo {
        gap: 8px;
    }

    .logo-icon-wrapper {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }

    .logo-content strong {
        font-size: 16px;
    }

    .logo-content span {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    /* Mobile screen par choti tagline chupane ke liye ya choti karne ke liye */
    .logo-content small {
        display: none; 
    }
}



/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 100%;
}

.nav-link {
    position: relative;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #bcbcbc;
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


/* =========================================================
   SERVICES DROPDOWN
   ========================================================= */

.services-dropdown {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.services-button {
    border: none;
    outline: none;
    background: transparent;
    color: #bcbcbc;
    cursor: pointer;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}

.services-button:hover {
    color: #fff;
}

.dropdown-arrow {
    font-size: 14px;
    transition: transform var(--transition);
}

.services-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.services-menu {
    position: absolute;
    top: calc(100% - 3px);
    left: 50%;
    transform: translate(-50%, 12px);
    width: 265px;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid var(--primary);
    border-radius: 0 0 12px 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.services-dropdown:hover .services-menu,
.services-dropdown.open .services-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.services-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 13px;
    border-radius: 7px;
    color: #aaa;
    font-size: 12px;
    transition: var(--transition);
}

.services-menu a:hover {
    background: rgba(229, 9, 20, 0.12);
    color: #fff;
    padding-left: 17px;
}

.services-menu .all-services {
    color: #fff;
    font-weight: 700;
    background: rgba(229, 9, 20, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 5px;
}

.services-menu .all-services b {
    color: var(--primary);
}


/* =========================================================
   HEADER QUOTE BUTTON
   ========================================================= */

.header-quote {
    margin-left: 8px;
    padding: 12px 19px;
    background: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.header-quote:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.15);
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-button {
    width: 43px;
    height: 43px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #111;
    border-radius: 7px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-button span {
    width: 19px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-navigation {
    display: none;
}


/* =========================================================
   06. HERO SECTION
   ========================================================= */

.hero-section {
    min-height: 945px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(229, 9, 20, 0.15),
            transparent 30%
        ),
        linear-gradient(
            110deg,
            #050505 0%,
            #080808 55%,
            #0d0d0d 100%
        );
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75),
            transparent 65%
        );
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 30%,
        black 80%,
        transparent
    );
}

.hero-container {
    min-height: 690px;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-section {
    padding-top: 84px;
}

/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    padding: 60px 0;
    position: relative;
    z-index: 5;
    word-spacing: 2px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 13px;
    border: 1px solid rgba(229, 9, 20, 0.35);
    background: rgba(229, 9, 20, 0.07);
    border-radius: 4px;
    color: #e5e5e5;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    margin-bottom: 22px;
}

.badge-line {
    width: 22px;
    height: 2px;
    background: var(--primary);
}

.hero-content h1 {
    max-width: 600px;
    font-size: clamp(48px, 5.3vw, 79px);
    line-height: 0.98;
    letter-spacing: 0px;
    font-weight: 850;
    color: #fff;
}

.hero-content h1 span {
    display: block;
    color: var(--primary);
    margin-top: 8px;
    text-shadow:
        0 0 35px rgba(229, 9, 20, 0.15);
}

.hero-description {
    max-width: 560px;
    color: #9e9e9e;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 25px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 31px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    min-height: 49px;
    padding: 0 21px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary {
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.18);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(229, 9, 20, 0.25);
}

.btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}


/* =========================================================
   HERO TRUST
   ========================================================= */

.hero-trust {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 45px;
}

.trust-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(229, 9, 20, 0.1);
    border: 1px solid rgba(229, 9, 20, 0.3);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}

.trust-box div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-box strong {
    font-size: 11px;
    color: #fff;
}

.trust-box span {
    font-size: 9px;
    color: #777;
}


/* =========================================================
   HERO VISUAL
   ========================================================= */

.hero-visual {
    position: relative;
    width: 100%;
    height: 610px;
}

.red-glow {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(229, 9, 20, 0.11);
    filter: blur(70px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.65;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.12);
    }
}


/* =========================================================
   SECURITY RINGS
   ========================================================= */

.security-ring {
    position: absolute;
    border: 1px solid rgba(229, 9, 20, 0.15);
    border-radius: 50%;
    left: 52%;
    top: 51%;
    transform: translate(-50%, -50%);
}

.ring-one {
    width: 410px;
    height: 410px;
}

.ring-two {
    width: 530px;
    height: 530px;
    border-color: rgba(255, 255, 255, 0.05);
}


/* =========================================================
   HERO SHIELD
   ========================================================= */

.hero-shield {
    position: absolute;
    width: 215px;
    height: 250px;
    left: 52%;
    top: 51%;
    transform: translate(-50%, -50%);
    clip-path: polygon(
        50% 0%,
        91% 16%,
        91% 55%,
        82% 72%,
        67% 88%,
        50% 100%,
        33% 88%,
        18% 72%,
        9% 55%,
        9% 16%
    );
    background: linear-gradient(
        145deg,
        #ff313c,
        #9f0008
    );
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 60px rgba(229, 9, 20, 0.3);
    animation: shieldFloat 5s ease-in-out infinite;
}

@keyframes shieldFloat {

    0%,
    100% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, calc(-50% - 10px));
    }
}

.shield-inner {
    width: 185px;
    height: 220px;
    clip-path: inherit;
    background: #080808;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}


/* =========================================================
   HERO PRODUCTS
   ========================================================= */

.hero-product {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.hero-product > span {
    font-size: 8px;
    color: #858585;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}


/* =========================================================
   CCTV
   ========================================================= */

.product-camera {
    left: 8%;
    top: 23%;
    animation: productFloatOne 5s ease-in-out infinite;
}

.camera {
    width: 75px;
    height: 48px;
    background: linear-gradient(
        145deg,
        #444,
        #151515
    );
    border: 1px solid #555;
    border-radius: 9px;
    position: relative;
    transform: rotate(-5deg);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.camera::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 10px;
    background: #282828;
    bottom: -8px;
    left: 26px;
    border-radius: 0 0 5px 5px;
}

.camera-lens {
    position: absolute;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #050505;
    border: 3px solid #656565;
    right: 7px;
    top: 9px;
}

.camera-lens::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    left: 7px;
    top: 7px;
    box-shadow: 0 0 12px var(--primary);
}


/* =========================================================
   WALKIE TALKIE
   ========================================================= */

.product-walkie {
    right: 4%;
    top: 17%;
    animation: productFloatTwo 6s ease-in-out infinite;
}

.walkie-talkie {
    width: 52px;
    height: 100px;
    background: linear-gradient(
        150deg,
        #383838,
        #111
    );
    border: 1px solid #555;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5);
}

.walkie-antenna {
    position: absolute;
    width: 5px;
    height: 38px;
    background: #444;
    top: -37px;
    left: 25px;
    border-radius: 4px 4px 0 0;
}

.walkie-screen {
    position: absolute;
    width: 29px;
    height: 15px;
    background: #0b1810;
    border: 1px solid #59635c;
    left: 11px;
    top: 17px;
}

.walkie-controls {
    position: absolute;
    top: 39px;
    left: 11px;
    display: flex;
    gap: 5px;
}

.walkie-controls i {
    width: 7px;
    height: 7px;
    background: #888;
    border-radius: 50%;
}

.walkie-speaker {
    position: absolute;
    left: 11px;
    bottom: 12px;
    width: 30px;
    height: 16px;
    border-top: 2px dotted #777;
    border-bottom: 2px dotted #777;
}


/* =========================================================
   ACCESS CONTROL
   ========================================================= */

.product-access {
    left: 4%;
    bottom: 21%;
    animation: productFloatThree 5.5s ease-in-out infinite;
}

.access-control {
    width: 58px;
    height: 92px;
    background: linear-gradient(
        150deg,
        #383838,
        #121212
    );
    border: 1px solid #555;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.access-display {
    width: 36px;
    height: 27px;
    border-radius: 4px;
    background: #07150d;
    border: 1px solid #536358;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #62b47b;
    font-size: 12px;
}

.access-buttons {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
}

.access-buttons i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #777;
}


/* =========================================================
   VIDEO DOOR PHONE
   ========================================================= */

.product-door {
    right: 2%;
    bottom: 21%;
    animation: productFloatOne 5.8s ease-in-out infinite;
}

.door-phone {
    width: 66px;
    height: 100px;
    border-radius: 7px;
    background: linear-gradient(
        145deg,
        #414141,
        #101010
    );
    border: 1px solid #5a5a5a;
    padding: 9px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.door-screen {
    width: 48px;
    height: 47px;
    border-radius: 4px;
    background:
        linear-gradient(
            140deg,
            #17232a,
            #05090b
        );
    border: 1px solid #666;
}

.door-button {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 2px solid #777;
    margin: 11px auto 0;
}


/* =========================================================
   SMOKE DETECTOR
   ========================================================= */

.product-smoke {
    left: 27%;
    top: 11%;
    animation: productFloatTwo 5.2s ease-in-out infinite;
}

.smoke-detector {
    width: 64px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(
        180deg,
        #efefef,
        #7d7d7d
    );
    border: 1px solid #aaa;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.smoke-light {
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    top: 10px;
    left: 29px;
    box-shadow: 0 0 12px var(--primary);
}


/* =========================================================
   PRODUCT ANIMATIONS
   ========================================================= */

@keyframes productFloatOne {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes productFloatTwo {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-12px) rotate(2deg);
    }
}

@keyframes productFloatThree {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* =====================================================
   SOLUTIONS SECTION STYLES (CLEAN & PREMIUM FIX)
====================================================== */
.solutions-section {
    padding: 65px 0;
    background-color: #0b0b0e; 
    border-bottom: 1px solid #1c1c24;
    overflow: hidden;
}

.solutions-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1300px; /* Container wide kiya taaki image naturally left aaye */
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= IMAGE SIDE ================= */
.solutions-image-wrapper {
    flex: 1.1; /* Balance perfect rakha hai taaki text na dabe */
    position: relative;
}

.solutions-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.08); /* Halka sa glass border */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transition: transform 0.4s ease;
}

/* Gande dabe hue box ki jagah ek Premium Red Glow lagaya hai */
.image-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background-color: #e60000;
    filter: blur(90px); /* Ye peeche ek bahut badiya red light ka effect dega */
    opacity: 0.15;
    z-index: 1;
    border-radius: 50%;
}

.solutions-image-wrapper:hover .solutions-img {
    transform: translateY(-8px);
}

.solutions-image-wrapper:hover .image-accent {
    opacity: 0.25; /* Hover par light thodi tez hogi */
}

/* ================= CONTENT SIDE ================= */
.solutions-content {
    flex: 1; /* Text ko poori khuli jagah milegi */
}

.section-subtitle {
    display: inline-block;
    background-color: rgba(230, 0, 0, 0.1);
    color: #e60000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(230, 0, 0, 0.2);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.solutions-content h2 {
    font-size: 40px; 
    color: #ffffff;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.solutions-content h2 strong {
    color: #e60000;
}

.solutions-content p {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* ================= CHECKMARK LIST ================= */
.solutions-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.solutions-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #e4e4e7;
    margin-bottom: 18px;
    font-weight: 500;
}

.solutions-list li span {
    margin-right: 15px;
    font-size: 14px;
    background-color: rgba(230, 0, 0, 0.1);
    color: #e60000;
    min-width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(230, 0, 0, 0.3);
}

/* ================= MOBILE RESPONSIVE ================= */
@media screen and (max-width: 992px) {
    .solutions-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .solutions-content h2 {
        font-size: 32px;
    }
}


/* =========================================================
   07. WHY CHOOSE US
   ========================================================= */

.why-choose-section {
    position: relative;
    padding: 105px 0;
    background:
        linear-gradient(
            180deg,
            #090909,
            #050505
        );
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 50px;
    margin-bottom: 48px;
}

.why-heading > div > span {
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.why-heading h2 {
    margin-top: 11px;
    font-size: clamp(35px, 4vw, 53px);
    line-height: 1;
    letter-spacing: -2px;
}

.why-heading h2 strong {
    color: var(--primary);
}

.why-heading > p {
    max-width: 480px;
    color: #8e8e8e;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   WHY GRID
   ========================================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px;
}

.why-card {
    min-height: 245px;
    position: relative;
    overflow: hidden;
    padding: 26px 20px;
    background:
        linear-gradient(
            145deg,
            #141414,
            #0b0b0b
        );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: 0.35s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.35s ease;
}

.why-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -65px;
    bottom: -65px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.08);
    transition: 0.35s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(229, 9, 20, 0.35);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.3);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover::after {
    transform: scale(1.4);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(229, 9, 20, 0.09);
    border: 1px solid rgba(229, 9, 20, 0.25);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 25px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.why-content {
    position: relative;
    z-index: 2;
}

.why-content h3 {
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 11px;
}

.why-content p {
    color: #777;
    font-size: 11px;
    line-height: 1.7;
}
/* Mobile Menu ko hide karke rakhna (By default) */
.mobile-navigation {
    display: none; /* Agar pehle se hide nahi hai toh */
    position: absolute;
    top: 70px; /* Header ke height ke hisaab se adjust karein */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 20px;
    z-index: 999;
}

/* Jab JS .active class add kare toh Menu show ho jaye */
.mobile-navigation.active {
    display: flex; 
}



/* =========================================================
   09. TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 1px;
    }

    .nav-link,
    .services-button {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 12px;
    }

    .header-quote {
        padding: 11px 13px;
    }

    .hero-container {
        grid-template-columns: 50% 50%;
    }

    .hero-content h1 {
        font-size: 55px;
    }

    .hero-visual {
        transform: scale(0.9);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   10. TABLET / SMALL LAPTOP
   ========================================================= */

@media (max-width: 900px) {

    .main-header {
        height: 76px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-navigation {
        position: fixed;
        z-index: 998;
        top: 114px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 114px);
        overflow-y: auto;
        padding: 15px;
        background: #090909;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
    }

    .mobile-navigation.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-navigation > a,
    .mobile-services > button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px;
        color: #aaa;
        font-size: 13px;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        background: transparent;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        cursor: pointer;
    }

    .mobile-navigation > a:hover,
    .mobile-services > button:hover {
        color: #fff;
    }

    .mobile-services-menu {
        display: none;
        padding: 5px 0 5px 15px;
    }

    .mobile-services-menu.active {
        display: block;
    }

    .mobile-services-menu a {
        display: block;
        padding: 11px 14px;
        color: #777;
        font-size: 12px;
    }

    .mobile-services-menu a:hover {
        color: var(--primary);
    }

    .mobile-quote {
        margin-top: 14px;
        justify-content: center !important;
        background: var(--primary) !important;
        color: #fff !important;
        border-radius: 6px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-container {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 55px;
        padding-bottom: 45px;
    }

    .hero-content {
        text-align: center;
        padding: 25px 0;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        height: 500px;
        margin-top: 15px;
    }

    .why-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .why-heading > p {
        max-width: 650px;
    }

}


/* =========================================================
   11. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .top-bar {
        height: 34px;
    }

    .top-social {
        display: none;
    }

    .top-contact {
        width: 100%;
        justify-content: center;
        font-size: 10px;
        gap: 10px;
    }

    .main-header {
        height: 70px;
    }


    .mobile-navigation {
        top: 104px;
        max-height: calc(100vh - 104px);
    }

    .hero-container {
        padding-top: 40px;
    }

    .hero-content h1 {
        font-size: clamp(40px, 13vw, 58px);
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-trust {
        gap: 17px;
        margin-top: 35px;
    }

    .trust-box {
        gap: 6px;
    }

    .trust-icon {
        width: 29px;
        height: 29px;
        font-size: 9px;
    }

    .trust-box strong {
        font-size: 9px;
    }

    .trust-box span {
        font-size: 7px;
    }

    .hero-visual {
        height: 430px;
        transform: scale(0.78);
        transform-origin: center top;
        margin-bottom: -55px;
    }

    .ring-one {
        width: 350px;
        height: 350px;
    }

    .ring-two {
        width: 430px;
        height: 430px;
    }

    .hero-shield {
        width: 190px;
        height: 220px;
    }

    .shield-inner {
        width: 165px;
        height: 195px;
    }

    .why-choose-section {
        padding: 75px 0;
    }

    .why-heading {
        margin-bottom: 32px;
    }

    .why-heading h2 {
        font-size: 39px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: 190px;
    }

 

}


/* =========================================================
   12. VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-trust {
        gap: 10px;
    }

    .hero-visual {
        transform: scale(0.67);
        margin-bottom: -90px;
    }

    .why-card {
        padding: 22px 17px;
    }

}
/* =====================================================
   OUR HAPPY CLIENTS SECTION STYLES (DARK THEME)
====================================================== */
.clients-section {
    padding: 100px 0;
    background-color: #0b0b0e; /* Page theme color */
    border-bottom: 1px solid #1c1c24;
    position: relative;
}

.clients-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Setup */
.clients-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.clients-header h2 {
    font-size: 40px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 15px;
    margin-bottom: 15px;
}

.clients-header h2 strong {
    color: #e60000;
}

.clients-header p {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.7;
}

/* Grid Layout */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Review Cards */
.client-card {
    background-color: #13131a;
    border: 1px solid #1c1c24;
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.client-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 0, 0, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(230, 0, 0, 0.1);
}

/* Red Stars */
.rating-stars {
    color: #e60000;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Review Text */
.client-review {
    font-size: 15px;
    color: #d4d4d8;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}

/* Client Profile Info */
.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(230, 0, 0, 0.15);
    color: #e60000;
    border: 1px solid rgba(230, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.client-details h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.client-details span {
    color: #9ca3af;
    font-size: 13px;
}

/* Responsive Setup */
@media screen and (max-width: 768px) {
    .clients-header h2 {
        font-size: 32px;
    }
    .clients-section {
        padding: 80px 0;
    }
}
.pro-text-corporate {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Very thin, subtle border */
    margin-top: 25px;
    margin-bottom: 25px;
}

.pro-text-corporate p {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.8;
    margin: 0;
}

.pro-text-corporate p strong {
    color: #eaeaea;
    font-weight: 600;
}
/* =====================================================
   ABOUT US & CEO SECTION STYLING (Black & Red Theme)
====================================================== */
/* =====================================================
   ABOUT HERO SECTION (Full Background 3D Style)
====================================================== */
.about-hero-section {
    position: relative;
    padding: 120px 0;
    text-align: center;
    background-color: #0b0b0e;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px;
    border-bottom: 1px solid #1c1c24;
}

/* Background Layer */
.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-3d-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Tint Overlay taaki text clear dikhe */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 11, 14, 0.88); /* Background ko dark aur readable banane ke liye */
    z-index: 2;
}

/* Container & Text Centered */
.about-hero-container {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge-line-text {
    display: inline-block;
    background-color: rgba(230, 0, 0, 0.1);
    color: #e60000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(230, 0, 0, 0.2);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero-content h1 {
    font-size: 42px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-hero-content h1 span {
    color: #e60000;
}

.about-hero-content p {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.7;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .about-hero-section {
        padding: 90px 0;
    }
    .about-hero-content h1 {
        font-size: 32px;
    }
}
.about-details-section {
    padding: 60px 0;
    background-color: #0b0b0e;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text-box h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-text-box h2 strong {
    color: #e60000;
}

.about-text-box p {
    color: #a0a0a5;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-highlights {
    margin-top: 25px;
}

.highlight-item {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}



/* CEO SECTION STYLING */
.ceo-section {
    padding: 60px 0 80px 0;
    background-color: #0b0b0e;
    border-top: 1px solid #1c1c24;
}

.ceo-card {
    background-color: #141419;
    border: 1px solid #222;
    border-left: 5px solid #e60000;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 40px;
    border-radius: 10px;
    align-items: center;
}

.ceo-image-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e60000;
}

.ceo-text-box h2 {
    font-size: 26px;
    color: #ffffff;
    margin: 15px 0;
}

.ceo-text-box h2 strong {
    color: #e60000;
}

.ceo-quote {
    color: #a0a0a5;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.ceo-details h4 {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
}

.ceo-details p {
    color: #a0a0a5;
    font-size: 14px;
    margin: 4px 0;
}

.ceo-phone {
    color: #e60000 !important;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid, .ceo-card {
        grid-template-columns: 1fr;
    }
    .about-hero-content h1 {
        font-size: 28px;
    }
    .ceo-image-box img {
        height: 220px;
    }
}
/* =========================================================
   PROFESSIONAL 4-COLUMN FOOTER STYLING
   ========================================================= */

.footer {
    background-color: #0b0b0e;
    border-top: 1px solid #1c1c24;
    color: #9ca3af;
    font-family: inherit;
    padding-top: 50px;
}

.footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 40px;
}

/* Column Common Styling */
.footer-col {
    display: flex;
    flex-direction: column;
}



/* Headings for Columns */
.footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
}

/* Links List Styling */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links-list li a:hover {
    color: #e60000;
    padding-left: 5px; /* Chota sa smooth slide effect */
}

/* Contact Column Styling */
.footer-contact-item {
    color: #9ca3af;
    font-size: 13px;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

/* Social Icons Row */
.footer-social-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.f-social-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #141419;
    border: 1px solid #222;
    border-radius: 50%;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.f-social-icon:hover {
    background-color: #e60000;
    border-color: #e60000;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.3);
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #050507;
    border-top: 1px solid #181820;
    padding: 18px 0;
    text-align: center;
}

.footer-bottom-container p {
    color: #6b7280;
    font-size: 12px;
    margin: 0;
}

/* Mobile Responsive Adjustments */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* =====================================================
   COMPLETE ABOUT PAGE STYLING (Black & Red Theme)
====================================================== */

/* 1. Hero Section with Image Layout */
.about-hero-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1c1c24 0%, #0b0b0e 100%);
    border-bottom: 1px solid #1c1c24;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.badge-line-text {
    color: #e60000;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

.about-hero-content h1 {
    font-size: 38px;
    margin: 15px 0 20px 0;
    color: #ffffff;
    line-height: 1.2;
}

.about-hero-content h1 span {
    color: #e60000;
}

.about-hero-content p {
    color: #a0a0a5;
    font-size: 16px;
    line-height: 1.7;
}

/* Hero Image Box with Styling */
.about-hero-img-box {
    position: relative;
}

.hero-main-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #2a2a35;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background-color: #141419;
    border: 2px solid #e60000;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(230,0,0,0.3);
}

.floating-badge span {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

/* 2. Details Section */
.about-details-section {
    padding: 70px 0;
    background-color: #0b0b0e;
  
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text-box h2 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-text-box h2 strong {
    color: #e60000;
}

.about-text-box p {
    color: #a0a0a5;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-highlights {
    margin-top: 25px;
}

.highlight-item {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}


/* Custom Image Box Styling */
.custom-image-box {
    width: 100%;
    max-width: 800px; /* Image kitni badi dikhani hai, yahan se set karo */
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #22222a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    margin: 0 auto; /* Center karne ke liye */
}

.custom-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image fatega nahi aur box me fit aayega */
    display: block;
    transition: transform 0.4s ease;
}

/* Hover par halka sa zoom effect (Optional) */
.custom-image-box:hover img {
    transform: scale(1.05);
}

/* Mobile ke liye height adjust */
@media (max-width: 768px) {
    .custom-image-box {
        height: 250px;
    }
}
/* 3. CEO Section with Hover Image Effect */
.ceo-section {
    padding: 60px 0 90px 0;
    background-color: #0b0b0e;
    border-top: 1px solid #1c1c24;
}

.ceo-card {
    background-color: #141419;
    border: 1px solid #222;
    border-left: 6px solid #e60000;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 40px;
    padding: 40px;
    border-radius: 12px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ceo-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #2a2a35;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.ceo-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.ceo-image-wrapper:hover {
    border-color: #e60000;
    box-shadow: 0 0 20px rgba(230, 0, 0, 0.4);
}

.ceo-image-wrapper:hover .ceo-img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.ceo-img-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(230, 0, 0, 0.9);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ceo-text-box h2 {
    font-size: 26px;
    color: #ffffff;
    margin: 12px 0 20px 0;
    line-height: 1.3;
}

.ceo-text-box h2 strong {
    color: #e60000;
}

.ceo-quote {
    color: #b0b0b5;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
    border-left: 3px solid #e60000;
    padding-left: 15px;
}

.ceo-owner-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b0b0e;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #222;
}

.owner-name-tag h4 {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
}

.owner-name-tag p {
    color: #888;
    font-size: 13px;
    margin: 2px 0 0 0;
}

.owner-contact-tag a {
    color: #e60000;
    font-weight: 700;
    text-decoration: none;
    display: block;
    font-size: 15px;
    transition: color 0.2s;
}

.owner-contact-tag a:hover {
    color: #ff1a1a;
    text-decoration: underline;
}

.owner-contact-tag span {
    color: #888;
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero-grid, .about-grid, .ceo-card {
        grid-template-columns: 1fr;
    }
    .about-hero-content h1 {
        font-size: 28px;
    }
    .hero-main-img, .ceo-img {
        height: 250px;
    }
    .ceo-owner-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* =========================================================
   CONTACT PAGE MAIN SECTION STYLING
   ========================================================= */

.contact-page-main {
    background-color: #0b0b0e;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.contact-page-main .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Page Banner Section */
.contact-banner {
    position: relative;
    padding: 140px 0 100px 0;
    background: linear-gradient(
        to bottom, 
        rgba(11, 11, 14, 0.85), 
        rgba(11, 11, 14, 0.92)
    ), url('images/contact_bg_img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid #1c1c24;
}

.badge-line-text {
    display: inline-block;
    background-color: rgba(230, 0, 0, 0.1);
    color: #e60000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(230, 0, 0, 0.3);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-banner h1 {
    font-size: 38px;
    color: #ffffff;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.contact-banner h1 span {
    color: #e60000;
}

.contact-banner p {
    color: #9ca3af;
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. Contact Section Grid */
.contact-section-content {
    padding: 70px 0;
}

.contact-grid-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

/* Left Side: Contact Information Cards */
.contact-info-side h2 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.contact-info-side h2 strong {
    color: #e60000;
}

.contact-sub-text {
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background-color: #141419;
    border: 1px solid #22222a;
    padding: 22px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-card-item:hover {
    border-color: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.info-icon-box {
    font-size: 22px;
    background: #0b0b0e;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #2a2a35;
    flex-shrink: 0;
}

.info-card-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.info-card-item a, 
.info-card-item p {
    color: #9ca3af;
    font-size: 13px;
    text-decoration: none;
    margin: 0 0 4px 0;
    line-height: 1.5;
    display: block;
}

.info-card-item a:hover {
    color: #e60000;
    text-decoration: underline;
}

/* Right Side: Professional Inquiry Form */
.contact-form-side {
    background-color: #141419;
    border: 1px solid #22222a;
    border-top: 4px solid #e60000;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.contact-form > p {
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #d1d5db;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background-color: #0b0b0e;
    border: 1px solid #2a2a35;
    padding: 13px 16px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #e60000;
    box-shadow: 0 0 10px rgba(230, 0, 0, 0.2);
}

.form-group select {
    cursor: pointer;
}

.btn-submit-form {
    width: 100%;
    background-color: #e60000;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
    margin-top: 5px;
}

.btn-submit-form:hover {
    background-color: #ff1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.6);
}

/* 3. Google Map Section */
.map-section {
    padding: 0 0 70px 0;
}

.map-heading {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.map-heading strong {
    color: #e60000;
}

.map-box {
    border: 1px solid #22222a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background-color: #141419;
}

/* =========================================================
   RESPONSIVE DESIGN FOR MOBILE & TABLET
   ========================================================= */
@media (max-width: 900px) {
    .contact-grid-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .contact-banner h1 {
        font-size: 28px;
    }

    .contact-form-side {
        padding: 20px;
    }

    .info-card-item {
        padding: 15px;
    }
}

/* =========================================================
   GALLERY MAIN SECTION STYLING
   ========================================================= */

.gallery-page-main {
    background-color: #0b0b0e;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.gallery-page-main .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Gallery Banner Section */
.gallery-banner {
    position: relative;
    padding: 140px 0 100px 0;
    background: linear-gradient(
        to bottom, 
        rgba(11, 11, 14, 0.85), 
        rgba(11, 11, 14, 0.92)
    ), url('images/gallery_bg_img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid #1c1c24;
}

.badge-line-text {
    display: inline-block;
    background-color: rgba(230, 0, 0, 0.1);
    color: #e60000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(230, 0, 0, 0.3);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.gallery-banner h1 {
    font-size: 38px;
    color: #ffffff;
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

.gallery-banner h1 span {
    color: #e60000;
}

.gallery-banner p {
    color: #9ca3af;
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. Gallery Grid & Filter Section */
.gallery-grid-section {
    padding: 60px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #141419;
    border: 1px solid #22222a;
    color: #9ca3af;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, 
.filter-btn.active {
    background-color: #e60000;
    border-color: #e60000;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
}

/* 3. 9 Images Grid Layout (3 Columns) */
.gallery-grid-9 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Gallery Card Styling */
.gallery-card {
    position: relative;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #141419;
    border: 1px solid #22222a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay & Text Animation on Hover */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 11, 14, 0.95) 0%, rgba(11, 11, 14, 0.4) 70%, transparent 100%);
    padding: 25px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.g-tag {
    display: inline-block;
    background-color: #e60000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    width: max-content;
    margin-bottom: 8px;
}

.gallery-card h3 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

/* Hover Effects */
.gallery-card:hover {
    transform: translateY(-5px);
    border-color: #e60000;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* =========================================================
   RESPONSIVE DESIGN FOR MOBILE & TABLET
   ========================================================= */
@media (max-width: 900px) {
    .gallery-grid-9 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .gallery-grid-9 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-banner h1 {
        font-size: 28px;
    }

    .gallery-card {
        height: 240px;
    }
}

/* =========================================================
   CCTV SERVICE DETAIL PAGE MAIN SECTION STYLING
   ========================================================= */

.service-detail-main {
    background-color: #0b0b0e;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.service-detail-main .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Hero Banner */


.badge-line-text {
    display: inline-block;
    background-color: rgba(230, 0, 0, 0.1);
    color: #e60000;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(230, 0, 0, 0.3);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.service-hero-banner {
    position: relative;
    padding: 140px 0 100px 0;
    /* Yahan 'images/service_bg.png' ki jagah apni image ka path daal dena */
    background: linear-gradient(
        to bottom, 
        rgba(11, 11, 14, 0.85), 
        rgba(11, 11, 14, 0.92)
    ), url('images/all_bg_img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid #1c1c24;
}

.service-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.badge-line-text {
    display: inline-block;
    background-color: rgba(230, 0, 0, 0.1);
    color: #e60000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid rgba(230, 0, 0, 0.2);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.page-title {
    font-size: 42px;
    color: #ffffff;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.page-title strong {
    color: #e60000;
}

.page-desc {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}
.service-hero-banner h1 {
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.service-hero-banner h1 span {
    color: #e60000;
}

.service-hero-banner p {
    color: #9ca3af;
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. Content Layout (Grid) */
.service-content-section {
    padding: 70px 0;
}

.service-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* 3. Left Info Side */
.service-info-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.service-info-text h2 strong {
    color: #e60000;
}

.service-desc {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.f-check {
    background-color: rgba(230, 0, 0, 0.1);
    color: #e60000;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid rgba(230, 0, 0, 0.3);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-row h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.feature-row p {
    color: #8b919d;
    font-size: 13px;
    margin: 0;
}

/* 4. CTA Box inside text */
.service-cta-box {
    background-color: #141419;
    border: 1px solid #22222a;
    border-left: 4px solid #e60000;
    padding: 25px;
    border-radius: 10px;
}

.service-cta-box h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 5px 0;
}

.service-cta-box p {
    color: #9ca3af;
    font-size: 13px;
    margin: 0 0 15px 0;
}

.btn-service-action {
    display: inline-block;
    background-color: #e60000;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(230, 0, 0, 0.4);
}

.btn-service-action:hover {
    background-color: #ff1a1a;
    transform: translateY(-2px);
}

/* 5. Right Image Side */
.service-image-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-featured-img-box {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #22222a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    height: 320px;
}

.main-featured-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-featured-img-box:hover img {
    transform: scale(1.05);
}

.service-highlight-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #141419;
    border: 1px solid #22222a;
    padding: 20px;
    border-radius: 12px;
}

.shc-icon {
    font-size: 26px;
    background: #0b0b0e;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #2a2a35;
    flex-shrink: 0;
}

.service-highlight-card h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.service-highlight-card p {
    color: #9ca3af;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* 6. Responsive Design */
@media (max-width: 900px) {
    .service-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =====================================================
   ALL SOLUTIONS PAGE STYLES (FIXED RESPONSIVE & COMPACT BOXES)
====================================================== */
.all-solutions-page {
    padding: 90px 0;
    background-color: #0b0b0e;
    min-height: 100vh;
    overflow-x: hidden; /* Mobile mein horizontal scroll rokne ke liye */
}

.solutions-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Page Header */
.text-center {
    text-align: center;
}

.page-header {
    max-width: 700px;
    margin: 0 auto 45px auto;
}

.page-title {
    font-size: 38px;
    color: #ffffff;
    font-weight: 800;
    margin: 12px 0 15px;
    line-height: 1.2;
}

.page-title strong {
    color: #e60000;
}

.page-desc {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.6;
}

/* ================= GRID LAYOUT ================= */
.solutions-grid {
    display: grid;
    /* minmax 270px kiya hai taaki chote mobile screens par bahar na nikle */
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

/* ================= SOLUTION CARD (Compact Size) ================= */
.solution-card {
    background-color: #13131a;
    border: 1px solid #1c1c24;
    border-radius: 14px;
    padding: 28px 22px; /* Padding kam kar di taaki box chhota ho jaye */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Top Red Line */
.solution-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e60000;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover Effects */
.solution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(230, 0, 0, 0.08);
}

.solution-card:hover::before {
    transform: scaleX(1);
}

/* Icon Setup (Chhota kiya) */
.card-icon {
    font-size: 26px;
    margin-bottom: 18px;
    background-color: rgba(230, 0, 0, 0.08);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(230, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.solution-card:hover .card-icon {
    background-color: #e60000;
    color: white;
    transform: rotateY(180deg);
}

/* Card Text */
.solution-card h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.solution-card p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Learn More Link */
.card-link {
    color: #e60000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.card-link span {
    transition: transform 0.3s ease;
}

.solution-card:hover .card-link {
    color: #ff4d4d;
}

.solution-card:hover .card-link span {
    transform: translateX(6px);
}

/* ================= MOBILE RESPONSIVE ================= */
@media screen and (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    .all-solutions-page {
        padding: 60px 0;
    }
    .solutions-grid {
        grid-template-columns: 1fr; /* Mobile screen par single column perfectly fit hoga */
    }
}


/* Fix for sticky header disappearing on mobile */
@media (max-width: 900px) {
    .main-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        /* Forces hardware acceleration to prevent mobile scroll glitch */
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Fixes the gap between the header and the mobile menu */
    .mobile-navigation {
        top: 76px !important; 
    }
}

@media (max-width: 600px) {
    .mobile-navigation {
        top: 70px !important; /* Aligns exactly with the 70px header height on small screens */
    }
}