 :root {
            --primary-blue: #065bb6;
            --secondary-blue: #2d8ae5;
            --accent-red: #e63946;
            --dark-blue: #065bb6;
            --light-blue: #f0f8ff;
            --dark-gray: #333;
            --medium-gray: #666;
            --light-gray: #f8f9fa;
        }
        
        * {
           font-family:'Muli'!important;
        }
        
        h1, h2, h3, h4, h5, h6, .navbar-brand {
            font-family:'Muli'!important;
            font-weight: 600;
        }
        
        body {
            color: var(--dark-gray);
            overflow-x: hidden;
        }
        
        /* Navigation */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            color: var(--primary-blue) !important;
            font-weight: 700;
            font-size: 1.8rem;
        }
        
        .navbar-brand i {
            color: var(--accent-red);
        }
        
        .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
			font-size: 18px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
        }
        .text-success {
		 	 --bs-text-opacity: 1;
		  	 color: #FFF !important;
		}
        /* Hero Section */
        .hero-section {
            background: url('images/slider.jpg?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 200px 0 200px;
            position: relative;
        }
        
        .hero-title {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero-subtitle {
            font-size: 1.10rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
        }
        
        .btn-primary {
            background-color: var(--accent-red);
            border-color: var(--accent-red);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #c1121f;
            border-color: #c1121f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
        }
        
        .btn-outline-light {
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            border-width: 2px;
        }
        
        /* Stats Section */
        .stats-section {
            background-color: white;
            padding: 20px 0;
            position: relative;
            z-index: 2;
            margin-top: -50px;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .stat-label {
            color: var(--medium-gray);
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background-color: var(--light-blue);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--medium-gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .feature-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
			width: 70px;
			height: 70px;
			margin: 0 auto 15px;
			display: flex;
			align-items: center;
			justify-content: center;
			border-radius: 50%;
			background: #f4f6f9; /* optional */
		}
        
        .feature-icon i {
            font-size: 3.5rem;
            color: var(--primary-blue);
        }
        
        .feature-card h4 {
            color: var(--dark-blue);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        /* Packages Section */
        .packages-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .package-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid #eaeaea;
        }
        
        .package-card.popular {
            border-color: var(--primary-blue);
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(26, 95, 158, 0.15);
        }
        
        .package-header {
            background-color: var(--primary-blue);
            color: white;
            padding: 25px;
            text-align: center;
        }
        
        .package-header h3 {
            margin: 0;
            font-size: 1.5rem;
        }
        
        .package-body {
            padding: 30px;
        }
        
        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 20px;
        }
        
        .package-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .package-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 30px;
        }
        
        .package-features li:before {
            content: "✓";
            color: var(--primary-blue);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* Monitoring Section */
        .monitoring-section {
            padding: 100px 0;
            background-color: var(--dark-blue);
            color: white;
        }
		.monitoring-section p {
			font-size:18px
        }
        
        .monitoring-img {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        
        /* Equipment Section */
        .equipment-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .equipment-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .equipment-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        
        .equipment-img {
            height: 200px;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary-blue);
        }
        
        .equipment-body {
            padding: 25px;
        }
        
        /* Coverage Map */
        .coverage-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .coverage-map {
            position: relative;
            background-color: #f0f8ff;
            border-radius: 12px;
            padding: 40px;
            height: 100%;
        }
        
        .state-list {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 15px;
        }
        
        .state-item {
            padding: 12px 0;
            border-bottom: 1px solid #eaeaea;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background-color: var(--light-blue);
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #eaeaea;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--primary-blue);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 50px 0;
			background-color:#065bb6;
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        /* Contact Form */
        .contact-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .contact-form-container {
            background-color: var(--light-blue);
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }
        
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(26, 95, 158, 0.25);
        }
        
        /* Footer */
        .footer {
            background-color: #0a1929;
            color: white;
            padding: 60px 0 10px;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #b0bec5;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #1e3a5f;
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            color: #b0bec5;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.8rem;
            }
            
            .package-card.popular {
                transform: none;
                margin: 20px 0;
            }
            
            .stats-section {
                margin-top: 0;
                border-radius: 0;
            }
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 80px;
                background-attachment: scroll;
            }
            
            .hero-title {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }