
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #e74c3c;
            --accent-color: #3498db;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            padding: 0.5rem 0;
        }

        .nav-link {
            color: var(--primary-color) !important;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0.4rem !important;
            margin: 0 0.2rem;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }

        .language-dropdown .dropdown-item {
            padding: 0.7rem 1.5rem;
            transition: all 0.3s ease;
        }

        .language-dropdown .dropdown-item:hover {
            background-color: var(--accent-color);
            color: white;
        }

        .carousel-item {
            height: 80vh;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            filter: brightness(0.8);
        }

        .carousel-caption {
            background: rgba(0, 0, 0, 0.4);
            padding: 1.5rem;
            border-radius: 15px;
            max-width: 600px;
            margin: 0 auto;
            backdrop-filter: blur(5px);
        }

        .carousel-caption h2 {
            font-size: 3rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .category-card {
            transition: all 0.4s ease;
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .category-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .category-card {
            width: 100%; /* Ensures the card takes full width of its container */
            max-width: 400px; /* Set a maximum width for the card */
            margin: auto; /* Center the card horizontally */
        }
        
        .category-card img {
            width: 100%; /* Makes the image take full width of the card */
            height: 50cap;/* Maintains the aspect ratio of the image */
            object-fit: cover; /* Ensures the image covers the area without distortion */
            transition: all 0.4s ease; /* Smooth transition for hover effects */
        }
        

        .category-card:hover img {
            transform: scale(1.1);
        }

        .category-card .card-body {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 20px 0;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            color: rgba(52, 152, 219, 0.1);
            font-family: Georgia, serif;
        }

        .about-section {
            background-color: #f8f9fa;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(231, 76, 60, 0.1));
            z-index: 0;
        }

        .mission-section {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), 
                        url('https://picsum.photos/1920/1080?random=4');
            background-size: cover;
            background-attachment: fixed;
            color: white;
            padding: 100px 0;
            position: relative;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(52, 152, 219, 0.2);
            z-index: 1;
        }

        .mission-section .container {
            position: relative;
            z-index: 2;
        }

        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 70px 0 20px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }

        .social-icons a {
            color: white;
            margin: 0 15px;
            font-size: 24px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-5px);
        }

        .quick-links a {
            transition: all 0.3s ease;
            text-decoration: none;
            padding: 5px 0;
            display: inline-block;
        }

        .quick-links a:hover {
            color: var(--accent-color) !important;
            transform: translateX(10px);
        }

        /* Custom Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .carousel-item {
                height: 60vh;
            }
            .carousel-caption h2 {
                font-size: 2rem;
            }
        }
