
        :root {
            --primary-blue: #0047AB;
            --accent-yellow: #FFD600;
            --white: #FFFFFF;
            --light-gray: #f8f9fa;
            --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;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .nav-item{
            margin-left:35px !important;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            color: var(--accent-yellow);
            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-blue) !important;
        }

        .cta-btn-nav {
            background: linear-gradient(135deg, var(--primary-blue), #0056d6);
            color: var(--white) !important;
            padding: 8px 20px;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            font-weight: 500;
        }

        .cta-btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 71, 171, 0.3);
            color: var(--white) !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue), #003d8f);
            color: var(--white);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('https://img.freepik.com/free-photo/businessmen-hands-white-table-with-documents-drafts_176420-361.jpg?semt=ais_hybrid&w=740&q=80') center/cover;
            opacity: 0.2;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        .hero-btn {
            background: var(--accent-yellow);
            color: var(--dark-gray);
            padding: 15px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s;
            animation-fill-mode: both;
            border: none;
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 214, 0, 0.4);
            color: var(--dark-gray);
        }

        /* Section Padding */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-blue);
            margin-bottom: 50px;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-yellow);
        }

        /* About Section */
        .about-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-gray);
        }

        .read-more-btn {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .read-more-btn:hover {
            color: var(--accent-yellow);
            transform: translateX(5px);
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-blue), #003d8f);
            color: var(--white);
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
            padding: 20px;
        }

        .counter-icon {
            font-size: 2.5rem;
            color: var(--accent-yellow);
            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(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-mission-box:hover {
            transform: translateY(-5px);
        }

        .vision-mission-box h3 {
            color: var(--primary-blue);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .vision-mission-box h3 i {
            color: var(--accent-yellow);
            margin-right: 10px;
        }

        /* Features Section */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 71, 171, 0.2);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), #0056d6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-icon {
            background: var(--accent-yellow);
        }

        .feature-icon i {
            font-size: 2rem;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .feature-box:hover .feature-icon i {
            color: var(--dark-gray);
        }

        .feature-box h4 {
            color: var(--primary-blue);
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* Services Section */
        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px 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, 71, 171, 0.3);
        }

        .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-body h5 {
            color: var(--primary-blue);
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .service-card-body p {
            flex-grow: 1;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Booking Form */
        .booking-form {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .booking-form .form-control,
        .booking-form .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .booking-form .form-control:focus,
        .booking-form .form-select:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 71, 171, 0.25);
        }

        .booking-form .form-label {
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 8px;
        }

        /* Reviews Section */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 71, 171, 0.2);
        }

        .stars {
            color: var(--accent-yellow);
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), #0056d6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            margin-right: 15px;
        }

        /* FAQ Section */
        .accordion-button {
            background: var(--white);
            color: var(--primary-blue);
            font-weight: 600;
            border: none;
            padding: 20px;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-blue);
            color: var(--white);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--accent-yellow);
        }

        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue), #003d8f);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        /* Contact Section */
        .contact-info-box {
            display: flex;
            align-items: center;
            padding: 20px;
            background: var(--white);
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .contact-info-box:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 20px rgba(0, 71, 171, 0.2);
        }

        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-blue);
            margin-right: 20px;
            width: 50px;
            text-align: center;
        }

        .contact-info-box h4 {
            color: var(--primary-blue);
            margin-bottom: 5px;
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 60px 0 20px;
        }

        footer h4 {
            color: var(--accent-yellow);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-yellow);
            transform: translateX(5px);
        }

        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
            color: #ccc;
        }

        .copyright a {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .copyright a:hover {
            color: var(--white);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 20px;
            }
        }
