
        :root {
            --primary-color: #607D8B;
            --secondary-color: #008080;
            --accent-color: #FFFFFF;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 10px;
            color: var(--secondary-color);
        }

        .navbar-nav .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--secondary-color) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white !important;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4);
            color: white !important;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(36, 36, 36, 0.9)),
                        url('https://img.freepik.com/premium-photo/growth-financial-business-arrow-money-coin-increase-earnings-3d-background-with-economy-market-investment-finance-banking-profit-success-cash-stack-currency-wealth-graph-price-value-strategy_79161-2460.jpg') center/cover;
            min-height: 80vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            font-size:4rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        @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: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
        }

        /* About Section */
        .about-content {
            padding: 20px;
        }

        .about-content h3 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
            padding: 20px;
        }

        .counter-box i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }

        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Vision Mission Box */
        .vision-mission-box {
            background: var(--bg-light);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-mission-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .vision-mission-box h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .vision-mission-box i {
            color: var(--secondary-color);
            margin-right: 10px;
        }

        /* Feature Box */
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
        }

        .feature-box h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        /* Service Card */
        .service-card {
            background: var(--bg-light);
            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 15px 40px rgba(0, 0, 0, 0.15);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card-body h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-card-body p {
            color: var(--text-light);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Review Card */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
        }

        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 15px;
        }

        /* Booking Section */
        .booking-section {
            background: var(--bg-light);
        }

        /* Contact Info Box */
        .contact-info-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .contact-info-box:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .contact-info-box i {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-right: 20px;
            width: 50px;
        }

        /* CTA Section */
        .cta-section {
            background:#333333;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copyright a {
            color: var(--accent-color);
            text-decoration: none;
        }

        .copyright a:hover {
            text-decoration: underline;
        }

        /* Form Styles */
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 128, 128, 0.25);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 20px;
            }
        }
