
        :root {
            --primary-color: #eb5e28;
            --secondary-color: #252422;
            --light-color: #fffcf2;
            --white-color: #ffffff;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--secondary-color);
            background-color: var(--white-color);
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 15px 0;
            background-color: transparent !important;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--secondary-color) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .btn-cta {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: #d54e1f;
            color: var(--white-color);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(37, 36, 34, 0.7), rgba(37, 36, 34, 0.7)), url('https://images.pexels.com/photos/1080721/pexels-photo-1080721.jpeg');
            background-size: cover;
            background-position: center;
            color: var(--white-color);
            padding: 150px 0;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 6rem;
            font-weight: 900;
            margin-bottom: 20px;
        }
        
        .hero-section p {
            font-size: 1.25rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-hero {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-hero:hover {
            background-color: #d54e1f;
            color: var(--white-color);
        }
        
        /* Section Styles */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
        }
        
        /* About Section */
        .about-img {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-text {
            font-size: 1rem;
            line-height: 1.7;
        }
        
        .btn-read-more {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .btn-read-more:hover {
            color: #d54e1f;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--secondary-color);
            color: var(--white-color);
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-text {
            font-size: 1.1rem;
        }
        
        /* Vision & Mission Section */
        .vision-mission-card {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .vision-mission-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        /* Work Process Section */
        .process-img {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .process-step {
            margin-bottom: 30px;
        }
        
        .process-step h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .process-step p {
            font-size: 1rem;
            line-height: 1.7;
        }
        
        /* Why Choose Us Section */
        .why-choose-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .why-choose-card:hover {
            background-color: var(--light-color);
        }
        
        .why-choose-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .why-choose-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        /* Services Section */
        .services-section {
            background-color: var(--light-color);
        }
        
        .service-card {
            background-color: var(--white-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .service-content p {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .btn-service {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .btn-service:hover {
            color: #d54e1f;
        }
        
        /* Reviews Section */
        .review-card {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .review-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }
        
        .review-rating {
            color: #ffc107;
        }
        
        .review-text {
            font-style: italic;
            line-height: 1.6;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--light-color);
            color: var(--secondary-color);
            font-weight: 600;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: var(--white-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        .accordion-body {
            background-color: var(--white-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(37, 36, 34, 0.9), rgba(37, 36, 34, 0.9)), url('https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-size: cover;
            background-position: center;
            color: var(--white-color);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 15px 40px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s;
        }
        
        .btn-cta-large:hover {
            background-color: #d54e1f;
            color: var(--white-color);
        }
        
        /* Contact Section */
        .contact-info {
            background-color: var(--light-color);
            border-radius: 8px;
            padding: 30px;
            height: 100%;
        }
        
        .contact-info-item {
            margin-bottom: 25px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 30px;
        }
        
        .contact-info-item h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--secondary-color);
        }
        
        .contact-form {
            background-color: var(--white-color);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(235, 94, 40, 0.25);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: var(--white-color);
            padding: 70px 0 20px;
        }
        
        .footer-column h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-column p {
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            border: none;
            padding: 12px 15px;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-form button {
            background-color: var(--primary-color);
            color: var(--white-color);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .newsletter-form button:hover {
            background-color: #d54e1f;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
            color: #aaa;
        }
        
        .copyright a {
            color: #ddd;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .copyright a:hover {
            color: var(--primary-color);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }
