:root {
    --bg-color: #1a1a1a;
    --accent-orange-dark: #ff5e00;
    --primary-orange: #ff6b00;
    --text-white: #ffffff;
    --bg-light: #f4f7f9;
    --text-dark: #222;
    --text-gray: #555;
    --nav-height: 70px;
    --card-bg: #ffffff;
    --badge-bg: #000000;
    --accent-orange: #ff6f00;
    --border-color: #333;
    --text-main: #222;
    --dark-bg: #1a1a1a;
    --card-bg: #f2f7f9;
     --orange: #ff6b00;
    --dark-text: #000000;
    --light-gray: #f3f2ef;
    --border-color: #e0e0e0;
    --link-blue: #0a66c2;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background-color: var(--bg-color);
    height: var(--nav-height);
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    width: 90px;            
    height: 80px;          
    object-fit: cover;     
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    font-weight: 500;
}

.nav-arrow-down { 
    font-size: 10px; 
    margin-left: 4px; 
}

.btn-account {
    background: #0099ff;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
     background-color: var(--bg-color);
    color: var(--text-white);
    padding: 60px 0;
    text-align: center;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 30px;
}

.hero-text-orange { 
    color: var(--accent-orange); 
}

.hero-text-underline { 
    text-decoration: underline; 
}

.chatgpt-icon { 
    width: 40px; 
    vertical-align: middle; 
    margin-left: 10px; 
}

.hero-subtitle {
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
    font-weight: 600;
}

.hero-highlight {
    background: var(--accent-orange);
    padding: 2px 6px;
    border-radius: 4px;
    color: black;
}

.hero-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.hero-check-list li::before {
    content: "✓";
    color: var(--accent-orange);
    font-weight: bold;
    margin-right: 10px;
}

.hero-check-list li {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 18px;
}

/* Main Grid */
.hero-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-bottom: 60px;
}

.hero-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-info-card {
    background: #000;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.hero-bullet-list {
    list-style: none;
    padding: 0;
}

.hero-bullet-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 18px;
}

.hero-bullet-list li::before {
    content: "➡";
    position: absolute;
    left: 0;
    color: white;
}

.hero-video-preview img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* CTA Section */
.hero-cta-button {
    background: var(--accent-orange);
    color: black;
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    max-width: 600px;
    margin-bottom: 25px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; /* add transition for smooth hover */
}

.hero-cta-button:hover {
    background: #ff8a00; /* slightly darker/lighter shade on hover */
    transform: scale(1.03); /* slight zoom effect */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* shadow pop effect */
}

.hero-cta-main { 
    display: block; 
    font-size: 22px; 
    font-weight: 800; 
}

.hero-cta-sub { 
    font-size: 14px; 
    font-weight: 700; 
}

.hero-bonus-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-text-yellow { 
    color: var(--accent-orange); 
}

/* Featured */
.hero-featured-section {
    margin-top: 60px;
}

.hero-featured-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-logos-bar {
    background: #ccc;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.hero-logos-bar img {
    height: 35px;
    opacity: 0.9;
    filter: grayscale(1);
    transition: 0.3s;
}

/* Footer Promo */
.hero-footer-promo {
    margin-top: 80px;
    padding-bottom: 60px;
}

.hero-rating-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-footer-title {
    font-size: 36px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .hero-main-grid { 
        grid-template-columns: 1fr; 
    }
    .nav-links { 
        display: none; 
    }
    .hero-title { 
        font-size: 32px; 
    }
    .hero-subtitle { 
        font-size: 16px; 
    }
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-color);
        padding: 20px;
        gap: 15px;
        align-items: center;
        z-index: 1000;
    }
    
    .nav-links a {
        display: block;
        margin: 5px 0;
    }
    
    .btn-account {
        margin-top: 10px;
    }
}

/* Course Benefits Section */
.course-benefits {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    font-family: var(--font-family);
    text-align: center;
    color: var(--text-main);
}

.course-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

.benefit-card {
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    background: #fff;
}

.benefit-card p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 500;
    color: var(--text-muted);
}

.check-icon::before {
    content: '✔';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.feature-list li {
    font-size: 1.2rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    color: var(--text-muted);
}

.feature-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: end;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.logo-placeholder {
    font-family: "Times New Roman", serif;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific styling to mimic logos in screenshot */
.stat-item:nth-child(2) .logo-placeholder { font-style: italic; }
.stat-item:nth-child(3) .logo-placeholder { 
    font-family: sans-serif; 
    font-size: 1.4rem; 
    letter-spacing: 2px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
}

.stat-value {
    color: var(--accent-red);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #FF0202;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .section-title { font-size: 1.8rem; }
    .impact-title { font-size: 1.5rem; }
}

/* AI Section */
.ai-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
}

.ai-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.ai-section-title.secondary {
    margin-top: 80px;
}

/* AI Section Additional Styles */
.ai-text-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ai-main-text {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.ai-sub-text {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.news-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: auto;
    display: block;
}

.sub-heading {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 40px 0;
    color: #111;
}

.cta-container {
    display: flex;
    justify-content: center;

}

.cta-button {
    background: linear-gradient(135deg, #eaff00 0%, #d4d400 100%);
    color: black;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 20px rgba(234, 255, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(234, 255, 0, 0.4);
}

.cta-button .icon {
    font-size: 2.2rem;
    font-weight: bold;
}

.text-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.main-text {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.sub-text {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
}

.footer-note {
    margin-top: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
    text-transform: uppercase;
    background: #000;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 600px;
    margin: 30px auto 0;
}

@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .sub-heading {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 15px 25px;
    }
    
    .cta-button .main-text {
        font-size: 1.1rem;
    }
}



/* Workshop Section */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
.workshop-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.header-content h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.header-content p {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: #444;
}

.header-content a {
    color: #ff6600;
    text-decoration: underline;
    font-weight: 600;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fix 3 cards per row */
    gap: 20px;
    margin-bottom: 50px;
}

.feature-card {
    background: #f0f4f7;
    padding: 30px;
    border-radius: 4px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card .icon {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
}

.feature-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 15px;
    color: #666;
}


.cta-button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.02);
}

.cta-button .arrow {
    font-size: 32px;
    margin-right: 15px;
    font-weight: bold;
}

.button-text {
    text-align: left;
}

.button-text strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.button-text span {
    font-size: 14px;
}

.deadline-text {
    margin-top: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
}

.black-banner {
    background: #1a1a1a;
    color: white;
    padding: 30px 20px;
    margin-top: 60px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.black-banner h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.black-banner p {
    color: #ff9900;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    .header-content h1 {
        font-size: 24px;
    }
    .cta-button {
        padding: 15px 20px;
    }
    .button-text strong {
        font-size: 16px;
    }
}
/* ================= BONUS SECTION ================= */

/* GLOBAL FIX FOR BOX-SIZING */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Bonus Section Container */
.bonus-container {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 0 20px;        /* SIDE SPACE FIX */
    overflow-x: hidden;     /* HTML OVERFLOW FIX */
}

.promo-container{
    max-width: 850px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Bonus Grid */
.bonus-grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* adjusted to prevent overflow */
    gap: 25px;
    margin-bottom: 50px;
}

/* Bonus Card Item */
.bonus-card-item {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 40px 20px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Badge */
.bonus-badge {
    position: absolute;
    top: 0;
    background: #222;
    color: #f0ad4e;
    padding: 5px 25px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    font-weight: bold;
    font-size: 14px;
}

/* Icon Image */
.icon img {
    width: 50px;
    margin-bottom: 20px;
}

/* Card Heading */
.bonus-card-item h3 {
    font-size: 1.2rem;
    margin: 15px 0;
    font-weight: 700;
    color: #333;
    text-align: center;
}

/* Worth Tag */
.worth-tag {
    border: 1px solid #333;
    padding: 8px 25px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
}

/* Bonus Main Heading */
.main-heading {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    max-width: 800px;
}

.cta-box-simple {
    background-color: #ff6f00;
    color: white;
    text-decoration: none; /* remove underline */
    -webkit-text-decoration: none; /* safari/old webkit */
    text-decoration-thickness: 0; /* extra safety */
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: inline-block; /* ensure padding works on <a> */
}
.stats-text {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
    max-width: 750px;
}

.rating-stars {
    display: flex;
    gap: 5px;
    margin-top: -10px;
}

.star {
    font-size: 48px;
    color: #ffcc00;
}

.star.half {
    position: relative;
    color: #e0e0e0;
}

.star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #ffcc00;
}

.sub-heading {
    font-size: 26px;
    font-weight: 600;
    margin: 10px 0;
}

.cta-button-main {
    background-color: #ff6f00;
    color: white;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease;
    box-shadow: 0 6px 15px rgba(255, 111, 0, 0.3);
}

.cta-button-main:hover {
    transform: scale(1.02);
}

.arrow {
    font-size: 32px;
    font-weight: 800;
}

.button-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.button-title {
    font-size: 22px;
    font-weight: 800;
}

.button-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-top: 4px;
}

.strike {
    text-decoration: line-through;
    opacity: 0.8;
}

.deadline-info {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    line-height: 1.6;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .bonus-grid-section {
        grid-template-columns: 1fr;
    }

    .bonus-main-heading,
    .bonus-sub-heading {
        font-size: 1.4rem;
    }

    .bonus-primary-btn {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .bonus-container {
        padding: 0 16px;
    }
}


.workshop-section {
      font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 40px 20px;
    background-color: #ffffff;
    color: var(--dark-text);
    line-height: 1.4;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.header-content h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.highlight-orange {
    color: var(--orange);
    text-decoration: underline;
}

.sub-headline {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.social-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-header {
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 12px;
}

.user-info .name-row {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.follow-btn {
    background: none;
    border: none;
    color: var(--link-blue);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.title {
    font-size: 12px;
    color: #666;
    margin: 2px 0;
}

.meta {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.more-btn {
    position: absolute;
    right: 16px;
    top: 12px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

.card-body {
    padding: 0 16px 12px;
}

.card-body p {
    font-size: 14px;
    margin-bottom: 8px;
}

.mention {
    color: var(--link-blue);
    font-weight: 600;
}

.more-text {
    color: #666;
}

.image-attachment-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4px;
    margin-top: 10px;
}

.image-attachment-split img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 1px solid #eee;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-button {
    background: var(--orange);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.02);
}

.cta-button .arrow {
    font-size: 32px;
    font-weight: bold;
}

.cta-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.main-cta {
    font-size: 22px;
    font-weight: 700;
}

.sub-cta {
    font-size: 16px;
    font-weight: 600;
}

.deadline-notice {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deadline-notice p {
    margin: 5px 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .header-content h1 { font-size: 20px; }
    .sub-headline { font-size: 22px; }
    .main-cta { font-size: 16px; }
}

/* ================= CERTIFICATION SECTION ================= */

.certification-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background-color: #000;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.certification-container {
    max-width: 1000px;
    width: 100%;
    text-align: center;
}

/* Header */
.certification-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.certification-header p {
    font-size: 1.1rem;
    color: #dddddd;
    margin-bottom: 40px;
}

.certification-highlight {
    color: var(--accent-orange);
    font-weight: 700;
}

/* Certificate Image */
.certificate-image-wrapper {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    margin-bottom: 40px;
}

.certificate-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

/* CTA */
.cta-button {
    background: var(--accent-orange);
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 20px rgba(234, 255, 0, 0.3);
    transition: transform 0.2s;
}

.cta-button:hover {
    transform: scale(1.02);
}

.cta-button strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.cta-button span {
    font-size: 16px;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .certification-header h2 {
        font-size: 1.8rem;
    }

    .certificate-image-wrapper {
        padding: 12px;
    }

    .cta-button {
        padding: 16px 20px;
    }

    .cta-button strong {
        font-size: 18px;
    }
}

/* Additional Missing Styles */
.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-bottom: 60px;
}

.info-column {
    display: flex;
    flex-direction: column;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 30px;
}

.info-card {
    background: #000;
    border: 1px solid #333;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
}

.bullet-list li::before {
    content: "➡";
    position: absolute;
    left: 0;
    color: white;
}

.video-preview img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}



.cta-button {
    background: var(--accent-yellow);
    color: black;
    border: none;
    padding: 20px 40px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    max-width: 600px;
    margin-bottom: 25px;
}

.cta-main { 
    display: block; 
    font-size: 22px; 
    font-weight: 800; 
}

.cta-sub { 
    font-size: 14px; 
    font-weight: 700; 
}

.text-yellow { 
    color: var(--accent-yellow); 
}

.featured-section {
    margin-top: 60px;
}

.featured-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.logos-bar {
    background: #ccc;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.logos-bar img {
    height: 35px;
    opacity: 0.9;
    filter: grayscale(1);
    transition: 0.3s;
}

.footer-promo {
    margin-top: 80px;
    padding-bottom: 60px;
}

.rating-text {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 36px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .main-grid { 
        grid-template-columns: 1fr; 
    }
    .nav-links { 
        display: none; 
    }
    .hero-title { 
        font-size: 32px; 
    }
    .hero-subtitle { 
        font-size: 16px; 
    }
}



.mentors-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: var(--font-family);
    color: var(--text-main);
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.mentor-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.mentor-image {
    flex: 0 0 450px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.mentor-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mentor-info {
    flex: 1;
}

.mentor-name {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.mentor-tags {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.mentor-tags li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.check-icon {
    margin-right: 10px;
    font-weight: bold;
}

.mentor-description p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 18px;
}

.mentor-description strong em {
    color: var(--text-main);
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 992px) {
    .mentor-card {
        flex-direction: column;
        align-items: center;
    }
    
    .mentor-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
    }
    
    .mentor-info {
        width: 100%;
    }
    
    .section-title {
        font-size: 28px;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

/* ================= GLOBAL FIX ================= */

*,
*::before,
*::after {
    box-sizing: border-box;   /* 🔑 overflow issue permanently fixed */
}

/* ================= CTA SECTION ================= */

.cta-section {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    padding: 40px 0;                 /* 🔑 side padding removed (container handles it) */
    background-color: #faf7f7;
    text-align: center;
    color: #333333;
    line-height: 1.6;
}

/* ================= CONTAINER ================= */

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;                 /* 🔑 side space */
}

/* ================= CONTENT ================= */

.main-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 25px;                /* 🔑 top margin removed */
    letter-spacing: -0.5px;
}

.content-text p {
    font-size: 16px;
    margin: 0 0 18px;
    color: #444;
}

.pricing-info {
    font-weight: 700;
    text-transform: uppercase;
    margin: 20px 0;
}

/* ================= CTA BUTTON ================= */

.cta-button {
    display: flex;                   /* inline-flex removed */
    align-items: center;
    justify-content: center;

    background-color: #ff6f00;
    color: #ffffff;
    text-decoration: none;

    padding: 20px 40px;
    border-radius: 8px;
    margin: 20px auto 0;

    width: 100%;
    max-width: 600px;

    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.3);
}

.cta-button:hover {
    background-color: #e66400;
    transform: translateY(-2px);
}

/* ================= CTA CONTENT ================= */

.cta-button .icon {
    font-size: 32px;
    margin-right: 15px;
    font-weight: bold;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.primary-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.secondary-text {
    font-size: 16px;
    font-weight: 600;
    margin-top: 4px;
}

.secondary-text del {
    text-decoration: line-through;
    opacity: 0.8;
}

/* ================= FOOTER NOTICE ================= */

.footer-notice {
    font-size: 18px;
    font-weight: 700;
    margin-top: 16px;
    line-height: 1.4;
    color: #000;
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .container {
        padding: 0 16px;             /* 🔑 mobile side space */
    }

    .main-title {
        font-size: 24px;
    }

    .primary-text {
        font-size: 18px;
    }

    .cta-button {
        padding: 15px 20px;
        max-width: 100%;             /* 🔑 mobile overflow safety */
    }
}


@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* ================= FAQ WRAPPER ================= */

.faq-section {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;              /* 🔑 MOBILE SIDE SPACE FIX */
}

/* ================= TITLE ================= */

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* ================= FAQ ================= */

.faq-container {
    margin-bottom: 50px;
}

details {
    margin-bottom: 25px;
}

summary {
    list-style: none;
    font-weight: 600;
    color: #f7a049;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
}

summary::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #4a4a4a;
    margin-right: 10px;
}

details[open] summary::before {
    transform: rotate(90deg);
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    margin-top: 10px;
    margin-left: 20px;
    color: #555;
    font-size: 16px;
}

.highlight-text {
    color: #f7a049;
    font-weight: 600;
}

/* ================= CTA ================= */

.cta-container {

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;                    /* 🔑 CTA + footer-info gap */
}

.cta-button {
    background-color: #ff7315;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 115, 21, 0.3);
    transition: transform 0.2s;
    width: 100%;
    max-width: 700px;
}

.cta-button:hover {
    transform: scale(1.02);
}

.cta-icon {
    font-size: 32px;
    margin-right: 15px;
    font-weight: bold;
}

.cta-text {
    text-align: center;
}

.cta-text strong {
    display: block;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.price-subtext {
    font-size: 14px;
    opacity: 0.9;
}

/* ================= FOOTER INFO (NOW UNDER CTA) ================= */

.footer-info {
    text-align: center;           /* 🔑 CENTERED */
    font-size: 14px;
    color: #000;
    line-height: 1.5;
    max-width: 520px;
}

.footer-info p {
    margin: 5px 0;
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .faq-title {
        font-size: 22px;
    }

    .cta-button {
        padding: 12px 20px;
    }

    .cta-text strong {
        font-size: 16px;
    }

    .faq-section {
        padding: 0 16px;          /* 🔑 EXTRA MOBILE COMFORT */
    }
}




.site-footer {
  width: 100%;
}

/* ================= PAYMENT ================= */


.payment-banner {
  background-color: #050a12;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.payment-card {
  background: white;
  padding: 8px 15px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #555;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 2px;
}

.razorpay-logo {
  display: flex;
  align-items: center;
  font-style: italic;
  font-weight: 900;
  font-size: 18px;
  color: #1a1a1a;
}

.razor-icon {
  width: 16px;
  height: 16px;
  background-color: #2b77eb;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  margin-right: 2px;
}

.razor-text {
  color: #242c3d;
  letter-spacing: -0.5px;
}

/* ================= FOOTER ================= */

.footer-content {
  background-color: #ffffff;
  padding: 30px 20px;
  text-align: center; /* 🔑 center everything */
  color: #333;
}
/* 🔥 MAIN FIX HERE */
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px 25px;
  flex-wrap: wrap;          /* wrap allowed */
  text-align: center;
}

.footer-nav a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;      /* 🔑 ek line me rahe */
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* ================= COPYRIGHT ================= */

.copyright {
  text-align: center;       /* 🔑 center */
  color: #5e6d77;
  font-size: 14px;
}

.copyright strong {
  color: #333;
  font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .footer-nav {
    flex-direction: row;    /* ❌ column hata diya */
    gap: 10px 15px;
  }

  .social-links {
    gap: 15px;
  }
}

/* Countdown Timer */
.countdown-container {
    text-align: center;
    margin: 0 auto 25px;
    max-width: 600px;
}

.countdown-label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.time-box {
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 12px;
    min-width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.time-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-orange);
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.time-label {
    font-size: 11px;
    color: #ccc;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
}

.separator {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

@media (max-width: 480px) {
    .time-box {
        min-width: 60px;
        padding: 8px 6px;
    }
    .time-value {
        font-size: 20px;
    }
    .separator {
        font-size: 20px;
        margin-bottom: 14px;
    }
}
