:root {
    --primary-blue: #1e272e;
    --accent-gradient: linear-gradient(135deg, #ff5e62, #ff9966);
    --it-blue: #0984e3;
    --transition: all 0.3s ease-in-out;
    --btn-glow: 0 0 20px rgba(0, 210, 255, 0.6);
    --primary-dark: #0f172a;
    --accent-blue: #3b82f6;
    --soft-bg: #f8fafc;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --marquee-speed: 30s;
    --primary: #6366f1;
    --dark: #0f172a;
    --accent: #10b981;
    --play-color: #ff0000;
    --primary-grad: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --dark-blue: #0f172a;
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --dark-text: #1e293b;
    --light-text: #64748b;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --dark-navy: #0f172a;
    --text-gray: #64748b;
    --accent-color: #4f46e5;
    --soft-purple: #c084fc;
    --glass-white: rgba(255, 255, 255, 0.7);
    --soft-glow: rgba(99, 102, 241, 0.4);
    --bg-light: #fcfdfe;
    --primary-blue2: #6366f1;
    --accent-purple: #a855f7;
    --footer-bg: #0f172a;
    --text-gray2: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.1);
    --neon-blue: #38bdf8;
    --magic-purple: #a855f7;
    --electric-green: #4ade80;
    --accent-yellow: #fbbf24;
    --bg-dark: #0f172a;
    --glass: rgba(255, 255, 255, 0.05);
    --whatsapp-color: #25d366;
    --phone-color: #3b82f6;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* --- TOP HEADER --- */
.top-header {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.apply-btn {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    transition: var(--transition);
}

.social-icons a {
    color: white;
    margin-left: 15px;
    transition: var(--transition);
    display: inline-block;
}

/* --- NAVBAR --- */
.active {
    font-weight: bold !important;
}

.main-navbar {
    background: white;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: +9 !important;
}

.navbar-brand {
    width: 100px;
    font-weight: 700;
    color: var(--it-blue) !important;
    font-size: 24px;
}

.navbar-brand img {
    width: 100%;
    object-fit: cover;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--it-blue) !important;
}

.call-btn {
    background-color: var(--it-blue);
    color: white !important;
    border-radius: 5px;
    padding: 10px 20px !important;
    font-weight: 600;
}

/* --- STICKY CLASSES --- */
.sticky-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.5s;
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* --- DROPDOWN HOVER (Desktop) --- */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--it-blue);
}

/* --- CUSTOM ANIMATIONS --- */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(9, 132, 227, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(9, 132, 227, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(9, 132, 227, 0);
    }
}

/* Mobile specific adjustments */
@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        gap: 10px;
    }

    .top-header .text-center {
        margin: 5px 0;
    }
}



/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

/* Background Video Styling */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: transform 10s ease-in-out;
}

/* Dark Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: black;
    /* Adjust opacity for visibility */
    z-index: -1;
}

/* Content Styling */
.hero-content {
    opacity: 0;
    /* Handled by jQuery */
    transform: translateY(50px);
    /* Handled by jQuery */
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p.subheading {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2.5rem;
}

/* Modern Button */
.btn-hero {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--btn-glow);
    position: relative;
    overflow: hidden;
}

.btn-hero:hover {
    color: white;
    box-shadow: 0 0 35px rgba(0, 210, 255, 0.9);
    transform: translateY(-3px);
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p.subheading {
        font-size: 1.1rem;
    }

    .btn-hero {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* --- TRENDING CATEGORIES --- */
.trending-section {
    padding: 40px 0;
    overflow: hidden;
    opacity: 0;
    /* For jQuery Fade-in */
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.section-title p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* --- CARD DESIGN --- */
.category-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    margin: 15px;
    /* Spacing for shadow */
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card .icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-blue);
    transition: all 0.4s ease;
}

.category-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
    transition: all 0.3s ease;
}

/* --- HOVER EFFECTS --- */
.category-card:hover {
    background: var(--hover-gradient);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.category-card:hover .icon-wrapper {
    transform: scale(1.2);
    color: #ffffff !important;
}

.category-card:hover h4 {
    color: #ffffff;
}

/* --- CAROUSEL NAV CUSTOMIZATION --- */
.owl-theme .owl-nav [class*='owl-'] {
    background: #ffffff !important;
    color: var(--primary-dark) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 45px;
    height: 45px;
    line-height: 40px;
    border-radius: 50% !important;
    transition: 0.3s;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--accent-blue) !important;
    color: #fff !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
    background: var(--accent-blue);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px !important;
        padding: 20px;
    }
}

/* --- PLACEMENT SECTION --- */
.placement-section {
    padding: 30px 0;
    background: linear-gradient(to bottom, #ffffff, var(--bg-light));
    overflow: hidden;
    opacity: 1;
    /* For jQuery Fade-in */
    transform: translateY(40px);
    transition: all 1s ease;
}

.reveal {
    opacity: 1;
    transform: translateY(0);
}

.badge-premium {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.section-heading h2 {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 2.5rem;
}

.support-tags span {
    margin: 0 10px;
    font-size: 15px;
    color: #64748b;
}

/* --- INFINITE MARQUEE --- */
.marquee-container {
    margin-top: 60px;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    width: calc(250px * 20);
    /* Total width of all logos x 2 */
    animation: scroll var(--marquee-speed) linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 10));
    }

    /* Half of total width */
}

.logo-box {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    transition: all 0.4s ease;
}

.logo-box img {
    max-width: 140px;
    max-height: 50px;
    /* filter: grayscale(100%); */
    opacity: 0.6;
    transition: all 0.4s ease;
}

.logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

/* --- CTA BUTTON --- */
.btn-career {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 50px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-career:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    background: var(--accent-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 1.8rem;
    }

    .logo-box {
        width: 180px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * 10));
        }
    }
}


/* Students Work Section */
.project-section {
    padding: 30px 0;
}

/* --- Card Design --- */
.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.4s;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.btn-view-project {
    width: 100%;
    background: #f1f5f9;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-view-project:hover {
    background: var(--dark);
    color: #fff;
}

/* --- Video Modal UI --- */
.modal-content2 {
    width: 800px !important;
    height: 500px !important;
    border-radius: 25px;
    border: none;
    overflow: hidden;
    background-color: #94a3b8;
}

.video-container-box {
    position: relative;
    width: 100%;
    height: 380px;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.video-container-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* Pulse Play Button */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--play-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    z-index: 5;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

#yt-player-area {
    display: none;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-container-box {
        height: 240px;
    }

    .projh2 {
        font-size: 28px;
    }

    .font {
        text-align: center;
    }
}

/* --- CTA SECTION HOLDER --- */
.cta-section {
    padding: 60px 0;
    background: var(--soft-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle Background Pattern */
.cta-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* --- LEFT SIDE: IMAGE ANIMATION --- */
.cta-image-wrapper {
    position: relative;
    z-index: 1;
}

.cta-img {
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* --- RIGHT SIDE: CONTENT --- */
.cta-content {
    padding-left: 30px;
    z-index: 2;
    position: relative;
}

.cta-content h2 {
    font-weight: 800;
    font-size: 3rem;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-content .subheading {
    font-size: 1.25rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 25px;
}

/* Benefits List */
.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #475569;
}

.benefit-item i {
    width: 30px;
    height: 30px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
}

/* --- THE ANIMATED BUTTON --- */
.cta-btn-main {
    display: inline-block;
    margin-top: 35px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary-grad);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.cta-btn-main:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.6);
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .cta-content {
        padding-left: 0;
        text-align: center;
        margin-top: 50px;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .benefit-item {
        justify-content: center;
    }

    .cta-btn-main {
        width: 100%;
    }
}


/* About Section */
.about-section {
    padding: 40px 0;
    overflow: hidden;
}

/* --- Left Side: Video Thumbnail --- */
.video-thumb-container {
    height: 500px;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.video-thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumb-container:hover img {
    transform: scale(1.1);
}

/* Play Button Animation */
.play-btn-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 30px;
    z-index: 10;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    animation: pulse-white 2s infinite;
    transition: 0.3s;
}

@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.video-thumb-container:hover .play-btn-main {
    background: var(--primary-color);
    color: #fff;
}

/* --- Right Side: Content --- */
.about-content {
    padding-left: 40px;
}

.about-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-content h2 {
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Key Points */
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--dark-text);
}

.feature-item i {
    color: #10b981;
    margin-right: 12px;
    font-size: 20px;
}

#btn-explore {
    padding: 15px 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

#btn-explore:hover {
    background: var(--dark-text);
    color: #fff;
    transform: translateY(-3px);
}

/* --- Modal Customization --- */
.modal-content {
    border-radius: 30px;
    overflow: hidden;
    border: none;
    background: #000;
}

.modal-body {
    padding: 0;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s all ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .about-badge {
        width: 100%;
        text-align: center;
    }

    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .feature-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .video-thumb-container {
        height: 100%;
    }

    .font2 {
        text-align: justify;
        padding: 0 15px;
    }

    #btn-explore {
        width: 100%;
        text-align: center;
    }
}

/* Courses Section */
.courses-section {
    padding: 20px 0;
}

/* --- Section Header --- */
.section-title h2 {
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--dark-navy);
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding: 15px;
}

/* --- Course Card Styling --- */
.course-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 1;
    /* For jQuery Fade-in */
    transform: translateY(30px);
    /* For jQuery Fade-in */
}

.course-card:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Top Media (GIF/Video) */
.media-box {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.media-box video,
.media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.85;
}

.course-card:hover .media-box video,
.course-card:hover .media-box img {
    transform: scale(1.1);
    opacity: 1;
}

/* Overlay Gradient on Media */
.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
    z-index: 1;
}

/* Badges */
.badge-trending {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

/* Card Content */
.card-content {
    padding: 25px;
    flex-grow: 1;
}

.course-cat {
    font-size: 12px;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.card-content h4 {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.card-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Rating */
.rating-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #ffb800;
    font-size: 14px;
    margin-right: 8px;
}

.rev-text {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

/* CTA Button */
.btn-enroll {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-enroll:hover {
    color: #fff;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4);
    transform: scale(1.02);
}

.btn-enroll i {
    transition: transform 0.3s ease;
}

.btn-enroll:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 30px !important;
    }

    .rating-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/* Counselling CTA */
.counselling-section {
    padding: 100px 0;
    background: var(--soft-bg);
    position: relative;
    overflow: hidden;
}

/* --- LEFT SIDE: CONTENT --- */
.content-box {
    position: relative;
    z-index: 2;
}

.content-box h2 {
    font-weight: 800;
    font-size: 3rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
    line-height: 1.2;
}

.content-box .sub-text {
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 25px;
}

.content-box p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Bullet Points */
.counsel-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark-navy);
}

.feature-point i {
    color: #10b981;
    font-size: 1.2rem;
}

/* --- THE BUTTON: GLOW & PULSE --- */
.btn-counsel {
    display: inline-block;
    padding: 18px 35px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    background: var(--accent-gradient);
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    position: relative;
    transition: all 0.3s ease;
    animation: btnGlow 2s infinite;
    margin-left: -80px !important;
}

@keyframes btnGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* --- RIGHT SIDE: IMAGE --- */
.image-holder {
    position: relative;
    z-index: 1;
    text-align: center;
}

.counselor-img {
    max-width: 100%;
    height: 500px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    animation: floatImg 5s ease-in-out infinite;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Trust Badges */
.trust-badge {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.badge-students {
    top: 20%;
    left: -20px;
}

.badge-rating {
    bottom: 15%;
    right: 10px;
}

.trust-badge i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.trust-badge span {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--dark-navy);
}

/* Scroll Animation State */
.reveal-box {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s all ease;
}

.reveal-box.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .counselling-section {
        text-align: center;
        padding: 60px 0;
    }

    .content-box h2 {
        font-size: 2.2rem;
    }

    .counsel-features {
        justify-content: center;
        grid-template-columns: 1fr;
        text-align: left;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .image-holder {
        margin-top: 50px;
    }

    .counselor-img {
        width: 90%;
        height: 350px;
        object-fit: cover;
    }

    .trust-badge {
        display: none;
    }

    .content-box p {
        margin-left: auto;
        margin-right: auto;
    }

    .btn-counsel {
        width: 100%;
        margin-left: -150px !important;
    }

    .counsel-features {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}

/* Counter Section */
.stats-section {
    padding: 40px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Pattern */
.stats-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(#2563eb 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    opacity: 0.05;
}

.section-header h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.section-header p {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 50px;
}

/* --- Counter Card Design --- */
.stat-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    /* Initial state for scroll animation */
    opacity: 0;
    transform: translateY(30px);
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Icon Styling */
.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.stat-card:hover .stat-icon {
    background: var(--gradient-blue);
    transform: scale(1.1) rotate(5deg);
}

/* Numbers & Labels */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation class trigger */
.stat-card.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .stat-card {
        margin-bottom: 20px;
    }
}


/* Testimonial Section */
.testimonial-section {
    padding: 20px 0;
    background: var(--bg-soft);
    overflow: hidden;
}

.section-header h2 {
    font-weight: 800;
    font-size: 2.8rem;
    color: var(--dark-navy);
    margin-bottom: 10px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* --- Testimonial Card --- */
.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    /* margin: 15px; */
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
    border-color: var(--primary-blue);
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 40px;
    color: rgba(99, 102, 241, 0.1);
    transition: 0.3s;
}

.testimonial-card:hover .quote-icon {
    color: rgba(99, 102, 241, 0.2);
}

/* Student Info */
.student-profile {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.student-img {
    width: 70px !important;
    /* Owl Carousel needs !important for width overrides */
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 15px;
    transition: 0.4s;
}

.testimonial-card:hover .student-img {
    transform: scale(1.1);
}

.student-name h5 {
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--dark-navy);
}

.student-name span {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
}

/* Feedback Content */
.review-text {
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 15px;
}

.stars {
    color: #f59e0b;
    font-size: 14px;
}

.rating-num {
    font-weight: 700;
    color: var(--dark-navy);
    margin-left: 5px;
    font-size: 14px;
}

/* Custom Navigation Dots */
.owl-theme .owl-dots .owl-dot span {
    background: #cbd5e1;
    width: 12px;
    height: 12px;
    transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-blue);
    width: 30px;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Start Your Career Section */
/* --- LIGHT VIDEO HERO SECTION --- */
.light-hero {
    position: relative;
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: black;
    /* Fallback */
    z-index: +4;
}

/* Background Video - Light & Subtle */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.25;
    /* Video ko light rakhne ke liye opacity kam rakhi hai */
    filter: grayscale(40%) blur(2px);
}

/* Soft Gradient Overlay for "Attractive" look */
.light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(192, 132, 252, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(79, 70, 229, 0.1), transparent);
    z-index: 2;
}

/* --- CONTENT CARD (GLASSMORPHISM) --- */
.glass-container {
    position: relative;
    z-index: 10;
    /* background: var(--glass-white); */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 40px;
    /* border: 1px solid rgba(255, 255, 255, 0.6); */
    padding: 60px 40px;
    max-width: 1000px;
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08); */
    text-align: center;
    /* Initial state for animation */
    opacity: 0;
    transform: scale(0.95);
}

.glass-container h1 {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.8rem);
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.glass-container h1 span {
    background: linear-gradient(to right, var(--accent-color), var(--soft-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-container p {
    color: #64748b;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Features List */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
}

.pill {
    background: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #475569;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: 0.3s;
}

.pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.2);
}

.pill i {
    color: var(--accent-color);
}

/* --- MAGNETIC BUTTON --- */
.cta-button {
    background: var(--accent-color);
    color: #fff;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.3);
    border: none;
}

.cta-button:hover {
    background: #4338ca;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 25px 35px -5px rgba(79, 70, 229, 0.5);
}

/* Subtle floating badge */
.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dcfce7;
    color: #166534;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.online-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .light-hero {
        height: 100%;
    }

    .glass-container {
        padding: 40px 20px;
        border-radius: 25px;
        margin: 0 15px;
    }

    .feature-pills {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
    }
}


/* Circular Orbit CTA Section */
.orbit-master-section {
    padding: 50px 0;
    background: radial-gradient(circle at 50% 50%, #f1f5f9 0%, #ffffff 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* --- STYLISH CENTER CARD --- */
.main-orbit-wrapper {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-hub {
    position: relative;
    width: 300px;
    height: 300px;
    z-index: 20;
    border-radius: 50%;
    padding: 12px;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: 0.5s ease;
}

.central-hub img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8fafc;
}

/* Double Pulse Animation */
.hub-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    animation: hub-pulse 3s infinite;
    z-index: -1;
}

@keyframes hub-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* --- ROTATING ORBIT --- */
.orbit-path {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(99, 102, 241, 0.2);
    animation: main-rotation 35s linear infinite;
}

.main-orbit-wrapper:hover .orbit-path,
.main-orbit-wrapper:hover .orbit-btn {
    animation-play-state: paused;
}

/* --- BUTTONS STYLING --- */
.orbit-btn {
    position: absolute;
    width: 220px;
    padding: 14px 18px;
    border-radius: 60px;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: counter-rotation 35s linear infinite;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.orbit-btn:hover {
    transform: scale(1.1) !important;
    z-index: 100;
    color: #fff;
    box-shadow: 0 15px 35px var(--soft-glow);
}

/* Individual Button Colors & Positions (6 Buttons) */
.btn-apply {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f46e5, #9333ea);
}

.btn-demo {
    top: 20%;
    right: -80px;
    background: linear-gradient(135deg, #0ea5e9, #22d3ee);
}

.btn-counsel {
    bottom: 20%;
    right: -80px;
    background: linear-gradient(135deg, #f43f5e, #fb923c);
}

.btn-offers {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #34d399);
}

.btn-fav {
    bottom: 20%;
    left: -80px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.btn-know {
    top: 20%;
    left: -80px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

/* Animations */
@keyframes main-rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes counter-rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Floating effect for center */
.hub-float {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .main-orbit-wrapper {
        width: 400px;
        height: 400px;
    }

    .central-hub {
        width: 220px;
        height: 220px;
    }

    .orbit-btn {
        width: 180px;
        font-size: 11px;
    }

    .btn-demo,
    .btn-know {
        top: 10%;
    }

    .btn-counsel,
    .btn-fav {
        bottom: 10%;
    }
}

@media (max-width: 576px) {
    .orbit-master-section {
        height: auto;
        padding: 50px 0;
    }

    .orbit-path {
        display: none;
    }

    .main-orbit-wrapper {
        width: 100%;
        height: auto;
        display: block;
    }

    .central-hub {
        margin: 0 auto 30px;
    }

    .orbit-btn {
        position: relative !important;
        margin: 12px auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 280px;
        animation: none;
        transform: none !important;
    }
}

/* Student Activity and Prizes Section */
/* --- SECTION MAIN CONTAINER --- */
.hd-rewards {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0;
    color: #fff;
    /* background-color: var(--bg-dark); */
    /* Fallback */
}

/* Cinematic Background Video */
.hd-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* filter: contrast(1.1) brightness(0.6); */
}

/* Deep Gradient Overlay for Readability & HD Effect */
.hd-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.7) 50%, rgba(15, 23, 42, 0.95) 100%);
    z-index: -1;
}

/* Subtle Glow Blobs for Visual Interest */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.2;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--magic-purple);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--neon-blue);
    bottom: -50px;
    left: -50px;
}

/* --- CONTENT STYLING --- */
.hd-badge {
    display: inline-block;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.hd-badge::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(to right, var(--neon-blue), var(--magic-purple));
    z-index: -1;
    border-radius: 50px;
    opacity: 0.4;
    filter: blur(3px);
}

.hd-badge span {
    color: var(--accent-yellow);
    font-weight: 800;
}

.hd-title h2 {
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to bottom, #fff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hd-title p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 750px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* --- PRIZE CARDS (ULTRA MODERN GLASS) --- */
.hd-prize-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 50px 25px;
    text-align: center;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Glow Border on Hover */
.hd-prize-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
    opacity: 0;
}

.hd-prize-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hd-prize-card:hover::after {
    opacity: 1;
}

.hd-prize-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.5s ease;
}

.hd-prize-card:hover .hd-prize-icon {
    transform: scale(1.15) rotate(5deg);
}

.hd-prize-card h4 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
}

.hd-prize-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
}

/* --- MEGA CTA (PREMIUM LOOK) --- */
.hd-cta-wrap {
    margin-top: 100px;
}

.btn-hd-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #0f172a;
    padding: 22px 50px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 100px;
    text-decoration: none;
    transition: 0.4s;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Multi-Color Glow Ring around button */
.btn-hd-glow::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(90deg, #ff007f, #00d2ff, #4ade80, #fbbf24, #ff007f);
    background-size: 400%;
    border-radius: 100px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
    animation: rainbow-glow 8s linear infinite, glow-pulse 2s infinite;
    transition: 0.3s;
}

.btn-hd-glow:hover {
    color: #fff;
    background: var(--bg-dark);
}

.btn-hd-glow:hover::before {
    filter: blur(20px);
    opacity: 1;
}

@keyframes rainbow-glow {
    0% {
        background-position: 0%;
    }

    100% {
        background-position: 400%;
    }
}

@keyframes glow-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05) translateY(-2px);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .hd-prize-card {
        padding: 40px 15px;
    }

    .hd-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hd-rewards {
        padding: 80px 0;
    }

    .btn-hd-glow {
        font-size: 1rem;
        padding: 18px 30px;
        text-align: center;
    }
}

/* Blog Section */
.blog-section {
    padding: 40px 0;
    background-color: var(--bg-light);
}

.section-title h2 {
    font-weight: 800;
    font-size: 2.8rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.section-title p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* --- BLOG CARD DESIGN --- */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
}

/* Image & Badge Area */
.blog-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.1);
}

.blog-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

/* Content Area */
.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.blog-title:hover {
    color: var(--primary-blue);
}

.blog-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Button */
.read-more-btn {
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.3s;
}

.read-more-btn:hover {
    color: var(--primary-blue);
    gap: 12px;
}

/* --- CAROUSEL CONTROLS --- */
.owl-theme .owl-dots .owl-dot span {
    background: #cbd5e1;
    width: 10px;
    height: 10px;
    transition: 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: var(--primary-blue);
    width: 25px;
}

.view-all-box {
    margin-top: 50px;
    text-align: center;
}

.btn-view-all {
    background: #fff;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-view-all:hover {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* FAQ Section */
.faq-section {
    padding: 30px 0;
    background-color: var(--soft-bg);
    overflow: hidden;
}

/* --- LEFT SIDE: IMAGE STYLING --- */
.faq-img-wrapper {
    width: 400px;
    height: 900px;
    /* position: relative; */
    padding: 10px;
    animation: floating 4s ease-in-out infinite;
}

.student-img2 {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    /* position: relative; */
    z-index: 2;
    object-fit: cover;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- RIGHT SIDE: ACCORDION STYLING --- */
.accordion-header {
    margin-bottom: 15px;
}

.accordion-item {
    border: none;
    background: #fff;
    border-radius: 15px !important;
    margin-bottom: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    overflow: hidden;
}

.accordion-item.active-item {
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 700;
    color: var(--text-dark);
    background: #fff;
    font-size: 1rem;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--primary-blue);
}

.accordion-button::after {
    background-image: none;
    font-family: "Font Awesome 6 Free";
    content: "\f067";
    /* Plus icon */
    font-weight: 900;
    transition: 0.4s;
    color: var(--primary-blue);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(135deg);
    /* Converts Plus to Cross */
    content: "\f067";
}

.accordion-body {
    color: #64748b;
    line-height: 1.7;
    padding-top: 0;
    font-size: 0.95rem;
}

.faq-icon-prefix {
    margin-right: 12px;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

/* Still have questions CTA */
.faq-footer {
    margin-top: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#btn-query {
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

#btn-query:hover {
    transform: scale(1.05);
    color: #fff;
}

@media (max-width: 991px) {
    .faq-img-wrapper {
        width: 100%;
        height: 300px;
        margin-bottom: 50px;
        text-align: center;
    }

    .faq-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* --- FOOTER MAIN STYLING --- */
.mega-footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    z-index: +5;
}

/* --- DISCOUNT FORM AREA --- */
.footer-cta-box {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.cta-heading h3 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-input-group {
    position: relative;
}

.footer-input-group input::placeholder {
    color: white;
}

.footer-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray2);
}

.footer-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 15px 15px 45px;
    color: #fff;
    transition: 0.3s;
}

.footer-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-blue2);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
    outline: none;
}

.btn-discount {
    background: linear-gradient(135deg, var(--primary-blue2), var(--accent-purple));
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 700;
    width: 100%;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.btn-discount:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
    color: #fff;
}

/* --- COLUMN STYLING --- */
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.footer-logo span {
    color: var(--primary-blue2);
}

.footer-desc {
    color: var(--text-gray2);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-blue2);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-gray2);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-blue2);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Social Icons */
.social-box {
    display: flex;
    gap: 12px;
}

.social-icon2 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--border-color);
}

.social-icon2:hover {
    background: var(--primary-blue2);
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--primary-blue2);
}

/* --- BOTTOM BAR --- */
.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray2);
    font-size: 0.9rem;
}

.bottom-links a {
    color: var(--text-gray2);
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #fff;
}

/* Animations */
.reveal-footer {
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 991px) {
    .footer-cta-box {
        padding: 30px 20px;
    }

    .cta-heading {
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Popup Form */
/* Buttons */
.lux-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

.lux-btn:hover {
    transform: translateY(-4px);
    background: #222;
}


/* Overlay */
#overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 998;
}


/* Modal */
#luxModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    max-width: 95%;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
    z-index: 999;
    overflow: hidden;
}


/* Layout */
.modal-body-custom {
    display: flex;
}

/* Left image */
.left-image {
    width: 50%;
}

.left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right form */
.right-form {
    width: 50%;
    padding: 50px;
}

/* Close */
#closeBtn {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

/* Mobile */
@media(max-width:768px) {
    .modal-body-custom {
        flex-direction: column;
    }

    .left-image,
    .right-form {
        width: 100%;
    }

    .left-image img {
        height: 260px !important;
    }
}


/* Offer Form */
:root {
    --primary-blue: #2563eb;
    --accent-red: #ef4444;
    --dark-overlay: rgba(0, 0, 0, 0.85);
}

body {
    font-family: 'Poppins', sans-serif;
}

.text-primary-color {
    color: var(--primary-blue);
}

/* Full Screen Overlay */
.offer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: 9999;
    display: none;
    /* Controlled by jQuery */
    align-items: center;
    justify-content: center;
    padding: 15px;
    backdrop-filter: blur(8px);
}

/* Modal Container */
.offer-container {
    background: #fff;
    width: 100%;
    max-width: 950px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-wrap: wrap;
    animation: modalFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalFadeIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Left Side Visual */
.offer-image {
    flex: 1;
    min-width: 400px;
    background: url('../images/offer-form.jpg') no-repeat center center;
    background-size: cover;
}

/* Right Side Content */
.offer-content {
    flex: 1.2;
    padding: 50px;
    min-width: 320px;
    position: relative;
}

.timer-badge {
    background: var(--accent-red);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.offer-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
}

.form-control {
    border-radius: 10px;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: none;
}

.btn-submit {
    background: var(--primary-blue);
    border: none;
    padding: 15px;
    font-weight: 700;
    border-radius: 12px;
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #cbd5e1;
    transition: 0.3s;
    z-index: +3;
}

.close-icon:hover {
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-image {
        display: none;
    }

    .offer-content {
        padding: 35px 25px;
    }

    .offer-title {
        font-size: 1.7rem;
    }
}


/* --- Floating Icons --- */
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

/* --- COMMON ICON STYLING --- */
.float-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    /* Initial for jQuery animation */
    right: -100px;
    /* Initial for jQuery animation */
}

/* Colors */
.whatsapp-float {
    background-color: var(--whatsapp-color);
}

.phone-float {
    background-color: var(--phone-color);
}

/* --- PULSE EFFECT --- */
.float-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}

.whatsapp-float::before {
    background-color: var(--whatsapp-color);
}

.phone-float::before {
    background-color: var(--phone-color);
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- TOOLTIP DESIGN --- */
.float-icon .tooltip-text {
    position: absolute;
    right: 80px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    transform: translateY(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.float-icon:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- NOTIFICATION DOT --- */
.noti-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
    background: #ff3b30;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* --- HOVER EFFECTS --- */
.float-icon:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 768px) {
    .floating-contact-wrap {
        bottom: 20px;
        right: 20px;
        gap: 15px;
    }

    .float-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .float-icon .tooltip-text {
        display: none;
    }

    /* Hide tooltips on mobile */
}