        /* Hero Section Background */
        .hero-bg {
            background-color: #0a0a0a;
            background-image: radial-gradient(circle at 25% 25%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(244, 114, 182, 0.1) 0%, transparent 50%);
        }

        /* Card Border Gradient for a sleek, modern look */
        .card-border-gradient {
            border: 1px solid transparent;
            background: linear-gradient(hsl(var(--background)), hsl(var(--background))) padding-box,
                linear-gradient(135deg, hsl(var(--primary) / 0.3), hsl(var(--muted) / 0.3)) border-box;
            transition: all 0.3s ease;
        }

        .card-border-gradient:hover {
            border-color: transparent;
            background: linear-gradient(hsl(var(--background)), hsl(var(--background))) padding-box,
                linear-gradient(135deg, hsl(var(--primary)), hsl(var(--muted))) border-box;
        }

        /* Glow Effect for interactive elements */
        .glow-effect {
            position: relative;
        }

        .glow-effect::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, hsl(var(--primary) / 0.1), transparent 70%);
            transform: translate(-50%, -50%);
            z-index: -1;
            transition: opacity 0.5s ease;
            opacity: 0;
        }

        .glow-effect:hover::before {
            opacity: 1;
        }

        /* General scroll reveal animations */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .reveal-on-scroll.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Specific animation delays for sections */
        .reveal-on-scroll:nth-child(1) {
            transition-delay: 0s;
        }

        .reveal-on-scroll:nth-child(2) {
            transition-delay: 0.1s;
        }

        .reveal-on-scroll:nth-child(3) {
            transition-delay: 0.2s;
        }

        .reveal-on-scroll:nth-child(4) {
            transition-delay: 0.3s;
        }

        .reveal-on-scroll:nth-child(5) {
            transition-delay: 0.4s;
        }

        .reveal-on-scroll:nth-child(6) {
            transition-delay: 0.5s;
        }

        /* About Us Hero Background - Completely Redesigned */
        .about-hero-bg {
            background-color: #0a0a0a;
            background-image:
                /* Subtle radial glows */
                radial-gradient(circle at 10% 90%, rgba(167, 139, 250, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 90% 10%, rgba(244, 114, 182, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                /* Fine grid pattern */
                repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px),
                repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
            background-size: cover, cover, cover, 10px 10px, 10px 10px;
            /* Ensure cover for gradients, grid size for lines */
            background-position: center center, center center, center center, 0 0, 0 0;
            animation: hero-background-pan 60s linear infinite;
            /* Slow, continuous pan */
        }

        @keyframes hero-background-pan {
            0% {
                background-position: center center, center center, center center, 0 0, 0 0;
            }

            100% {
                background-position: center center, center center, center center, 100px 100px, 100px 100px;
            }
        }

        /* Core Values Card Styling */
        .value-card {
            background-color: hsl(var(--card));
            border: 1px solid hsl(var(--border));
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            position: relative;
            /* Needed for interactive glow */
            overflow: hidden;
            /* Ensures glow stays within bounds */
        }

        .value-card:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
        }

        .value-card svg {
            color: hsl(var(--primary));
            margin-bottom: 1rem;
            width: 3rem;
            height: 3rem;
        }

        /* Testimonials/Logos Section - Marquee for Logos */
        .logo-marquee-container {
            overflow: hidden;
            white-space: nowrap;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            padding: 1rem 0;
            /* Vertical padding */
            border-radius: var(--radius);
            background-color: hsl(var(--secondary));
            border: 1px solid hsl(var(--border));
        }

        .logo-marquee {
            display: inline-block;
            /* Makes it scrollable */
            animation: marquee-scroll 30s linear infinite;
            /* Adjust duration for speed */
            padding: 0.5rem 0;
            /* Vertical padding */
        }

        .logo-marquee:hover {
            animation-play-state: paused;
            /* Pause on hover */
        }

        @keyframes marquee-scroll {
            0% {
                transform: translateX(0%);
            }

            100% {
                transform: translateX(-50%);
            }

            /* Scrolls half the width to loop seamlessly */
        }

        .logo-item {
            display: inline-flex;
            /* Keeps items in a row */
            align-items: center;
            justify-content: center;
            /* Enhanced styling for logo items */
            background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--secondary) / 0.8));
            border-radius: var(--radius);
            padding: 0.75rem 1.5rem;
            /* Adjusted padding */
            margin-right: 1.5rem;
            /* Space between items */
            min-height: 60px;
            /* Slightly reduced height */
            border: 1px solid hsl(var(--border));
            color: hsl(var(--muted-foreground));
            font-weight: 600;
            font-size: 1rem;
            /* Slightly smaller font */
            text-align: center;
            transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .logo-item:hover {
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.8));
            color: hsl(var(--primary-foreground));
            border-color: hsl(var(--primary));
            transform: scale(1.05) translateY(-2px);
            /* Slight zoom and lift on hover */
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        /* Testimonial Slider */
        .testimonial-slider-container {
            position: relative;
            max-width: 768px;
            /* Max width for testimonials */
            margin: 0 auto;
            overflow: hidden;
            border-radius: var(--radius);
            background-color: hsl(var(--card));
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            border: 1px solid hsl(var(--border));
        }

        .testimonial-slides {
            display: flex;
            transition: transform 0.8s ease-in-out;
            /* Smooth slide transition */
        }

        .testimonial-slide {
            flex: 0 0 100%;
            /* Each slide takes full width */
            padding: 1rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 180px;
            /* Ensure consistent height */
        }

        .testimonial-quote {
            font-size: 1.25rem;
            /* text-xl */
            font-style: italic;
            color: hsl(var(--muted-foreground));
            margin-bottom: 1rem;
        }

        .testimonial-author {
            font-weight: 600;
            /* font-semibold */
            color: hsl(var(--foreground));
        }

        /* Testimonial Dots Styling */
        .testimonial-dots {
            display: flex;
            justify-content: center;
            margin-top: 1.5rem;
            gap: 0.75rem;
            /* Space between dots */
        }

        .dot {
            width: 10px;
            height: 10px;
            background-color: hsl(var(--muted-foreground));
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
            opacity: 0.6;
        }

        .dot.active {
            background-color: hsl(var(--primary));
            opacity: 1;
            transform: scale(1.2);
        }

        .dot:hover {
            background-color: hsl(var(--primary));
            opacity: 0.8;
        }

        /* Mission & Vision Card Styling */
        .mission-vision-card {
            background-color: hsl(var(--card));
            /* Use card background for consistency */
            border: 1px solid hsl(var(--border));
            border-radius: var(--radius);
            padding: 2.5rem;
            text-align: left;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            /* Needed for interactive glow */
            overflow: hidden;
            /* Ensures glow stays within bounds */
        }

        .mission-vision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
        }

        .mission-vision-card h3 {
            color: hsl(var(--primary));
            /* Highlight headings with primary color */
            font-size: 2.25rem;
            /* text-4xl */
            font-weight: 700;
            /* font-bold */
            margin-bottom: 1rem;
        }

        .mission-vision-card p {
            color: hsl(var(--muted-foreground));
            font-size: 1.125rem;
            /* text-lg */
            line-height: 1.75;
            /* leading-relaxed */
        }

        /* Interactive Mouse Glow Effect (for all cards that need it) */
        .card-with-glow .mouse-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle at center, hsl(var(--primary) / 0.3) 0%, transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            /* Start hidden and small */
            transition: transform 0.4s ease-out, opacity 0.4s ease-out;
            /* Slightly slower transition for spread */
            opacity: 0;
            pointer-events: none;
            /* Crucial: allows mouse events to pass through to the card */
            will-change: transform, opacity;
            /* Optimize for animation */
            z-index: 0;
            /* Keep behind content */
        }

        /* Ensure content is above the mouse glow for all card types */
        .card-with-glow>div:not(.mouse-glow),
        .card-with-glow>a {
            position: relative;
            z-index: 1;
        }