        /* Navbar Style Sections */
        :root {
            --header-bg: #e9fbf3;
            /* Soft Light Green Background */
            --mint-primary: #00d084;
            /* Vibrant Green for Highlights */
            --brand-black: #1a1a1a;
            /* Matte Black for Text/Main Buttons */
            --white: #ffffff;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #ffffff;
        }

        /* --- 1. TOP MINI HEADER --- */
        .top-bar {
            background-color: rgba(0, 208, 132, 0.05);
            /* Slightly darker light green */
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .top-bar a {
            color: var(--brand-black);
            text-decoration: none;
            font-weight: 500;
        }

        .top-bar a:hover {
            color: var(--mint-primary);
        }

        /* --- 2. MAIN NAVIGATION (Light Green Background) --- */
        .navbar {
            background-color: var(--header-bg);
            padding: 12px 0;
            border-bottom: 1px solid rgba(0, 208, 132, 0.1);
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--brand-black) !important;
        }

        .brand-accent {
            color: var(--mint-primary);
        }

        .nav-link {
            font-weight: 600;
            color: var(--brand-black) !important;
            padding: 10px 18px !important;
        }

        .nav-link:hover {
            color: var(--mint-primary) !important;
        }

        /* --- BUTTONS --- */
        .btn-outline-custom {
            border: 1.5px solid rgba(26, 26, 26, 0.1);
            background: rgba(255, 255, 255, 0.5);
            /* Glass effect on green bg */
            border-radius: 12px;
            margin: 0 5px;
            transition: 0.3s;
        }

        .btn-outline-custom:hover {
            border-color: var(--mint-primary);
            background: var(--white);
            color: var(--mint-primary) !important;
        }

        /* --- EXPLORE COURSES BUTTON --- */
        .btn-main {
            background: var(--brand-black);
            color: var(--white) !important;
            border-radius: 12px;
            padding: 10px 24px !important;
            font-weight: 700;
            border: none;
        }

        .btn-main:hover {
            background: var(--mint-primary);
            color: var(--white) !important;
            /* Text remains white */
            box-shadow: 0 8px 20px rgba(0, 208, 132, 0.2);
        }

        /* --- FLOATING DROPDOWN --- */
        .dropdown-menu.floating-card {
            width: 280px;
            border: none;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 12px;
            margin-top: 15px !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
        }

        .course-link {
            display: block;
            padding: 12px 16px;
            text-decoration: none;
            color: var(--brand-black);
            font-weight: 600;
            border-radius: 12px;
            margin-bottom: 2px;
            transition: 0.2s ease;
        }

        /* HOVER: GREEN BG + WHITE TEXT */
        .course-link:hover {
            background-color: var(--mint-primary);
            color: var(--white) !important;
            padding-left: 22px;
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--white);
                /* Mobile menu white rakha hai for clarity */
                padding: 20px;
                border-radius: 20px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            }
        }

        /*main containt */
        .fw-800 {
            font-weight: 800;
        }

        .hero-section {
            background-color: var(--header-bg);
            padding-top: 2rem;
        }

        .min-vh-75 {
            min-height: 75vh;
        }

        /* Search Bar Styling */
        .search-box {
            max-width: 550px;
            transition: transform 0.3s ease;
        }

        .search-box:focus-within {
            transform: scale(1.02);
            border-color: var(--mint-primary) !important;
        }

        /* Blob & Image Styling */
        .blob-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 110%;
            height: 110%;
            background: radial-gradient(circle, rgba(0, 208, 132, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
        }

        .hero-img-container {
            position: relative;
            padding: 20px;
        }

        .hero-img-container img {
            height: 450px;
            width: 100%;
            object-fit: cover;
        }

        /* Floating Badge Styling */
        .floating-badge {
            position: absolute;
            background: white;
            padding: 12px 20px;
            border-radius: 15px;
            z-index: 2;
            font-size: 0.9rem;
        }

        .badge-top {
            top: 10%;
            left: -5%;
        }

        .badge-bottom {
            bottom: 15%;
            right: -5%;
        }

        .icon-circle {
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 0.7rem;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .hero-img-container img {
                height: 350px;
            }

            .badge-top {
                left: 5%;
            }

            .badge-bottom {
                right: 5%;
            }

            .hero-section {
                text-align: center;
            }

            .search-box {
                margin: 0 auto;
            }

            .stat-item {
                flex: 1;
            }
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .animate-bounce {
            animation: bounce 3s infinite;
        }

        /* course section */
        .ls-2 {
            letter-spacing: 2px;
        }

        .bg-light-green {
            background-color: #e9fbf3;
        }

        .icon-box-lg {
            width: 65px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .course-card {
            background: #ffffff;
            border: 1px solid #f0f0f0 !important;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .transition-up:hover {
            transform: translateY(-15px);
            border-color: var(--mint-primary) !important;
            box-shadow: 0 25px 50px -12px rgba(0, 208, 132, 0.15) !important;
        }

        /* Highlight one card by default */
        .active-card {
            border-color: rgba(0, 208, 132, 0.3) !important;
        }

        .hover-green:hover {
            color: var(--mint-primary) !important;
        }

        .fw-800 {
            font-weight: 800;
        }

        /* Your Journy Section css */
        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand-black);
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.8rem;
        }

        .icon-circle-md {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .process-card {
            transition: all 0.3s ease;
        }

        .process-card:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
        }


/* Essential CSS for Sliding & Hover Effect */
    @keyframes fast-scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-250px * 6)); } /* Adjusted for new width */
    }

    .logo-slider-container:hover .logo-moving-track {
        animation-play-state: paused; /* Isse mouse lane par sliding ruk jayegi */
        cursor: pointer;
    }

    .logo-item img {
        transition: transform 0.3s ease;
    }

    .logo-item:hover img {
        transform: scale(1.1); /* Thoda sa zoom effect hover pe */
    }

    @media (max-width: 768px) {
        @keyframes fast-scroll {
            100% { transform: translateX(calc(-180px * 6)); }
        }
    }


        /* Animation Fix: TranslateX hamesha minus me hona chahiye unique set ki total width ke barabar */
        @keyframes slide-scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-200px * 6));
                /* 6 unique logos x 200px width */
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .slide-item {
                flex: 0 0 140px;
                width: 140px;
                padding: 0 10px;
            }

            @keyframes slide-scroll {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(calc(-140px * 6));
                }
            }
        }


        /* Animation Keyframes */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-250px * 6));
            }

            /* Adhe logos tak move hoga loop ke liye */
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .slide {
                width: 150px;
                padding: 0 20px;
            }

            .logo-track {
                width: calc(150px * 12);
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }

                100% {
                    transform: translateX(calc(-150px * 6));
                }
            }
        }

        /* Floating Animation */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .animate-float {
            animation: float 4s ease-in-out infinite;
        }

        .ms-n3 {
            margin-left: -1.5rem;
        }

        .mt-n3 {
            margin-top: -1.5rem;
        }

        .me-n3 {
            margin-right: -1.5rem;
        }

        .z-index-n1 {
            z-index: -1;
        }

        /* Admission  Alert*/
        .fw-800 {
            font-weight: 800;
        }

        /* Live Pulse Effect */
        .pulse-icon {
            width: 12px;
            height: 12px;
            background: var(--mint-primary);
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 rgba(0, 208, 132, 0.4);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(0, 208, 132, 0.7);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(0, 208, 132, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(0, 208, 132, 0);
            }
        }

        /* Date Badge */
        .date-badge {
            background: #f0fff4;
            color: var(--mint-primary);
            min-width: 60px;
            height: 65px;
            border-radius: 15px;
            padding-top: 8px;
            border: 1px solid rgba(0, 208, 132, 0.2);
        }

        .alert-item {
            border: 1px solid transparent;
            cursor: pointer;
            background: #fff;
        }

        .alert-item:hover {
            background: #f9fdfb;
            border-color: var(--mint-primary);
        }

        .scholarship-card {
            transition: transform 0.4s ease;
        }

        .scholarship-card:hover {
            transform: scale(1.02);
        }

        /* Footer Styling */
        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--mint-primary);
            padding-left: 8px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            text-decoration: none;
            transition: 0.3s;
        }

        .social-btn:hover {
            background: var(--mint-primary);
            transform: translateY(-5px);
            color: white;
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            z-index: 1000;
            transition: 0.3s;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            transform: scale(1.1);
            color: white;
        }

        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 15px;
            background: #1a1a1a;
            color: white;
            padding: 5px 15px;
            border-radius: 10px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            transition: 0.3s;
            pointer-events: none;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
        }

        @media (max-width: 768px) {
            footer {
                border-radius: 30px 30px 0 0;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }
        }

        /* Get the college image sections styling */
        :root {
            --primary-green: #198754;
            --whatsapp-green: #25d366;
        }

        .university-section {
            background-color: #f8f9fa;
            padding: 60px 0;
        }

        /* Swiper Container Styling */
        .swiper {
            width: 100%;
            padding: 20px 0 50px !important;
            /* Space for shadow and pagination */
        }

        .custom-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #edf2f7;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            cursor: grab;
            /* Shows it's draggable */
        }

        .custom-card:active {
            cursor: grabbing;
        }

        .custom-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(25, 135, 84, 0.1);
        }

        .img-box {
            height: 190px;
            position: relative;
        }

        .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .badge-top {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-green);
            font-weight: 700;
            font-size: 11px;
            padding: 5px 12px;
            border-radius: 50px;
            text-transform: uppercase;
        }

        /* Buttons Styling */
        .btn-wa {
            width: 48px;
            height: 48px;
            background: var(--whatsapp-green);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 1.5rem;
            transition: 0.3s;
        }

        .btn-wa:hover {
            background: #128c7e;
            color: #fff;
        }

        .btn-apply {
            background: var(--primary-green);
            color: #fff;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .btn-apply:hover {
            background: #146c43;
            color: #fff;
            box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
        }

        /* Custom Pagination Color */
        .swiper-pagination-bullet-active {
            background: var(--primary-green) !important;
        }