
        :root {
            --primary-red: #DC2626;
            --dark-gray: #1F2937;
            --light-red: #F87171;
            --light-gray: #F9FAFB;
        }

        * {
            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 {
            background: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-red) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .btn-cta {
            background: var(--primary-red);
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }

        .btn-cta:hover {
            background: var(--light-red);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(31, 41, 55, 0.9)),
                        url('https://www.livemint.com/lm-img/img/2025/03/28/600x338/World_Financial_Day_2023_1696397572280_1743145322030.jpg') center/cover;
            min-height: 600px;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }

        .nav-item{
            margin-left:35px !important;
        }

        .hero-content h1 {
            font-size: 7rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.2rem;
            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-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .section-subtitle {
            color: #6B7280;
            font-size: 1.1rem;
            margin-bottom: 50px;
        }

        /* About Section */
        .about-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .about-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .about-content h3 {
            color: var(--primary-red);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .about-content p {
            margin-bottom: 15px;
            color: #4B5563;
            text-align: justify;
        }

        .btn-read-more {
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .btn-read-more:hover {
            color: var(--light-red);
            transform: translateX(5px);
        }

        /* Counter Section */
        .counter-section {
            background: var(--primary-red);
            color: white;
            padding: 60px 0;
        }

        .counter-item {
            text-align: center;
        }

        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
        }

        .counter-label {
            font-size: 1.1rem;
            margin-top: 10px;
        }

        /* Vision & Mission */
        .vm-section {
            padding: 80px 0;
        }

        .vm-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vm-card:hover {
            transform: translateY(-5px);
        }

        .vm-card i {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .vm-card h3 {
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .feature-card h4 {
            color: var(--dark-gray);
            margin-bottom: 15px;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
        }

        .service-card {
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card-body h4 {
            color: var(--primary-red);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-card-body p {
            color: #4B5563;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Book Service Form */
        .book-service-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-red), var(--light-red));
            color: white;
        }

        .book-service-section h2 {
            color: white;
        }

        .book-service-section .form-control,
        .book-service-section .form-select {
            border: none;
            padding: 12px;
            border-radius: 5px;
        }

        .btn-book {
            background: var(--dark-gray);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-book:hover {
            background: #111827;
            transform: translateY(-2px);
        }

        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            height: 100%;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .review-stars {
            color: #FCD34D;
            margin-bottom: 15px;
        }

        .review-text {
            color: #4B5563;
            margin-bottom: 20px;
            font-style: italic;
        }

        .review-author {
            font-weight: bold;
            color: var(--dark-gray);
        }

        .review-location {
            color: #9CA3AF;
            font-size: 0.9rem;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
        }

        .accordion-button {
            background: var(--light-gray);
            color: var(--dark-gray);
            font-weight: 500;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-red);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-red);
        }

        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 5px !important;
            overflow: hidden;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-gray), #374151);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn-hero {
            background: var(--primary-red);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-hero:hover {
            background: var(--light-red);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--light-gray);
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .contact-info-item i {
            font-size: 2rem;
            color: var(--primary-red);
            margin-right: 20px;
        }

        .contact-info-item h5 {
            margin-bottom: 5px;
            color: var(--dark-gray);
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-widget h4 {
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .footer-widget p {
            color: #9CA3AF;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #9CA3AF;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--light-red);
        }

        .newsletter-form {
            display: flex;
            margin-bottom: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }

        .newsletter-form button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--light-red);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #374151;
            color: #9CA3AF;
        }

        .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: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
