  :root {
            --primary: #F59E0B; /* Yellow - Primary */
            --secondary: #D97706; /* Dark Yellow */
            --accent: #1E40AF; /* Blue - Accent */
            --light: #fefce8; /* Light Yellow */
            --dark: #1F2937;
            --gray: #6B7280;
            --light-yellow: #FEF3C7;
            --medium-yellow: #FBBF24;
            --dark-yellow: #D97706;
            --yellow-gradient: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
            --blue-gradient: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
            --gradient: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #D97706 100%);
            --gradient-light: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.1) 50%, rgba(217, 119, 6, 0.1) 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: var(--dark);
            font-weight: 400;
            line-height: 1.6;
            background-color: #fff;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }
        
        a, a:hover {
            text-decoration: none !important;
        }
        
        /* Top Info Bar */
        .top-info-bar {
            background: var(--yellow-gradient);
            color: #333;
            padding: 10px 0;
            font-size: 14px;
            position: relative;
            z-index: 1030;
        }
        
        .top-info-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-contact-info {
            display: flex;
            gap: 25px;
        }
        
        .top-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .top-contact-item i {
            color: var(--accent);
        }
        
        .top-cta-button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .top-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
            color: white;
        }
        
        @media (max-width: 768px) {
            .top-info-bar {
                display: none;
            }
			
			
			
        }
        
        /* Header Styles - FIXED */
        .navbar-brand img {
            width: 250px;
            height: auto;
            transition: all 0.3s ease;
        }
        
        @media (max-width: 768px) {
            .navbar-brand img {
                width: 180px;
            }
			
			
			.navbar { 
            top: 0px !important;
            padding: 0px 0 !important;
            transition: all 0.1s ease;
        }
			
        }
        
        .navbar { 
            top: 43px;
            padding: 15px 0;
            transition: all 0.1s ease;
        }
        
        .navbar.scrolled {
            padding: 0px 0;
            top: 0px;
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--dark) !important;
            margin: 0 5px;
            transition: all 0.3s ease;
            position: relative;
            font-size: 16px;
            padding: 8px 15px !important;
            border-radius: 6px;
        }
        
        .nav-link:hover, .nav-link.active {
            color: white !important;
            background: var(--yellow-gradient);
        }
        
        /* Services Dropdown */
        .dropdown-menu {
            border: none;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            margin-top: 8px;
            min-width: 220px;
            border-top: 3px solid var(--primary);
        }
        
        .dropdown-item {
            padding: 10px 20px;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            font-size: 15px;
            border-radius: 5px;
            margin: 0 10px;
            width: auto;
        }
        
        .dropdown-item:hover {
            background: rgba(245, 158, 11, 0.1);
            color: var(--secondary);
            padding-left: 25px;
        }
        
        .dropdown-item i {
            margin-right: 10px;
            color: var(--primary);
            width: 18px;
            text-align: center;
            font-size: 16px;
        }
        
        /* Hero Slider - FIXED */
        .hero-slider {
            padding: 0px 0 0px;
            position: relative;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 75vh;
            position: relative;
            min-height: 550px;
        }
        
        @media (max-width: 768px) {
            .hero-slider {
                padding: 80px 0 0px;
            }
            
            .carousel-item {
                height: 100vh;
                /*min-height: 450px;*/
            }
        }
        
        .carousel-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            width: 100%;
            max-width: 900px;
            padding: 0 20px;
            padding-top: 55px;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
            line-height: 1.6;
        }
        
        /* Carousel Controls */
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.9;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
        }
        
        @media (max-width: 768px) {
            .carousel-control-prev, .carousel-control-next {
                display: none;
            }
        }
        
        .carousel-control-prev {
            left: 20px;
        }
        
        .carousel-control-next {
            right: 20px;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
            background-color: white;
        }
        
        .carousel-control-prev-icon, .carousel-control-next-icon {
            background-size: 60%;
            filter: invert(73%) sepia(93%) saturate(1454%) hue-rotate(359deg) brightness(102%) contrast(96%);
        }
        
        /* CTA Button */
        .cta-button {
            background: var(--yellow-gradient);
            color: #333;
            border: none;
            padding: 14px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
            color: #333;
            background: var(--gradient);
        }
        
        /* Section Styles */
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 40px;
            color: var(--dark);
            font-size: 2.2rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 5px;
            background: var(--yellow-gradient);
            border-radius: 3px;
        }
        
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        /* About Section - Yellow Background */
        .about-section {
            background-color: var(--light-yellow);
        }
        
        .counter-box {
            text-align: center;
            padding: 35px 20px;
            border-radius: 15px;
            background: white;
            color: var(--dark);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            border: 3px solid rgba(245, 158, 11, 0.2);
        }
        
        .counter-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(245, 158, 11, 0.15);
            border-color: var(--primary);
        }
        
        .counter {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--dark);
            font-family: 'Montserrat', sans-serif;
        }
        
        .counter-text {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark);
        }
        
        /* Government Section - Blue Gradient with Parallax */
        .government-section {
            background: var(--blue-gradient) fixed;
            color: white;
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }
        
        .government-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1551135049-8a33b2fb2f5f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.15;
            z-index: 1;
        }
        
        .government-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .government-section .section-title {
            color: white;
        }
        
        .government-section .section-title::after {
            background: var(--primary);
        }
        
        .government-text {
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto 30px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Services Section - Yellow Background */
        .services-section {
            background-color: var(--light-yellow);
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 35px 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 3px solid rgba(245, 158, 11, 0.1);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--yellow-gradient);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            border: 3px solid rgba(245, 158, 11, 0.2);
        }
        
        .service-card:hover .service-icon {
            background: var(--yellow-gradient);
            transform: rotateY(180deg);
        }
        
        .service-icon i {
            font-size: 2.2rem;
            color: var(--dark);
            transition: all 0.3s ease;
        }
        
        .service-card:hover .service-icon i {
            color: white;
            transform: rotateY(-180deg);
        }
        
        .service-card h4 {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        .service-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 1rem;
        }
        
        /* Current Projects Section - White Background */
        .projects-section {
            background: white;
        }
        
        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 3px solid rgba(245, 158, 11, 0.1);
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: var(--primary);
        }
        
        .project-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .project-content {
            padding: 25px;
        }
        
        .project-content h4 {
            color: var(--dark);
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        
        .project-content p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .project-status {
            display: inline-block;
            padding: 8px 20px;
            background: rgba(245, 158, 11, 0.1);
            color: var(--secondary);
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 2px solid rgba(245, 158, 11, 0.2);
        }
        
        /* Why Choose Us - Yellow Background */
        .why-choose-section {
            background-color: var(--light-yellow);
        }
        
        .feature-box {
            display: flex;
            margin-bottom: 30px;
            padding: 25px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 3px solid rgba(245, 158, 11, 0.1);
        }
        
        .feature-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--yellow-gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover .feature-icon {
            transform: rotate(15deg) scale(1.1);
        }
        
        .feature-icon i {
            font-size: 1.8rem;
            color: white;
        }
        
        .feature-content h4 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .feature-content p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 1rem;
        }
        
        /* Testimonials */
        .testimonial-section {
            position: relative;
            background: white;
        }
        
        .testimonial-carousel {
            padding: 10px 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            height: 100%;
            margin: 10px;
            position: relative;
            border: 3px solid rgba(245, 158, 11, 0.2);
        }
        
        .testimonial-card:hover {
            border-color: var(--primary);
            transform: translateY(-8px);
        }
        
        .testimonial-card::before {
            content: "\201C";
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 4rem;
            color: rgba(245, 158, 11, 0.15);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(245, 158, 11, 0.3);
            margin-bottom: 20px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }
        
        .client-name {
            color: var(--dark);
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 1.3rem;
        }
        
        .client-designation {
            color: var(--accent);
            font-size: 1rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .testimonial-text {
            color: #555;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        
        .testimonial-rating {
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .testimonial-controls {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .testimonial-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--yellow-gradient);
            color: #333;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .testimonial-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
        }
        
        /* Call to Action Section - Blue Gradient with Parallax */
        .cta-section {
            background: var(--blue-gradient) fixed;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            opacity: 0.15;
            z-index: 1;
        }
        
        .cta-content {
            position: relative;
            z-index: 2;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }
        
        .cta-section .cta-button {
            background: var(--yellow-gradient);
            color: #333;
            box-shadow: 0 6px 20px rgba(30, 64, 175, 0.2);
        }
        
        .cta-section .cta-button:hover {
            background: var(--gradient);
            color: #333;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(30, 64, 175, 0.25);
        }
        
        /* FAQ - Yellow Background */
        .faq-section {
            background-color: var(--light-yellow);
        }
        
        .faq-header {
            background: var(--yellow-gradient);
            color: #333;
            padding: 20px 25px;
            border-radius: 15px 15px 0 0;
            margin-bottom: 0;
            font-size: 1.3rem;
            font-weight: 700;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
        }
        
        .accordion-button {
            font-weight: 600;
            padding: 20px 25px;
            background-color: white;
            color: var(--dark);
            font-size: 1.1rem;
            border-radius: 10px;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--yellow-gradient);
            color: #333;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(245, 158, 11, 0.3);
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231F2937'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-body {
            padding: 20px 25px;
            background-color: white;
            color: var(--gray);
            line-height: 1.7;
            font-size: 1rem;
        }
        
        /* Contact Form */
        .contact-form {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            border: 3px solid rgba(245, 158, 11, 0.2);
        }
        
        .contact-form:hover {
            border-color: var(--primary);
        }
        
        .form-control, .form-select {
            padding: 14px 18px;
            border-radius: 10px;
            border: 2px solid #e5e7eb;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.3rem rgba(245, 158, 11, 0.15);
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
            border-top: 5px solid var(--primary);
        }
        
        .footer-logo {
            width: 220px;
            margin-bottom: 25px;
            background: white;
            border-radius: 10px;
            padding: 8px;
        }
        
        .footer-heading {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }
        
        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 50px;
            height: 4px;
            background-color: var(--primary);
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.85);
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s ease;
            padding: 5px 0;
            font-size: 1rem;
            border-radius: 6px;
            padding-left: 10px;
        }
        
        .footer-link:hover {
            color: var(--primary);
            padding-left: 15px;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .social-icons a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 25px;
            margin-top: 60px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
        }
        
        .copyright a {
            color: var(--primary);
            font-weight: 700;
        }
        
        /* Floating Icons */
        .floating-icons {
            position: fixed;
            right: 25px;
            bottom: 25px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .floating-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
            text-decoration: none !important;
        }
        
        .floating-icon:hover {
            transform: scale(1.1);
            color: white;
        }
        
        .whatsapp {
            background: #25D366;
        }
        
        .call {
            background: var(--yellow-gradient);
            color: #333;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .delay-1 {
            animation-delay: 0.1s;
        }
        
        .delay-2 {
            animation-delay: 0.2s;
        }
        
        .delay-3 {
            animation-delay: 0.3s;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .hero-slider {
                padding: 0px 0 0px;
            }
            
            .feature-box {
                flex-direction: column;
                text-align: center;
            }
            
            .feature-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .contact-form {
                padding: 25px 20px;
            }
            
            .floating-icons {
                right: 20px;
                bottom: 20px;
            }
            
            .floating-icon {
                width: 55px;
                height: 55px;
                font-size: 1.3rem;
            }
            
            .cta-section, .government-section {
                background-attachment: scroll;
                padding: 70px 0;
            }
        }
        
        .navcontainer {
            background: #fff;
            border-bottom-left-radius: 25px;
            border-bottom-right-radius: 25px;
            padding: 13px;
        }
		
		
.about-hero {
        padding: 170px 0 70px;
        position: relative;
    }
    
    .team-card {
        transition: transform 0.3s ease;
    }
    
    .team-card:hover {
        transform: translateY(-10px);
    }
    
    .team-img {
        height: 300px;
        overflow: hidden;
    }
    
    .team-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .team-card:hover .team-img img {
        transform: scale(1.1);
    }
    
    .team-overlay {
        transition: opacity 0.3s ease;
    }
    
    .team-card:hover .team-overlay {
        opacity: 1;
    }
    
    .transition-all {
        transition: all 0.3s ease;
    }
    
    .icon-box {
        display: inline-block;
        width: 80px;
        height: 80px;
        line-height: 80px;
        background: rgba(245, 158, 11, 0.1);
        border-radius: 50%;
    }
    
    .pattern-dots {
        background-image: radial-gradient(currentColor 1px, transparent 1px);
        background-size: 20px 20px;
        color: rgba(255, 255, 255, 0.1);
        height: 100%;
    }
    
    .milestone-icon {
        display: inline-block;
        width: 100px;
        height: 100px;
        line-height: 100px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .tech-list h5 {
        color: var(--dark);
    }
    
    .breadcrumb-item a:hover {
        color: var(--primary) !important;
    }
    
    @media (max-width: 768px) {
        .about-hero {
            padding: 120px 0 80px;
        }
        
        .team-img {
            height: 250px;
        }
        
        .milestone-icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
        }
    }

	
	


 .led-type-card {
        transition: transform 0.3s ease;
        border: 3px solid rgba(245, 158, 11, 0.1);
    }
    
    .led-type-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
    }
    
    .led-icon {
        display: inline-block;
        width: 80px;
        height: 80px;
        line-height: 80px;
        background: rgba(245, 158, 11, 0.1);
        border-radius: 50%;
    }
    
    .feature-card {
        border: 3px solid rgba(245, 158, 11, 0.2);
        transition: transform 0.3s ease;
    }
    
    .feature-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
    }
    
    .install-step {
        padding: 20px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        border: 3px solid rgba(245, 158, 11, 0.1);
        transition: transform 0.3s ease;
    }
    
    .install-step:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
    }
    
    .step-icon {
        display: inline-block;
        width: 70px;
        height: 70px;
        line-height: 70px;
        background: var(--yellow-gradient);
        color: #333;
        border-radius: 50%;
    }
    
    .roi-card {
        border: 3px solid rgba(245, 158, 11, 0.2);
        transition: transform 0.3s ease;
    }
    
    .roi-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
    }
    
    .comparison-row {
        transition: all 0.3s ease;
    }
    
    .comparison-row:hover {
        background: rgba(245, 158, 11, 0.1) !important;
    }
    
    .project-showcase-card {
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .project-showcase-card:hover {
        transform: translateY(-10px);
    }
    
    .project-showcase-card img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
	
	
	.contact-hero {
        padding: 150px 0 100px;
        position: relative;
    }
    
    .contact-info-card {
        background: #f8f9fa;
        border-radius: 15px;
        border-left: 4px solid var(--primary);
        transition: transform 0.3s ease;
        border: 3px solid rgba(245, 158, 11, 0.1);
    }
    
    .contact-info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: var(--primary);
    }
    
    .contact-icon-large {
        width: 80px;
        height: 80px;
        background: rgba(245, 158, 11, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        background: rgba(245, 158, 11, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-icons-large {
        display: flex;
        gap: 20px;
    }
    
    .social-icon-large {
        width: 50px;
        height: 50px;
        background: var(--dark);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .social-icon-large:hover {
        background: var(--primary);
        color: #333;
        transform: translateY(-5px);
    }
    
    .btn-warning {
        background: var(--yellow-gradient);
        border: none;
        color: #333;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-warning:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        background: var(--gradient);
    }
    
    @media (max-width: 768px) {
        .contact-hero {
            padding: 120px 0 80px;
        }
        
        .contact-icon-large {
            width: 70px;
            height: 70px;
        }
        
        .social-icons-large {
            gap: 15px;
        }
    }
    
    @media (max-width: 576px) {
        .contact-info-card {
            padding: 25px 20px !important;
        }
        
        .social-icons-large {
            flex-wrap: wrap;
            justify-content: center;
        }
    }
	