:root {
            --primary: #1a365d;
            --secondary: #2b6cb0;
            --accent: #d69e2e;
            --light: #f7fafc;
            --dark: #2d3748;
            --success: #38a169;
            --text: #4a5568;
            --text-light: #718096;
            --border: #e2e8f0;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3.5rem;
            line-height: 1.2;
        }

        h2 {
            font-size: 2.5rem;
            position: relative;
            margin-bottom: 2.5rem;
        }

        h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -15px;
            width: 60px;
            height: 4px;
            background: var(--accent);
        }

        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        p.lead {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .btn {
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline-primary:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        /* Navigation */
        .navbar {
            padding: 1rem 0;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary);
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark);
            margin: 0 0.5rem;
            transition: var(--transition);
        }

        .navbar-nav .nav-link:hover {
            color: var(--secondary);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(26, 54, 93, 0.8)), url('src/2.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 0 6rem;
            position: relative;
        }

        .hero-content {
            max-width: 650px;
        }

        .hero h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
        }

        .hero-buttons .btn {
            margin-right: 1rem;
            margin-bottom: 1rem;
        }

        .stats-container {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 2rem;
            margin-top: 3rem;
            backdrop-filter: blur(10px);
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-text {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Carousel */
        .carousel-item {
            height: 600px;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
        }

        .carousel-caption {
            background: rgba(26, 54, 93, 0.8);
            padding: 2rem;
            border-radius: 10px;
            bottom: 20%;
            left: 10%;
            right: 10%;
        }

        /* Section Styling */
        .section {
            padding: 6rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Cards */
        .card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .card-body {
            padding: 2rem;
        }

        .card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* Overview Section */
        .overview-card {
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .overview-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        /* Gallery */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 250px;
            gap: 1.5rem;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item.large {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 2rem 1.5rem 1.5rem;
            color: white;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--light);
        }

        .testimonial-card {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
            margin-top: 3rem;
        }

        .testimonial-card:before {
            content: '\201C';
            font-size: 6rem;
            color: var(--accent);
            opacity: 0.2;
            position: absolute;
            top: -1rem;
            left: 2rem;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
        }

        .author-details h4 {
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }

        .author-details p {
            color: var(--text-light);
            margin-bottom: 0;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 6rem 0;
            text-align: center;
        }

        .cta-section h2 {
            color: white;
        }

        .cta-section h2:after {
            background: var(--accent);
            left: 50%;
            transform: translateX(-50%);
        }

        .cta-section p {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .btn-white {
            background: white;
            color: var(--primary);
        }

        .btn-white:hover {
            background: var(--light);
            color: var(--primary);
        }

        .btn-outline-white {
            border-color: white;
            color: white;
        }

        .btn-outline-white:hover {
            background: white;
            color: var(--primary);
        }

        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 5rem 0 2rem;
        }

        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 5rem 0 4rem;
                text-align: center;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .section {
                padding: 4rem 0;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .gallery-item.large {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .carousel-item {
                height: 400px;
            }
            
            .stats-container {
                padding: 1rem;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .hero-buttons .btn {
                display: block;
                width: 100%;
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .carousel-caption {
                bottom: 10%;
                left: 5%;
                right: 5%;
                padding: 1rem;
            }
            
            .testimonial-card {
                padding: 1.5rem;
            }
        }