

/* header */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8f9fa;
            scroll-behavior: smooth;
            line-height: 1.6;
        }

        /* Top Info Ticker */
        .top-info {
            background: #07917f;
            color: rgb(0, 0, 0);
            padding: 6px 0; /* Reduced padding */
            font-size: 11px; /* Reduced font size */
            position: relative;
            overflow: hidden;
        }

        .ticker-wrap {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .ticker {
            display: inline-flex;
            white-space: nowrap;
            animation: ticker 20s linear infinite;
        }

        .ticker-item {
            flex: 0 0 auto;
            padding: 0 1.5rem; /* Reduced padding */
        }

        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Header - Reduced size by 20% */
        .header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            padding: 12px 16px; /* Reduced from 15px 20px */
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 19px; /* Reduced from 24px */
            font-weight: bold;
            color: #00d4aa;
            text-decoration: none;
            position: relative;
            transition: all 0.3s ease;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -4px; /* Adjusted */
            left: 0;
            width: 0;
            height: 2px;
            background: #00d4aa;
            transition: width 0.3s ease;
        }

        .logo:hover::after {
            width: 100%;
        }

        .logo:hover {
            transform: translateY(-2px);
            text-shadow: 0 5px 15px rgba(0, 212, 170, 0.4);
        }

        .location {
            display: flex;
            align-items: center;
            color: #ecf0f1;
            font-weight: 500;
            cursor: pointer;
            padding: 8px 13px; /* Reduced from 10px 16px */
            border-radius: 10px; /* Reduced from 12px */
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }

        .location:hover {
            background: #00d4aa;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
            border-color: #00d4aa;
        }

        .location-icon {
            margin-right: 6px; /* Reduced from 8px */
            font-size: 14px; /* Reduced from 16px */
        }

        .nav-right {
            position: relative;
        }

        .menu-btn {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            font-size: 16px; /* Reduced from 20px */
            cursor: pointer;
            padding: 10px; /* Reduced from 12px */
            border-radius: 10px; /* Reduced from 12px */
            transition: all 0.3s ease;
            color: #ecf0f1;
            backdrop-filter: blur(10px);
        }

        .menu-btn:hover {
            background: rgba(0, 212, 170, 0.2);
            color: #00d4aa;
            transform: rotate(90deg) scale(1.1);
            border-color: #00d4aa;
            box-shadow: 0 8px 25px rgba(0, 212, 170, 0.2);
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 120%;
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            min-width: 250px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.3);
            border-radius: 16px;
            z-index: 1001;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(20px);
            transform: translateY(-10px) scale(0.95);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .dropdown-content.show {
            display: block;
            transform: translateY(0) scale(1);
            opacity: 1;
        }

        .dropdown-content a {
            color: #ecf0f1;
            padding: 16px 20px;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background: rgba(0, 212, 170, 0.1);
            color: #00d4aa;
            padding-left: 30px;
            transform: translateX(5px);
            border-left: 3px solid #00d4aa;
        }

        .menu-icon {
            margin-right: 12px;
            font-size: 18px;
            width: 20px;
            text-align: center;
        }

        /* Loading Bar */
        .nav-loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #00d4aa, #00b894, #00d4aa);
            background-size: 200% 100%;
            z-index: 9999;
            transform: scaleX(0);
            transform-origin: left;
        }

        .nav-loading.active {
            animation: loadingActive 0.8s ease-out forwards;
        }

        @keyframes loadingActive {
            0% { transform: scaleX(0); }
            50% { transform: scaleX(0.7); }
            100% { transform: scaleX(1); opacity: 0; }
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            margin: 20px auto;
            border-radius: 12px;
            overflow: hidden;
            height: 180px;
            max-width: 1200px;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 30px;
            color: white;
            transform: translateX(100%);
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
            opacity: 0;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            transform: translateX(30px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
        }

        .slide.active {
            transform: translateX(0);
            opacity: 1;
        }

        .slide.active .slide-content {
            transform: translateX(0);
            opacity: 1;
        }

        .slide-content h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .slide-content p {
            font-size: 16px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .cta-btn {
            background: white;
            color: #667eea;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

/* Services Section */
.services-section {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.services-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Add this media query for larger screens */
@media (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .service-card {
        height: 85px;
    }
    
    .service-content {
        padding: 10px 12px;
    }
    
    .service-title {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .service-description {
        font-size: 8px;
        margin-bottom: 5px;
    }
    
    .service-price {
        font-size: 11px;
    }
}

.location-item {
    text-decoration: none;  /* removes underline */
    color: inherit;         /* keeps text color same */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.location-item:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}


.service-item {
    background: #2c3e50;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid #34495e;
}

.service-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transform: translateY(-1px);
}

.service-card {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0;
}

.service-content {
    flex: 1;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-title {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 4px;
}

.service-description {
    font-size: 9px;
    color: #bdc3c7;
    line-height: 1.2;
    margin-bottom: 6px;
}

.service-price {
    font-size: 12px;
    font-weight: bold;
    color: #00d4aa;
}

.service-image {
    width: 35%;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 10px;
    }

    .logo {
        font-size: 16px; /* Reduced from 20px */
    }

    .location {
        font-size: 12px; /* Reduced from 14px */
        padding: 6px 10px; /* Reduced from 8px 12px */
    }

    .menu-btn {
        padding: 8px; /* Reduced from 10px */
        font-size: 14px; /* Reduced from 18px */
    }

    .dropdown-content {
        min-width: 220px;
        right: -10px;
    }

    .hero-slider {
        height: 154px;
        margin: 10px 0 20px 0;
        border-radius: 0;
    }

    .slide {
        padding: 15px;
    }

    .slide-content h2 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .slide-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .cta-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .services-section {
        padding: 0 3%;
    }

    .services-grid {
        gap: 10px;
    }

    .service-card {
        height: 75px;
    }

    .service-content {
        padding: 10px 12px;
    }

    .service-title {
        font-size: 10px;
        margin-bottom: 3px;
    }

    .service-description {
        font-size: 8px;
        margin-bottom: 5px;
    }

    .service-price {
        font-size: 11px;
    }

    .service-image {
        height: 75px;
    }
    
    .location-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .location-card {
        width: 50px;
        height: 50px;
    }
}        /* Location Popup Styles */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            display: none;
            z-index: 1000;
        }

        .popup-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .popup-content {
            background: white;
            border-radius: 12px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .popup-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding: 20px;
        }

        .popup-title {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        .close-btn {
            background: #f0f0f0;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: #666;
            padding: 8px;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: #ff4757;
            color: white;
            transform: rotate(90deg);
        }

        .location-search {
            position: relative;
            margin-bottom: 25px;
            padding: 0 20px;
        }

        .location-search input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            outline: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .location-search input:focus {
            border-color: #00d4aa;
            box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
        }

        .location-search-icon {
            position: absolute;
            right: 35px;
            top: 50%;
            transform: translateY(-50%);
            color: #666;
            font-size: 18px;
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            padding: 0 20px 20px;
        }

        .location-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            padding: 15px;
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .location-item:hover {
            background: #f8f9fa;
            border-color: #00d4aa;
            transform: translateY(-3px);
        }

        .location-card {
            background: linear-gradient(135deg, #00d4aa, #00b894);
            border-radius: 12px;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            font-size: 24px;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
        }

        .location-name {
            font-size: 14px;
            color: #333;
            font-weight: 600;
            text-align: center;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 10px;
            }

            .logo {
                font-size: 16px; /* Reduced from 20px */
            }

            .location {
                font-size: 12px; /* Reduced from 14px */
                padding: 6px 10px; /* Reduced from 8px 12px */
            }

            .menu-btn {
                padding: 8px; /* Reduced from 10px */
                font-size: 14px; /* Reduced from 18px */
            }

            .dropdown-content {
                min-width: 220px;
                right: -10px;
            }

            .hero-slider {
                height: 154px;
                margin: 10px 0 20px 0;
                border-radius: 0;
            }

            .slide {
                padding: 15px;
            }

            .slide-content h2 {
                font-size: 16px;
                margin-bottom: 6px;
            }

            .slide-content p {
                font-size: 12px;
                margin-bottom: 12px;
            }

            .cta-btn {
                padding: 6px 12px;
                font-size: 12px;
            }

            .services-section {
                padding: 0 3%;
            }

            .services-grid {
                gap: 10px;
            }

            .service-card {
                height: 75px;
            }

            .service-content {
                padding: 10px 12px;
            }

            .service-title {
                font-size: 10px;
                margin-bottom: 3px;
            }

            .service-description {
                font-size: 8px;
                margin-bottom: 5px;
            }

            .service-price {
                font-size: 11px;
            }

            .service-image {
                height: 75px;
            }
            
            .location-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .location-card {
                width: 50px;
                height: 50px;
            }
        }



*{margin:0;padding:0;box-sizing:border-box}html,body{font-family:'Poppins',sans-serif;background:#f8f9fa;line-height:1.6;width:100%;overflow-x:hidden;color:#383c3d}.hero{height:28vh;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;color:white;padding:0 5%}.hero h1{font-size:2.1rem;margin-bottom:.7rem;font-weight:700;text-shadow:0 2px 10px rgba(0,0,0,.3)}.hero p{font-size:.84rem;max-width:700px}.problems-section{width:100%;padding:56px 5%;background:linear-gradient(135deg,#2c3e50,#394a5a);color:white}.section-title{text-align:center;margin-bottom:35px}.section-title h2{font-size:1.5rem;color:white;margin-bottom:10.5px;position:relative;display:inline-block}.section-title h2:after{content:'';position:absolute;bottom:-7px;left:50%;transform:translateX(-50%);width:56px;height:2.8px;background:#00d4aa;border-radius:2px}.section-title p{color:#ddd;max-width:700px;margin:14px auto 0;font-size:.77rem}.problems-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:21px}.problem-item{background:rgba(255,255,255,.1);border-radius:7px;overflow:hidden;transition:all .3s ease;box-shadow:0 3.5px 10.5px rgba(0,0,0,.1);display:flex;flex-direction:column;height:100%}.problem-item:hover{transform:translateY(-7px);box-shadow:0 10.5px 21px rgba(0,0,0,.2);background:rgba(255,255,255,.15)}.problem-image{height:140px;overflow:hidden;position:relative}.problem-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s}.problem-item:hover .problem-image img{transform:scale(1.05)}.problem-icon{position:absolute;top:10.5px;right:10.5px;background:rgba(0,0,0,.7);color:#00d4aa;width:35px;height:35px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.05rem}.problem-content{padding:17.5px;flex-grow:1;display:flex;flex-direction:column}.problem-item h4{color:#ff6b6b;margin-bottom:10.5px;font-size:.98rem;font-weight:600}.problem-item p{font-size:.7rem;opacity:.9;margin-bottom:14px;flex-grow:1}.solution{color:#00d4aa;font-size:.7rem;font-weight:600;padding-top:10.5px;border-top:.7px solid rgba(255,255,255,.1);display:flex;align-items:center}.solution i{margin-right:7px}.call-button{display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(45deg,#51b888,#73cea3);color:white;border:none;border-radius:20px;padding:6px 12px;font-size:.65rem;font-weight:600;margin-top:10px;cursor:pointer;text-decoration:none;transition:all .3s ease;box-shadow:0 2px 5px rgba(255,107,107,.3);align-self:center;animation:moveHorizontal 2s ease-in-out infinite;position:relative;overflow:hidden}@keyframes moveHorizontal{0%,100%{transform:translateX(0)}50%{transform:translateX(5px)}}@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(255,107,107,.7)}70%{box-shadow:0 0 0 10px rgba(255,107,107,0)}100%{box-shadow:0 0 0 0 rgba(255,107,107,0)}}.call-button i{margin-right:5px;font-size:.75rem;animation:shake 1.5s ease-in-out infinite}@keyframes shake{0%,100%{transform:rotate(0)}10%,30%,50%,70%,90%{transform:rotate(-10deg)}20%,40%,60%,80%{transform:rotate(10deg)}}.call-button:hover{transform:translateY(-2px) scale(1.05);box-shadow:0 4px 8px rgba(255,107,107,.4);background:linear-gradient(45deg,#ff5252,#ff7979);animation-play-state:paused}.call-button:hover i{animation-play-state:paused}.call-button:active{transform:translateY(0);box-shadow:0 1px 3px rgba(255,107,107,.4)}.call-button::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);transition:left .5s}.call-button:hover::before{left:100%}@media(max-width:768px){.hero{height:15vh}.hero h1{font-size:1.4rem}.problems-section{padding:20px 3%}.section-title{margin-bottom:15px}.section-title h2{font-size:1.2rem}.section-title h2:after{width:40px;height:2px}.problems-grid{grid-template-columns:1fr;gap:12px}.problem-item{display:flex;flex-direction:row;align-items:center;height:auto;border-radius:5px;padding:8px}.problem-item:nth-child(even){flex-direction:row-reverse}.problem-image{width:35%;height:80px;min-width:80px;border-radius:5px;overflow:hidden}.problem-icon{width:20px;height:20px;font-size:.7rem;top:5px;right:5px}.problem-content{width:65%;padding:8px}.problem-item h4{font-size:.75rem;margin-bottom:4px}.problem-item p{font-size:.55rem;margin-bottom:6px;line-height:1.2;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.solution{font-size:.55rem;padding-top:4px;border-top:none}.solution i{margin-right:4px}.call-button{padding:4px 8px;font-size:.55rem;margin-top:6px}.call-button i{font-size:.6rem;margin-right:3px}}



/* Global Box-Sizing Fix */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Wrapper */
/* Wrapper */
.cctv-content-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    padding: 0 10px;
    color: #444;
    background: #fff;
    width: 100%; /* full width on desktop */
    margin: 0;   /* remove center margin */
}

/* Main Heading */
.cctv-main-heading {
    color: #1a202c;
    font-size: 22px;
    font-weight: 700;
    margin: 35px 0 25px 0;
    border-bottom: 3px solid #0e9461;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraphs */
.cctv-content-para {
    text-align: justify;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Keyword Highlight */
.cctv-keyword-highlight {
    font-weight: 600;
    color: #0e9461;
    text-decoration: none;
}

/* Grid Container */
.cctv-services-grid {
    display: grid;
    gap: 25px;
    margin: 25px 0;
    grid-template-columns: 1fr 1fr 1fr; /* 3 columns on desktop */
}

/* Service Card */
.cctv-service-card {
    padding: 20px;
    border-left: 5px solid #0e9461;
    background: linear-gradient(135deg,#f8f9fa 0%,#e9ecef 100%);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform .3s ease;
    font-size: 12px;
}

.cctv-service-card:hover {
    transform: translateY(-2px);
}

/* Content Section */
.cctv-content-section {
    margin-top: -31px;
    padding: 20px 0;
}

/* Responsive for Mobile */
@media(max-width:768px){
    .cctv-content-wrapper {
        margin: 0;
        padding: 0 5px;
        width: 100%;
        overflow-x: hidden; /* prevent right side scroll issue */
    }
    .cctv-content-section {
        padding: 15px 0;
        margin-top: 0; /* remove negative margin */
    }
    .cctv-main-heading {
        font-size: 16px;
        padding-bottom: 10px;
        margin: 20px 0 15px 0;
    }
    .cctv-content-para {
        font-size: 11px;
        margin-bottom: 15px;
    }
    .cctv-services-grid {
        grid-template-columns: 1fr; /* single column on mobile */
        gap: 15px;
        margin: 15px 0;
    }
    .cctv-service-card {
        padding: 15px;
        font-size: 12px;
    }
    .cctv-content-section {
        padding: 15px 0;
        margin-top: -10px;
    }
}



/* ========== Slider Image BASE / DESKTOP ========== */
.cctv-bg-slider {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cctv-bg-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cctv-bg-slide {
  min-width: 100%;
  position: relative;
  height: 280px; /* Reduced height */
}

.cctv-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px); /* Blur effect */
  transform: scale(1.1); /* Slight zoom to cover blur edges */
  z-index: 1;
}

.cctv-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  z-index: 2;
}

.cctv-bg-content {
  position: relative;
  z-index: 3;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.cctv-bg-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cctv-bg-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #e74c3c;
  border-radius: 2px;
}

.cctv-bg-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 columns on desktop */
  gap: 12px;
}

.cctv-bg-list li {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px); /* Glass effect */
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  border-left: 3px solid #e74c3c;
  transition: all 0.3s ease;
  cursor: default;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  white-space: nowrap; /* Prevent text wrapping */
  overflow: hidden;
  text-overflow: ellipsis; /* Add ... for long text */
}

.cctv-bg-list li:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(5px);
}

.cctv-bg-indicators {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.cctv-bg-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cctv-bg-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.cctv-bg-indicator.cctv-active {
  background: #fff;
  border-color: #e74c3c;
  transform: scale(1.2);
}

.cctv-bg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.cctv-bg-slider:hover .cctv-bg-nav {
  opacity: 1;
  visibility: visible;
}

.cctv-bg-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cctv-bg-prev {
  left: 15px;
}

.cctv-bg-next {
  right: 15px;
}

/* ========== TABLET (≤768px) ========== */
@media (max-width: 768px) {
  .cctv-bg-slide {
    height: 220px; /* Reduced height */
  }
  
  .cctv-bg-content {
    padding: 20px;
  }
  
  .cctv-bg-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  .cctv-bg-list {
    grid-template-columns: 1fr 1fr; /* 2 columns on tablet */
    gap: 10px;
  }
  
  .cctv-bg-list li {
    font-size: 13px;
    padding: 8px 12px;
  }
  
  .cctv-bg-indicators {
    bottom: 15px;
    gap: 8px;
  }
  
  .cctv-bg-indicator {
    width: 10px;
    height: 10px;
  }
  
  .cctv-bg-nav {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* ========== MOBILE (≤480px) ========== */
@media (max-width: 480px) {
  .cctv-bg-slider {
    border-radius: 8px;
    margin: 0 10px;
  }
  
  .cctv-bg-slide {
    height: 240px; /* Increased height to show all keywords */
  }
  
  .cctv-bg-content {
    padding: 15px;
    display: block; /* Change to block for scrolling */
    overflow-y: auto; /* Enable vertical scrolling */
    scrollbar-width: thin; /* For Firefox */
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent; /* For Firefox */
  }
  
  /* For Webkit browsers */
  .cctv-bg-content::-webkit-scrollbar {
    width: 6px;
  }
  
  .cctv-bg-content::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .cctv-bg-content::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
  }
  
  .cctv-bg-title {
    font-size: 18px;
    margin-bottom: 12px;
    position: sticky; /* Keep title at top */
    top: 0;
    background: rgba(0, 0, 0, 0.5); /* Add background for readability */
    padding-bottom: 12px;
    z-index: 4;
  }
  
  .cctv-bg-title::after {
    width: 40px;
    height: 3px;
  }
  
  .cctv-bg-list {
    grid-template-columns: 1fr; /* 1 column on mobile */
    gap: 8px;
  }
  
  .cctv-bg-list li {
    font-size: 12px;
    padding: 6px 10px;
    line-height: 1.3;
    white-space: normal; /* Allow text wrapping on mobile */
    text-overflow: clip; /* Remove ellipsis */
  }
  
  .cctv-bg-indicators {
    bottom: 10px;
    gap: 6px;
  }
  
  .cctv-bg-indicator {
    width: 8px;
    height: 8px;
  }
  
  .cctv-bg-nav {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* ========== End Slider Image BASE / DESKTOP ========== */



/* About Us */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 12px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 51px 0;
            position: relative;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            align-items: center;
        }

        .hero-text {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease-out 0.5s forwards;
        }

        .hero-text h1 {
            font-size: 1.6rem;
            color: #2c3e50;
            margin-bottom: 13px;
            font-weight: bold;
        }

        .hero-text p {
            font-size: 0.77rem;
            color: #666;
            margin-bottom: 19px;
            line-height: 1.8;
        }

        .features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 9px;
            margin-bottom: 19px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            color: #2c3e50;
            opacity: 0;
            transform: translateY(20px);
            font-size: 0.72rem;
        }

        .feature-item::before {
            content: '✓';
            background: #ff6b35;
            color: white;
            width: 13px;
            height: 13px;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 7px;
            font-size: 9px;
        }

        .cta-button {
            background: transparent;
            color: #ff6b35;
            border: 2px solid #ff6b35;
            padding: 8px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.72rem;
        }

        .cta-button:hover {
            background: #ff6b35;
            color: white;
            transform: translateY(-2px);
        }

        .hero-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 13px;
            opacity: 0;
            transform: translateX(50px);
            animation: slideInRight 1s ease-out 0.7s forwards;
        }

        .hero-image {
            position: relative;
            border-radius: 7px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .hero-image:hover {
            transform: scale(1.05);
        }

        .hero-image img {
            width: 100%;
            height: 128px;
            object-fit: cover;
        }

        .trust-badge {
            background: #2c3e50;
            color: white;
            padding: 13px;
            border-radius: 7px;
            text-align: center;
            position: relative;
            grid-column: 1 / -1;
            margin-top: 13px;
        }

        .trust-icon {
            background: #ff6b35;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 9px;
            font-size: 15px;
        }

        .trust-badge h3 {
            font-size: 0.77rem;
        }

        /* Stats Section - Updated Design */
        .stats-section {
            background: #2c3e50;
            padding: 25px 0;
            color: white;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 columns on laptop */
            gap: 16px;
            text-align: left;
            max-width: 1000px; /* Increased max-width for better spacing */
            margin: 0 auto;
        }

        .stat-item {
            display: flex;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-icon {
            font-size: 1.5rem;
            margin-right: 12px;
            width: 30px;
            text-align: center;
        }

        .stat-content {
            flex: 1;
        }

        .stat-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #bbb;
            margin-bottom: 2px;
        }

        .stat-number {
            font-size: 1.2rem;
            font-weight: bold;
            color: #ff6b35;
        }

        /* Animations */
        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes countUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
                gap: 10px;
                max-width: 500px;
            }

            .hero-images {
                order: -1;
            }

            .hero-text h1 {
                font-size: 1.36rem;
            }

            .features-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr); /* Still 2 columns on mobile */
                gap: 8px;
                max-width: 280px;
            }

            .stat-item {
                padding: 6px 10px;
            }

            .stat-icon {
                font-size: 1.3rem;
                margin-right: 10px;
            }

            .stat-label {
                font-size: 0.65rem;
            }

            .stat-number {
                font-size: 1rem;
            }
            
            .hero-text h1 {
                font-size: 1.19rem;
            }
            
            .hero-text p {
                font-size: 0.72rem;
            }
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }



        /* Faq Start */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f8f9fa;
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
        }

        /* FAQ Section */
        .faq-section {
            background: #2d3748;
            padding: 19px 2px;
    margin-top: 10px; /* FAQ section Space */
            max-width: 100%;
            width: 100%;
            box-sizing: border-box;
            box-shadow: 0 8px 19px rgba(0, 0, 0, 0.1);
        }

        .faq-header {
            text-align: center;
            margin-bottom: 19px;
            padding: 0 8px;
        }

        .faq-header h2 {
            font-size: 18px;
            margin: 0;
            color: #fff;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .faq-header h2::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 25%;
            width: 50%;
            height: 2px;
            background: #00d4aa;
            border-radius: 2px;
        }

        .faq-container {
            padding: 0 8px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            border-color: #00d4aa;
        }

        .faq-question {
            padding: 14px 15px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #fff;
            transition: all 0.3s ease;
            position: relative;
            font-size: 13px;
        }

        .faq-question:hover {
            background: rgba(0, 212, 170, 0.1);
        }

        .faq-question.active {
            background: rgba(0, 212, 170, 0.2);
            color: #00d4aa;
        }

        .faq-question.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #00d4aa;
            border-radius: 3px 0 0 3px;
        }

        .faq-icon {
            transition: transform 0.3s ease;
            color: #00d4aa;
            font-size: 14px;
        }

        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: rgba(0, 0, 0, 0.1);
        }

        .faq-answer.active {
            padding: 11px 15px;
            max-height: 225px;
        }

        .faq-answer p {
            color: #e5e5e5;
            line-height: 1.4;
            margin: 0;
            font-size: 11px;
        }

        .highlight {
            color: #00d4aa;
            font-weight: 600;
        }

        /* Desktop Responsive */
        @media (min-width: 769px) {
            .faq-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .faq-item:nth-child(7) {
                grid-column: span 2;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .faq-section {
                padding: 15px 2px;
                margin-top: 10px;
            }

            .faq-header h2 {
                font-size: 17px;
            }

            .faq-container {
                display: block;
                grid-template-columns: none;
            }

            .faq-item {
                margin-bottom: 11px;
            }

            .faq-question {
                padding: 11px 14px;
                font-size: 12px;
            }

            .faq-answer.active {
                padding: 9px 14px;
            }

            .faq-answer p {
                font-size: 10px;
            }
        }

        /* End FaQ */


        /* Contact Section */

   body {
  background-color: #e4ece4;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-section {
  padding: 25px 0; /* kam kiya */
}

.contact-form, 
.contact-info {
  background: white;
  padding: 18px; /* pehle 25 tha */
  border-radius: 6px; /* chhota */
  border: 1px solid #e5e7eb;
}

.contact-title {
  font-size: 1.3rem; /* pehle 1.6 tha */
  font-weight: 700;
  margin-bottom: 15px; /* kam */
  color: #1e3a8a;
}

.form-control {
  border: 1px solid #ddd;
  padding: 7px 10px; /* kam */
  border-radius: 5px;
  margin-bottom: 10px;
  font-size: 13px; /* chhota */
}

.form-control:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 1px rgba(30, 58, 138, 0.15);
  outline: none;
}

.btn-primary,
.btn-whatsapp {
  padding: 7px 14px; /* chhota */
  font-size: 13px;
  border-radius: 5px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary { background-color: #1e3a8a; border: none; }
.btn-primary:hover { background-color: #1e40af; }

.btn-whatsapp { background-color: #25d366; color: white; border: none; margin-left: 8px; }
.btn-whatsapp:hover { background-color: #128c7e; }

.map-container {
  margin-top: 15px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}
.map-container iframe {
  width: 100%;
  height: 200px; /* pehle 280 tha */
  border: none;
}

.info-title {
  font-size: 1.1rem; /* pehle 1.3 tha */
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e3a8a;
}
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
.info-icon {
  width: 28px; /* pehle 36 tha */
  height: 28px;
  background-color: #ff6b35;
  color: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
  font-size: 13px;
}
.info-content h6 {
  font-weight: 600;
  margin-bottom: 3px;
  color: #333;
  font-size: 13px;
}
.info-content p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

@media (max-width: 992px) {
  .btn-primary,
  .btn-whatsapp {
    width: 100%;
    margin: 4px 0;
  }
}




/* Start Footer */
    * { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --primary-color: #2563eb;
      --secondary-color: #1e40af;
      --accent-color: #f59e0b;
      --text-dark: #1f2937;
      --text-light: #6b7280;
      --white: #ffffff;
      --light-bg: #f8fafc;
      --border-color: #e5e7eb;
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background-color: #f0f2f5;
      min-height: 100vh;
    }

    /* ✅ wrapper to push footer down */
    .page-wrapper {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .main-content {
      flex: 1;
    }

    /* Footer */
    .footer {
      background: linear-gradient(135deg, var(--text-dark), #111827);
      color: var(--white);
      padding: 3rem 0 1rem;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--accent-color);
    }

    .footer-section p,
    .footer-section a {
      font-size: 0.9rem;
      color: #d1d5db;
      text-decoration: none;
      line-height: 1.4;
      margin-bottom: 0.3rem;
      transition: color 0.3s;
    }

    .footer-section a:hover { color: var(--accent-color); }
    .footer-section p:last-child,
    .footer-section a:last-child { margin-bottom: 0; }

    .footer-bottom {
      border-top: 1px solid #374151;
      padding-top: 2rem;
      text-align: center;
      font-size: 0.9rem;
      color: #9ca3af;
    }

    /* ✅ Logo */
    .footer-logo {
      max-width: 200px; /* Laptop */
      height: auto;
      margin-bottom: 1rem;
    }

    @media (max-width: 768px) {
      .footer-logo {
        max-width: 160px; /* Tablet */
      }
    }

    @media (max-width: 480px) {
      .footer-logo {
        max-width: 140px; /* Mobile */
      }
    }

    /* Social Icons */
    .social-icons { margin-top: 1rem; }
    .social-icons a {
      display: inline-block;
      margin-right: 10px;
      font-size: 1.2rem;
      color: #d1d5db;
      transition: color 0.3s;
    }
    .social-icons a:hover { color: var(--accent-color); }

    /* Animations */
    .footer-section {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease-out forwards;
    }
    .footer-section:nth-child(1) { animation-delay: 0.1s; }
    .footer-section:nth-child(2) { animation-delay: 0.2s; }
    .footer-section:nth-child(3) { animation-delay: 0.3s; }
    .footer-section:nth-child(4) { animation-delay: 0.4s; }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
      }
    }
    @media (max-width: 480px) {
      .footer { padding: 3rem 0 1rem; }
      .container { padding: 0 1.5rem; }
      .footer-section { text-align: left; }
      .footer-section h3 { font-size: 1.2rem; margin-bottom: 1rem; }
      .footer-section p,
      .footer-section a { font-size: 0.9rem; }
    }
    @media (max-width: 360px) {
      .container { padding: 0 1rem; }
      .footer-content { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
    }

/* End Footer */