
        :root {
            --primary-red: #B71C1C;
            --primary-black: #000000;
            --light-gray: #E0E0E0;
            --dark-gray: #333333;
        }
        
        * {
            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;
        }

        .nav-item{
            margin-left:15px !important;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 20px 0;
            background: transparent !important;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-black) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--primary-red);
            margin-right: 10px;
            font-size: 32px;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-black) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-navbar-cta {
            background: var(--primary-red);
            color: white !important;
            padding: 10px 25px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-navbar-cta:hover {
            background: #8B0000;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(183, 28, 28, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(0, 0, 0, 0.9)), url('https://img.freepik.com/premium-photo/stack-coins-background-business-concept-interest-investment-ideas-returns-financial-returnssavings-investment-businesses_35148-13293.jpg?semt=ais_rp_progressive&w=740&q=80') center/cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size: 80px;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        .nav-item{
            margin-left:35px;
        }
        
        .btn-hero {
            background: var(--primary-red);
            color: white;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            border: 2px solid var(--primary-red);
            border-radius: 5px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-hero:hover {
            background: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        @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: 36px;
            font-weight: bold;
            color: var(--primary-black);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-red);
        }
        
        .section-subtitle {
            color: var(--dark-gray);
            font-size: 18px;
            margin-bottom: 50px;
        }
        
        /* About Section */
        .about-section {
            background: var(--light-gray);
        }
        
        .about-content {
            font-size: 16px;
            line-height: 1.8;
            color: var(--dark-gray);
        }
        
        .btn-read-more {
            background: var(--primary-red);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }
        
        .btn-read-more:hover {
            background: #8B0000;
            color: white;
            transform: translateX(5px);
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-black);
            color: white;
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-box i {
            font-size: 40px;
            color: var(--primary-red);
            margin-bottom: 15px;
        }
        
        .counter {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Vision & Mission */
        .vision-mission-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-10px);
        }
        
        .vision-mission-card i {
            font-size: 48px;
            color: var(--primary-red);
            margin-bottom: 20px;
        }
        
        .vision-mission-card h4 {
            font-size: 24px;
            color: var(--primary-black);
            margin-bottom: 15px;
        }
        
        /* Why Choose Us */
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(183, 28, 28, 0.2);
        }
        
        .feature-box i {
            font-size: 48px;
            color: var(--primary-red);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-size: 20px;
            color: var(--primary-black);
            margin-bottom: 15px;
        }
        
        .feature-box p {
            color: var(--dark-gray);
            font-size: 15px;
        }
        
        /* Services Section */
        .service-card {
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card-body h4 {
            font-size: 22px;
            font-weight: bold;
            color: var(--primary-black);
            margin-bottom: 15px;
        }
        
        .service-card-body p {
            color: var(--dark-gray);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .btn-service {
            background: var(--primary-red);
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            align-self: flex-start;
        }
        
        .btn-service:hover {
            background: #8B0000;
            color: white;
            transform: translateX(5px);
        }
        
        /* Book Service Section */
        .book-service-section {
            background: linear-gradient(135deg, var(--primary-red), var(--primary-black));
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .book-service-section h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .book-service-section p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .btn-book {
            background: white;
            color: var(--primary-red);
            padding: 15px 40px;
            font-size: 18px;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-book:hover {
            background: var(--light-gray);
            color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        /* Reviews Section */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .stars {
            color: #FFD700;
            margin-bottom: 15px;
        }
        
        .review-text {
            font-style: italic;
            color: var(--dark-gray);
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
        }
        
        .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .reviewer h6 {
            color: var(--primary-black);
            margin-bottom: 0;
            font-weight: 600;
        }
        
        .reviewer small {
            color: #666;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--light-gray);
        }
        
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .faq-item.active {
            box-shadow: 0 5px 20px rgba(183, 28, 28, 0.2);
        }
        
        .faq-question {
            padding: 20px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-black);
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: var(--light-gray);
        }
        
        .faq-question i {
            color: var(--primary-red);
            transition: transform 0.3s ease;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px 30px;
            max-height: 500px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-black), var(--primary-red));
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .btn-cta {
            background: white;
            color: var(--primary-red);
            padding: 15px 40px;
            font-size: 18px;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }
        
        .btn-cta:hover {
            background: var(--light-gray);
            color: var(--primary-red);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        /* Contact Section */
        .contact-info {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-info-item i {
            font-size: 24px;
            color: var(--primary-red);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-info-item h5 {
            color: var(--primary-black);
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .contact-info-item p {
            color: var(--dark-gray);
            margin: 0;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .form-control, .form-select {
            border: 2px solid var(--light-gray);
            border-radius: 5px;
            padding: 12px 15px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 0.2rem rgba(183, 28, 28, 0.25);
        }
        
        /* Footer */
        footer {
            background: var(--primary-black);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-widget h4 {
            color: white;
            margin-bottom: 20px;
            font-size: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-widget h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-red);
        }
        
        .footer-widget p {
            color: #ccc;
            line-height: 1.8;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 10px;
        }
        
        .footer-widget ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }
        
        .subscribe-form {
            display: flex;
            margin-top: 20px;
        }
        
        .subscribe-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            font-size: 14px;
        }
        
        .subscribe-form button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .subscribe-form button:hover {
            background: #8B0000;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        
        .footer-bottom p {
            color: #ccc;
            margin: 0;
        }
        
        .footer-bottom a {
            color: var(--primary-red);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: #ff4444;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .counter {
                font-size: 32px;
            }
        }
