
        :root {
            --midnight-blue: #191970;
            --silver: #C0C0C0;
            --white: #FFFFFF;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: bold;
            color: var(--midnight-blue) !important;
            font-size: 1.5rem;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            color: var(--midnight-blue);
        }
        
        .navbar-nav .nav-link {
            color: var(--midnight-blue) !important;
            margin: 0 10px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--silver) !important;
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        .btn-cta {
            background-color: var(--midnight-blue);
            color: var(--white);
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: var(--silver);
            color: var(--midnight-blue);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(25, 25, 112, 0.7), rgba(25, 25, 112, 0.7)), url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }
        
        .hero h1 {
            font-size:6rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-hero {
            background-color: var(--silver);
            color: var(--midnight-blue);
            border-radius: 30px;
            padding: 12px 30px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-hero:hover {
            background-color: var(--white);
            color: var(--midnight-blue);
            transform: translateY(-3px);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--midnight-blue);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--silver);
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }
        
        /* About Section */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
            object-fit: cover;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--midnight-blue);
            color: var(--white);
        }
        
        .counter-item {
            text-align: center;
            padding: 20px;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--silver);
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .counter-item p {
            font-size: 1.1rem;
        }
        
        /* Vision & Mission Section */
        .vision-mission-box {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .vision-mission-box i {
            font-size: 2.5rem;
            color: var(--midnight-blue);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us Section */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--midnight-blue);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--midnight-blue);
        }
        
        /* Work Process Section */
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background-color: var(--silver);
            z-index: -1;
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--midnight-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
        }
        
        .process-step h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--midnight-blue);
        }
        
        /* Services Section */
        .service-card {
            background-color: var(--white);
            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.15);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h4 {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--midnight-blue);
            margin-bottom: 15px;
        }
        
        .service-card p {
            flex-grow: 1;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .btn-service {
            background-color: var(--midnight-blue);
            color: var(--white);
            border-radius: 30px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        
        .btn-service:hover {
            background-color: var(--silver);
            color: var(--midnight-blue);
        }
        
        /* Reviews Section */
        .review-card {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .review-card i {
            color: var(--silver);
            font-size: 2rem;
            position: absolute;
            top: 15px;
            right: 15px;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-author h5 {
            margin: 0;
            color: var(--midnight-blue);
        }
        
        .review-author .rating {
            color: #ffc107;
            margin-top: 5px;
        }
        
        /* Booking Form Section */
        .booking-section {
            background-color: var(--midnight-blue);
            color: var(--white);
        }
        
        .booking-form {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
            color: #333;
        }
        
        .form-control, .form-select {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px;
            margin-bottom: 15px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--midnight-blue);
            box-shadow: 0 0 0 0.25rem rgba(25, 25, 112, 0.25);
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--midnight-blue);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(25, 25, 112, 0.9), rgba(25, 25, 112, 0.9)), url('https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background-color: var(--silver);
            color: var(--midnight-blue);
            border-radius: 30px;
            padding: 15px 40px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .btn-cta-large:hover {
            background-color: var(--white);
            color: var(--midnight-blue);
            transform: translateY(-3px);
        }
        
        /* Contact Section */
        .contact-info {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--midnight-blue);
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        
        /* Footer */
        footer {
            background-color: var(--midnight-blue);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-column h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--silver);
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--silver);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            padding: 10px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background-color: var(--silver);
            color: var(--midnight-blue);
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--white);
        }
        
        .copyright {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: var(--silver);
            text-decoration: none;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .copyright a:hover {
            color: var(--white);
            text-decoration: underline;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }
