
        :root {
            --primary-color: #da5b07;
            --secondary-color: #f76c0f;
            --tertiary-color: #4ea8de;
            --light-accent: #64dfdf;
            --white-color: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }

        /* --- Navbar --- */
        .navbar {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            padding: 1rem 0;
        }
        .navbar-brand {
            font-weight: bold;
            color: var(--primary-color) !important;
            font-size: 1.5rem;
        }
        .navbar-nav .nav-link {
            color: #555 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        .navbar .btn-cta {
            background-color: var(--primary-color);
            color: var(--white-color);
            border-radius: 50px;
            padding: 0.4rem 1.5rem;
            transition: background-color 0.3s;
        }
        .navbar .btn-cta:hover {
            background-color: var(--secondary-color);
            color: var(--white-color);
        }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center/cover;
            height: 90vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white-color);
        }
        .hero h1 {
            font-weight: bold;
            font-size: 3.5rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        .hero p {
            font-size: 1.25rem;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
        }
        .btn-hero {
            background-color: var(--tertiary-color);
            color: #fff;
            padding: 12px 35px;
            font-size: 1.1rem;
            border-radius: 50px;
            border: none;
            transition: background-color 0.3s, transform 0.3s;
        }
        .btn-hero:hover {
            background-color: var(--light-accent);
            transform: translateY(-3px);
            color: #fff;
        }
        
        /* --- Section General --- */
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
            text-align: center;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--tertiary-color);
            border-radius: 2px;
        }
        
        /* --- About Section --- */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .about-text {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
        }
        
        /* --- Counter Section --- */
        .counter-section {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 60px 0;
        }
        .counter-box {
            text-align: center;
        }
        .counter-box .counter {
            font-size: 3rem;
            font-weight: bold;
        }
        .counter-box p {
            font-size: 1.2rem;
            margin: 0;
        }

        /* --- Why Choose Us --- */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s;
        }
        .feature-box:hover {
            transform: translateY(-10px);
        }
        .feature-box .icon {
            font-size: 3rem;
            color: var(--tertiary-color);
            margin-bottom: 20px;
        }
        .feature-box h4 {
            font-weight: bold;
            color: var(--primary-color);
        }

        /* --- Work Process --- */
        .process-box {
            text-align: center;
            position: relative;
        }
        .process-box .process-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--light-accent);
            opacity: 0.5;
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
        }
        .process-box h4 {
            font-weight: bold;
            color: var(--primary-color);
        }
        
        /* --- Services Section --- */
        .service-card {
            background-color: #f8f9fa;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .service-card .card-body {
            padding: 25px;
        }
        .service-card .card-title {
            font-weight: bold;
            color: var(--primary-color);
        }
        .service-card .card-text {
            min-height: 150px; /* Ensures cards are same height */
            color: #555;
        }
        .btn-read-more {
            color: var(--tertiary-color);
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s;
        }
        .btn-read-more:hover {
            color: var(--primary-color);
        }

        /* --- Reviews Section --- */
        .review-box {
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        .review-box .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        .review-box p {
            font-style: italic;
            color: #555;
        }
        .review-box h5 {
            font-weight: bold;
            color: var(--primary-color);
            margin-top: 20px;
        }

        /* --- FAQ Section --- */
        .accordion-button:not(.collapsed) {
            color: var(--white-color);
            background-color: var(--primary-color);
        }
        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(0,0,0,.125);
        }
        
        /* --- CTA Section --- */
        .cta-section {
            background: linear-gradient(45deg, var(--secondary-color), var(--tertiary-color));
            color: var(--white-color);
            padding: 80px 0;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
        }
        .btn-cta-large {
            background-color: var(--white-color);
            color: var(--primary-color);
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            border: none;
            font-weight: bold;
            transition: transform 0.3s;
        }
        .btn-cta-large:hover {
            transform: scale(1.05);
        }

        /* --- Contact Section --- */
        .contact-info-box {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .contact-info-box .icon {
            font-size: 1.5rem;
            color: var(--tertiary-color);
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        .contact-form .form-control, .contact-form .form-select {
            border-radius: 0;
            border: 1px solid #ddd;
            padding: 12px;
        }
        .contact-form .form-control:focus {
            box-shadow: none;
            border-color: var(--tertiary-color);
        }
        .btn-submit {
            background-color: var(--primary-color);
            color: var(--white-color);
            padding: 12px 30px;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn-submit:hover {
            background-color: var(--secondary-color);
            color: var(--white-color);
        }

        /* --- Footer --- */
        footer {
            background-color: #222;
            color: #aaa;
            padding: 60px 0 20px 0;
        }
        footer h5 {
            color: var(--white-color);
            font-weight: bold;
            margin-bottom: 25px;
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 10px;
        }
        footer ul li a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer ul li a:hover {
            color: var(--light-accent);
        }
        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        .footer-bottom a {
            color: var(--light-accent);
            text-decoration: none;
        }
        .newsletter-input {
            background-color: #333;
            border: 1px solid #444;
            color: #fff;
            border-radius: 50px;
            padding: 10px 20px;
        }
        .newsletter-input::placeholder {
            color: #aaa;
        }
        .newsletter-input:focus {
            background-color: #333;
            border-color: var(--light-accent);
            box-shadow: none;
            color: #fff;
        }
