@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-dark: #0f172a;
    --accent: #0ea5e9;
    --text-light: #f8fafc;
      --primary: #0ea5e9;
    --dark: #0f172a;
    --gray: #64748b;
    --light: #f8fafc;
     --neon-blue: #00d2ff;
    --deep-vault: #030712;
    --border-glow: rgba(0, 210, 255, 0.3);
}

body { background: #f1f5f9; }

.navbar {
    background: var(--bg-dark);
    height: 70px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.logo-accent { color: var(--accent); font-size: 1.5rem; }

/* Nav Links Desktop */
.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-item {
    color: #94a3b8;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.nav-item:hover, .nav-item.active {
    color: var(--accent);
}

/* Dropdown Desktop */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: none; /* Desktop par hover se dikhega */
    list-style: none;
    padding: 10px 0;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: #334155;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.dropdown-menu li a:hover {
    background: #f1f5f9;
    color: var(--accent);
}
/* --- Services Section Styling --- */
.services-section {
    padding: 80px 0;
    background-color: #ffffff; /* Hero ke saath match karne ke liye white */
    font-family: 'Poppins', sans-serif;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TITLE AT THE TOP (Center Aligned) --- */
.section-header {
    text-align: center; /* Hamesha center rahega */
    margin-bottom: 50px;
    width: 100%; /* Poori width lega taaki side mein kuch na aaye */
}

.badge {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    color: #0f172a;
    margin-top: 15px;
    font-weight: 700;
}

.section-title span {
    color: #0ea5e9;
}

.divider {
    width: 60px;
    height: 4px;
    background: #0ea5e9;
    margin: 15px auto;
    border-radius: 2px;
}

.section-subtitle {
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* --- GRID SECTION BELOW THE TITLE --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.service-card {
    background: #f8fafc;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #e2e8f0;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #0ea5e9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.service-card h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    text-decoration: none;
    color: #0ea5e9;
    font-weight: 600;
    font-size: 0.9rem;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

/* --- Hover Effect --- */
.service-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #0ea5e9;
}

.service-link:hover {
    border-bottom: 2px solid #0ea5e9;
}
/* Show Dropdown on Hover (Desktop Only) */
@media screen and (min-width: 769px) {
    .dropdown:hover .dropdown-menu { display: block; }
}

/* Hamburger Icon */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.3s;
}
/* --- HERO SECTION (WHITE BACKGROUND) --- */
.hero {
    background: #ffffff; /* pure white as requested */
    padding: 60px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-content { flex: 1.2; }
.hero-image { flex: 0.8; text-align: center; }

.hero-image img {
    width: 100%;
    max-width: 450px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .highlight { color: #0ea5e9; }

.hero-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns { display: flex; gap: 15px; }

.btn-main {
    background: #0ea5e9;
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-outline {
    border: 2px solid #1e293b;
    color: #1e293b;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-main:hover { background: #0284c7; transform: translateY(-2px); }
/* --- Why Choose Us Section Styling --- */
.why-choose-us {
    padding: 100px 0;
    background-color: #f1f5f9; /* Subtle light blue-grey */
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.wcu-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Important for responsiveness */
}

/* Left Content Area */
.wcu-content {
    flex: 1;
    min-width: 300px;
}

.wcu-badge {
    color: #0ea5e9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border-bottom: 2px solid #0ea5e9;
    padding-bottom: 5px;
}

.wcu-title {
    font-size: 2.4rem;
    color: #0f172a;
    margin: 20px 0;
    line-height: 1.2;
}

.wcu-title span {
    color: #0ea5e9;
}

.wcu-desc {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
}

.wcu-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

/* Right Side: Feature Cards Area */
.wcu-features {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr; /* Default to single column */
    gap: 20px;
    min-width: 300px;
}

/* --- UNIQUE CSS FEATURE ITEM --- */
.feature-item {
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border-left: 5px solid transparent; /* Hidden by default */
    transition: all 0.4s ease;
    position: relative;
}

.feature-item:hover {
    transform: translateX(10px);
    border-left: 5px solid #0ea5e9;
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.1);
}

.f-icon {
    width: 60px;
    height: 60px;
    background: #0f172a;
    color: #0ea5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.3s;
}

.feature-item:hover .f-icon {
    background: #0ea5e9;
    color: #ffffff;
    transform: rotateY(180deg);
}

.f-text h4 {
    color: #0f172a;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.f-text p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}
/* --- About Us Section Styling --- */
.about-section {
    padding: 100px 0;
    background-color: #ffffff; /* Clean white background */
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* --- Left Side: Image Styling --- */
.about-left {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-img-container {
    position: relative;
    padding: 20px;
}

.main-about-img {
    width: 100%;
    border-radius: 30px 0 30px 0; /* Modern curved edges */
    box-shadow: 20px 20px 0px #0ea5e9; /* Blue offset background */
}

.exp-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #0f172a; /* Dark Navy */
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 4px solid #ffffff;
}

.exp-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #0ea5e9;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Right Side: Content Styling --- */
.about-right {
    flex: 1.2;
    min-width: 300px;
}

.about-badge {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.about-title {
    font-size: 2.5rem;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-title span {
    color: #0ea5e9;
}

.about-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Features List */
.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.about-features li {
    font-size: 0.95rem;
    color: #1e293b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: #0ea5e9;
    font-size: 1.2rem;
}

/* Button Styling */
.btn-about {
    text-decoration: none;
    background: #0ea5e9;
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.2);
}

.btn-about:hover {
    background: #0f172a;
    transform: translateY(-3px);
}
/* --- Consultation CTA Styling --- */
.cta-consultation {
    padding: 80px 0;
    background-color: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Circle */
.cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
}

.cta-content {
    flex: 1.2;
}

.cta-badge {
    color: #0ea5e9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.cta-title {
    color: #ffffff;
    font-size: 2.5rem;
    margin: 15px 0;
    line-height: 1.2;
}

.cta-title span {
    color: #0ea5e9;
}

.cta-desc {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Info Boxes */
.cta-contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-box:hover {
    background: #0ea5e9;
    transform: translateX(-10px);
    border-color: #0ea5e9;
}

.c-icon {
    width: 50px;
    height: 50px;
    /* background: #0ea5e9; */
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: 0.3s;
}

.contact-box:hover .c-icon {
    background: white;
    color: #0ea5e9;
}

.c-details span {
    display: block;
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.c-details strong {
    color: white;
    font-size: 1.1rem;
    display: block;
    word-break: break-all; /* Long email fix for small screens */
}

.contact-box:hover .c-details span,
.contact-box:hover .c-details strong {
    color: white;
}
/* Container */
.s-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer */
.footer-section {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    border-top: 4px solid #0ea5e9;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Logo */
.footer-logo {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-logo span {
    color: #0ea5e9;
    font-weight: 300;
}

.prop-text {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 10px 0;
}

/* ISO Box */
.iso-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 165, 233, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    border: 1px solid #0ea5e9;
    margin: 15px 0;
}

.iso-box i { color: #ffd700; }

/* Titles */
.column-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.column-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: #0ea5e9;
}

/* Services */
.footer-services {
    list-style: none;
    padding: 0;
}

.footer-services li {
    margin: 10px 0;
    color: #94a3b8;
    display: flex;
    gap: 10px;
    transition: 0.3s;
}

.footer-services li i {
    color: #0ea5e9;
}

.footer-services li:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Contact */
.contact-box {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #94a3b8;
    text-decoration: none;
}

.contact-box i {
    color: #0ea5e9;
}

.contact-box:hover {
    color: #fff;
}

/* Email Fix */
.email-box p {
    word-break: break-word;
}

/* Social */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #0ea5e9;
}

/* Hover Effect */
.footer-column:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* about us section css start */
.about-hero-vault {
    width: 100%;
    height: 400px;
    background: var(--deep-vault);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Background Glow */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

/* --- THE UNIQUE CYBER-SHELL CONTAINER --- */
.cyber-shell {
    position: relative;
    width: 90%;
    max-width: 1100px;
    height: 320px; /* Fitting inside 400px parent */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    padding: 40px;
    display: flex;
    align-items: center;
}

/* Unique Brackets for the Container */
.bracket {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--neon-blue);
    transition: 0.5s;
}
.top-left { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.top-right { top: -5px; right: -5px; border-left: none; border-bottom: none; }
.bottom-left { bottom: -5px; left: -5px; border-right: none; border-top: none; }
.bottom-right { bottom: -5px; right: -5px; border-left: none; border-top: none; }

.cyber-shell:hover .bracket {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

/* Content Styling */
.content-box { width: 100%; }

.meta-data {
    font-size: 0.75rem;
    color: var(--neon-blue);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    position: relative;
}

.scan-line {
    width: 40px;
    height: 2px;
    background: var(--neon-blue);
    display: inline-block;
}

.vault-title {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    line-height: 0.9;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.glitch-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}

.vault-p {
    color: #94a3b8;
    max-width: 550px;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.highlight { color: #fff; font-weight: 600; }

/* Badge Row */
.badge-row { display: flex; gap: 20px; align-items: center; }

.iso-tag {
    font-size: 0.8rem;
    color: #fff;
    background: rgba(255,255,255,0.05);
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.call-action {
    text-decoration: none;
    color: var(--deep-vault);
    background: var(--neon-blue);
    padding: 9px 20px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 2px;
    transition: 0.3s;
}

.call-action:hover {
    box-shadow: 0 0 20px var(--neon-blue);
    transform: scale(1.05);
}

 .cvv-section {
            /* Variables specifically for this section */
            --cvv-bg-white: #ffffff;
            --cvv-bg-light: #f8fafc;
            --cvv-text-dark: #0f172a;
            --cvv-text-gray: #64748b;
            --cvv-primary: #0ea5e9;
            --cvv-neon: #00d2ff;
            --cvv-border: #e2e8f0;
            --cvv-shadow: 0 10px 30px rgba(14, 165, 233, 0.08);
            --cvv-shadow-hover: 0 15px 35px rgba(14, 165, 233, 0.15);
            --cvv-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

            background-color: var(--cvv-bg-white);
            padding: 50px 15px; /* 15px perfect for 320px mobile */
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            position: relative;
            overflow: hidden;
        }

        /* Soft background accent */
        .cvv-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .cvv-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* --- Header Styles --- */
        .cvv-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .cvv-badge {
            display: inline-block;
            background: rgba(14, 165, 233, 0.1);
            color: var(--cvv-primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .cvv-title {
            font-size: 2rem;
            color: var(--cvv-text-dark);
            font-weight: 800;
            line-height: 1.2;
            margin: 0;
        }

        /* --- Vision Card (Premium Highlight) --- */
        .cvv-vision-card {
            background: linear-gradient(145deg, var(--cvv-bg-white) 0%, var(--cvv-bg-light) 100%);
            border: 1px solid var(--cvv-border);
            border-left: 5px solid var(--cvv-primary);
            border-radius: 16px;
            padding: 30px 20px;
            margin-bottom: 40px;
            box-shadow: var(--cvv-shadow);
            text-align: center;
            transition: var(--cvv-transition);
        }

        .cvv-vision-card:hover {
            box-shadow: var(--cvv-shadow-hover);
            transform: translateY(-3px);
        }

        .cvv-vision-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: var(--cvv-bg-white);
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            color: var(--cvv-primary);
            margin-bottom: 15px;
        }

        .cvv-vision-card h3 {
            font-size: 1.4rem;
            color: var(--cvv-text-dark);
            margin: 0 0 15px 0;
        }

        .cvv-vision-card p {
            font-size: 1rem;
            color: var(--cvv-text-gray);
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }

        /* --- Core Values Grid --- */
        .cvv-values-grid {
            display: grid;
            grid-template-columns: 1fr; /* Default 1 column for 320px */
            gap: 20px;
        }

        /* Value Item */
        .cvv-value-item {
            background: var(--cvv-bg-white);
            border: 1px solid var(--cvv-border);
            border-radius: 12px;
            padding: 25px 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            transition: var(--cvv-transition);
            position: relative;
            overflow: hidden;
        }

        /* Top Border Line Effect on Hover */
        .cvv-value-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--cvv-primary), var(--cvv-neon));
            transition: var(--cvv-transition);
        }

        .cvv-value-item:hover {
            box-shadow: var(--cvv-shadow-hover);
            border-color: transparent;
            transform: translateY(-5px);
        }

        .cvv-value-item:hover::before {
            width: 100%;
        }

        .cvv-icon-box {
            width: 50px;
            height: 50px;
            background: var(--cvv-bg-light);
            border: 1px solid var(--cvv-border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cvv-primary);
            margin-bottom: 20px;
            transition: var(--cvv-transition);
        }

        .cvv-value-item:hover .cvv-icon-box {
            background: var(--cvv-primary);
            color: var(--cvv-bg-white);
            border-color: var(--cvv-primary);
            transform: scale(1.05);
        }

        .cvv-value-item h4 {
            font-size: 1.15rem;
            color: var(--cvv-text-dark);
            margin: 0 0 10px 0;
        }

        .cvv-value-item p {
            font-size: 0.9rem;
            color: var(--cvv-text-gray);
            line-height: 1.6;
            margin: 0;
        }

/* about us section css end */
/* contact us csss start  */
.chu-header-section {
            /* Variables */
            --chu-dark: #0f172a;
            --chu-primary: #0ea5e9;
            --chu-neon: #00d2ff;
            --chu-white: #ffffff;
            --chu-text-light: #f8fafc;
            --chu-text-muted: #94a3b8;
            
            position: relative;
            width: 100%;
            min-height: 400px; /* Fixed height for Desktop */
            background: linear-gradient(135deg, var(--chu-dark) 0%, #1e293b 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            text-align: center;
            padding: 0 15px;
            z-index: 1;
        }

        /* Animated Background Shapes */
        .chu-bg-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--chu-primary), var(--chu-neon));
            filter: blur(60px);
            opacity: 0.4;
            z-index: -1;
            animation: chu-float 8s infinite alternate ease-in-out;
        }

        .chu-shape-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            left: -50px;
        }

        .chu-shape-2 {
            width: 250px;
            height: 250px;
            bottom: -50px;
            right: -50px;
            animation-delay: -4s;
        }

        @keyframes chu-float {
            0% { transform: translateY(0) scale(1); }
            100% { transform: translateY(30px) scale(1.1); }
        }

        /* Container Content */
        .chu-container {
            position: relative;
            max-width: 800px;
            width: 100%;
            z-index: 2;
            padding-bottom: 40px; /* Space for the wave */
        }

        /* Breadcrumbs */
        .chu-breadcrumbs {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 6px 16px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            margin-bottom: 20px;
            font-size: 0.85rem;
            color: var(--chu-text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .chu-breadcrumbs a {
            color: var(--chu-primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .chu-breadcrumbs a:hover {
            color: var(--chu-neon);
        }

        .chu-breadcrumbs span {
            color: var(--chu-text-muted);
        }

        /* Header Text */
        .chu-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--chu-white);
            margin: 0 0 15px 0;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        .chu-title span {
            color: transparent;
            background: linear-gradient(90deg, var(--chu-primary), var(--chu-neon));
            -webkit-background-clip: text;
            background-clip: text;
        }

        .chu-subtitle {
            font-size: 1.1rem;
            color: var(--chu-text-light);
            line-height: 1.6;
            margin: 0 auto;
            max-width: 600px;
            opacity: 0.9;
        }

        /* Bottom Wave Divider */
        .chu-wave {
            position: absolute;
            bottom: -1px; /* -1px fixes small gap issues */
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            z-index: 2;
        }

        .chu-wave svg {
            display: block;
            width: calc(100% + 1.3px);
            height: 60px; /* Wave height */
        }

        .chu-wave path {
            fill: #ffffff; /* Matches your website's white background */
        }
  .cfu-section {
            /* Color Palette */
            --cfu-dark: #0f172a;
            --cfu-primary: #0ea5e9;
            --cfu-neon: #00d2ff;
            --cfu-gray: #64748b;
            --cfu-light-bg: #f8fafc;
            --cfu-white: #ffffff;
            --cfu-border: #e2e8f0;
            --cfu-text-dark: #0f172a;
            --cfu-text-light: #f8fafc;
            
            background-color: var(--cfu-white);
            padding: 60px 15px; /* 15px padding for 320px mobile */
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        .cfu-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Main Wrapper - Box containing Info and Form */
        .cfu-wrapper {
            background: var(--cfu-white);
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
            display: flex;
            flex-direction: column; /* Stack on mobile */
            overflow: hidden;
            border: 1px solid var(--cfu-border);
        }

        /* ==================== 
           LEFT: CONTACT INFO 
           ==================== */
        .cfu-info {
            background: linear-gradient(135deg, var(--cfu-dark) 0%, #1e293b 100%);
            color: var(--cfu-text-light);
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
        }

        /* Background glow in info box */
        .cfu-info::before {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: var(--cfu-primary);
            filter: blur(80px);
            opacity: 0.5;
            border-radius: 50%;
        }

        .cfu-info h3 {
            font-size: 1.8rem;
            margin: 0 0 10px 0;
            color: var(--cfu-white);
            position: relative;
            z-index: 2;
        }

        .cfu-info p {
            color: #cbd5e1;
            font-size: 0.95rem;
            margin-bottom: 30px;
            line-height: 1.5;
            position: relative;
            z-index: 2;
        }

        .cfu-details-list {
            list-style: none;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .cfu-details-list li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }

        .cfu-icon {
            color: var(--cfu-neon);
            flex-shrink: 0;
            margin-top: 3px;
        }

        .cfu-text h4 {
            margin: 0 0 5px 0;
            font-size: 1rem;
            color: var(--cfu-white);
            font-weight: 600;
        }

        .cfu-text span {
            color: #cbd5e1;
            font-size: 0.9rem;
            line-height: 1.5;
            display: block;
            /* Prevents long email/address from breaking 320px screen */
            word-break: break-word; 
        }

        /* ==================== 
           RIGHT: CONTACT FORM 
           ==================== */
        .cfu-form-box {
            padding: 40px 30px;
            background: var(--cfu-white);
            flex: 1; /* Takes remaining space on desktop */
        }

        .cfu-form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .cfu-input-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cfu-input-group label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--cfu-text-dark);
        }

        .cfu-input, .cfu-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1.5px solid var(--cfu-border);
            border-radius: 8px;
            font-size: 0.95rem;
            background: var(--cfu-light-bg);
            color: var(--cfu-text-dark);
            outline: none;
            transition: all 0.3s ease;
            font-family: inherit;
            box-sizing: border-box; /* Ensures padding doesn't increase width */
        }

        .cfu-textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Focus Effects */
        .cfu-input:focus, .cfu-textarea:focus {
            border-color: var(--cfu-primary);
            background: var(--cfu-white);
            box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
        }

        /* Submit Button */
        .cfu-btn {
            background: linear-gradient(90deg, var(--cfu-primary), var(--cfu-neon));
            color: var(--cfu-white);
            border: none;
            padding: 14px 25px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 10px;
            width: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
        }

        .cfu-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
        }

         .cloc-section {
            --cloc-primary: #0ea5e9;
            --cloc-neon: #00d2ff;
            --cloc-dark: #0f172a;
            --cloc-gray: #64748b;
            --cloc-bg: #f8fafc;
            --cloc-white: #ffffff;
            --cloc-border: #e2e8f0;
            --cloc-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);

            background-color: var(--cloc-bg);
            padding: 60px 15px; /* 15px safe for 320px */
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        .cloc-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Header */
        .cloc-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .cloc-header h2 {
            font-size: 2.2rem;
            color: var(--cloc-dark);
            margin: 0 0 10px 0;
            font-weight: 800;
        }

        .cloc-header p {
            color: var(--cloc-gray);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Wrapper Card */
        .cloc-wrapper {
            background: var(--cloc-white);
            border-radius: 24px;
            box-shadow: var(--cloc-shadow);
            border: 1px solid var(--cloc-border);
            padding: 20px;
            display: flex;
            flex-direction: column; /* Mobile first: stacked */
            gap: 20px;
        }

        /* Left Info Side */
        .cloc-info {
            padding: 20px 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .cloc-icon-box {
            width: 60px;
            height: 60px;
            background: rgba(14, 165, 233, 0.1);
            color: var(--cloc-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .cloc-info h3 {
            font-size: 1.5rem;
            color: var(--cloc-dark);
            margin: 0 0 15px 0;
        }

        .cloc-address {
            color: var(--cloc-gray);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            /* Prevents long text from breaking 320px screen */
            word-break: break-word; 
        }

        /* Get Directions Button */
        .cloc-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(90deg, var(--cloc-primary), var(--cloc-neon));
            color: var(--cloc-white);
            padding: 14px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
            width: 100%; /* Full width on mobile */
        }

        .cloc-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(14, 165, 233, 0.35);
        }

        /* Right Map Side */
        .cloc-map-box {
            width: 100%;
            height: 350px; /* Default mobile height */
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            background: #e5e7eb; /* Fallback color */
        }

        .cloc-map-box iframe {
            width: 100%;
            height: 100%;
            border: none;
            position: absolute;
            top: 0;
            left: 0;
        }

/* contact us csss end */
/* service css start */
/* Header Main Container */
.service-header {
    position: relative;
    width: 100%;
    height: 400px; /* Fixed height for desktop */
    /* Background image with dark gradient overlay */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: #ffffff;
}

/* Content Wrapper */
.header-content {
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

/* Badge Styling */
.badge {
    background-color: #4F46E5; /* Indigo color */
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Heading Styling */
.header-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Paragraph Styling */
.header-content p {
    font-size: 16px;
    color: #D1D5DB;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Buttons Container */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Button Styling */
.btn-primary, .btn-secondary {
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4F46E5;
    color: #ffffff;
    border: 2px solid #4F46E5;
}

.btn-primary:hover {
    background-color: #4338CA;
    border-color: #4338CA;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #0f172a;
    transform: translateY(-2px);
}

/* Simple Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* service css end */
/* cctv css start  */
/* --- MAIN HEADER --- */
.cctv-header {
    position: relative;
    width: 100%;
    height: 400px; /* Fixed Height */
    /* Background Image mixed with Dark Color */
    background: linear-gradient(90deg, var(--dark) 10%, transparent 100%), 
                url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=80') right/cover no-repeat;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    overflow: hidden; /* To keep scanner line inside */
}

/* Wrapper */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- UNIQUE GLASSMORPHISM PANEL --- */
.glass-panel {
    max-width: 550px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    border-left: 5px solid var(--accent); /* Thick accent line on left */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: slideIn 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- LIVE PULSE BADGE --- */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #ef4444; /* Red dot for CCTV */
    border-radius: 50%;
    box-shadow: 0 0 10px #ef4444;
    animation: pulse 1.2s infinite;
}

.live-badge span {
    color: var(--text-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- TYPOGRAPHY --- */
.glass-panel h1 {
    font-size: 40px;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
}

/* Text Glowing Effect */
.highlight {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.glass-panel p {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- UNIQUE BUTTONS --- */
.action-buttons {
    display: flex;
    gap: 15px;
}

.btn-glow, .btn-ghost {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-glow {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
    border: 1px solid var(--primary);
}

.btn-glow:hover {
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.7);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
    background: var(--text-light);
    color: var(--dark);
    transform: translateY(-2px);
}

/* --- BACKGROUND SCANNER ANIMATION --- */
.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 15px 3px var(--accent);
    opacity: 0.4;
    animation: scanLine 4s linear infinite;
    z-index: 0;
}

/* --- ANIMATIONS --- */
@keyframes scanLine {
    0% { top: -10px; opacity: 0; }
    10% { opacity: 0.5; }
    50% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { top: 100%; opacity: 0; }
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(0.95); opacity: 1; }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
/* --- SECTION MAIN CONTAINER --- */
.cctv-light-section {
    background-color: var(--bg-white);
    padding: 100px 20px;
    position: relative;
    overflow: hidden; /* Prevent glowing elements from overflowing */
}

/* Background Unique Glows */
.bg-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.08; /* Very subtle blue glow on white bg */
    border-radius: 50%;
    z-index: 0;
}
.bg-glow.top-left { top: -100px; left: -100px; }
.bg-glow.bottom-right { bottom: -100px; right: -100px; }

.d-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* Keep content above glows */
    display: flex;
    align-items: center;
    gap: 50px;
}

/* --- LEFT HEADER STYLE --- */
.section-header {
    flex: 1;
    max-width: 400px;
}

.sub-heading {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-header h2 span {
    color: var(--accent);
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 16px;
    color: #475569; /* Soft greyish blue for text */
    line-height: 1.7;
    font-weight: 400;
}

/* --- UNIQUE TECH GRID --- */
.tech-grid {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* --- GEOMETRIC CARD DESIGN --- */
.tech-card {
    background-color: var(--bg-white);
    padding: 35px 25px;
    position: relative;
    overflow: hidden;
    /* UNIQUE SHAPE: Top-Right corner is sharp, others are rounded */
    border-radius: 20px 4px 20px 20px; 
    border: 1px solid rgba(15, 23, 42, 0.05); /* Very light border */
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.03); /* Soft shadow */
    transition: all 0.4s ease;
    z-index: 1;
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

/* Small Active Icon */
.card-icon {
    width: 50px;
    height: 50px;
    /* background: var(--dark); */
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 12px 4px 12px 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tech-card:hover .card-icon {
    background: var(--accent);
}

.tech-card h3 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* --- BACKGROUND WATERMARK ICON (UNIQUE FEATURE) --- */
.watermark {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 100px;
    color: rgba(14, 165, 233, 0.04); /* Extremely light blue watermark */
    z-index: -1;
    transform: rotate(-15deg);
    transition: all 0.4s ease;
}

.tech-card:hover .watermark {
    color: rgba(14, 165, 233, 0.08);
    transform: rotate(0deg) scale(1.1);
}
  .cctv-container {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Unique Section Title with "REC" dot */
        .unique-title {
            position: relative;
            margin-bottom: 80px;
            text-align: left;
        }

        .unique-title h2 {
            font-size: clamp(1.8rem, 6vw, 3.5rem);
            color: var(--dark);
            text-transform: uppercase;
            font-weight: 900;
            line-height: 0.9;
        }

        .unique-title .rec-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #ef4444;
            border-radius: 50%;
            margin-right: 10px;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0% { opacity: 1; }
            50% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* Viewfinder Grid Layout */
        .viewfinder-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        /* The Unique "Viewfinder" Card */
        .security-card {
            background: var(--white);
            padding: 40px 30px;
            position: relative;
            border: 1px solid #e2e8f0;
            transition: all 0.4s ease;
            overflow: hidden;
        }

        /* The Bracket Corners - Unique CSS */
        .security-card::before, .security-card::after {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            transition: all 0.4s ease;
        }

        /* Top-Left Bracket */
        .security-card::before {
            top: 10px; left: 10px;
            border-top: 3px solid var(--gray);
            border-left: 3px solid var(--gray);
        }

        /* Bottom-Right Bracket */
        .security-card::after {
            bottom: 10px; right: 10px;
            border-bottom: 3px solid var(--gray);
            border-right: 3px solid var(--gray);
        }

        .security-card:hover {
            border-color: var(--primary);
            background: var(--dark);
            transform: scale(1.02);
        }

        .security-card:hover::before, .security-card:hover::after {
            border-color: var(--primary);
            width: 40px;
            height: 40px;
        }

        /* Scanning Line Animation */
        .scan-line {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--primary), transparent);
            opacity: 0;
            z-index: 10;
        }

        .security-card:hover .scan-line {
            animation: scan 2s linear infinite;
            opacity: 1;
        }

        @keyframes scan {
            0% { top: 0%; }
            100% { top: 100%; }
        }

        /* Content Styles */
        .icon-box {
            color: var(--primary);
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .security-card:hover .icon-box {
            transform: scale(1.2);
            color: var(--white);
        }

        .security-card h3 {
            color: var(--dark);
            font-size: 1.4rem;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .security-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .security-card:hover h3, .security-card:hover p {
            color: var(--text-light);
        }

/* cctv css end */
/* --- MOBILE STYLING (320px - 768px) --- */
    /* Desktops (1024px and up) */
        @media (min-width: 1024px) {
            .cvv-values-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
             .security-card:hover {
                box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.3);
            }
        }
@media screen and (max-width: 992px) {
    .wcu-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item {
        text-align: left; /* Text remains readable */
    }

    .wcu-image {
        display: none; /* Hide image on tablet to save space */
    }
     .about-wrapper {
        flex-direction: column;
    }
    
    .about-left {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 50px;
    }

    .about-right {
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }
     .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .cta-contact-info {
        width: 100%;
    }

    .contact-box {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
            .cfu-info {
                width: 350px;
                padding: 50px 40px;
            }
            .cfu-form-box {
                padding: 50px;
            }
            .cloc-wrapper {
                /* flex-direction: row; Side by side layout */
                align-items: stretch;
                padding: 25px;
            }
            .cloc-info {
                /* Fixed width for text part */
                padding: 30px;
            }
            .cloc-map-box {
                flex: 1; /* Takes remaining space */
                height: auto; /* Matches the height of the container */
                min-height: 400px;
            }
              .d-container {
        flex-direction: column;
        text-align: center;
    }
    .section-header {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    .tech-grid {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        transition: 0.4s ease;
        overflow-y: auto; /* Scroll agar lambi list ho */
    }

    .nav-links.show { right: 0; }

    .nav-item {
        width: 100%;
        font-size: 1.1rem;
        padding: 15px;
        border-bottom: 1px solid #1e293b;
    }

    /* Mobile Dropdown Fix */
    .dropdown-menu {
        position: static;
        width: 100%;
        background: #1e293b;
        display: none; /* JS se control hoga */
        box-shadow: none;
    }

    .dropdown-menu.active-drop {
        display: block;
    }

    .dropdown-menu li a {
        color: #cbd5e1;
        padding-left: 40px;
    }

    .arrow-icon {
        margin-left: auto;
        transition: 0.3s;
    }

    .rotate-arrow { transform: rotate(180deg); }

    /* Hamburger Animation */
    .open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .open span:nth-child(2) { opacity: 0; }
    .open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
     .hero-container { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-btns { flex-direction: column; }
    .hero-image { order: -1; }
     .section-title { font-size: 2rem; }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
     .cvv-section { padding: 80px 30px; }
            .cvv-title { font-size: 2.5rem; }
            .cvv-vision-card { padding: 40px; border-left-width: 8px; }
            .chu-title {
                font-size: 2.8rem;
            }
            .chu-header-section {
                min-height: 350px;
            }
            /* .cvv-values-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; } */

            .cfu-section { padding: 80px 30px; }
            .cfu-form-grid { 
                grid-template-columns: 1fr 1fr; /* 2 columns for inputs */
            }
            .cfu-full-width {
                grid-column: span 2; /* Make Subject and Message full width */
            }
            .cfu-btn {
                width: auto; /* Button doesn't need to be full width on desktop */
                padding: 14px 40px;
            }
             .cloc-btn { width: auto; /* Revert full width */ }
            .cloc-map-box { height: 400px; }
             .header-content h1 {
        font-size: 32px;
    }
    .header-content p {
        font-size: 15px;
    }
     .glass-panel {
        padding: 30px;
    }
    .glass-panel h1 { font-size: 32px; }
}
/* Mobile */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-services li,
    .contact-box,
    .social-icons,
    .iso-box {
        justify-content: center;
    }
}
@media screen and (max-width: 480px) {
    .wcu-title {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
     .footer-section { text-align: center; }
    .column-title::after { left: 50%; transform: translateX(-50%); }
    .iso-box, .social-icons, .contact-box { justify-content: center; }
     .service-header {
        height: auto;
        min-height: 400px;
        padding: 50px 15px;
    }
    .badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 15px;
    }
    .header-content h1 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .header-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    /* 320px ke liye buttons vertical ho jayenge */
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
     .cctv-header {
        height: auto;
        min-height: 400px;
        padding: 40px 0;
        /* Mobile par image ko center karte hain */
        background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9)), 
                    url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=800&q=80') center/cover;
    }
    
    .glass-panel {
        padding: 25px 20px;
        border-left: none;
        border-top: 4px solid var(--accent); /* Accent line moved to top for mobile */
        border-radius: 12px;
    }

    /* Perfect for 320px screen */
    .glass-panel h1 {
        font-size: 26px;
    }

    .glass-panel p {
        font-size: 13px;
        margin-bottom: 25px;
    }

    /* Buttons Vertical on 320px */
    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-glow, .btn-ghost {
        width: 100%;
        padding: 14px 0;
    }
     .cctv-light-section {
        padding: 50px 15px;
    }

    .section-header h2 {
        font-size: 28px; /* Scales down perfectly for 320px */
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 14px;
        line-height: 1.5;
    }

    .tech-grid {
        grid-template-columns: 1fr; /* Stacks cards in 1 column */
        gap: 20px;
    }

    .tech-card {
        padding: 25px 20px;
        /* Simplify border radius for small screens */
        border-radius: 16px; 
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .tech-card h3 {
        font-size: 18px;
    }

    .tech-card p {
        font-size: 13px; /* Easy to read on 320px */
    }

    .watermark {
        font-size: 80px; /* Resize watermark for small screens */
    }
   
}
   @media (max-width: 360px) {
            .cvv-section { padding: 40px 15px; }
            .cvv-title { font-size: 1.6rem; }
            .cvv-vision-card { padding: 25px 15px; }
            .cvv-vision-card h3 { font-size: 1.25rem; }
            .cvv-vision-card p { font-size: 0.9rem; }
            .cvv-value-item { padding: 20px 15px; }
            .cvv-icon-box { width: 45px; height: 45px; margin-bottom: 15px; }
             .chu-header-section {
                min-height: 320px; /* Reduced height for very small screens */
                padding: 0 15px;
            }
            .chu-breadcrumbs {
                font-size: 0.75rem;
                padding: 5px 12px;
                margin-bottom: 15px;
            }
            .chu-title {
                font-size: 2rem; /* Avoids text clipping on 320px */
            }
            .chu-subtitle {
                font-size: 0.9rem;
            }
            .chu-wave svg {
                height: 30px; /* Smaller wave for mobile */
            }
            .cfu-section { padding: 40px 10px; }
            .cfu-info { padding: 30px 20px; }
            .cfu-form-box { padding: 30px 20px; }
            .cfu-info h3 { font-size: 1.5rem; }
            .cfu-text h4 { font-size: 0.95rem; }
            .cfu-text span { font-size: 0.85rem; }
            .cfu-details-list li { gap: 10px; }
            .cloc-section { padding: 40px 10px; }
            .cloc-header h2 { font-size: 1.8rem; }
            .cloc-wrapper { padding: 15px; border-radius: 20px; }
            .cloc-info { padding: 10px 5px; }
            .cloc-icon-box { width: 50px; height: 50px; margin-bottom: 15px; }
            .cloc-info h3 { font-size: 1.3rem; }
            .cloc-address { font-size: 0.95rem; }
            .cloc-map-box { height: 250px; border-radius: 12px; }
              .cctv-container {
                padding: 40px 15px;
            }
            .viewfinder-grid {
                grid-template-columns: 1fr;
            }
            .unique-title h2 {
                font-size: 1.8rem;
            }
            .security-card {
                padding: 30px 20px;
            }
        }
/* 320px Screen Special Optimization */

@media screen and (max-width: 320px) {
     .logo { font-size: 0.95rem; }
    .container { padding: 0 10px; }
    .hero { padding: 40px 10px; }
    .hero-content h1 { font-size: 1.4rem; }
    .hero-content p { font-size: 0.9rem; }
     .services-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
        padding: 0 5px;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Sirf 1 column 320px par */
        gap: 20px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
     .why-choose-us {
        padding: 50px 0;
    }

    .wcu-title {
        font-size: 1.5rem;
    }

    .wcu-desc {
        font-size: 0.85rem;
    }

    .feature-item {
        flex-direction: column; /* Stack icon on top for tiny screens */
        text-align: center;
        padding: 20px 10px;
    }

    .f-icon {
        margin-right: 0;
        margin-bottom: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .f-text h4 {
        font-size: 1rem;
    }

    .f-text p {
        font-size: 0.8rem;
    }

    .feature-item:hover {
        transform: translateY(-5px); /* Move up instead of right on 320px */
        border-left: none;
        border-top: 4px solid #0ea5e9;
    }
      .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 1.6rem;
    }

    .about-desc {
        font-size: 0.85rem;
    }

    .exp-badge {
        padding: 15px;
        bottom: -5px;
        right: -5px;
    }

    .exp-num {
        font-size: 1.5rem;
    }

    .about-features {
        grid-template-columns: 1fr; /* Stack features in 1 column */
        text-align: left;
    }

    .btn-about {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%; /* Full width button for small screens */
        justify-content: center;
    }
      .cta-consultation {
        padding: 40px 10px;
    }

    .cta-card {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-desc {
        font-size: 0.85rem;
    }

    .contact-box {
        padding: 15px 10px;
        flex-direction: column; /* Icon upar, text niche */
        gap: 10px;
        text-align: center;
    }

    .c-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .c-details strong {
        font-size: 0.9rem;
    }

    .email-text {
        font-size: 0.75rem !important; /* Email ko chota kiya takki screen se bahar na jaye */
    }

    .contact-box:hover {
        transform: translateY(-5px); /* Mobile par side ki jagah upar jump */
    }
     .footer-logo { font-size: 1.3rem; }
    .contact-box p { font-size: 0.8rem; }
    
    /* Email word break prevent layout break */
    .email-box p {
        word-break: break-all;
        font-size: 0.75rem;
    }

    .column-title { font-size: 1.1rem; }
/*     
    .footer-section {
        padding-top: 50px;
    } */
}
    