
        :root {
            --primary-red: #B91C1C;
            --dark-gray: #1F2937;
            --light-red: #F87171;
            --light-gray: #F9FAFB;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            background-color: transparent !important;
            box-shadow: none;
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-red) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 10px;
            font-size: 2rem;
        }

        .navbar-nav .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .btn-cta {
            background-color: var(--primary-red);
            color: var(--white);
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
            border: none;
        }

        .btn-cta:hover {
            background-color: var(--light-red);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(185, 28, 28, 0.8), rgba(185, 28, 28, 0.8)), url('https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            min-height: 600px;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }

        .hero-content h1 {
            font-size:7rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-gray);
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-red);
        }

        /* About Section */
        .about-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Counter Section */
        .counter-section {
            background-color: var(--primary-red);
            color: var(--white);
        }

        .counter-box {
            text-align: center;
            padding: 30px;
        }

        .counter-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--light-red);
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.2rem;
            text-transform: uppercase;
        }

        /* Vision & Mission */
        .vision-mission-card {
            background-color: var(--light-gray);
            padding: 40px;
            border-radius: 10px;
            height: 100%;
            transition: transform 0.3s;
        }

        .vision-mission-card:hover {
            transform: translateY(-5px);
        }

        .vision-mission-card i {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        /* Work Process */
        .process-step {
            text-align: center;
            padding: 30px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s;
        }

        .process-step:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }

        .process-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary-red);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .process-icon {
            font-size: 2.5rem;
            color: var(--light-red);
            margin-bottom: 20px;
        }

        /* Feature Box */
        .feature-box {
            text-align: center;
            padding: 30px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        /* Service Cards */
        .service-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .service-content {
            padding: 30px;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        .service-desc {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #666;
        }

        /* Reviews */
        .review-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
        }

        .review-stars {
            color: #FFD700;
            margin-bottom: 15px;
        }

        .review-author {
            font-weight: bold;
            color: var(--primary-red);
            margin-top: 15px;
        }

        /* FAQ */
        .accordion-button {
            background-color: var(--light-gray);
            color: var(--dark-gray);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--primary-red);
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-red);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-red), var(--light-red));
            color: var(--white);
            text-align: center;
            padding: 80px 0;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn-hero {
            background-color: var(--white);
            color: var(--primary-red);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn-hero:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Contact Section */
        .contact-info {
            background-color: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .contact-info h4 {
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .contact-info div {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-info i {
            color: var(--primary-red);
            margin-right: 15px;
            font-size: 1.2rem;
            width: 20px;
        }

        /* Footer */
        footer {
            background-color: var(--dark-gray);
            color: var(--white);
            padding: 60px 0 20px;
        }

        footer h5 {
            color: var(--light-red);
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--light-red);
        }

        .footer-bottom {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom a {
            color: var(--light-red);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
