
        :root {
            --primary-color: #ca6702;
            --secondary-color: #e9d8a6;
            --accent-color: #94d2bd;
            --white-color: #ffffff;
            --dark-color: #2c3e50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background: var(--primary-color);
            color: var(--white-color);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
        }
        
        .btn-cta:hover {
            background: transparent;
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--dark-color);
            margin-bottom: 30px;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-color);
            padding: 60px 0;
            color: var(--white-color);
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: bold;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision Mission Section */
        .vision-mission-section {
            padding: 80px 0;
           
        }
        
        .vm-card {
            background: var(--white-color);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Work Process */
        .process-section {
            padding: 80px 0;
            background: var(--accent-color);
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-step .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: var(--white-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .service-card {
            background: var(--secondary-color);
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card-body h5 {
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--secondary-color);
        }
        
        .review-card {
            background: var(--white-color);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--white-color);
        }
        
        .accordion-button {
            background: var(--secondary-color);
            color: var(--dark-color);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--white-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #b85a02 100%);
            padding: 80px 0;
            color: var(--white-color);
            text-align: center;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            /*background: var(--accent-color);*/
        }
        
        .contact-info-box {
            background: var(--white-color);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-right: 20px;
        }
        
        /* Footer */
        footer {
            background: var(--dark-color);
            color: var(--white-color);
            padding: 60px 0 20px;
        }
        
        .footer-links a {
            color: var(--white-color);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px;
        }
        
        .newsletter-form button {
            background: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: #b85a02;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .navbar-nav {
                background: var(--white-color);
                padding: 20px;
                border-radius: 10px;
                margin-top: 20px;
            }
        }
