/* Global Styles */
:root {
    --bg-color: #0b0b0b;
    --card-bg: #111111;
    --text-color: #ffffff;
    --primary-color: #ccff00;
    /* Neon Lime */
    --hover-color: #bfff00;
    --secondary-text: #a0a0a0;
    --dark-grey: #1a1a1a;
    --font-family: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-family);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(11, 11, 11, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo img {
    height: 45px;
    width: auto;
    margin-right: 12px;
    filter: drop-shadow(0 0 5px rgba(204, 255, 0, 0.3));
    /* Subtle glow matching theme */
    transition: var(--transition);
}

.logo:hover img {
    transform: rotate(5deg) scale(1.1);
}


.navbar nav ul {
    display: flex;
    gap: 40px;
}

.navbar nav ul li {
    position: relative;
}

.navbar nav ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--secondary-text);
    position: relative;
    padding: 10px 0;
}

.navbar nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navbar nav ul li a:hover::after,
.navbar nav ul li a.active::after {
    width: 100%;
}

.navbar nav ul li a:hover,
.navbar nav ul li a.active {
    color: var(--primary-color);
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 10px;
    top: 100%;
    left: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--secondary-text);
    padding: 12px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    /* Align icon and text */
    gap: 12px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    text-transform: capitalize;
    /* Override main nav uppercase */
}

.dropdown-content a:hover {
    background-color: #222;
    color: var(--primary-color);
    padding-left: 25px;
    /* Indent effect */
}

.dropdown-content a::after {
    display: none;
    /* No underline for dropdown items */
}

.dropdown .dropbtn i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: black;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 255, 0, 0.2);
}

.btn-primary.full-width {
    width: 100%;
    justify-content: center;
}

.menu-toggle {
    display: none;
    /* Hidden by default on desktop */
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 80px 50px;
    /* Top padding for navbar */
    overflow: hidden;
}

/* Sidebars */
.sidebar-left,
.sidebar-right {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    color: var(--secondary-text);
    z-index: 10;
}

.sidebar-left {
    left: 30px;
}

.sidebar-right {
    right: 30px;
}

.scroll-indicator,
.sidebar-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.sidebar-line {
    width: 1px;
    height: 120px;
    background: linear-gradient(to top, transparent, var(--secondary-text), transparent);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icons a {
    font-size: 1.1rem;
    color: var(--secondary-text);
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Hero Content */
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.hero-text {
    flex: 1.2;
    z-index: 2;
}

.subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
}

.highlight-text {
    color: var(--primary-color);
    /* Static highlight, no animation */
    -webkit-text-stroke: 0;
}



.description {
    color: var(--secondary-text);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.play-btn {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    font-size: 1.2rem;
}

.play-btn:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: black;
    transform: scale(1.1);
}

.curly-arrow {
    position: absolute;
    left: -70px;
    bottom: -45px;
    transform: rotate(-10deg);
    opacity: 0.8;
}

/* Hero Image */
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    height: 600px;
    transition: var(--transition);
}

.bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.1) 0%, rgba(11, 11, 11, 0) 70%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 10s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.person-image img {
    height: 100%;
    width: auto;
    object-fit: cover;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    transition: var(--transition);
}

.floating-badge {
    position: absolute;
    bottom: 100px;
    right: 20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-badge i {
    color: #ffd700;
    font-size: 1.5rem;
}

.floating-badge span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Marquee Banner */
.marquee-banner {
    background-color: var(--primary-color);
    padding: 20px 0;
    width: 100%;
    transform: rotate(-1deg) scale(1.05);
    /* Stylish tilt */
    margin-bottom: 50px;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

.marquee-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 25s linear infinite;
}

.marquee-content span {
    color: black;
    font-weight: 900;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
}

/* Section Common */
.section-padding {
    padding: 100px 20px;
}

.bg-darker {
    background-color: #050505;
    background-image: radial-gradient(circle at 10% 20%, rgba(204, 255, 0, 0.03) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(13, 71, 161, 0.05) 0%, transparent 20%);
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-desc {
    text-align: center;
    color: var(--secondary-text);
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
}

.highlight {
    color: var(--primary-color);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: #111;
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(204, 255, 0, 0.05));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.course-item {
    background: #151515;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.course-item:hover {
    background: #1a1a1a;
    transform: scale(1.03);
}

.course-content h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.course-content p {
    color: var(--secondary-text);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.link-btn {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.link-btn:hover {
    gap: 15px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-content h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Reviews */
.reviews-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.review-card {
    background: #0f0f0f;
    padding: 40px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: #ddd;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.reviewer-info h5 {
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--secondary-text);
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding-top: 80px;
    color: #ffffff;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-brand p {
    color: #888;
    margin-bottom: 30px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-5px);
}

.footer-contact h3,
.footer-form-wrapper h3 {
    margin-bottom: 25px;
    color: white;
    font-size: 1.3rem;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: #aaa;
}

.footer-contact ul li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.enquiry-form .form-group {
    margin-bottom: 15px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #111;
    padding: 30px 0;
    color: #555;
    font-size: 0.9rem;
    margin-top: 40px;
}

/* Company Marquee Styles */
.company-section {
    background: #eef3fb;
    padding: 60px 0;
    text-align: center;
}

.company-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 40px;
}

.marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.marquee-track img {
    height: 45px;
    object-fit: contain;
    transition: 0.3s;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 0px) { /* DISABLED OLD 1024PX BREAKPOINT */
    .navbar {
        padding: 15px 20px;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    /* Hide call button on mobile to save space, or show simplified */
    .menu-toggle {
        display: block;
    }

    .navbar nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000;
        padding: 30px;
        flex-direction: column;
        display: none;
        /* JS toggle needed */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar nav.active {
        display: block;
    }

    .navbar nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .sidebar-left,
    .sidebar-right {
        display: none;
    }

    .hero-image-container {
        height: 400px;
        width: 100%;
        margin-bottom: 40px;
    }

    .bg-shape {
        width: 350px;
        height: 350px;
    }

    .floating-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
        width: max-content;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-row: auto;
        height: 300px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Dropdown on Mobile */
    .dropdown-content {
        position: static;
        background: transparent;
        box-shadow: none;
        border: none;
        padding-left: 0;
        animation: none;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        justify-content: center;
        border-bottom: none;
        padding: 10px;
    }
}

/* --- Modal Styles --- */
.modal-overlay {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modal-overlay.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #111;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(204, 255, 0, 0.1);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.modal-overlay.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.modal-header p {
    color: #aaa;
    font-size: 0.95rem;
}

.modal-form select {
    width: 100%;
    padding: 12px 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    margin-bottom: 15px;
    outline: none;
}

.modal-form select:focus {
    border-color: var(--primary-color);
}

/* Certification Section */
.cert-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-top: 40px;
}

.cert-content {
    flex: 1;
}

.cert-content ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cert-content li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.cert-content li i {
    color: white;
    font-size: 1.2rem;
    transform: rotate(45deg);
}

.cert-image {
    flex: 1;
    position: relative;
    padding: 20px;
}

.cert-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.05), 0 0 0 20px rgba(255, 255, 255, 0.02);
}

.cert-notification {
    position: absolute;
    bottom: -10px;
    left: -30px;
    background: white;
    color: black;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 300px;
    z-index: 10;
}

.cert-notification i.info-icon {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-top: 3px;
}

.cert-notification p {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

.cert-notification .close-notify {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #999;
    cursor: pointer;
    font-size: 1rem;
}

@media (max-width: 0px) { /* DISABLED OLD 900PX BREAKPOINT */
    .cert-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .cert-notification {
        left: 50%;
        transform: translateX(-50%);
        bottom: -40px;
        width: 90%;
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.pricing-card {
    background: white;
    color: black;
    border-radius: 15px;
    padding: 40px;
    text-align: left;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pricing-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.pricing-features li i {
    font-size: 1.2rem;
    color: #444;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: #222;
}

.enroll-btn-price {
    background: #3b82f6;
    /* Blue as per reference */
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.enroll-btn-price:hover {
    background: #2563eb;
}


/* Payment Modal Specifics */
.payment-modal-content {
    background: white;
    color: black;
    max-width: 500px;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
}

.payment-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.payment-header p {
    color: #666;
    margin-bottom: 30px;
}

.qr-container {
    background: transparent;
    padding: 0;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 20px;
    border: none;
}

.qr-container img {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.upi-id {
    font-family: monospace;
    background: #eee;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    display: block;
    font-size: 1.1rem;
    color: #333;
    display: none;
    /* Hide since image has it */
}

/* New Reviews Layout */
.reviews-layout {
    display: flex;
    gap: 40px;
    align-items: stretch;
    overflow: hidden;
    /* Hide overflow from slider */
    margin-top: 40px;
}

/* Left Static Card */
.rating-summary-card {
    background: white;
    color: #333;
    padding: 40px 30px;
    border-radius: 20px;
    width: 350px;
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating-summary-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.rating-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.rating-badge {
    text-align: left;
}

.company-name {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #555;
    letter-spacing: -0.5px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FBBC05;
    font-size: 1.2rem;
}

.stars .score {
    color: #333;
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Right Slider Container */
.reviews-slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    /* Mask for fade effect on edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollInfo 25s linear infinite;
}

/* Pause animation on hover */
.reviews-track:hover {
    animation-play-state: paused;
}

@keyframes scrollInfo {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move half the length */
}

/* Individual Review Slide Card */
.review-slide-card {
    background: #cceeff;
    /* Light Blue as per reference */
    color: #111;
    width: 300px;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
}

.review-slide-card:hover {
    transform: translateY(-5px);
}

.reviewer-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-slide-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.reviewer-role {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #555;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 1px;
}

.review-slide-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

/* Responsive */
@media (max-width: 0px) { /* DISABLED OLD 900PX BREAKPOINT */
    .reviews-layout {
        flex-direction: column;
    }

    .rating-summary-card {
        width: 100%;
        text-align: center;
    }

    .rating-badge {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reviews-track {
        animation-duration: 15s;
        /* Faster on mobile */
    }
}

/* Course Slider Styles */
.course-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 50px auto 0;
    overflow: hidden;
    padding: 30px 80px;
    /* Increased padding for big cards */
}

.course-slider-track {
    display: flex;
    gap: 40px;
    /* Increased gap */
    transition: transform 0.5s ease-in-out;
    padding: 10px;
}

.course-card-new {
    background: white;
    color: #333;
    flex: 0 0 calc(50% - 20px);
    /* Exactly 2 items visible (50% minus half gap) */
    min-width: 0;
    border-radius: 20px;
    padding: 45px;
    /* Bigger padding for big size */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.course-card-new:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.course-icon-img {
    background: #f4f6f8;
    padding: 15px;
    border-radius: 12px;
}

.card-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.badge-seats {
    background: #FF9800;
    /* Orange */
    color: white;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.badge-off {
    background: #4CAF50;
    /* Green */
    color: white;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.designed-by {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.expert-logos i {
    font-size: 1.2rem;
    color: #555;
    margin-left: 5px;
}

.course-card-new h3 {
    font-size: 1.8rem;
    /* Increased from 1.5rem */
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.course-card-new p {
    color: #555;
    font-size: 1.05rem;
    /* Slightly larger */
    margin-bottom: 25px;
    line-height: 1.6;
}

.course-meta-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: #0d6efd;
    /* Blue text for icons */
    font-size: 0.85rem;
    font-weight: 500;
}

.course-meta-icons span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-actions {
    display: flex;
    gap: 15px;
}

.btn-outline {
    flex: 1;
    background: white;
    border: 1px solid #ddd;
    color: #333;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-fill {
    flex: 1;
    background: #0d47a1;
    /* Dark Blue */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
}

.btn-fill:hover {
    background: #1565C0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 1.2rem;
    color: #0d47a1;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: black;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Brochure Modal Styles */
.modal-content-brochure {
    background: white;
    color: black;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.brochure-form {
    padding: 20px;
}

.brochure-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.brochure-form input,
.brochure-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
}

.btn-cancel {
    background: #f5f5f5;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}

.btn-submit {
    background: #6c757d;
    /* Grey as per screenshot */
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-submit:hover {
    background: #5a6268;
}

@media (max-width: 768px) {
    .course-card-new {
        flex: 0 0 100%;
        /* 1 item on mobile */
    }
}

/* Course Module Accordion */
.module-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.1);
}

.module-card.active {
    border-color: #0d6efd;
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.15);
}

.module-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    user-select: none;
}

.module-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
}

.plus {
    font-size: 1.5rem;
    color: #0d6efd;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.module-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fff;
    border-top: 1px solid transparent;
}

.module-card.active .module-body {
    border-top: 1px solid #f1f3f5;
}

.module-content {
    padding: 20px 25px 30px;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.module-card.active {
    transform: translateY(-2px);
}

/* Signup Popup toast */
.signup-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 400px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    display: none;
    z-index: 10000;
    overflow: hidden;
    animation: slideUp 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.popup-content {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    font-size: 22px;
    color: #0d6efd;
    line-height: 1;
    font-weight: 800;
    transition: 0.3s;
}

.close-btn:hover {
    transform: scale(1.2);
}

.popup-icon {
    font-size: 40px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.popup-text {
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.4;
    font-weight: 600;
    padding-right: 20px;
}

.popup-text strong {
    font-weight: 800;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f1f3f5;
}

.progress {
    height: 100%;
    width: 0%;
    background: #0d6efd;
}

@keyframes slideUp {
    from {
        transform: translateY(150px) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Vertical Fixed Sidebar Right */
.sidebar-right {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    z-index: 999;
}

.sidebar-right .connect-text {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.sidebar-right .social-icons {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-right .social-icons a {
    font-size: 1.4rem;
    transition: var(--transition);
    opacity: 0.7;
}

.sidebar-right .social-icons a:hover {
    opacity: 1;
    transform: scale(1.2);
}

.sidebar-right .social-icons .fa-whatsapp {
    color: #25D366;
}

.sidebar-right .social-icons .fa-facebook-f {
    color: #1877F2;
}

.sidebar-right .social-icons .fa-instagram {
    color: #E4405F;
}

.sidebar-right .social-icons .fa-linkedin-in {
    color: #0A66C2;
}

.sidebar-right .vertical-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
}

/* Course Projects Section */
.projects-section {
    padding: 100px 0;
    background: #f8f9fa;
    color: #1a1a1a;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card-premium {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.project-card-premium:hover {
    transform: translateY(-8px);
    border-color: #0d47a1;
}

/* Featured / Active card */
.project-card-premium.featured-project {
    background: #0d47a1;
    color: #fff !important;
    border-color: #0d47a1;
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(13, 71, 161, 0.3);
    z-index: 2;
}

.project-card-premium.featured-project .project-desc,
.project-card-premium.featured-project .project-title {
    color: #fff !important;
}

.project-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.project-card-premium.featured-project .project-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(10deg);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.2;
}

.project-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Hide on Mobile */
/* --- Restore Original Course Styles --- */
.course-header {
    padding: 150px 0 80px;
    background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(0, 0, 0, 1) 100%);
    text-align: center;
}

.breadcrumb {
    color: #888;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.course-title h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #888;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.course-meta div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-meta i {
    color: var(--primary-color);
}

.course-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    padding: 80px 0;
}

/* Sidebar Styles */
.sidebar-card {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 120px;
}

/* --- New Project Section (Matches Uploaded Image) --- */
.projects-section-v4 {
    padding: 100px 0;
    background: #fff;
    color: #000;
    text-align: center;
}

.projects-section-v4 .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #000;
}

.projects-grid-v4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.project-card-v4 {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 40px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-card-v4:hover {
    transform: translateY(-5px);
}

.project-card-v4.featured {
    background: #0d47a1;
    color: #fff;
    border: none;
}

.project-illu {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 50%;
}

.project-card-v4.featured .project-illu {
    background: rgba(255, 255, 255, 0.1);
}

.project-illu i {
    font-size: 3.5rem;
    color: #0d47a1;
}

.project-card-v4.featured .project-illu i {
    color: #fff;
}

.project-card-v4 h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.project-details {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.project-card-v4.featured .project-details {
    color: rgba(255, 255, 255, 0.9);
}

.project-details strong {
    color: #000;
}

.project-card-v4.featured .project-details strong {
    color: #fff;
}

/* Curriculum Timeline Design */
.curriculum-timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 40px;
}

.curriculum-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ccff00 0%, #3b82f6 100%);
    opacity: 0.3;
}

.module-item-new {
    position: relative;
    margin-bottom: 50px;
}

.module-item-new::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #ccff00;
    border-radius: 50%;
    box-shadow: 0 0 15px #ccff00;
    z-index: 1;
}

.module-card-v3 {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 30px;
    transition: 0.4s;
}

.module-card-v3:hover {
    border-color: #ccff00;
    transform: translateX(10px);
    background: #151515;
}

.module-card-v3 h4 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.module-card-v3 p {
    color: #888;
    line-height: 1.6;
    margin: 0;
}

.module-number {
    font-size: 0.8rem;
    color: #ccff00;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Certification Section --- */
.certification-section {
    padding: 100px 0;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.certification-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cert-benefits {
    list-style: none;
    padding: 0;
}

.cert-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
}

.cert-benefits i {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 5px;
}

.cert-image-container {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: 0.5s ease;
}

.cert-image-container:hover {
    transform: scale(1.02);
}

.cert-image-container img {
    width: 100%;
    border-radius: 10px;
}

/* --- Professional Pricing Section --- */
.pricing-section-v5 {
    padding: 120px 0;
    background: #f8fbff;
    color: #000;
}

.pricing-grid-v5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card-v5 {
    background: #fff;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: 0.4s ease;
}

.pricing-card-v5:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card-v5 h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a2a4e;
}

.pricing-card-v5 p.plan-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.pricing-features-v5 {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.pricing-features-v5 li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 500;
}

.pricing-features-v5 i {
    width: 25px;
    color: #5c9cf1;
    font-size: 1.2rem;
}

.pricing-footer-v5 {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-text-v5 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
}

.enroll-btn-v5 {
    background: linear-gradient(90deg, #5c9cf1 0%, #1e4ea1 100%);
    color: #fff;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(30, 78, 161, 0.2);
}

.enroll-btn-v5:hover {
    background: linear-gradient(90deg, #1e4ea1 0%, #173d7a 100%);
    box-shadow: 0 12px 25px rgba(30, 78, 161, 0.4);
}

@media (max-width: 0px) { /* DISABLED OLD 900PX BREAKPOINT */
    .certification-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .pricing-grid-v5 {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* --- Masterclass Section --- */
.masterclass-section {
    background: #fff;
    color: #000;
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}

.masterclass-container {
    display: flex;
    align-items: center;
    gap: 80px;
}

.masterclass-visual {
    flex: 1;
    position: relative;
    padding: 20px;
}

.visual-bg-shape {
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    width: 100%;
    height: 120%;
    background: #0f3d81;
    border-radius: 40px;
    z-index: 0;
}

.visual-card {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-width: 550px;
    margin: 0 auto;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: #f5f5f5;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    color: #333;
}

.recording-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d32f2f;
    font-size: 0.9rem;
}

.recording-dot {
    width: 10px;
    height: 10px;
    background: #d32f2f;
    border-radius: 50%;
}

.mentor-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 0.9rem;
    max-width: 180px;
    border: 1px solid #eee;
}

.chat-bubble {
    position: absolute;
    right: -20px;
    bottom: 100px;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    max-width: 220px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eee;
}

.chat-bubble-2 {
    bottom: 40px;
    right: 0px;
}

.chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.masterclass-content {
    flex: 1.1;
}

.mc-subtitle {
    color: #ff6b00;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.mc-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

.mc-subtext {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f3d81;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mc-desc {
    color: #666;
    margin-bottom: 30px;
    font-size: 1rem;
}

.mc-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.mc-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
    font-size: 1.05rem;
}

.mc-features i {
    color: #0f3d81;
    font-size: 1.3rem;
}

.mc-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-mc-outline {
    padding: 15px 35px;
    border: 2px solid #0f3d81;
    color: #0f3d81;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
    background: transparent;
    font-size: 1rem;
}

.btn-mc-fill {
    padding: 15px 35px;
    background: #0f3d81;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    transition: 0.3s;
    border: 2px solid #0f3d81;
    font-size: 1rem;
}

.btn-mc-outline:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
}

.btn-mc-fill:hover {
    background: #0a2a5c;
    border-color: #0a2a5c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 61, 129, 0.3);
}

/* --- Horizontal Marquee for Tools --- */
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 40px;
    padding: 20px 0;
}

.marquee-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    min-width: 100%;
    animation: scroll-tools 20s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-tools {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Ensuring Tool cards work in Marquee */
.tools-section-v4 .tool-item-v4 {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.tools-section-v4 .tool-item-v4 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Overriding Tool Sizes for smaller look */
.tools-section-v4 .tool-item-v4 {
    width: 100px !important;
    height: 60px !important;
    padding: 10px !important;
}

/* Fixed Sidebar */
.fixed-sidebar-social {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}

.fixed-sidebar-social .sidebar-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
}

.fixed-sidebar-social .social-icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fixed-sidebar-social .social-icons a {
    font-size: 1.3rem;
    transition: 0.3s;
}

.fixed-sidebar-social .social-icons a.whatsapp {
    color: #25d366;
}

.fixed-sidebar-social .social-icons a.facebook {
    color: #1877f2;
}

.fixed-sidebar-social .social-icons a.instagram {
    color: #e4405f;
}

.fixed-sidebar-social .social-icons a.linkedin {
    color: #0077b5;
}

.fixed-sidebar-social .social-icons a:hover {
    transform: scale(1.3);
}

.fixed-sidebar-social .sidebar-line {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, #888, transparent);
}

/* --- Responsive Design --- */

/* Medium Screens (Tablets, small laptops) */
@media (max-width: 1024px) {
    .fixed-sidebar-social {
        display: none !important;
    }
    .navbar {
        padding: 15px 30px;
    }

    .navbar nav {
        position: fixed;
        top: 0;
        right: -300px; /* Start hidden on the right */
        width: 300px;
        height: 100vh;
        background: #0b0b0b;
        padding: 100px 30px;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        display: block !important;
        left: auto !important; /* Force it off the left */
        visibility: hidden; /* Prevent interaction when hidden */
    }

    .navbar nav.active {
        right: 0 !important;
        visibility: visible;
    }

    .navbar nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .navbar nav ul li {
        width: 100%;
    }

    .navbar nav ul li a {
        font-size: 1.1rem;
        display: block;
        padding: 15px 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        width: 100%;
        min-width: 0;
        margin-top: 10px;
        border: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 1002;
    }

    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column !important;
        text-align: center;
        gap: 40px !important;
        padding: 0;
    }

    .hero-text {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text .description {
        max-width: 100%;
        font-size: 1rem;
    }

    .hero-image-container {
        width: 100% !important;
        height: auto !important;
        margin-top: 30px;
    }

    .bg-shape {
        width: 300px;
        height: 300px;
    }

    .person-image img {
        max-width: 100%;
        height: auto;
    }

    .floating-badge {
        bottom: 20px;
        right: 0;
        padding: 10px 15px;
    }

    /* Fixed Info Blocks in Home */
    div[style*="display: flex; gap: 60px;"] {
        flex-direction: column !important;
        gap: 30px !important;
    }

    div[style*="display: inline-block; width: 48%;"] {
        width: 100% !important;
        display: block !important;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }

    .footer-brand, .footer-contact, .footer-form-wrapper {
        align-items: center;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Generic Grid Overrides for Inline Styles */
    div[style*="display: grid; grid-template-columns: 1fr 1.2fr;"],
    div[style*="display: grid; grid-template-columns: 1.2fr 1.2fr;"],
    div[style*="display: grid; grid-template-columns: 1fr 1fr;"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Course Page Specifics */
    .course-header h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    .course-header {
        padding: 120px 0 40px !important;
    }

    .featured-image img {
        max-height: 300px !important;
    }
}

/* Small Screens (Mobile Phones) */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .nav-actions {
        gap: 10px;
    }

    .nav-actions a.btn-primary:not([href^="tel"]) {
        display: none; /* Hide Login on mobile */
    }

    .logo span {
        font-size: 1.1rem;
    }

    .navbar {
        padding: 10px 20px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 20px;
    }

    .curly-arrow {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }

    .gallery-item.large {
        grid-row: span 1;
        height: 250px;
    }

    /* Course details header */
    .course-header h1 {
        font-size: 2.2rem !important;
    }

    /* Pricing */
    .pricing-grid-v5 {
        grid-template-columns: 1fr !important;
    }

    .pricing-card-v5 {
        transform: scale(1) !important;
        margin-bottom: 20px;
    }

    /* Certification */
    div[style*="display: grid; grid-template-columns: 1fr 1fr;"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Marquee Track */
    .marquee-track img {
        height: 40px;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .logo-img {
        height: 35px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    /* Registration Popup (Social Proof) Mobile Fix */
    .signup-popup {
        width: 90% !important;
        max-width: 400px !important;
        left: 5% !important;
        bottom: 20px !important;
        box-sizing: border-box;
    }

    .popup-content {
        padding: 15px 20px !important;
        gap: 15px !important;
    }

    .popup-icon {
        font-size: 30px !important;
    }

    .popup-text {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
    }

    /* Extra safety to ensure hero doesn't overflow */
    .hero-text h1 {
        font-size: 2.2rem !important;
        word-break: break-word;
    }
}
