@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0c1a35;
    --secondary-color: #f7b731;
    --accent-red: #eb3b5a;
    --accent-green: #20bf6b;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: #051024;
    color: white;
    border: 2px solid #051024;
}

.btn-primary:hover {
    background-color: #f39c12; /* Yellow/Orange */
    color: white;
    border-color: #f39c12;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #f39c12;
    color: white;
    border: 2px solid #f39c12;
}

.btn-secondary:hover {
    background-color: #e67e22; /* Slightly darker orange for hover if secondary is already orange */
    color: white;
    border-color: #e67e22;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background-color: var(--accent-green);
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #16a085;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: white;
    color: #051024;
    border: 2px solid #051024;
}

.btn-outline:hover {
    background-color: #f39c12; /* Yellow */
    color: white;
    border-color: #f39c12;
    transform: translateY(-3px);
}

.btn-dark {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-dark:hover {
    background-color: #f39c12;
    color: var(--white);
    border-color: #f39c12;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Header */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h4 {
    color: #a29bfe;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(162, 155, 254, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.hero-feature i {
    color: var(--primary-color);
    background: rgba(12, 26, 53, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.stat-box {
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Logos Section */
.logos-section {
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.logos-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    opacity: 1;
    transition: var(--transition);
}



.logo-item {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Why Learn Section */
.why-learn {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.why-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(12, 26, 53, 0.1);
}

.why-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.why-card .status-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--accent-red);
    font-size: 1.2rem;
}

.why-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Curriculum Section */
.curriculum {
    background: var(--primary-color);
    color: var(--white);
}

.curriculum .section-header h2 {
    color: var(--white);
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.curriculum-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.curriculum-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.curr-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.curr-num {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(247, 183, 49, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.curr-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.curriculum-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.curriculum-card ul li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.curriculum-card ul li::before {
    content: "•";
    color: var(--secondary-color);
}

/* Internship Section */
.internship {
    background: var(--white);
}

.internship-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.internship-image {
    position: relative;
}

.internship-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.badge-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 150px;
}

.badge-float i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.badge-float p {
    font-size: 0.8rem;
    font-weight: 700;
}

.internship-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.internship-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.internship-list li i {
    color: var(--accent-green);
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.stars {
    color: #f39c12;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.user-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
    text-align: center;
    transition: var(--transition);
}

.pricing-card.popular {
    border-color: var(--secondary-color);
    background: linear-gradient(to bottom, #fffef0, #ffffff);
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.popular-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.pricing-card h4 {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: 800;
}

.limited-seats {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.limited-seats h3 {
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.time-unit {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    min-width: 60px;
}

.time-unit span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
}

.time-unit span:last-child {
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-light);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 200px;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Bottom CTA */
.bottom-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    overflow: hidden;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.cta-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.cta-feat i {
    color: var(--secondary-color);
}

.cta-image {
    position: relative;
}

.cta-image img {
    margin-bottom: -80px;
}

.sub-title {
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Problem Section */
.problem-section {
    background: #fff;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.problem-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.problem-card i {
    color: var(--accent-red);
    font-size: 1.5rem;
}

.problem-card p {
    font-size: 0.95rem;
    font-weight: 500;
}

.solution-statement {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
}

.solution-statement h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.solution-statement p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* About Course */
.about-course {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    font-weight: 600;
}

.about-feat-item i {
    color: var(--accent-green);
}

/* Why Choose Us */
.why-choose-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.why-choose-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    flex: 1 1 280px;
    max-width: 350px;
}

.why-choose-item:hover {
    transform: translateY(-10px);
}

.why-choose-item .icon {
    width: 70px;
    height: 70px;
    background: rgba(12, 26, 53, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.why-choose-item h4 {
    margin-bottom: 10px;
}

.why-choose-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Curriculum Additions */
.marketplace-tags {
    display: flex !important;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.marketplace-tags span {
    background: rgba(247, 183, 49, 0.1);
    color: var(--secondary-color);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.curriculum-card::before {
    display: none;
}

/* Who Join */
.who-join {
    background: var(--white);
}

.who-join-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.who-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    transition: var(--transition);
    flex: 1 1 200px;
    max-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.who-card:hover {
    background: var(--primary-color);
    color: var(--white);
}

.who-card i {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.who-card:hover i {
    color: var(--secondary-color);
}

.who-card h4 {
    margin-bottom: 10px;
}

.who-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Benefits */
.course-benefits {
    background: var(--primary-color);
    color: var(--white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.benefits-list {
    margin-top: 30px;
}

.benefits-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.benefits-list li i {
    color: var(--secondary-color);
}

.benefits-image img {
    border-radius: 20px;
}

/* Social Proof */
.social-proof-cta p {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #060e1f;
    color: var(--white);
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* Consolidating media queries at the end of style.css */

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    width: 800px;
    max-width: 90%;
    border-radius: 20px;
    position: relative;
    display: flex;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    display: flex;
    width: 100%;
}

.modal-image {
    flex: 1;
    background: var(--bg-light);
}

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

.modal-text {
    flex: 1.2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.modal-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.modal-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
}


/* --- Refined Section Styles --- */

/* Hero Floating Stats */
.hero-image-wrapper {
    position: relative;
}

.floating-stats {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.stat-box-float {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    min-width: 180px;
    text-align: center;
}

.stat-box-float h3 {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat-box-float p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Logo Grid Optimization */
.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.logo-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 110px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- Problem Section Design Match --- */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 50px;
    align-items: center;
}

.problem-intro h2 {
    font-size: 2.8rem;
    color: #0b132b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.problem-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.problem-cards-wrapper {
    text-align: center;
}

.problem-sub-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #0b132b;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.problem-card {
    padding: 50px 25px;
    text-align: center;
    background: white;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-icon-box {
    position: relative;
    display: inline-block;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.card-icon-box i {
    color: #000000 !important; /* Force Black Icons */
}

.card-icon-box .badg-x {
    position: absolute;
    bottom: 5px;
    right: -5px;
    background: #ff4757;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid white;
}

.problem-card p {
    font-size: 1.1rem; /* Increased font size */
    font-weight: 700;
    color: #051024;
    line-height: 1.3;
}

@media (max-width: 1200px) {
    .problem-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .problem-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .problem-card:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .problem-cards {
        grid-template-columns: 1fr;
    }
    .problem-card {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
}


/* --- Curriculum Section Design Match --- */
.curriculum {
    background: #051024; /* Deep Navy */
    padding: 120px 0;
}

.curriculum .section-header h2 {
    color: white;
}

.curriculum-box {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 70px 50px;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 60px;
}

.curriculum-grid-new {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0; /* Remove gap to use dividers */
    margin-top: 20px;
}

.curr-module {
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.curr-module:last-child {
    border-right: none;
}

.curr-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: #f39c12; /* Orange Icon */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.curr-number {
    display: block;
    color: #f39c12; /* Orange Number */
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.curr-module h4 {
    color: white;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 700;
    min-height: 50px;
}

.curr-module ul {
    list-style: none;
    padding: 0;
}

.curr-module ul li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.curr-module ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1200px) {
    .curriculum-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
    .curr-module {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
    }
    .curr-module:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .curriculum-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .curriculum-grid-new {
        grid-template-columns: 1fr;
    }
}

/* --- Internship Section Design Match --- */
.internship-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.internship-text-side h3 {
    font-size: 2.2rem;
    color: #0b132b;
    margin: 15px 0 25px;
    line-height: 1.2;
}

.accent-color {
    color: #6c5ce7; /* Purple/Blue accent */
}

.internship-check-list {
    list-style: none;
    padding: 0;
}

.internship-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #2d3436;
}

.internship-check-list i {
    color: #0b132b;
    font-size: 0.9rem;
}

.cert-badge {
    display: flex;
    justify-content: flex-end;
}

.cert-card {
    background: #fff9f0; /* Very light gold tint */
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #ffeaa7;
    position: relative;
    max-width: 220px;
}

.cert-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    border-style: solid;
    border-width: 0 25px 25px 0;
    border-color: transparent #f1f2f6 transparent transparent;
    border-radius: 0 20px 0 0;
}

.cert-icon-wrapper {
    font-size: 4rem;
    color: #d4af37; /* Gold */
    margin-bottom: 15px;
    display: inline-block;
}

.cert-card p {
    font-size: 0.75rem;
    font-weight: 800;
    color: #2d3436;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}



/* --- Pricing Section Design Match --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 50px;
}

.pricing-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.popular {
    border: 2px solid #f39c12;
    transform: scale(1.05);
    position: relative;
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #f39c12;
    color: white;
    padding: 5px 20px;
    border-radius: 0 0 10px 10px;
    font-size: 0.75rem;
    font-weight: 800;
}

.p-header h3 {
    font-size: 1.1rem;
    color: #051024;
    margin-bottom: 10px;
}

.p-header .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #051024;
    margin-bottom: 5px;
}

.p-header p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.pricing-card ul li {
    font-size: 0.85rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #444;
}

.pricing-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #051024;
}

/* Limited Seats Card */
.limited-seats-card {
    background: #051024;
    color: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.limited-seats-card h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    line-height: 1.2;
}

.limited-seats-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.countdown-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 25px;
}

.time-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 5px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.time-val {
    font-size: 1.2rem;
    font-weight: 800;
}

.time-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.6;
}

.btn-warning {
    background: #f39c12;
    color: #051024;
    width: 100%;
    padding: 12px;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
}

.wa-info {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* Bottom CTA & Checkerboard Fix */
.bottom-cta {
    background: #0b132b;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.cta-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-img-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-img-side img {
    max-width: 100%;
    height: auto;
    /* Use filters to remove checkerboard grey if it's light grey */
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 30px rgba(0,0,0,0.5));
    mix-blend-mode: lighten; /* If background is dark and checkerboard is grey, this might help */
}

/* Footer Stats Restoration */
.footer-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.f-stat {
    flex: 1 1 200px;
    max-width: 250px;
}

.f-stat i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* ==========================================================================
   CONSOLIDATED RESPONSIVE STYLES (Desktop-Down Hierarchy)
   ========================================================================== */

/* --- Tablet / Large Devices (max-width: 1200px) --- */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .problem-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .curriculum-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }

    .curr-module {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
    }

    .curr-module:nth-child(3n) {
        border-right: none;
    }
}

/* --- Medium Devices (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .hero-content, 
    .about-grid, 
    .internship-content, 
    .benefits-content, 
    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .pricing-card.popular {
        transform: none;
        box-shadow: var(--shadow);
    }
}

/* --- Mobile / Tablet Menu (max-width: 992px) --- */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    /* Fixed mobile slide-in navigation drawer */
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: flex;
        gap: 25px;
    }

    .nav-links.active {
        left: 0;
    }

    .header-cta {
        display: none;
    }

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

    .hero-text p {
        margin: 0 auto 30px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .floating-stats {
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .internship-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .cert-badge {
        justify-content: center;
    }

    .internship-check-list li {
        justify-content: center;
    }

    /* Beautiful stacked bottom CTA flexbox */
    .cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-img-side img {
        max-width: 80%;
        margin-bottom: 0;
    }
}

/* --- Small Tablet / Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h3, 
    .cta-text-side h2 {
        font-size: 1.8rem;
    }

    .logos-container {
        gap: 20px;
    }

    .logo-item {
        width: 150px;
        height: 80px;
        padding: 10px;
    }

    .curriculum-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .curriculum-box {
        padding: 40px 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .modal-content {
        width: 95%;
        flex-direction: column;
    }

    .modal-image {
        display: none;
    }
}

/* --- Small Mobile (max-width: 600px) --- */
@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .problem-cards {
        grid-template-columns: 1fr;
    }

    .problem-card {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
}

/* --- Ultra Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .curriculum-grid-new {
        grid-template-columns: 1fr;
    }

    .countdown-row {
        gap: 5px;
    }

    .time-val {
        font-size: 1rem;
    }

    .logo img {
        height: 55px;
    }
}


/* Demo Popup Styles */
.demo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.demo-popup.active {
    opacity: 1;
    visibility: visible;
}

.demo-popup-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.demo-popup.active .demo-popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-popup:hover {
    color: var(--accent-red);
}

.demo-popup-content h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.3;
}

.demo-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
}

.form-group input.input-error,
.form-group select.input-error {
    border-color: var(--accent-red);
}

.error-message {
    color: var(--accent-red);
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.demo-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 20px;
    line-height: 1.5;
    background: rgba(243, 156, 18, 0.1);
    padding: 10px;
    border-radius: 8px;
}

/* Hide unused Lead Modal to prevent it from breaking layout */
.modal-overlay {
    display: none;
}


/* Swiper Testimonial Slider Styles */
.testimonialSwiper {
    padding-bottom: 50px !important;
}

.testimonialSwiper .swiper-slide {
    height: auto; 
}

.testimonialSwiper .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonialSwiper .testimonial-card .user-info {
    margin-top: auto;
}

.testimonialSwiper .swiper-pagination-bullet {
    background-color: var(--primary-color);
    opacity: 0.5;
}
.testimonialSwiper .swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
    opacity: 1;
}


/* Topbar Marquee */
.topbar-left {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1001; 
}

.topbar-marquee {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.topbar-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.topbar-marquee span:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.badg-x i {
    color: #ffffff !important;
}


/* Footer Layout Adjustments */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}
