	
	 :root {
            --primary: #f69323;
            --secondary: #35405c;
            --light: #f8f9fa;
            --dark: #212529;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        /* Navbar */
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 8px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-brand img {
            height: 56px;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled .navbar-brand img {
            height: 35px;
        }
        
        .nav-link {
            color: var(--secondary);
            font-weight: 500;
            margin: 0 8px;
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after,
        .nav-link.active:after {
            width: 100%;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: white;
            font-weight: 500;
            padding: 8px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #e0851f;
            border-color: #e0851f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(246, 147, 35, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            font-weight: 500;
            padding: 8px 20px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(246, 147, 35, 0.3);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgb(17 34 79) 0%, rgb(224 133 31 / 52%) 100%), url(https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80) no-repeat center center / cover;
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero h1 {
            font-weight: 700;
            font-size: 3.2rem;
            line-height: 1.2;
            margin-bottom: 25px;
        }
        
        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }
        
        .hero-form {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: translateY(0);
            transition: transform 0.5s ease;
        }
        
        .hero-form:hover {
            transform: translateY(-10px);
        }
        
        .reviews {
            display: flex;
            align-items: center;
            margin-top: 30px;
        }
        
        .stars {
            color: var(--primary);
            font-size: 1.2rem;
            margin-right: 15px;
        }
        
        .platform {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .platform img {
            height: 25px;
            margin-right: 8px;
      //   filter: brightness(0) invert(1);
        }
        
        /* USP Section */
        .usp-section {
            padding: 60px 0;
            background-color: white;
        }
        
        .usp-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            border-bottom: 4px solid transparent;
        }
        
        .usp-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-bottom-color: var(--primary);
        }
        
        .usp-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Content Sections */
        .content-section {
            padding: 80px 0;
        }
        
        .content-section h2 {
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .content-section h2:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 4px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
            border-radius: 2px;
        }
        
        .content-section p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .img-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .img-container img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .img-container:hover img {
            transform: scale(1.05);
        }
        
        /* Services Section */
        .services-section {
            background-color: #f9f9f9;
            padding: 80px 0;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            border-left: 4px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-left-color: var(--primary);
        }
        
        .service-icon {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(53, 64, 92, 0.03) 0%, rgba(53, 64, 92, 0.05) 100%);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 15px;
            position: relative;
        }
        
        .testimonial-card:before {
            content: '"';
            position: absolute;
            font-size: 5rem;
            color: rgba(246, 147, 35, 0.1);
            top: 10px;
            left: 20px;
            line-height: 1;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .client-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .accordion-button {
            font-weight: 600;
            color: var(--secondary);
        }
        
        .accordion-button:not(.collapsed) {
            background-color: rgba(246, 147, 35, 0.1);
            color: var(--primary);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(246, 147, 35, 0.25);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #f87c00 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section h2 {
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons .btn {
            margin: 0 10px;
            padding: 12px 30px;
            font-size: 1.1rem;
        }
        
        .btn-white {
            background-color: white;
            color: var(--primary);
            font-weight: 600;
        }
        
        .btn-white:hover {
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--primary);
        }
        
        .btn-transparent {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            font-weight: 600;
        }
        
        .btn-transparent:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
            height: 400px;
        }
        
        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-logo img {
            height: 40px;
            margin-bottom: 20px;
        }
        
        .footer-links h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .contact-info {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            color: var(--primary);
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Animations */
        .animate-up {
            animation: fadeInUp 1s ease;
        }
        
        .animate-delay-1 {
            animation-delay: 0.2s;
        }
        
        .animate-delay-2 {
            animation-delay: 0.4s;
        }
        
        .animate-delay-3 {
            animation-delay: 0.6s;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-form {
                margin-top: 40px;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero {
                padding: 100px 0 60px;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .reviews {
                justify-content: center;
            }
            
            .cta-buttons .btn {
                display: block;
                width: 80%;
                margin: 10px auto;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .navbar-brand img {
                height: 30px;
            }
        }
		
/* Dropdown on hover */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    .navbar .dropdown .dropdown-menu {
        display: none;
    }
    
    .navbar .dropdown-toggle:focus + .dropdown-menu {
        display: block;
    }
}

/* Dropdown menu styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(246, 147, 35, 0.1);
    color: var(--primary);
    padding-left: 25px;
}

.dropdown-divider {
    border-color: rgba(0,0,0,0.05);
}
.dropdown-toggle::after {
	display : contents;
}

h2 > span {
 color:#e0851f;
}
@media (min-width: 1200px) {
    .h3, h3 {
        font-size: 1.4rem;
    }
}
.content-section ul {
	color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
/*----------About US-- Hero Section ----------------*/

        .about-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: #fff;
            padding: 100px 0;
            text-align: center;
			margin-top: 5%;
        }
		
         
        .about-hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .about-hero p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Content Sections */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #333;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #e84c3d;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        
        
        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .value-card {
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            font-size: 40px;
            color: #e84c3d;
            margin-bottom: 20px;
        }
        
        .value-card h3 {
            margin-bottom: 15px;
            color: #333;
        }
        

        
        /* CTA Section */
        .cta-section {
            background-color: #e84c3d;
            color: #fff;
            text-align: center;
            padding: 80px 0;
        }
        
        .cta-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }
        
        
        
/*-------Contact Hero Section--------------- */
 
    
    
    /* Contact Form */
    .contact-form {
        background-color: #fff;
        padding: 40px;
        border-radius: 8px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        transition: border-color 0.3s;
    }
    
    .form-control:focus {
        border-color: #e84c3d;
        outline: none;
    }
    
    textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }
    
    .submit-btn {
        background-color: #e84c3d;
        color: #fff;
        border: none;
        padding: 12px 30px;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .submit-btn:hover {
        background-color: #d14032;
    }
    
    /* Contact Info */
    .ccontact-info {
		display: flex;
        background-color: #f9f9f9;
        padding: 40px;
        border-radius: 8px;
        height: 100%;
    }
    
    .info-item {
        display: flex;
        margin-bottom: 25px;
		margin: auto;
    }
    
    .info-icon {
        font-size: 24px;
        color: #e84c3d;
        margin-right: 15px;
        min-width: 30px;
    }
    
    .info-content h3 {
        font-size: 18px;
        margin-bottom: 5px;
        color: #333;
    }
    
    .info-content p {
        color: #666;
        margin-bottom: 0;
    }
    
    /* Map Section */
    .map-container {
        height: 400px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    
      
        
        