
        :root {
            --primary-color: #9e2a2b;
            --secondary-color: #fff3b0;
            --dark-color: #335c67;
            --light-color: #FFFFFF;
            --gray-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
            position: absolute;
            width: 100%;
            z-index: 1000;
        }

        .navbar.scrolled {
            background: var(--light-color) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: rgb(251, 158, 8) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: rgb(251, 158, 8) !important;
            margin: 0 15px;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-item{
            margin-left:25px;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .btn-cta {
            background: white;
            color: #335c67;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: 2px solid white;
        }

        .btn-cta:hover {
            background: white;
            color: #040404;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(158, 42, 43, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(51, 92, 103, 0.8), rgba(158, 42, 43, 0.8)), url('https://5.imimg.com/data5/SELLER/Default/2024/2/393815215/BC/JC/EJ/44829937/0.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero-content h1 {
            font-size:5.5rem;
            font-weight: bold;
            color: var(--light-color);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
        }

        /* About Section */
        .about-section {
            background: var(--gray-light);
        }

        .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;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Counter Section */
        .counter-section {
            background: var(--primary-color);
            color: var(--light-color);
        }

        .counter-box {
            text-align: center;
            padding: 30px;
        }

        .counter-box i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Vision & Mission */
        .vision-mission-box {
            background: var(--light-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-mission-box:hover {
            transform: translateY(-5px);
        }

        .vision-mission-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            background: var(--light-color);
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            background: var(--primary-color);
            color: var(--light-color);
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(158, 42, 43, 0.3);
        }

        .feature-box i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .feature-box:hover i {
            color: var(--light-color);
        }

        /* Work Process */
        .process-box {
            text-align: center;
            position: relative;
            padding: 30px 20px;
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .process-box::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--secondary-color);
            z-index: -1;
        }

        .process-box:last-child::after {
            display: none;
        }

        /* Services Section */
        .service-card {
            background: var(--gray-light);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card h5 {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-card p {
            flex-grow: 1;
            margin-bottom: 20px;
        }

        /* Reviews Section */
        .review-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            position: relative;
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--secondary-color);
            opacity: 0.3;
        }

        .review-stars {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .review-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        /* FAQ Section */
        .accordion-button {
            background: var(--gray-light);
            color: var(--dark-color);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: var(--light-color);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
            color: var(--light-color);
            text-align: center;
            padding: 80px 0;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        /* Contact Section */
        .contact-info-box {
            background: var(--gray-light);
            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;
        }

        .contact-form {
            background: var(--light-color);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: var(--light-color);
            padding: 60px 0 20px;
        }

        .footer-widget h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: bold;
        }

        .footer-widget ul {
            list-style: none;
            padding: 0;
        }

        .footer-widget ul li {
            margin-bottom: 10px;
        }

        .footer-widget ul li a {
            color: var(--light-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-widget ul li a:hover {
            color: var(--secondary-color);
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .newsletter-form button {
            background: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--secondary-color);
            color: var(--dark-color);
        }

        .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(--secondary-color);
            text-decoration: none;
            margin: 0 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .process-box::after {
                display: none;
            }
            
            .navbar-nav {
                background: var(--light-color);
                padding: 20px;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
