
        :root {
            --teal: #008080;
            --dark-blue: #1a3a5f;
            --light-gray: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--dark-blue) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--teal);
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-blue) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--teal) !important;
        }

        .nav-item{
            margin-left:40px;
        }
        
        .btn-cta {
            background-color: var(--teal);
            color: white;
            border-radius: 50px;
            padding: 8px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(26, 58, 95, 0.9), rgba(0, 128, 128, 0.8)), url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRgUxfm-_GXq0XrLGrBVxx9I72S7wBadWUOYQ&s') center/cover;
            color: white;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size:7rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .btn-hero {
            background-color: white;
            color: var(--dark-blue);
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-hero:hover {
            background-color: var(--teal);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h2 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--teal);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .about-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .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.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Counter Section */
        .counter-section {
            padding: 60px 0;
            background-color: var(--dark-blue);
            color: white;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            color: var(--teal);
            margin-bottom: 15px;
        }
        
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-item p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .vm-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: var(--teal);
            margin-bottom: 20px;
        }
        
        .vm-card h3 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            background-color: var(--light-gray);
            transform: translateY(-5px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--teal);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            color: var(--dark-blue);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .service-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            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.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h4 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .service-content p {
            flex-grow: 1;
            margin-bottom: 20px;
        }
        
        .btn-service {
            color: var(--teal);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .btn-service:hover {
            color: var(--dark-blue);
            text-decoration: none;
        }
        
        .btn-service i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .btn-service:hover i {
            transform: translateX(5px);
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .review-card {
            background-color: var(--light-gray);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            position: relative;
        }
        
        .review-card i.quote {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            color: rgba(0, 128, 128, 0.2);
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card p {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
        }
        
        .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .reviewer h5 {
            margin: 0;
            color: var(--dark-blue);
            font-weight: 600;
        }
        
        .reviewer span {
            font-size: 0.9rem;
            color: #666;
        }
        
        /* Booking Form */
        .booking-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .booking-form {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-control, .form-select {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 0.25rem rgba(0, 128, 128, 0.25);
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: white;
        }
        
        .accordion-button {
            background-color: var(--light-gray);
            color: var(--dark-blue);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--teal);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--dark-blue), var(--teal));
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .contact-info {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .contact-info h3 {
            color: var(--dark-blue);
            font-weight: 700;
            margin-bottom: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-item i {
            color: var(--teal);
            font-size: 1.3rem;
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-form {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-blue);
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-column h4 {
            color: white;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--teal);
        }
        
        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-column ul li a:hover {
            color: var(--teal);
            padding-left: 5px;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background-color: var(--teal);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 5px 5px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: white;
            color: var(--teal);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .copyright a {
            color: var(--teal);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }
