  /* Floating Navigation Bar */
        .main-navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border-radius: 50px;
            max-width: 800px;
            width: 90%;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 12px 35px;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
        }

        .navbar-brand {
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .logo {
            height: 40px;
            width: auto;
            transition: all 0.3s ease;
            /* Keep original colors - no filter applied */
        }

        .main-navbar.scrolled .logo {
            /* Keep original colors when scrolled */
        }

        .navbar-nav {
            gap: 30px;
        }

        .nav-link {
           
            font-weight: 500;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 8px 0 !important;
            position: relative;
        }

        .main-navbar.scrolled .nav-link {
            color: #666 !important;
        }

        .nav-link:hover {
            color: #d35105 !important;
            transform: translateY(-2px);
        }

        .main-navbar.scrolled .nav-link:hover {
            color: #333 !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .navbar-toggler {
            border: none;
            padding: 4px 8px;
        }

           .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M4 6H20M4 12H20M4 18H20' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}



        .main-navbar.scrolled .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

         @media (max-width: 991px) {
            .main-navbar {
                border-radius: 20px;
                margin: 10px;
                padding: 15px 20px;
                width: calc(100% - 20px);
            }
            
            .navbar-nav {
                gap: 15px;
                margin-top: 20px;
            }
            
            .nav-link {
                padding: 10px 0 !important;
            }

            .logo {
                height: 35px;
            }
        }
  /* Floating Navigation Bar end */
/* Hero Section - Reduced Height */
.hero-section {
    min-height: 40vh; /* Reduced from 70vh */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(254, 114, 0, 0.8) 0%, rgba(243, 111, 3, 0.799) 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.section-title {
    margin-bottom: 2rem;
}

.subtitle {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.subtitle span {
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    display: inline-block;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.about-content p {
    margin-bottom: 25px;
    text-align: justify;
}

.about-mfai-head-img1 {
    width: 28rem;
    height: 28rem;
    object-fit: cover;
    border-radius: 45px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    align-self: center;
    transition: all 0.5s ease;
    position: relative;
}

.about-mfai-head-img1:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.sigma_dots-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sigma_dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

/* Gurus Section */
.gurus-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.gc-gallery-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 2px;
    margin: 0 auto;
}

/* Enhanced Carousel */
.carousel {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-inner {
    border-radius: 25px;
}

.guru-card {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.guru-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.carousel-item:hover .guru-card img {
    transform: scale(1.05);
}

.carousel-caption {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 30px;
    text-align: left;
}

.carousel-caption h5 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Custom Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

/* Custom Indicators */
.carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    transform: scale(1.2);
}

/* Floating Elements */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .main-navbar {
        border-radius: 20px;
        margin: 1px;
        padding: 15px 20px;
        width: calc(100% - 20px);
    }
    
    .navbar-nav {
        gap: 15px;
        margin-top: 20px;
    }
    
    .nav-link {
        padding: 10px 0 !important;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .about-mfai-head-img1 {
        width: 20rem;
        height: 20rem;
        margin-bottom: 30px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-mfai-head-img1 {
        width: 18rem;
        height: 18rem;
    }

    .guru-card {
        height: 300px;
    }
}

/* Scroll Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}


/* Footer Styles Start */
        .main-footer {
            background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
            color: #f5f5f5;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }

        .main-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #ff6b6b, #ffa500, #ff6b6b);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

        .footer-content {
            position: relative;
            z-index: 2;
        }

        .footer-section h5 {
            color: #ffa500;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
        }

        .footer-section h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(45deg, #ff6b6b, #ffa500);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #d4d4d4;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: #ffa500;
            transform: translateX(5px);
        }

        .contact-info {
            color: #d4d4d4;
            line-height: 1.8;
        }

        .contact-info i {
            color: #ffa500;
            margin-right: 10px;
            width: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 165, 0, 0.1);
            border: 1px solid rgba(255, 165, 0, 0.3);
            border-radius: 50%;
            color: #ffa500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #ffa500;
            color: #1a0f0a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 165, 0, 0.4);
        }



        .footer-bottom {
            border-top: 1px solid rgba(255, 165, 0, 0.2);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            color: #b0b0b0;
        }

        .footer-logo {
            height: 35px;
            margin-bottom: 15px;
        }

        .spiritual-quote {
            font-style: italic;
            color: #ffa500;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .main-footer {
                padding: 40px 0 20px;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
            
            .social-links {
                justify-content: center;
            }
        }
        .demo-content {
            height: 200vh;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            text-align: center;
        }

       
        @media (max-width: 768px) {
            .video-content h1 {
                font-size: 2rem;
            }

            .video-content p {
                font-size: 1rem;
            }

            .video-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .logo {
                height: 30px;
            }
        }
        /* Footer Styles End*/