

 /* ============================================
                   ROOT VARIABLES
                   ============================================ */
        :root {
            --primary: #262161;
            --primary-light: #3a307a;
            --primary-dark: #1a1547;
            --secondary: #4A3F8A;
            --accent: #F5A623;
            --accent-hover: #d4911e;
            --light: #F8F9FA;
            --text-dark: #1A1A2E;
            --text-muted: #6c757d;
            --white: #ffffff;
            --shadow: 0 10px 40px rgba(38, 33, 97, 0.15);
            --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
            --radius: 16px;
            --transition: all 0.3s ease;
        }

        /* ============================================
                   BASE STYLES
                   ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
            color: var(--text-dark);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ============================================
                   SECTION TITLES
                   ============================================ */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
        }

        .section-title span {
            color: var(--accent);
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 3rem auto;
            font-weight: 400;
        }

        .section-padding {
            padding: 15px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 14px 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }

        /* ============================================
                   HEADER
                   ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1050;
            padding: 16px 0;
            transition: var(--transition);
            background: #00000040;
        }

        .header.scrolled {
            background: rgb(38 33 97 / 28%);
            backdrop-filter: blur(12px);
            padding: 10px 0;
            box-shadow: 0 4px 30px rgba(38, 33, 97, 0.2);
        }

        .header .logo img {
            height: 69px;
            width: auto;
        }

        /* ---- Desktop Nav ---- */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-menu>li {
            position: relative;
        }

        .nav-menu>li>a {
            color: var(--white);
            font-weight: 500;
            font-size: 17px;
            padding: 8px 14px;
            border-radius: 8px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 4px;
            letter-spacing: 0.01em;
        }

        .nav-menu>li>a:hover,
        .nav-menu>li>a.active {
            background: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }

        .nav-menu>li>a i {
            font-size: 0.75rem;
            margin-left: 2px;
        }

        /* ---- Dropdown ---- */
        .dropdown-menu-custom {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 220px;
            background: var(--white);
            border-radius: 12px;
            padding: 8px 0;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transform: translateY(12px);
            transition: var(--transition);
            border: none;
            list-style: none;
            margin: 0;
        }

        .nav-menu>li:hover .dropdown-menu-custom {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu-custom li {
            position: relative;
        }

        .dropdown-menu-custom li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            color: var(--text-dark);
            font-size: 0.85rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .dropdown-menu-custom li a:hover {
            background: rgba(38, 33, 97, 0.06);
            color: var(--primary);
        }

        .dropdown-menu-custom li a i {
            font-size: 0.7rem;
            color: var(--text-muted);
        }

        /* Nested dropdown (right side) */
        .dropdown-menu-custom .dropdown-menu-custom {
            left: 100%;
            top: 0;
            min-width: 200px;
        }

        /* ---- Menu Toggle (Hamburger) ---- */
        .menu-toggle {
            /* display: none; */
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: var(--white);
            width: 44px;
            height: 44px;
            border-radius: 10px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            align-items: center;
            justify-content: center;
        }

        .menu-toggle:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .mobMenu {
            display: none;
        }

        /* ============================================
                   OFF-CANVAS MENU (Right-to-Left)
                   ============================================ */
        .offcanvas-menu {
            position: fixed;
            top: 0;
            right: -420px;
            width: 400px;
            max-width: 85vw;
            height: 100vh;
            background: var(--white);
            z-index: 20000000000;
            padding: 30px 25px;
            transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            overflow-y: auto;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        }

        .offcanvas-menu.open {
            right: 0;
        }

        .offcanvas-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1055;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .offcanvas-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .offcanvas-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(38, 33, 97, 0.08);
            margin-bottom: 20px;
        }

        .offcanvas-header .logo img {
            height: 40px;
        }

        .offcanvas-close {
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--text-dark);
            cursor: pointer;
            padding: 0 8px;
            transition: var(--transition);
        }

        .offcanvas-close:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }

        /* ---- Offcanvas Menu Items ---- */
        .offcanvas-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .offcanvas-nav>li {
            border-bottom: 1px solid rgba(38, 33, 97, 0.06);
        }

        .offcanvas-nav>li>a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }

        .offcanvas-nav>li>a:hover {
            color: var(--primary);
        }

        .offcanvas-nav>li>a .arrow {
            font-size: 0.75rem;
            transition: var(--transition);
        }

        .offcanvas-nav>li>a .arrow.open {
            transform: rotate(180deg);
        }

        /* ---- Offcanvas Submenu ---- */
        .offcanvas-sub {
            list-style: none;
            padding: 0 0 0 16px;
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .offcanvas-sub.open {
            max-height: 800px;
        }

        .offcanvas-sub li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            color: black;
            font-size: 0.9rem;
            font-weight: 400;
            border-bottom: 1px solid rgba(38, 33, 97, 0.04);
            transition: var(--transition);
        }

        .offcanvas-sub li a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .offcanvas-sub .offcanvas-sub {
            padding-left: 16px;
        }

        .offcanvas-sub .offcanvas-sub li a {
            font-size: 0.85rem;
            color: #000000;
        }

        .offcanvas-contact {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(38, 33, 97, 0.08);
        }

        .offcanvas-contact p {
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .offcanvas-contact p i {
            width: 24px;
            color: var(--primary);
        }

         .acceridation-logo {
            display: flex;
        }

        .acceridation-logo img {
            height: 63px;
            margin-left: 20px;
        }

        @media (max-width: 767.98px) {
          .acceridation-logo {
            display: none;
            }
        }


        /* ============================================
PRELOADER
============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-wrapper {
    text-align: center;
    position: relative;
}

/* ---- Preloader Icon ---- */
.preloader-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 2.5rem;
    color: var(--accent);
    border: 2px solid rgba(255, 255, 255, 0.08);
    animation: pulseIcon 1.5s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(245, 166, 35, 0.15);
    }
}

/* ---- Spinner ---- */
.preloader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--accent);
    border-right: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ---- Loading Text ---- */
.preloader-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeText 1.5s ease-in-out infinite;
}

@keyframes fadeText {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* ---- Loading Dots Animation ---- */
.preloader-text::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: ''; }
}

/* ---- Optional: Decorative rings ---- */
.preloader-wrapper::before,
.preloader-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.preloader-wrapper::before {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 2s ease-in-out infinite;
}

.preloader-wrapper::after {
    width: 160px;
    height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 2.5s ease-in-out infinite 0.3s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0;
    }
}

        /* ============================================
STICKY SOCIAL MEDIA ICONS (Left Side)
============================================ */
.sticky-social {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-radius: 0 16px 16px 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-left: none;
}

.sticky-social .social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.sticky-social .social-icons li {
    display: block;
    width: 100%;
}

.sticky-social .social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 35px;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    text-decoration: none;
    padding: 0 5px;

}

/* Social Icon Colors on Hover */
.sticky-social .social-icons li a .social-label {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(-8px);
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.sticky-social .social-icons li a .social-label::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-right: 6px solid var(--primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.sticky-social .social-icons li a:hover .social-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(4px);
}


.social-facebook {
    color: #1877F2 !important;
}
.social-instagram {
    color: #E4405F !important;
}
.social-youtube {
    color: #FF0000 !important;
}
.social-twitter {
    color: #000000 !important;
}
.social-linkedin {
    color: #0A66C2 !important;
}
/* Individual Social Colors */
.sticky-social .social-icons li a.social-facebook:hover {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.08);
}

.sticky-social .social-icons li a.social-instagram:hover {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.08);
}

.sticky-social .social-icons li a.social-youtube:hover {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.08);
}

.sticky-social .social-icons li a.social-twitter:hover {
    color: #000000;
    background: rgba(29, 161, 242, 0.08);
}

.sticky-social .social-icons li a.social-linkedin:hover {
    color: #0A66C2;
    background: rgba(10, 102, 194, 0.08);
}

/* ============================================
ADMISSION ENQUIRY BUTTON (Floating)
============================================ */
.admission-enquiry {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
}

.admission-enquiry .enquiry-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 16px 22px 16px 18px;
    border-radius: 16px 0 0 16px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: -4px 4px 30px rgba(38, 33, 97, 0.30);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: none;
    cursor: pointer;
    writing-mode: vertical-rl;
    letter-spacing: 0.05em;
    padding: 13px 1px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-right: none;
}

.admission-enquiry .enquiry-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.admission-enquiry .enquiry-btn i:first-child {
    margin-bottom: 8px;
}

.admission-enquiry .enquiry-btn i:last-child {
    margin-top: 8px;
}

.admission-enquiry .enquiry-btn span {
    writing-mode: vertical-rl;
    letter-spacing: 0.08em;
}

.admission-enquiry .enquiry-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #d4911e 100%);
    transform: translateX(-4px) scale(1.02);
    box-shadow: -8px 8px 40px rgba(245, 166, 35, 0.35);
    padding: 22px 18px;
}

.admission-enquiry .enquiry-btn:hover i:first-child {
    animation: pulseIcon 1s ease infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ============================================
RESPONSIVE - Hide on Mobile
============================================ */
@media (max-width: 768px) {
    /* Hide Social Icons on Mobile */
    .sticky-social {
        display: none;
    }
    
    /* Admission Enquiry - Smaller on Mobile */
    .admission-enquiry .enquiry-btn {
        padding: 16px 10px;
        font-size: 0.75rem;
        border-radius: 12px 0 0 12px;
    }
    
    .admission-enquiry .enquiry-btn span {
        letter-spacing: 0.06em;
    }
    
    .admission-enquiry .enquiry-btn i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .admission-enquiry .enquiry-btn {
        padding: 12px 8px;
        font-size: 0.65rem;
        border-radius: 10px 0 0 10px;
    }
    
    .admission-enquiry .enquiry-btn i {
        font-size: 0.85rem;
    }
    
    .admission-enquiry .enquiry-btn i:first-child {
        margin-bottom: 4px;
    }
    
    .admission-enquiry .enquiry-btn i:last-child {
        margin-top: 4px;
    }
}

/* ---- Hide on Print ---- */
@media print {
    .sticky-social,
    .admission-enquiry {
        display: none !important;
    }
}

       

        /* ============================================
                   FOOTER
                   ============================================ */
        .footer {
            background: var(--primary-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 0 0;
        }

        .footer h4 {
            color: var(--white);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: 0.01em;
        }

        .footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer .footer-links li {
            margin-bottom: 10px;
        }

        .footer .footer-links li a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer .footer-links li a:hover {
            color: var(--accent);
            transform: translateX(4px);
        }

        .footer .footer-links li a i {
            font-size: 0.6rem;
            color: var(--accent);
        }

        .footer .footer-contact p {
            margin-bottom: 10px;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            color:white;
        }

        .footer .footer-contact p i {
            color: var(--accent);
            font-size: 1rem;
            margin-top: 4px;
            min-width: 18px;
        }

        .footer .social-links {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .footer .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: var(--transition);
        }

        .footer .social-links a:hover {
            background: var(--accent);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
            margin-top: 40px;
            font-size: 0.85rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer .footer-bottom a {
            color: var(--accent);
        }

        /* ============================================
                   RESPONSIVE - HEADER
                   ============================================ */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }
               .mobMenu {
                display: block;
            }

            .menu-toggle {
                display: flex;
            }

            .header .logo img {
                height: 45px;
            }
        }
        @media (max-width: 768px) {
            .mobMenu {
                display: block;
            }
        }

        @media (max-width: 576px) {
            .header .logo img {
                height: 38px;
            }
            .header {
                padding: 12px 0;
            }
          
        }


  /* ============================================
                   UTILITY
                   ============================================ */
        .text-accent {
            color: var(--accent);
        }
        .bg-primary-custom {
            background: var(--primary);
        }
        .bg-light-custom {
            background: var(--light);
        }

        /* Swiper custom arrows */
        .swiper-button-prev-custom,
        .swiper-button-next-custom {
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: 50%;
            box-shadow: var(--shadow-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 0.9rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
        }

        .swiper-button-prev-custom:hover,
        .swiper-button-next-custom:hover {
            background: var(--primary);
            color: var(--white);
        }


/* ============================================
                   HERO SECTION
                   ============================================ */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }

        .hero video {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translate(-50%, -50%);
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg,
                    rgba(38, 33, 97, 0.75) 0%,
                    rgba(38, 33, 97, 0.30) 50%,
                    rgba(0, 0, 0, 0.10) 100%); */
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 40px 80px 40px;
            max-width: 700px;
        }

        .hero-content .badge {
            background: var(--accent);
            color: var(--white);
            font-weight: 600;
            font-size: 0.8rem;
            padding: 6px 18px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 16px;
            letter-spacing: 0.03em;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 16px;
            letter-spacing: -0.03em;
        }

        .hero-content h1 span {
            color: var(--accent);
        }

        .hero-content p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 500px;
            line-height: 1.7;
            margin-bottom: 28px;
            font-weight: 400;
        }

        .hero-content .btn-hero {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--accent);
            color: var(--white);
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            border: none;
            box-shadow: 0 8px 30px rgba(245, 166, 35, 0.35);
        }

        .hero-content .btn-hero:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(245, 166, 35, 0.45);
            color: var(--white);
        }

        .hero-content .btn-hero i {
            font-size: 1.1rem;
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.5rem;
            animation: bounceDown 2s infinite;
        }

        @keyframes bounceDown {
            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(8px);
            }
        }

        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                min-height: 500px;
                height: 80vh;
            }
            .hero-content {
                padding: 30px 20px 60px 20px;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            .hero-content p {
                font-size: 0.95rem;
            }
            .hero-content .btn-hero {
                padding: 12px 28px;
                font-size: 0.9rem;
            }
        }

        /* ============================================
                   GET STARTED SECTION
                   ============================================ */
        .get-started .swiper-slide {
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .get-started .swiper-slide:hover {
            transform: translateY(-6px);
        }

        .get-started .slide-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 4/3;
            background: var(--light);
        }

        .get-started .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .get-started .swiper-slide:hover .slide-image img {
            transform: scale(1.05);
        }

        .get-started .slide-label {
            margin-top: 12px;
            font-weight: 600;
            font-size: 1rem;
            color: var(--text-dark);
            letter-spacing: 0.01em;
        }

        .get-started .slide-label i {
            color: var(--primary);
            margin-right: 6px;
        }

        /* ============================================
                   CAMPUS NEWS (3 Columns with Scroll)
                   ============================================ */
        .campus-news {
            background: var(--light);
        }

        .news-column {
            background: var(--white);
            border-radius: var(--radius);
            padding: 24px 20px;
            box-shadow: var(--shadow-light);
            height: 420px;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .news-column:hover {
            box-shadow: var(--shadow);
        }

        .news-column .column-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            padding-bottom: 14px;
            border-bottom: 3px solid var(--accent);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .news-column .column-title i {
            color: var(--accent);
            font-size: 1.2rem;
        }

        .news-scroll {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .news-scroll-inner {
            animation: scrollUp 20s linear infinite;
        }

        .news-scroll:hover .news-scroll-inner {
            animation-play-state: paused;
        }

        @keyframes scrollUp {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%);
            }
        }

        .news-item {
            padding: 12px 0;
            border-bottom: 1px solid rgba(38, 33, 97, 0.06);
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item .news-date {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 4px;
        }

        .news-item .news-text {
            font-size: 0.9rem;
            color: var(--text-dark);
            font-weight: 500;
            line-height: 1.4;
        }

        .news-item .news-text a {
            color: inherit;
        }

        .news-item .news-text a:hover {
            color: var(--primary);
        }

        /* Events with image */
        .news-item.event-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .news-item.event-item .event-img {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            object-fit: cover;
            flex-shrink: 0;
            background: var(--light);
        }

        .news-item.event-item .event-info {
            flex: 1;
        }

        .news-item.event-item .event-info .news-text {
            font-size: 0.85rem;
        }

        /* ============================================
                   INDUSTRY PARTNERSHIP
                   ============================================ */
      /* ============================================
INDUSTRY PARTNERSHIP + STATS (With Background)
============================================ */
.industry-partnership {
    background: var(--white);
    padding: 29px 0 60px 0;
    position: relative;
}

/* Logo Slider */
.logo-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
   
    transition: var(--transition);
}

.logo-slider .swiper-slide:hover {
    filter: grayscale(0);
    opacity: 1;
}

.logo-slider .swiper-slide img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* ---- Stats Wrapper with Background Image ---- */
.stats-wrapper {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-image: url('../stats.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;  /* Parallax effect */
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Dark overlay on background */
.stats-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 33, 97, 0.2);
    z-index: 1;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--accent);
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-item .number .plus {
    color: var(--accent);
    font-size: 2rem;
}

.stat-item .label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 6px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .stats-wrapper {
        padding: 40px 25px;
        background-attachment: scroll;  /* Disable parallax on tablet */
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item .number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .stats-wrapper {
        padding: 30px 20px;
        border-radius: 14px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-item .number {
        font-size: 2rem;
    }
    
    .stat-item .number .plus {
        font-size: 1.5rem;
    }
    
    .stat-item .label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stats-wrapper {
        padding: 20px 12px;
    }
    
    .stat-item {
        padding: 16px 10px;
        border-radius: 12px;
    }
    
    .stat-item .number {
        font-size: 1.6rem;
    }
    
    .stat-item .number .plus {
        font-size: 1.2rem;
    }
    
    .stat-item .label {
        font-size: 0.75rem;
    }
}

        /* ============================================
                   EMINENT VISITORS
                   ============================================ */
        /* .eminent-visitors {
            background: var(--light);
        }

        .visitor-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
        }

        .visitor-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }

        .visitor-card .visitor-img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
        }

        .visitor-card .visitor-info {
            padding: 20px;
            text-align: center;
        }

        .visitor-card .visitor-info h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .visitor-card .visitor-info p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin: 0;
        } */


        /* ============================================
EMINENT VISITORS (Left Writeup + Right Cards)
============================================ */
/* ============================================
EMINENT VISITORS (Enhanced Background)
============================================ */
.eminent-visitors {
    background: #ffffff;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

/* ---- Decorative Background Elements ---- */

/* Large blurred circle - top right */
.eminent-visitors::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 33, 97, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Large blurred circle - bottom left */
.eminent-visitors::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ---- Additional Decorative Elements ---- */

/* Small floating dots pattern */
.eminent-visitors .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(38, 33, 97, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(38, 33, 97, 0.02) 0%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

/* Grid pattern overlay (very subtle) */
.eminent-visitors .grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(38, 33, 97, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 33, 97, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ---- Glow effect behind the swiper ---- */
.eminent-glow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 33, 97, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ---- Make sure content stays above background ---- */
.eminent-visitors .container {
    position: relative;
    z-index: 1;
}

/* ---- Floating decorative shape (optional) ---- */
.eminent-decoration {
    position: absolute;
    right: 50px;
    top: 100px;
    font-size: 8rem;
    color: rgba(38, 33, 97, 0.03);
    pointer-events: none;
    z-index: 0;
    font-family: 'Georgia', serif;
    line-height: 1;
}

/* ---- Card hover enhanced with glow ---- */
.eminent-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    width: 100%;
    max-width: 340px;
}

.eminent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(38, 33, 97, 0.12);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(38, 33, 97, 0.1);
}

/* ---- Responsive adjustments ---- */
@media (max-width: 992px) {
    .eminent-visitors::before {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -50px;
    }
    
    .eminent-visitors::after {
        width: 250px;
        height: 250px;
        bottom: -80px;
        left: -80px;
    }
    
    .eminent-glow {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .eminent-visitors {
        padding: 50px 0;
    }
    
    .eminent-visitors::before {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -30px;
    }
    
    .eminent-visitors::after {
        width: 180px;
        height: 180px;
        bottom: -50px;
        left: -50px;
    }
    
    .eminent-glow {
        width: 150px;
        height: 150px;
    }
}
/* ---- LEFT SIDE - Writeup ---- */
.eminent-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.eminent-badge i {
    margin-right: 6px;
}

.eminent-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #f5a623;
    line-height: 1.1;
    margin-bottom: 16px;
}

.eminent-title span {
    color: rgb(0, 0, 0);
}

.eminent-desc {
    font-size: 21px;
    color: rgb(0, 0, 0);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 90%;
}

/* ---- Left Side Stats ---- */
.eminent-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.eminent-stat {
    display: flex;
    flex-direction: column;
}

.eminent-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: rgb(0, 0, 0);
    line-height: 1;
}

.eminent-stat .stat-label {
    font-size: 0.85rem;
    color: rgb(0, 0, 0);
    font-weight: 500;
    margin-top: 4px;
}

/* ---- Left Side Button ---- */
.eminent-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
}

.eminent-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateX(6px);
    box-shadow: 0 8px 30px rgba(38, 33, 97, 0.25);
}

.eminent-btn i {
    transition: var(--transition);
}

.eminent-btn:hover i {
    transform: translateX(4px);
}

/* ---- RIGHT SIDE - Swiper Wrapper ---- */
.eminent-swiper-wrapper {
    position: relative;
    padding: 10px 0 50px 0;
}

/* ---- Swiper Cards Effect ---- */
.eminent-slider {
    width: 100%;
    padding: 20px 10px 40px 10px;
}

.eminent-slider .swiper-slide {
    display: flex;
    justify-content: center;
}

/* ---- Eminent Card ---- */
.eminent-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    width: 100%;
    max-width: 340px;
}

.eminent-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(38, 33, 97, 0.15);
}

.eminent-card-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.eminent-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.eminent-card:hover .eminent-card-image img {
    transform: scale(1.05);
}

/* ---- Overlay on Image ---- */
.eminent-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
}

.eminent-role {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ---- Card Body ---- */
.eminent-card-body {
    padding: 20px 22px 24px 22px;
}

.eminent-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.eminent-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* ---- Tags ---- */
.eminent-card-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.eminent-card-tags .tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.eminent-card-tags .tag i {
    color: var(--primary);
    font-size: 0.65rem;
}

/* ---- Swiper Navigation ---- */
.eminent-slider .swiper-button-prev,
.eminent-slider .swiper-button-next {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    color: var(--primary);
    transition: var(--transition);
    border: none;
    opacity: 1;
    top: auto;
    bottom: 0;
}

.eminent-slider .swiper-button-prev::after,
.eminent-slider .swiper-button-next::after {
    display: none;
}

.eminent-slider .swiper-button-prev i,
.eminent-slider .swiper-button-next i {
    font-size: 0.9rem;
}

.eminent-slider .swiper-button-prev {
    left: auto;
    right: 58px;
}

.eminent-slider .swiper-button-next {
    right: 0;
}

.eminent-slider .swiper-button-prev:hover,
.eminent-slider .swiper-button-next:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(38, 33, 97, 0.30);
}

/* ---- Pagination ---- */
.eminent-pagination {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.eminent-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d1d1;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.eminent-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .eminent-title {
        font-size: 2.2rem;
    }
    
    .eminent-desc {
        max-width: 100%;
    }
    
    .eminent-stats {
        gap: 24px;
    }
    
    .eminent-stat .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .eminent-visitors {
        padding: 50px 0;
    }
    
    .eminent-title {
        font-size: 1.8rem;
    }
    
    .eminent-stats {
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .eminent-stat .stat-number {
        font-size: 1.4rem;
    }
    
    .eminent-stat .stat-label {
        font-size: 0.75rem;
    }
    
    .eminent-btn {
        padding: 12px 24px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .eminent-slider .swiper-button-prev,
    .eminent-slider .swiper-button-next {
        display: none;
    }
    
    .eminent-card {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .eminent-title {
        font-size: 1.5rem;
    }
    
    .eminent-desc {
        font-size: 0.9rem;
    }
    
    .eminent-card {
        max-width: 260px;
    }
    
    .eminent-card-body h4 {
        font-size: 1rem;
    }
    
    .eminent-card-body p {
        font-size: 0.8rem;
    }
}

        /* ============================================
                   INSTAGRAM SECTION
                   ============================================ */
  /* ============================================
INSTAGRAM / LATEST EVENTS SECTION (Swiper)
============================================ */
/* ============================================
INSTAGRAM SECTION (With Background Image & Overlay)
============================================ */
.instagram-section {
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}

/* ---- Background Image Wrapper ---- */
.instagram-wrapper {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    background-image: url('../events.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 18px 30px 0 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Dark overlay on background */
.instagram-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 33, 97, 0.85);
    z-index: 1;
}

/* ---- Make sure content stays above overlay ---- */
.instagram-wrapper .instagram-swiper-wrapper {
    position: relative;
    z-index: 2;
}

/* ---- Swiper Wrapper ---- */
.instagram-swiper-wrapper {
    position: relative;
    padding: 10px 0 50px 0;
}

.instagram-slider {
    padding: 10px 5px 20px 5px;
    overflow: hidden;
}

.instagram-slider .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}

/* ---- Instagram Card ---- */
.insta-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 412px;
    height: 525px;
}

.insta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.20);
    border-color: rgba(228, 64, 95, 0.12);
}

/* ---- Instagram Embed Wrapper ---- */
.insta-embed-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    padding: 8px;
    overflow: hidden;
}

.insta-embed-wrapper .instagram-media {
    width: 100% !important;
    min-width: auto !important;
    max-width: 100% !important;
    border-radius: 10px !important;
    height: 100% !important;
    min-height: auto !important;
    max-height: 100% !important;
    overflow: hidden !important;
}

.insta-embed-wrapper .instagram-media > div {
    height: 100% !important;
    padding: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

/* ---- Overlay ---- */
.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 33, 97, 0.45);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 14px;
    pointer-events: none;
}

.insta-card:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay .insta-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.insta-card:hover .insta-overlay .insta-icon {
    transform: scale(1);
}

/* ---- Swiper Navigation (White for dark background) ---- */
.instagram-slider .swiper-button-prev,
.instagram-slider .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--white);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.10);
    opacity: 1;
    top: 45%;
}

.instagram-slider .swiper-button-prev::after,
.instagram-slider .swiper-button-next::after {
    display: none;
}

.instagram-slider .swiper-button-prev i,
.instagram-slider .swiper-button-next i {
    font-size: 0.85rem;
}

.instagram-slider .swiper-button-prev {
    left: -10px;
}

.instagram-slider .swiper-button-next {
    right: -10px;
}

.instagram-slider .swiper-button-prev:hover,
.instagram-slider .swiper-button-next:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.30);
    border-color: var(--accent);
}

/* ---- Pagination (White dots for dark background) ---- */
.instagram-pagination {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.instagram-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.30);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.instagram-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

/* ---- Loading placeholder ---- */
.insta-embed-wrapper::before {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    font-size: 2.5rem;
    color: #d1d1d1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.insta-embed-wrapper {
    position: relative;
}

.insta-embed-wrapper .instagram-media {
    position: relative;
    z-index: 1;
}

/* ---- Text Colors for dark background ---- */
.instagram-section .section-title.text-white {
    color: var(--white) !important;
}

.instagram-section .section-title.text-white span {
    color: #E4405F !important;
}

.instagram-section .section-subtitle.text-white-50 {
    color: white !important;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .instagram-wrapper {
        padding: 30px 20px 20px 20px;
        background-attachment: scroll;
    }
    
    .insta-card {
        height: 250px;
        max-width: 340px;
    }
    
    .instagram-slider .swiper-button-prev {
        left: -5px;
    }
    
    .instagram-slider .swiper-button-next {
        right: -5px;
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 40px 0 30px 0;
    }
    
    .instagram-wrapper {
        padding: 20px 15px 15px 15px;
        border-radius: 14px;
        margin-top: 30px;
    }
    
    .insta-card {
        height: 320px;
        max-width: 320px;
    }
    
    .instagram-slider .swiper-button-prev,
    .instagram-slider .swiper-button-next {
        display: none;
    }
    
    .insta-overlay .insta-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .instagram-wrapper {
        padding: 15px 10px 10px 10px;
        border-radius: 12px;
        margin-top: 20px;
    }
    
    .insta-card {
        height: 350px;
        max-width: 300px;
    }
    
    .instagram-swiper-wrapper {
        padding: 0 5px 40px 5px;
    }
    
    .insta-embed-wrapper {
        padding: 5px;
    }
}

/* ---- Mobile touch devices - hide overlay ---- */
@media (hover: none) {
    .insta-overlay {
        opacity: 0 !important;
        pointer-events: none;
    }
}


/* ============================================
TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f8 50%, #e8ecf5 100%);
    padding: 11px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 33, 97, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

/* ---- Testimonials Wrapper ---- */
.testimonials-wrapper {
    position: relative;
    padding: 10px 0 50px 0;
}

.testimonials-slider {
    padding: 10px 5px 30px 5px;
    overflow: hidden;
}

.testimonials-slider .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
}

/* ---- Testimonial Card ---- */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 420px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(38, 33, 97, 0.10);
    border-color: rgba(38, 33, 97, 0.06);
}

/* ---- Header ---- */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary);
    padding: 2px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-user h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px 0;
}

.testimonial-user .user-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonial-rating {
    margin-top: 4px;
}

.testimonial-rating i {
    color: #FFB800;
    font-size: 0.75rem;
    margin-right: 2px;
}

/* ---- Body ---- */
.testimonial-body {
    position: relative;
    padding: 12px 0 8px 0;
}

.testimonial-body .quote-icon {
    position: absolute;
    top: -4px;
    left: -4px;
    font-size: 1.8rem;
    color: rgba(38, 33, 97, 0.06);
}

.testimonial-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 400;
    margin: 0;
    font-style: italic;
    padding-left: 8px;
}

/* ---- Footer ---- */
.testimonial-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-footer .company-tag,
.testimonial-footer .batch-tag {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.testimonial-footer .company-tag {
    background: rgba(38, 33, 97, 0.06);
    color: var(--primary);
}

.testimonial-footer .batch-tag {
    background: rgba(245, 166, 35, 0.08);
    color: var(--accent);
}

.testimonial-footer .company-tag i,
.testimonial-footer .batch-tag i {
    font-size: 0.6rem;
}

/* ---- Swiper Navigation ---- */
.testimonials-slider .swiper-button-prev,
.testimonials-slider .swiper-button-next {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    color: var(--primary);
    transition: all 0.3s ease;
    border: none;
    opacity: 1;
    top: 45%;
}

.testimonials-slider .swiper-button-prev::after,
.testimonials-slider .swiper-button-next::after {
    display: none;
}

.testimonials-slider .swiper-button-prev i,
.testimonials-slider .swiper-button-next i {
    font-size: 0.85rem;
}

.testimonials-slider .swiper-button-prev {
    left: -10px;
}

.testimonials-slider .swiper-button-next {
    right: -10px;
}

.testimonials-slider .swiper-button-prev:hover,
.testimonials-slider .swiper-button-next:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(38, 33, 97, 0.25);
}

/* ---- Pagination ---- */
.testimonials-pagination {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonials-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d1d1;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 24px 20px;
        max-width: 380px;
    }
    
    .testimonials-slider .swiper-button-prev {
        left: -5px;
    }
    
    .testimonials-slider .swiper-button-next {
        right: -5px;
    }
    
    .testimonials-slider .swiper-button-prev,
    .testimonials-slider .swiper-button-next {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonial-card {
        max-width: 340px;
        padding: 20px 18px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-user h4 {
        font-size: 0.9rem;
    }
    
    .testimonial-body p {
        font-size: 0.85rem;
    }
    
    .testimonials-slider .swiper-button-prev,
    .testimonials-slider .swiper-button-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        max-width: 300px;
        padding: 16px 14px;
        border-radius: 14px;
    }
    
    .testimonial-header {
        gap: 12px;
    }
    
    .testimonial-avatar {
        width: 44px;
        height: 44px;
    }
    
    .testimonial-body p {
        font-size: 0.8rem;
    }
    
    .testimonial-footer .company-tag,
    .testimonial-footer .batch-tag {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
}

/* ---- Hide on mobile touch devices ---- */
@media (hover: none) {
    .testimonial-card:hover {
        transform: none;
    }
}


 /* ============================================
GET STARTED SECTION - Premium Design
============================================ */
.get-started {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.get-started::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(38, 33, 97, 0.03);
    pointer-events: none;
}

.get-started::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.04);
    pointer-events: none;
}

.get-started-wrapper {
    position: relative;
    padding: 0 50px;
}

/* ---- Card Styles ---- */
.get-started-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    background: var(--white);
}

.get-started-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(38, 33, 97, 0.20);
}

.card-image {
    position: relative;
    aspect-ratio: 4/4;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.get-started-card:hover .card-image img {
    transform: scale(1.08);
}

/* ---- Overlay ---- */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 25px 25px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.20) 60%,
        transparent 100%
    );
    color: var(--white);
    transition: all 0.4s ease;
}

.card-overlay .card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 12px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.get-started-card:hover .card-overlay .card-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(-5deg);
    border-color: var(--accent);
}

.card-overlay h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
    color: white;
}

.card-overlay p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin: 0;
    font-weight: 400;
    max-width: 90%;
    color : white;
}

/* ---- Swiper Customization ---- */
.get-started .swiper {
    padding: 10px 5px 30px 5px;
}

.get-started .swiper-slide {
    transition: all 0.4s ease;
}

/* ---- Navigation Arrows ---- */
.get-started .swiper-button-prev,
.get-started .swiper-button-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    color: var(--primary);
    transition: all 0.3s ease;
    border: none;
    opacity: 1;
}

.get-started .swiper-button-prev::after,
.get-started .swiper-button-next::after {
    display: none;
}

.get-started .swiper-button-prev i,
.get-started .swiper-button-next i {
    font-size: 1rem;
}

.get-started .swiper-button-prev:hover,
.get-started .swiper-button-next:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(38, 33, 97, 0.30);
    transform: scale(1.05);
}

.get-started .swiper-button-prev {
    left: -15px;
}

.get-started .swiper-button-next {
    right: -15px;
}

/* ---- Pagination Dots ---- */
.get-started-pagination {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.get-started-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d1d1;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.get-started-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 36px;
    border-radius: 6px;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .get-started-wrapper {
        padding: 0 30px;
    }
    
    .get-started .swiper-button-prev {
        left: -8px;
    }
    
    .get-started .swiper-button-next {
        right: -8px;
    }
    
    .get-started .swiper-button-prev,
    .get-started .swiper-button-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .get-started-wrapper {
        padding: 0 15px;
    }
    
    .card-overlay {
        padding: 20px 18px 18px 18px;
    }
    
    .card-overlay h4 {
        font-size: 1.1rem;
    }
    
    .card-overlay p {
        font-size: 0.75rem;
        max-width: 100%;
    }
    
    .card-overlay .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .get-started .swiper-button-prev,
    .get-started .swiper-button-next {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
    
    .get-started .swiper-button-prev {
        left: 0px;
    }
    
    .get-started .swiper-button-next {
        right: 0px;
    }
}

@media (max-width: 576px) {
    .get-started .swiper-button-prev,
    .get-started .swiper-button-next {
        display: none;
    }
    
    .get-started-wrapper {
        padding: 0;
    }
}