/* ===== GLOBAL STYLES ===== */
:root {
    --primary: #0A2540;
    --secondary: #ffc400;
    --accent: #00B4D8;
    --light: #F8F9FA;
    --dark: #1A1A2E;
    --text: #2D3748;
    --gradient-primary: linear-gradient(135deg, #0A2540 0%, #1A365D 100%);
    --gradient-secondary: linear-gradient(135deg, #ffbb00 0%, #facc4d 100%);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
    --shadow-M: 0 20px 40px rgba(0,0,0,0.11);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;
    
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

/* ===== SECTION COMMON ===== */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title .subtitle {
    color: rgb(255, 196, 0);
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.section-title p {
    font-size: 1.3rem;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 70px;          /* desktop size */
    width: auto;
    max-width: 260px;
    object-fit: contain;
    transition: var(--transition);
}

/* Optional hover polish */
.logo:hover .logo-image {
    transform: scale(1.02);
}

/* =========================
   RESPONSIVE LOGO
========================= */
@media (max-width: 1024px) {
    .logo-image {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 52px;
    }
}

@media (max-width: 425px) {
    .logo-image {
        height: 46px;
    }
}
nav ul {
    display: flex;
    list-style: none;
    align-items: center;

    gap: 50px;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    padding: 8px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a.active {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* ===== HERO SECTIONS ===== */
.hero,
.about-hero,
.contact-hero,
.news-hero,
.article-hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(26, 54, 93, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
    background-attachment: fixed;
}

.about-hero {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(26, 54, 93, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    text-align: center;
    color: white;
}

.contact-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(26, 54, 93, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    text-align: center;
    color: white;
}

.news-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(26, 54, 93, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.article-hero {
    min-height: auto;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 180px 0 80px;
}

.hero::before,
.about-hero::before,
.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.about-hero::before {
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.news-hero::before {
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.hero-container,
.about-hero-content,
.contact-hero-content,
.news-hero-content,
.article-header {
    position: relative;
    z-index: 2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: top;
}/* ===== HERO HEADINGS (GLOBAL) ===== */
.hero-content h1,
.about-hero h1,
.contact-hero h1,
.news-hero h1,
.article-title {
    font-size: 4rem;
    color: white;
    line-height: 1.30;        /* tighter */
    margin-bottom: 18px;      /* reduced */
    font-weight: 900;
    margin-top: 18px;
}

/* ===== INNER PAGES (slightly smaller) ===== */
.about-hero h1,
.contact-hero h1,
.news-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 32px;      /* slightly more breathing than home */
}
.article-title {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 30px;
}
/*
.hero-content h1 span,
.about-hero h1 span,
.news-hero h1 span {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after,
.about-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--secondary);
    opacity: 0.5;
    z-index: -1;
    border-radius: 10px;
}*/

.hero-content p,
.about-hero p,
.contact-hero p,
.news-hero p,
.article-excerpt {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.about-hero p,
.contact-hero p,
.news-hero p {
    font-size: 1.5rem;
}

.article-excerpt {
    color: var(--text);
    font-size: 1.4rem;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-cta {
    display: flex;
    gap: 12px;          /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  THIS creates clean spacing */
    align-items: center;
    flex-wrap: wrap;    /* keeps it safe on smaller screens */
}

/* ===== LEAD FORM ===== */
.lead-form-container,
.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px);
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.lead-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-secondary);
}

.contact-form-container::before {
    background: var(--gradient-primary);
}

.lead-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.lead-form-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 120%;
}

.lead-form-header p {
    color: var(--text);
    font-size: 1.2rem;
    opacity: 0.9;
}

.lead-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 22px 30px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: var(--transition);
    background: white;
    color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.15);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.form-checkbox input {
    width: 22px;
    height: 22px;
}

.form-checkbox label {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}

/* ===== COUNTDOWN ===== */

.countdown-timer {
    background: var(--gradient-secondary);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.countdown-timer h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 800;
}

/* Desktop layout */
.countdown-numbers {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

/* Boxes */
.countdown-item {
    flex: 1;                     /* AUTO SIZE */
    max-width: 110px;           /* PREVENT HUGE */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Numbers */
.countdown-value {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

/* Labels */
.countdown-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

/* ===== MOBILE STACK ===== */

@media (max-width: 600px) {

    .countdown-numbers {
        flex-direction: column;
        gap: 15px;
    }

    .countdown-item {
        max-width: 100%;
    }

    .countdown-value {
        font-size: 2.2rem;
    }
    
}

/* ===== TRANSFORMATION PROCESS ===== */
.transformation-process,
.roi-calculator,
.timeline-section,
.metrics-section,
.values-section,
.approach-section,
.journey-section,
.partners-section,
.services-section,
.philosophy-section,
.mission-vision-section,
.team-section,
.story-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.process-steps,
.partners-grid,
.services-grid,
.philosophy-grid,
.values-grid,
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.process-step,
.partner-card,
.service-card,
.philosophy-card,
.value-card,
.team-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
    border: 1px solid #E2E8F0;
}

.process-step:hover,
.partner-card:hover,
.value-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.service-card:hover,
.philosophy-card:hover,
.team-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.process-step h3,
.partner-card h3,
.service-card h3,
.philosophy-card h3,
.value-card h3,
.team-card h3 {
    font-size: 1.8rem;
    color: rgb(0, 0, 0);
    margin-bottom: 25px;
    font-weight: 800;
}

.service-card h3,
.philosophy-card h3,
.team-card h3 {
    color: rgb(78, 73, 73);
}

.process-step ul,
.value-principles {
    list-style: none;
    margin-top: 25px;
}

.process-step ul li,
.value-principles li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.process-step ul li::before {
     
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.value-principles li::before {
 
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 2rem;
    line-height: 1;
}

/* ===== SPEAKER SHOWCASE ===== */
.home-hero {
            background: linear-gradient(135deg, rgba(26, 54, 93, 0.92), rgba(26, 54, 93, 0.85)), 
                        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 120px;
            text-align: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        /* Animated background overlay */
        .home-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(212,175,55,0.1)"/></svg>');
            background-size: cover;
            opacity: 0.3;
        }
        
        .home-hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }
        
        .home-hero h1 {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .home-hero h1 span {
            color: #d4af37;
            background: linear-gradient(45deg, #ffda0b, #fbff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline;
        }
        
        .home-hero p {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.7;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

/* ===== SPEAKER SHOWCASE ===== */
.speaker-showcase,
.speaker-info .section-title,
.testimonials,
.testimonials-section,
.media-highlights,
.newsletter-section,
.author-bio,
.footer {
    background: var(--gradient-primary);
    color: white;
}

.speaker-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.speaker-image-container {
    position: relative;
}

.speaker-main-image {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.speaker-badge {
    position: absolute;
    top: -10px;
    right: -20px;
    background: var(--gradient-secondary);
    color: var(--primary);
    padding: 15px;
    border-radius: 100%;
    height: 9%;
    width:   12.1%;
    font-weight: 900;
    font-size: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.speaker-info h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.speaker-title {
    color: var(--secondary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: block;
}

.speaker-quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 4px solid var(--secondary);
}

.speaker-achievements {
    margin-top: 50px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
}



 
/* ===== TESTIMONIALS ===== */
.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -30px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -30px;
}

.testimonial-author {
    display: flex;
    align-items: bottom;
    justify-content: center;
    gap: 25px;
}

.author-avatar {
    width: 100px;
    height:100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.author-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: left;
    
}

.author-info p {
    opacity: 0.8;
    text-align: left;
}

/* ===== PARTNERS & TEAM SPECIFIC ===== */
.partner-avatar,
.team-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    align-items: center;
    margin: 0 auto 30px;
    border: 5px solid var(--secondary);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.team-avatar {
    width: 180px;
    height: 180px;
}

.partner-role,
.team-role {
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
}

.team-role {
    font-size: 1.2rem;
}

.partner-bio,
.team-bio {
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.team-bio {
    opacity: 0.9;
}

.partner-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 25px;
}

.expertise-tag,
.milestone-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.partner-social,
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.partner-social a,
.team-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.partner-social a {
    background: var(--light);
}

.team-social a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.partner-social a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.team-social a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px);
}

/* ===== SINGLE PARTNER SECTION ===== */
.partner-single {
    background: white;
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #E2E8F0;
}

.partner-single::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.partner-single-image {
    margin-bottom: 30px;
}

.partner-avatar-single {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    border: 6px solid var(--secondary);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    margin: 0 auto;
}

.partner-single-content h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 900;
}

.partner-role-single {
    display: block;
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.partner-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-expertise-single {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    padding: 25px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.expertise-tag {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.expertise-tag:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.partner-social-single {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #E2E8F0;
}

.partner-social-single a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.partner-social-single a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px) scale(1.1);
}

/* Responsive Styles for Single Partner */
@media (max-width: 768px) {
    .partner-single {
        padding: 30px;
    }
    
    .partner-avatar-single {
        width: 180px;
        height: 180px;
    }
    
    .partner-single-content h3 {
        font-size: 2rem;
    }
    
    .partner-role-single {
        font-size: 1.1rem;
    }
    
    .partner-expertise-single {
        padding: 20px;
    }
    
    .expertise-tag {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .partner-avatar-single {
        width: 150px;
        height: 150px;
    }
    
    .partner-single-content h3 {
        font-size: 1.8rem;
    }
    
    .partner-social-single a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.philosophy-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.philosophy-section .subtitle {
    display: inline-block;
    color: #0066cc;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 5px 15px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 20px;
}

.philosophy-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.philosophy-section .section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.philosophy-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #0066cc;
    transition: width 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.philosophy-card:hover::before {
    width: 8px;
}

.philosophy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.1) rotate(5deg);
}

.philosophy-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.philosophy-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 16px;
}

.philosophy-card p strong {
    color: #0066cc;
    font-weight: 600;
}

/* Stats & Features */
.philosophy-stats,
.philosophy-features,
.philosophy-highlights,
.philosophy-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.philosophy-stats span,
.philosophy-features span,
.philosophy-highlights span,
.philosophy-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #555;
    transition: all 0.3s ease;
}

.philosophy-stats span:hover,
.philosophy-features span:hover,
.philosophy-highlights span:hover,
.philosophy-benefits span:hover {
    background: #e9f5ff;
    color: #0066cc;
}

.philosophy-stats i,
.philosophy-features i,
.philosophy-highlights i,
.philosophy-benefits i {
    color: #0066cc;
}

/* Bottom Section */
.philosophy-bottom {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.philosophy-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.philosophy-guarantee i {
    font-size: 40px;
    color: #28a745;
    margin-top: 5px;
}

.philosophy-guarantee h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.philosophy-guarantee p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    max-width: 600px;
}

.philosophy-action {
    text-align: center;
    min-width: 250px;
}

.philosophy-action .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.philosophy-action .small-note {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.philosophy-action .small-note i {
    color: #0066cc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .philosophy-guarantee {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .philosophy-section .section-title h2 {
        font-size: 28px;
    }
    
    .philosophy-section .section-title p {
        font-size: 16px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .philosophy-card {
        padding: 30px 20px;
    }
    
    .philosophy-bottom {
        padding: 30px 20px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.philosophy-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.philosophy-card:nth-child(1) { animation-delay: 0.1s; }
.philosophy-card:nth-child(2) { animation-delay: 0.2s; }
.philosophy-card:nth-child(3) { animation-delay: 0.3s; }
.philosophy-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== EXPANDED TRANSFORMATION PHILOSOPHY ===== */

.transformation-philosophy {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.transformation-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,196,0,0.03)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.philosophy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text);
}

.philosophy-grid-expanded {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.philosophy-card-expanded {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 35px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.philosophy-card-expanded:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.philosophy-card-expanded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
}

.philosophy-card-expanded:hover::before {
    opacity: 1;
}

.philosophy-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    font-size: 2.2rem;
    color: var(--primary);
}

.icon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 800;
    min-width: 40px;
    text-align: center;
}

.philosophy-card-expanded h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.philosophy-card-expanded p {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.philosophy-details {
    list-style: none;
    margin-top: 20px;
}

.philosophy-details li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    color: var(--text);
    font-size: 0.95rem;
}

.philosophy-details li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--secondary);
    font-size: 1.1rem;
}

.philosophy-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #E2E8F0;
}

.philosophy-stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.philosophy-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #E2E8F0;
}

.philosophy-stat-item h4 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1;
}

.philosophy-stat-item p {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.philosophy-cta {
    text-align: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    color: white;
    margin-top: 60px;
}

.philosophy-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.philosophy-cta p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.philosophy-cta .btn {
    padding: 20px 50px;
    font-size: 1.2rem;
    background: var(--gradient-secondary);
    color: var(--primary);
}

.philosophy-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .philosophy-grid-expanded {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .philosophy-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-stat-item:nth-child(2n)::after {
        display: none;
    }
    
    .philosophy-stat-item:nth-child(-n+2)::after {
        display: block;
    }
}

@media (max-width: 768px) {
    .transformation-philosophy {
        padding: 80px 0;
    }
    
    .philosophy-grid-expanded {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .philosophy-card-expanded {
        padding: 30px 25px;
    }
    
    .philosophy-stats {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    
    .philosophy-stat-item:not(:last-child)::after {
        display: none;
    }
    
    .philosophy-stat-item {
        padding: 15px;
    }
    
    .philosophy-cta {
        padding: 40px 25px;
    }
    
    .philosophy-cta h3 {
        font-size: 2rem;
    }
    
    .philosophy-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .philosophy-icon-large {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .philosophy-card-expanded h3 {
        font-size: 1.4rem;
    }
    
    .philosophy-stat-item h4 {
        font-size: 2.2rem;
    }
}

/* ===== SERVICES ===== */
.service-icon,
.philosophy-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.service-icon {
    border-radius: 20px;
}

.philosophy-icon {
    border-radius: 50%;
    margin: 0 auto 30px;
}

.service-features {
    list-style: none;
    margin-top: 25px;
}

.service-features li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    opacity: 0.9;
}

.service-features li::before {
    
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ===== TIMELINE ===== */
.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--secondary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    width: calc(50% - 60px);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--secondary);
}

.timeline-date {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    font-weight: 900;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ===== METRICS ===== */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.metric-card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.metric-label {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
}

/* ===== STORY SECTION ===== */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.story-text p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    line-height: 1.8;
}

.story-text p.highlight {
    background: rgba(255, 215, 0, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary);
    font-size: 1.3rem;
    font-style: italic;
}

.story-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.story-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-secondary);
    color: var(--primary);
    padding: 30px;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.8rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* /////Coach Section Styles////// */

/* ===== KNOW YOUR COACH SECTION - ENHANCED ===== */

/* Coach Section */
.coach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(255, 196, 0, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 900;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--secondary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
}


/* Profile Card */
.profile-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
}

.profile-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coach-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.coach-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 20%;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 37, 64, 0.9);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.quick-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text);
    opacity: 0.8;
    font-weight: 600;
}

.profile-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coach-quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--primary);
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 196, 0, 0.05) 0%, rgba(255, 196, 0, 0.1) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
    margin: 0 0 30px 0;
    position: relative;
}

.coach-quote i.fa-quote-left {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--secondary);
    opacity: 0.3;
    font-size: 1.5rem;
}

.coach-quote i.fa-quote-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--secondary);
    opacity: 0.3;
    font-size: 1.5rem;
}

.bio-summary p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
}

/* Journey Cards */
.journey-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.journey-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    text-align: center;
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.lesson-card {
    border-top: 4px solid #e74c3c;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.comeback-card {
    border-top: 4px solid #2ecc71;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
}

.journey-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.journey-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.lesson-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.lesson-tags span {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1A365D 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    color: white;
}

.mission-header {
    text-align: center;
    margin-bottom: 40px;
}

.mission-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mission-header h3 i {
    color: var(--secondary);
}

.mission-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.mission-point:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.mission-point i {
    font-size: 2rem;
    color: var(--secondary);
    margin-top: 5px;
}

.mission-point h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.mission-point p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

.vision-2028 {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.vision-content {
    flex: 1;
    min-width: 300px;
}

.vision-content h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vision-content h4 i {
    color: var(--secondary);
}

.vision-content p {
    opacity: 0.9;
    font-size: 1.05rem;
    margin: 0;
}

.vision-content strong {
    color: var(--secondary);
}

.vision-stats {
    display: flex;
    gap: 30px;
}

.vision-stat {
    text-align: center;
}

.vision-stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.vision-stat .label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Compact Industries */
.compact-industries {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

.compact-industries h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.compact-industries h4 i {
    color: var(--secondary);
}

.industries-subtitle {
    color: var(--text);
    margin-bottom: 25px;
    font-size: 1rem;
    opacity: 0.8;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.industries-tags span {
    background: rgba(10, 37, 64, 0.05);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.industries-tags span:hover {
    background: var(--gradient-secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Roles Section */
.roles-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

.roles-section h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.roles-section h4 i {
    color: var(--secondary);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.role {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.role:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.role h5 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.role p {
    color: var(--text);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Philosophy Box */
.philosophy-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

.philosophy-header {
    text-align: center;
    margin-bottom: 40px;
}

.philosophy-header h4 {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.philosophy-header h4 i {
    color: var(--secondary);
}

.philosophy-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.belief {
    text-align: center;
    min-width: 200px;
}

.belief i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.belief p {
    color: var(--primary);
    margin: 0;
}

.belief strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.belief-arrow {
    font-size: 1.8rem;
    color: var(--secondary);
}

/* CTA Section */
.coach-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #FFEC8B 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
}

.cta-content h3 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.signature {
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 25px 0 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .profile-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .quick-stats {
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .philosophy-content {
        flex-direction: column;
    }
    
    .belief-arrow {
        transform: rotate(90deg);
    }
    
    .vision-2028 {
        flex-direction: column;
        text-align: center;
    }
    
    .vision-stats {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .journey-cards {
        grid-template-columns: 1fr;
    }
    
    .mission-points {
        grid-template-columns: 1fr;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .coach-section {
        padding: 60px 0;
    }
    
    .profile-card,
    .mission-section,
    .compact-industries,
    .roles-section,
    .philosophy-box,
    .coach-cta {
        padding: 30px;
    }
    
    .vision-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .industries-tags {
        justify-content: center;
    }
}
/* ===== VALUES ===== */
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-secondary);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(10, 37, 64, 0.05);
    line-height: 1;
}

/* ===== MISSION VISION ===== */
.mission-vision-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-box,
.vision-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.mission-box::before,
.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.mission-box::before {
    background: var(--accent);
}

.vision-box::before {
    background: var(--secondary);
}

.mission-box h2,
.vision-box h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 900;
}

.mission-box p,
.vision-box p {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* ===== APPROACH ===== */
.approach-steps {
    max-width: 1000px;
    margin: 0 auto;
    counter-reset: step-counter;
}

.approach-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
    counter-increment: step-counter;
}

.approach-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 120px;
    bottom: -80px;
    width: 2px;
    background: var(--secondary);
    opacity: 0.3;
}

.step-number-large {
    width: 120px;
    height: 120px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-right: 50px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.step-number-large::before {
    content: counter(step-counter);
}

.step-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    flex: 1;
}

.step-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.step-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.step-feature {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.step-feature h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

/* ===== JOURNEY ===== */
.journey-timeline {
    position: relative;
    padding-left: 60px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.journey-item {
    position: relative;
    margin-bottom: 60px;
}

.journey-item:last-child {
    margin-bottom: 0;
}

.journey-year {
    position: absolute;
    left: -60px;
    top: 0;
    width: 60px;
    text-align: center;
    font-weight: 900;
    color: var(--secondary);
    font-size: 1.5rem;
}

.journey-dot {
    position: absolute;
    left: -42px;
    top: 5px;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--secondary);
}

.journey-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.journey-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.journey-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.journey-milestones {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

/* ===== ARTICLE SPECIFIC ===== */
.article-category {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gradient-secondary);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E2E8F0;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar-small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.article-read-time {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    opacity: 0.7;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-label {
    font-weight: 700;
    color: var(--primary);
}

.share-buttons {
    display: flex;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
}

.article-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 60px;
    box-shadow: var(--shadow-lg);
}

.article-body {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text);
}

.article-body h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin: 60px 0 30px;
    font-weight: 800;
    line-height: 1.3;
}

.article-body h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 40px 0 20px;
    font-weight: 700;
}

.article-body p {
    margin-bottom: 30px;
}

.article-body blockquote {
    border-left: 5px solid var(--secondary);
    padding: 30px 40px;
    margin: 50px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--primary);
    position: relative;
}

.article-body blockquote::before {
    content: '"';
    font-size: 5rem;
    color: var(--secondary);
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.3;
    font-family: serif;
}

.article-body blockquote footer {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    font-style: normal;
}

.article-body ul,
.article-body ol {
    margin-left: 30px;
    margin-bottom: 30px;
}

.article-body li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.article-body li::marker {
    color: var(--secondary);
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-box {
    background: var(--gradient-primary);
    color: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.image-caption {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: var(--text);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== RELATED ARTICLES – EYE‑CATCHING CARD MOSAIC ===== */
.related-articles {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border-top: 1px solid #E2E8F0;
}

.related-articles .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.related-articles .section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.related-articles .section-title p {
    color: var(--text);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-M);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    top: 0;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.article-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.1);
}

.article-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-secondary);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.article-card-content {
    padding: 25px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.6rem;
}

.article-card-excerpt {
    font-size: 0.95rem;
    color: var(--text);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #E2E8F0;
    padding-top: 15px;
    margin-top: auto;
    font-size: 0.9rem;
}

.article-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-card-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

.article-card-author span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.article-card-read-time {
    color: var(--text);
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-card-read-time i {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .article-card-image {
        height: 180px;
    }
    .article-card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .related-articles {
        padding: 60px 0;
    }
    .related-articles .section-title h2 {
        font-size: 2rem;
    }
    .related-articles .section-title p {
        font-size: 1.1rem;
    }
    .articles-grid {
        gap: 20px;
    }
    .article-card-image {
        height: 160px;
    }
    .article-card-content {
        padding: 20px 15px 15px;
    }
    .article-card-title {
        font-size: 1.1rem;
        min-height: 3rem;
    }
    .article-card-excerpt {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .article-card-image {
        height: 200px;
    }
    .article-card-title {
        font-size: 1.2rem;
    }
    .article-card-excerpt {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 375px) {
    .article-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .article-card-image {
        height: 180px;
    }
}

/* Media Highlights Section */
.media-highlights {
    padding: 80px 0;
    background: white;
}

.media-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.media-logo {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: transform 0.3s ease;
}

.media-logo:hover {
    transform: translateY(-5px);
}

.media-logo svg {
    width: 100%;
    height: 30px;
    color: #1a365d;
}

/* Press Releases */
.press-releases {
    padding: 80px 0;
    background: #f8fafc;
}

.press-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.press-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #d4af37;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.press-item:hover {
    transform: translateX(5px);
}

.press-date {
    display: inline-block;
    background: #f0f4f8;
    color: #666;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.press-item h3 {
    color: #1a365d;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.press-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.press-links {
    display: flex;
    gap: 15px;
}

.press-links .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2a579a 100%);
    color: white;
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-container h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-container p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form .btn {
    padding: 15px 30px;
    border-radius: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .featured-news-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured-image {
        min-height: 300px;
    }
    
    .featured-content {
        padding: 30px;
    }
    
    .featured-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .compact-news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .press-links {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .media-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .news-grid-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .featured-content {
        padding: 25px;
    }
    
    .featured-content h3 {
        font-size: 1.3rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .meta-info {
        width: 100%;
        justify-content: space-between;
    }
    
    .compact-news-grid {
        grid-template-columns: 1fr;
    }
    
    .media-logos {
        grid-template-columns: 1fr;
    }
}
 

/* ===== CONTACT PAGE ===== */
.contact-main {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.contact-info,
.contact-form-container {
    position: relative;
    overflow: hidden;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 40px;
    font-weight: 900;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.contact-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.business-hours {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--border-radius);
}

.business-hours h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 800;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}



/* ===== MAP SECTION ===== */
.map-section {
    padding: 100px 0;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-M);
    position: relative;
    height: 600px;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 400px;
}

.map-overlay h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 800;
}

.map-overlay p {
    margin-bottom: 10px;
    color: var(--text);
}

/* ===== BRANCHES ===== */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.branch-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid #E2E8F0;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.branch-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.branch-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.branch-info {
    margin-bottom: 30px;
}

.branch-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-info i {
    color: var(--secondary);
    width: 20px;
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    max-height: 1000px; 

}

.faq-question {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--light);
}

.faq-question h3 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    margin: 0;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 30px;
    max-height:1000px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== NEWS PAGE ===== */
.category-filters {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 60px 0;
    position: sticky;
    top: 100px;
    z-index: 900;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 15px 35px;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-btn:hover {
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.filter-btn.active {
    background: var(--gradient-secondary);
    color: var(--primary);
    border-color: var(--secondary);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.filter-btn i {
    font-size: 1.2rem;
}



/* ===== MEDIA HIGHLIGHTS ===== */
.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 60px;
}

.media-logo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.media-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.media-logo:hover img {
    opacity: 1;
}

/* ===== PRESS RELEASES ===== */
.press-list {
    max-width: 900px;
    margin: 0 auto;
}

.press-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--secondary);
    transition: var(--transition);
}

.press-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.press-date {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.press-item h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.press-item p {
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 20px;
}

.press-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 80px;
}

.page-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid #E2E8F0;
}

.page-link:hover,
.page-link.active {
    background: var(--gradient-secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.page-link.prev,
.page-link.next {
    width: auto;
    padding: 0 25px;
    gap: 10px;
}

/* ===== NEWSLETTER ===== */
.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.newsletter-container p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 20px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.15);
}

/* ===== CTA SECTIONS ===== */
.cta-section,
.article-cta,
.contact-cta {
    padding: 15px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #FFEC8B 100%);
    text-align: center;
}

.article-cta,
.contact-cta {
    padding: 100px 0;
}

.cta-container h2,
.article-cta h2,
.contact-cta h2 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 30px;
    font-weight: 900;
}

.article-cta h2,
.contact-cta h2 {
    font-size: 3rem;
}

.contact-cta h2 {
    font-size: 3.5rem;
}

.cta-container p,
.article-cta p,
.contact-cta p {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 50px;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* ===== FOOTER ===== */


/* ===== FOOTER WRAPPER ===== */
.footer {
    padding: 80px 0 20px;  /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  adds gentle top space */
}

/* ===== FOOTER GRID ===== */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;              /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  slightly reduced for balance */
    margin-bottom: 0; 
    margin-top: 60px;     /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  FIX: remove extra space */
}

/* ===== LOGO AREA ===== */
/* =========================
   FOOTER LOGO STACK
========================= */
.footer-logo {
    display: flex;
    flex-direction: column;     /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  stack logo above text */
    align-items: flex-start;    /* left aligned (premium look) */
    gap: 10px;                  /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  controls space instead of <br> */
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

/* Description text */
.footer-logo p {
    margin: 0;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 320px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .footer-logo-image {
        height: 64px;
    }

    .footer-logo {
        align-items: center;    /* center on mobile */
        text-align: center;
    }
}
/* ===== SOCIAL ICONS ===== */
.social-links {
    display: flex;
    gap: 16px;             /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  tighter spacing */
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 211, 12);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px); /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  softer hover */
}

/* ===== FOOTER LINKS ===== */
.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;   /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  FIX */
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;           /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  refined */
    height: 3px;
    background: var(--secondary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;   /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  reduced */
}

.footer-links ul li a {
    color: #1A1A2E;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary);
    padding-left: 6px;     /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  subtle movement */
}

/* ===== FOOTER BOTTOM / COPYRIGHT ===== */
.footer-bottom {
    text-align: center;
    padding: 15px 0 0;     /* Ãƒ °Ã… ¸Ã¢â‚¬ËœÃ‹â€  FIX: remove excess space */
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #1A1A2E;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content h1,
    .about-hero h1,
    .contact-hero h1,
    .news-hero h1 {
        font-size: 4.5rem;
    }
    
    .article-title {
        font-size: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 3rem;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-container,
    .speaker-container,
    .story-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-container {
        margin-top: -50px;
    }
    
    nav ul {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        transition: var(--transition);
        gap: 30px;
    }
    
    nav ul.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1,
    .about-hero h1,
    .contact-hero h1,
    .news-hero h1 {
        font-size: 3.5rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-left: 60px;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }
    
    .timeline-date {
        left: 30px;
        transform: translate(-50%, -50%);
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .values-grid,
    .process-steps,
    .partners-grid,
    .services-grid,
    .team-grid
     {
        grid-template-columns: 1fr;
    }
    
   
    .approach-step {
        flex-direction: column;
    }
    
    .step-number-large {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .approach-step:not(:last-child)::after {
        left: 60px;
        top: 120px;
        bottom: -80px;
        height: 2px;
        width: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .author-bio-container {
        flex-direction: column;
        text-align: center;
    }
    
    .map-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 20px;
        max-width: 100%;
    }
 

@media (max-width: 768px) {
    .hero-content h1,
    .about-hero h1,
    .contact-hero h1,
    .news-hero h1 {
        font-size: 2.8rem;
    }
    
    .article-title {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .lead-form-container,
    .contact-form-container,
    .contact-info,
    .partner-card,
    .service-card,
    .philosophy-card,
    .value-card,
    .mission-box,
    .vision-box,
    .step-content,
    .team-card,
    .journey-content,
    .branch-card,
    .press-item,
    .calculator-container {
        padding: 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .speaker-main-image,
    .story-image {
        height: 400px;
    }
    
    .article-image {
        height: 350px;
    }
    
    .speaker-info h2 {
        font-size: 2.8rem;
    }
    
    .contact-container {
        margin-top: -30px;
    }
    
    .cta-container h2,
    .article-cta h2,
    .contact-cta h2 {
        font-size: 2.5rem;
    }
    
    .map-container {
        height: 400px;
    }
    
    .metric-value {
        font-size: 3rem;
    }
    
    .story-badge {
        bottom: -20px;
        right: -20px;
        padding: 20px;
        font-size: 1.5rem;
    }
    
    .mission-vision-container {
        gap: 40px;
    }
    
    .article-hero {
        padding: 150px 0 50px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .media-logos {
        gap: 30px;
    }
    
    .media-logo {
        width: 140px;
        height: 80px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1,
    .about-hero h1,
    .contact-hero h1,
    .news-hero h1 {
        font-size: 2.2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 16px 30px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .lead-form-container,
    .contact-form-container,
    .contact-info {
        padding: 30px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .story-badge {
        display: none;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-timeline {
        padding-left: 40px;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .journey-year {
        left: -40px;
        width: 40px;
    }
    
    .journey-dot {
        left: -32px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .article-image {
        height: 250px;
    }
    
    .filter-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .news-content {
        padding: 25px;
    }
}}
/* ===== framework Page ===== */
  
        /* framework Hero */
        .framework-hero {
            min-height: 80vh;
            background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(26, 54, 93, 0.95) 100%), 
                        url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding-top: 120px;
            text-align: center;
            color: white;
        }
        
        .framework-hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 30px;
        }
        
        .framework-hero-content p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 50px;
            opacity: 0.9;
        }
        
        /* framework Overview */
        .framework-overview {
            padding: 100px 0;
            background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
        }
        
        .framework-timeline {
            max-width: 1000px;
            margin: 60px auto 0;
            position: relative;
        }
        
        .framework-timeline::before {
            content: '';
            position: absolute;
            left: 60px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }
        
        .timeline-level {
            display: flex;
            margin-bottom: 60px;
            position: relative;
        }
        
        .level-number {
            width: 120px;
            height: 120px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
            margin-right: 50px;
            flex-shrink: 0;
            position: relative;
            z-index: 2;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        }
        
        .level-content {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            flex: 1;
            border-left: 5px solid var(--secondary);
        }
        
        .level-content h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 800;
        }
        
        .level-subtitle {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 20px;
        }
        
        .level-details {
            display: flex;
            gap: 30px;
            margin-top: 25px;
            flex-wrap: wrap;
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text);
        }
        
        .detail-item i {
            color: var(--secondary);
        }
        
        /* Phase Sections */
        .phase-section {
            padding: 100px 0;
        }
        
        .initiation-phase {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }
        
        .transformation-phase {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        
        .acceleration-phase {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        }
        
        .legacy-phase {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }
        
        .phase-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .phase-tag {
            display: inline-block;
            padding: 10px 25px;
            background: var(--gradient-secondary);
            color: var(--primary);
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.9rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .phase-header h2 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 900;
        }
        
        .phase-subtitle {
            font-size: 1.3rem;
            color: var(--text);
            opacity: 0.9;
        }
        
        /* Initiation Phase */
        .phase-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }
        
        .purpose-box, .gift-box, .followup-box {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: var(--shadow-lg);
            border-left: 4px solid var(--secondary);
        }
        
        .purpose-box h3, .gift-box h3, .followup-box h3 {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .session-topics h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 30px;
            font-weight: 800;
        }
        
        .topic-card {
            display: flex;
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            margin-bottom: 25px;
            box-shadow: var(--shadow-lg);
            border: 1px solid #E2E8F0;
            transition: var(--transition);
        }
        
        .topic-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border-color: var(--secondary);
        }
        
        .topic-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 900;
            margin-right: 25px;
            flex-shrink: 0;
        }
        
        .topic-content h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .framework-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        
        .framework-item {
            background: rgba(255, 215, 0, 0.1);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .framework-item i {
            font-size: 1.5rem;
            color: var(--secondary);
        }
        
        .phase-cta {
            text-align: center;
            margin-top: 60px;
        }
        
        .cta-note {
            margin-top: 20px;
            font-style: italic;
            color: var(--text);
        }
        
        /* Transformation Phase */
        .framework-details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .detail-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        
        .detail-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }
        
        .detail-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .detail-card h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .day-wise-schedule {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .day-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            border-top: 5px solid var(--secondary);
        }
        
        .day-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .day-header h3 {
            font-size: 1.5rem;
            color: var(--primary);
            font-weight: 800;
        }
        
        .day-tag {
            background: var(--gradient-secondary);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 700;
        }
        
        .day-topics {
            list-style: none;
        }
        
        .day-topics li {
            margin-bottom: 20px;
            padding-left: 40px;
            position: relative;
        }
        
        .day-topics li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--secondary);
            font-size: 1.2rem;
        }
        
        .bonuses-section h3 {
            font-size: 2rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 40px;
            font-weight: 800;
        }
        
        .bonuses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .bonus-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            border: 2px solid transparent;
            transition: var(--transition);
        }
        
        .bonus-card:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
        }
        
        .bonus-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .bonus-card h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        /* Acceleration Phase */
        .framework-structure {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .structure-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        
        .structure-card.highlight {
            background: var(--gradient-primary);
            color: white;
        }
        
        .structure-card.highlight .structure-icon {
            background: rgba(255, 255, 255, 0.2);
        }
        
        .structure-card.highlight h3,
        .structure-card.highlight p {
            color: white;
        }
        
        .structure-card.highlight .investment-amount {
            font-size: 3rem;
            font-weight: 900;
            margin: 20px 0;
        }
        
        .structure-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }
        
        .structure-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin: 0 auto 25px;
        }
        
        .structure-card h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-weight: 800;
        }
        
        .structure-detail {
            margin-top: 10px;
            color: var(--text);
            font-size: 0.95rem;
        }
        
        .support-section h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 40px;
            font-weight: 800;
        }
        
        .support-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .support-item {
            display: flex;
            align-items: center;
            gap: 25px;
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-lg);
        }
        
        .support-item i {
            font-size: 2.5rem;
            color: var(--secondary);
        }
        
        .support-item h4 {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        /* Legacy Phase */
        .legacy-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--shadow-lg);
        }
        
        .info-item i {
            font-size: 2rem;
            color: var(--secondary);
        }
        
        .info-item h4 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 5px;
            font-weight: 700;
        }
        
        .handholding-framework {
            margin-bottom: 60px;
        }
        
        .handholding-framework h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 40px;
            font-weight: 800;
        }
        
        .handholding-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .handholding-item {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        
        .handholding-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }
        
        .handholding-item i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .handholding-item p {
            font-weight: 600;
            color: var(--primary);
        }
        
        .exclusive-team {
            margin-bottom: 60px;
        }
        
        .exclusive-team h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 800;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .team-role {
            background: white;
            border-radius: var(--border-radius);
            padding: 25px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        
        .team-role:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
            border: 2px solid var(--secondary);
        }
        
        .team-role i {
            font-size: 2rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .team-role h4 {
            font-size: 1.1rem;
            color: var(--primary);
            font-weight: 700;
        }
        
        .life-coaching {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.2) 100%);
            border-radius: var(--border-radius);
            padding: 40px;
            margin-bottom: 60px;
            text-align: center;
        }
        
        .life-coaching h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .legacy-cta {
            text-align: center;
            background: white;
            border-radius: var(--border-radius);
            padding: 50px;
            box-shadow: var(--shadow-lg);
        }
        
        .legacy-cta p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        /* Comparison Section */
        .comparison-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
        }
        
        .comparison-table {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            margin-top: 60px;
        }
        
        .comparison-header {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            background: var(--gradient-primary);
            color: white;
            padding: 30px;
            align-items: center;
        }
        
        .comparison-feature {
            font-weight: 800;
            font-size: 1.2rem;
        }
        
        .comparison-framework {
            text-align: center;
        }
        
        .comparison-framework h4 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            font-weight: 800;
        }
        
        .comparison-framework.highlight {
            background: var(--gradient-secondary);
            color: var(--primary);
            padding: 20px;
            border-radius: 10px;
        }
        
        .comparison-row {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            padding: 25px 30px;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .comparison-row:nth-child(even) {
            background: #f9f9f9;
        }
        
        .comparison-row i.fa-check {
            color: #4CAF50;
            font-size: 1.2rem;
        }
        
        .comparison-row i.fa-times {
            color: #F44336;
            font-size: 1.2rem;
        }
        
        .comparison-cta {
            display: grid;
            grid-template-columns: 2fr repeat(4, 1fr);
            padding: 30px;
            gap: 20px;
        }
        
        .framework-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary) 0%, #FFEC8B 100%);
            text-align: center;
        }
        
        .framework-cta h2 {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 30px;
            font-weight: 900;
        }
        
        .framework-cta p {
            font-size: 1.5rem;
            color: var(--primary);
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .phase-content {
                grid-template-columns: 1fr;
            }
            
            .framework-timeline::before {
                left: 40px;
            }
            
            .level-number {
                width: 80px;
                height: 80px;
                font-size: 2rem;
                margin-right: 30px;
            }
            
            .comparison-header,
            .comparison-row,
            .comparison-cta {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .comparison-feature {
                font-weight: 700;
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .framework-hero-content h1 {
                font-size: 3rem;
            }
            
            .phase-header h2 {
                font-size: 2.5rem;
            }
            
            .framework-timeline {
                margin-top: 30px;
            }
            
            .framework-timeline::before {
                display: none;
            }
            
            .timeline-level {
                flex-direction: column;
                margin-bottom: 40px;
            }
            
            .level-number {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .level-content {
                padding: 30px;
            }
            
            .framework-grid {
                grid-template-columns: 1fr;
            }
            
            .day-wise-schedule {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .framework-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .framework-hero-content p {
                font-size: 1.2rem;
            }
            
            .phase-header h2 {
                font-size: 2rem;
            }
            
            .framework-details-grid {
                grid-template-columns: 1fr;
            }
            
            .framework-structure {
                grid-template-columns: 1fr;
            }
            
            .support-content {
                grid-template-columns: 1fr;
            }
            
            .legacy-info {
                grid-template-columns: 1fr;
            }
            
            .handholding-grid {
                grid-template-columns: 1fr;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
        }
 

 

 /* Additional Styles for framework Page */
        .framework-hero {
            background: linear-gradient(135deg, var(--primary) 0%, #1a237e 100%);
            color: white;
            padding: 100px 0 60px;
            text-align: center;
        }
        
        .framework-hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .framework-hero-content h1 span {
            color: #ffdb0c;
        }
        
        .framework-tagline {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .framework-tagline span {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .framework-levels {
            margin: 60px 0;
        }
        
        .level-card {
            background: white;
            border-radius: 15px;
            margin-bottom: 30px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border: 2px solid #e0e0e0;
        }
        
        .level-card.highlight {
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(26, 35, 126, 0.15);
        }
        
        .level-header {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 25px 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .level-card.highlight .level-header {
            background: linear-gradient(135deg, var(--primary) 0%, #3949ab 100%);
            color: white;
        }
        
        .level-number {
            background: white;
            color: var(--primary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .level-card.highlight .level-number {
            background: #ffdb0c;
            color: var(--primary);
        }
        
        .level-title h3 {
            margin: 0;
            font-size: 1.8rem;
        }
        
        .level-subtitle {
            color: #666;
            font-size: 1rem;
        }
        
        .level-card.highlight .level-subtitle {
            color: rgba(255,255,255,0.9);
        }
        
        .level-content {
            padding: 30px;
        }
        
        .level-details {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
        }
        
        .level-details p {
            margin: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .level-details i {
            color: var(--primary);
            width: 20px;
        }
        
        .topics-container, .purpose-container {
            margin: 25px 0;
        }
        
        .topics-list {
            margin-left: 20px;
        }
        
        .topics-list li {
            margin: 8px 0;
            padding-left: 10px;
        }
        
        .investment-card {
            background: linear-gradient(135deg, #ffdb0c 0%, #ffc107 100%);
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            margin-top: 25px;
        }
        
        .price-container {
            display: flex;
            justify-content: center;
            align-items: baseline;
            gap: 15px;
            margin: 15px 0;
        }
        
        .original-price {
            text-decoration: line-through;
            color: #ffffff;
            font-size: 1.2rem;
        }
        
        .current-price {
            color: var(--primary);
            font-size: 2.5rem;
            font-weight: bold;
        }
        
        .price-note {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 20px;
        }
        
        .btn-small {
            padding: 10px 25px;
            font-size: 0.9rem;
        }
        
        .framework-details-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .detail-item {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .detail-item i {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .value-note {
            font-size: 0.85rem;
            color: #666;
        }
        
        .day-schedule {
            margin: 40px 0;
        }
        
        .day-card {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            margin-bottom: 25px;
            overflow: hidden;
        }
        
        .day-header {
            background: #f5f7fa;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #e0e0e0;
        }
        
        .day-tag {
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        
        .timeline {
            padding: 20px;
        }
        
        .time-slot {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .time-slot:last-child {
            border-bottom: none;
        }
        
        .time-slot.session {
            align-items: flex-start;
        }
        
        .time {
            min-width: 180px;
            font-weight: bold;
            color: var(--primary);
        }
        
        .activity {
            font-weight: 600;
            color: #666;
        }
        
        .session-content {
            flex: 1;
        }
        
        .session-content h6 {
            margin: 0 0 10px 0;
            color: var(--primary);
        }
        
        .session-content ul {
            margin-left: 20px;
        }
        
        .session-content li {
            margin: 5px 0;
            font-size: 0.95rem;
        }
        
        .support-section {
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
        }
        
        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        
        .support-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .support-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .support-card h5 {
            margin: 0 0 15px 0;
            color: var(--primary);
        }
        
        .support-card ul {
            margin-left: 20px;
        }
        
        .support-card li {
            margin: 8px 0;
            font-size: 0.95rem;
            color: var(--primary);
        }
        
        .eligibility-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .eligibility-card {
            background: #e8f5e9;
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #4caf50;
        }
        
        .eligibility-card.warning {
            background: #ffebee;
            border-left-color: #f44336;
        }
        
        .eligibility-card h5 {
            margin: 0 0 15px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
        }
        
        .eligibility-list {
            margin-left: 20px;
            color: var(--primary);
        }
        
        .eligibility-list li {
            margin: 10px 0;
            padding-left: 5px;
        }
        
        .framework-comparison {
            margin: 60px 0;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 15px;
        }
        
        .comparison-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-top: 30px;
        }
        
        .comparison-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .comparison-row.header {
            background: var(--primary);
            color: white;
        }
        
        .comparison-row:last-child {
            border-bottom: none;
        }
        
        .comparison-cell {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .comparison-row:not(.header) .comparison-cell:first-child {
            justify-content: flex-start;
            font-weight: 600;
            background: #f8f9fa;
        }
        
        .framework-cta-section {
            text-align: center;
            padding: 60px 40px;
            background: linear-gradient(135deg, var(--primary) 0%, #1a237e 100%);
            color: white;
            border-radius: 15px;
            margin: 60px 0;
        }
        
        .framework-cta-section h3 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
            flex-wrap: wrap;
        }
        
        .btn-large {
            padding: 18px 40px;
            font-size: 1.2rem;
        }
        
        .cta-note {
            margin-top: 20px;
            font-size: 1rem;
            opacity: 0.9;
        }
        
        @media (max-width: 768px) {
            .framework-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .comparison-row {
                grid-template-columns: 1fr;
            }
            
            .comparison-row.header {
                display: none;
            }
            
            .comparison-cell {
                justify-content: flex-start;
                border-bottom: 1px solid #e0e0e0;
            }
            
            .comparison-cell:before {
                content: attr(data-label);
                font-weight: bold;
                margin-right: 10px;
                min-width: 150px;
            }
            
            .framework-details-grid {
                grid-template-columns: 1fr;
            }
            
            .support-grid, .eligibility-section {
                grid-template-columns: 1fr;
            }
        }


       /* Add this to the existing style tag */
/* Schedule Cards */
.schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.schedule-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.schedule-date {
    display: flex;
    align-items: center;
    gap: 15px;
}

.schedule-month {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.schedule-day {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
}

.schedule-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 800;
}

.schedule-content p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.schedule-content i {
    color: var(--secondary);
    width: 20px;
}

.schedule-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.status-badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.status-badge.available {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.status-badge.filling {
    background: rgba(255, 193, 7, 0.1);
    color: #FF9800;
}

.remaining-seats {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

/* Investment Calculator */
.investment-calculator {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.calculator-input {
    margin-bottom: 30px;
}

.calculator-input label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary);
}

.calculator-input select,
.calculator-input input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.calculator-input select:focus,
.calculator-input input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.calculator-result {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-radius: var(--border-radius);
}

.calculator-result h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.total-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
}

.installment-option {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
}

/* framework Tabs */
.framework-tabs-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 20px 40px;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.tab-btn:hover {
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.tab-btn.active {
    background: var(--gradient-secondary);
    color: var(--primary);
    border-color: var(--secondary);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Batch Schedule */
.batch-schedule {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .schedule-container {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* ===== LEGAL PAGE STYLES ===== */
/* These styles are specifically for privacy.html, terms.html, and other legal pages */

/* Legal Hero */
.legal-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(26, 54, 93, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 120px;
    text-align: center;
    color: white;
}

.legal-hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.legal-hero-content h1 span {
    color: var(--secondary);
}

.legal-hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Legal Navigation */
.legal-nav {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    z-index: 999;
}

.legal-nav-container {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.legal-nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-nav-link {
    padding: 15px 30px;
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-nav-link:hover {
    border-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

.legal-nav-link.active {
    background: var(--gradient-secondary);
    color: var(--primary);
    border-color: var(--secondary);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

/* Legal Content Sections */
.legal-section {
    padding: 100px 0;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 900;
}

.legal-header p {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Legal Content */
.legal-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #E2E8F0;
}

.legal-content h3 {
    font-size: 2rem;
    color: var(--primary);
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary);
    font-weight: 800;
}

.legal-content h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 30px 0 15px;
    font-weight: 700;
}

.legal-content h5 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 25px 0 10px;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.legal-content ul, .legal-content ol {
    margin-left: 30px;
    margin-bottom: 25px;
}

.legal-content li {
    margin-bottom: 15px;
    line-height: 1.7;
    padding-left: 10px;
}

.legal-content li strong {
    color: var(--primary);
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-left: 5px solid var(--secondary);
    padding: 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 30px 0;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.1) 0%, rgba(255, 87, 34, 0.2) 100%);
    border-left: 5px solid #ff5722;
    padding: 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 30px 0;
}

.update-box {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.2) 100%);
    border-left: 5px solid #2196f3;
    padding: 30px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 30px 0;
}

/* Definition Lists */
.definition-list {
    margin: 30px 0;
}

.definition-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #E2E8F0;
}

.definition-item:last-child {
    border-bottom: none;
}

.definition-term {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.definition-description {
    color: var(--text);
    line-height: 1.7;
}

/* Table Styles */
.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.legal-table th {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    text-align: left;
    font-weight: 700;
}

.legal-table td {
    padding: 20px;
    border-bottom: 1px solid #E2E8F0;
    color: var(--text);
}

.legal-table tr:nth-child(even) {
    background: #f9f9f9;
}

.legal-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* Accordion for Legal Sections */
.legal-accordion {
    margin: 40px 0;
}

.legal-accordion .accordion-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 2px solid #E2E8F0;
    overflow: hidden;
    transition: var(--transition);
}

.legal-accordion .accordion-item:hover {
    border-color: var(--secondary);
}

.legal-accordion .accordion-header {
    padding: 25px 30px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-accordion .accordion-header h4 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary);
}

.legal-accordion .accordion-toggle {
    width: 36px;
    height: 36px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.legal-accordion .accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
}

.legal-accordion .accordion-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.legal-accordion .accordion-item.active .accordion-content {
    padding: 30px;
    max-height: 2000px;
}

/* Timeline for Updates */
.update-timeline {
    position: relative;
    margin: 40px 0;
    padding-left: 60px;
}

.update-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.update-timeline .timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.update-timeline .timeline-dot {
    position: absolute;
    left: -42px;
    top: 5px;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--secondary);
}

.update-timeline .timeline-date {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.update-timeline .timeline-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--secondary);
}

/* Print Button */
.print-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #E2E8F0;
}

/* Contact Legal */
.legal-contact {
    text-align: center;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 60px;
    border-radius: var(--border-radius);
    margin-top: 60px;
}

.legal-contact h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-method {
    text-align: center;
}

.contact-method h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-method p {
    color: var(--text);
    margin-bottom: 5px;
}

/* Responsive Styles for Legal Page */
@media (max-width: 1200px) {
    .legal-hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .legal-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .legal-content {
        padding: 40px;
    }
    
    .legal-header h2 {
        font-size: 2.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        min-height: 60vh;
        padding-top: 100px;
    }
    
    .legal-hero-content h1 {
        font-size: 3rem;
    }
    
    .legal-hero-content p {
        font-size: 1.2rem;
    }
    
    .legal-nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-nav-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .legal-content {
        padding: 30px;
    }
    
    .legal-header h2 {
        font-size: 2.2rem;
    }
    
    .legal-content h3 {
        font-size: 1.6rem;
    }
    
    .update-timeline {
        padding-left: 40px;
    }
    
    .update-timeline::before {
        left: 20px;
    }
    
    .update-timeline .timeline-dot {
        left: -32px;
    }
    
    .legal-contact {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .legal-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .legal-container {
        padding: 0 20px;
    }
    
    .legal-content h3 {
        font-size: 1.4rem;
    }
    
    .legal-table {
        display: block;
        overflow-x: auto;
    }
    
    .print-section .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .legal-nav,
    .print-section,
    .legal-contact,
    footer {
        display: none;
    }
    
    .legal-content {
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    .legal-section {
        padding: 0;
    }
    
    .legal-hero {
        min-height: auto;
        padding: 50px 0;
    }
    
    .legal-hero-content h1 {
        color: black;
    }
    
    .legal-hero-content p {
        color: black;
    }
    
    body {
        color: black;
        background: white;
    }
    
    .legal-content h3,
    .legal-content h4,
    .legal-content h5 {
        color: black;
    }
    
    .info-box,
    .warning-box,
    .update-box {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
    
    .legal-accordion .accordion-content {
        max-height: none !important;
        display: block !important;
    }
    
    .legal-accordion .accordion-header {
        pointer-events: none;
    }
}


/* Additional Styles for Thank You Page */
        
      /* ===== ENHANCED THANK YOU PAGE STYLES ===== */

 /* ===== THANK YOU PAGE SPECIFIC STYLES ===== */
/* ===== PREMIUM THANK YOU HERO DESIGN ===== */
/* Additional CSS specific to thank you page */
        :root {
            --celebrate-gold: #FFD700;
            --celebrate-silver: #C0C0C0;
            --celebrate-bronze: #CD7F32;
            --confetti-1: #FF6B6B;
            --confetti-2: #4ECDC4;
            --confetti-3: #FFD166;
            --confetti-4: #06D6A0;
            --confetti-5: #118AB2;
        }

        /* Confetti container */
        .confetti-container {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 20px;
            opacity: 0;
            animation: confetti-fall 5s linear forwards;
        }

        .confetti:nth-child(odd) {
            animation-duration: 4s;
            animation-delay: 0.5s;
        }

        .confetti:nth-child(even) {
            animation-duration: 6s;
        }

        @keyframes confetti-fall {
            0% {
                top: -50px;
                opacity: 1;
                transform: rotate(0deg);
            }
            100% {
                top: 100vh;
                opacity: 0;
                transform: rotate(720deg);
            }
        }

        /* Thank You Hero */
        .thankyou-hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(26, 54, 93, 0.95) 100%), 
                        url('https://images.unsplash.com/photo-1532629345422-7515f3d16bb6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
            text-align: center;
            color: white;
        }

        .thankyou-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            z-index: 0;
        }

        .thankyou-hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            padding: 40px;
        }

        .thankyou-hero h1 {
            font-size: 4.5rem;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .thankyou-hero h1 span {
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        .thankyou-hero h1 span::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--secondary);
            opacity: 0.7;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Celebration Elements */
        .celebration-elements {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 50px 0;
            flex-wrap: wrap;
        }

        .celebration-item {
            text-align: center;
            animation: float 3s ease-in-out infinite;
        }

        .celebration-item:nth-child(2) {
            animation-delay: 0.5s;
        }

        .celebration-item:nth-child(3) {
            animation-delay: 1s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .celebration-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 2.5rem;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }

        /* Welcome Section */
        .welcome-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
            text-align: center;
        }

        .welcome-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .welcome-icon {
            width: 120px;
            height: 120px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 40px;
            font-size: 3.5rem;
            color: var(--primary);
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .welcome-message {
            font-size: 1.4rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: var(--text);
        }

        .highlight-box {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            margin: 50px 0;
            box-shadow: var(--shadow-lg);
            border-left: 5px solid var(--secondary);
            text-align: left;
        }

        .highlight-box h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }

/* ===== Anticipation Section ===== */
.anticipation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0A2540 0%, #1A365D 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.anticipation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.countdown-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.countdown-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.countdown-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    min-width: 150px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc400, #ffdb0c);
}

.countdown-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffc400;
    box-shadow: 0 15px 30px rgba(255, 196, 0, 0.2);
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffdb0c;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 219, 12, 0.5);
}

.countdown-value span {
    color: inherit;
    display: inline-block;
    min-width: 2ch;
    text-align: center;
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.countdown-separator {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    color: #ffc400;
    font-weight: bold;
    padding: 0 5px;
}

.countdown-update {
    animation: numberChange 0.3s ease;
}

@keyframes numberChange {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-10px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 196, 0, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 196, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 196, 0, 0); }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Extra Large Desktops (1400px and above) */
@media (min-width: 1400px) {
    .anticipation-section {
        padding: 120px 0;
    }
    
    .countdown-container {
        max-width: 1000px;
    }
    
    .countdown-title {
        font-size: 3rem;
        margin-bottom: 60px;
    }
    
    .countdown-item {
        min-width: 170px;
        padding: 35px 30px;
    }
    
    .countdown-value {
        font-size: 4rem;
    }
    
    .countdown-label {
        font-size: 1.1rem;
    }
    
    .countdown-separator {
        font-size: 3rem;
    }
}

/* Large Desktops (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .anticipation-section {
        padding: 110px 0;
    }
    
    .countdown-title {
        font-size: 2.8rem;
    }
    
    .countdown-item {
        min-width: 160px;
        padding: 32px 28px;
    }
    
    .countdown-value {
        font-size: 3.8rem;
    }
}

/* Standard Desktops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .anticipation-section {
        padding: 90px 0;
    }
    
    .countdown-title {
        font-size: 2.3rem;
        margin-bottom: 40px;
    }
    
    .countdown {
        gap: 25px;
    }
    
    .countdown-item {
        min-width: 140px;
        padding: 28px 25px;
    }
    
    .countdown-value {
        font-size: 3.2rem;
    }
    
    .countdown-label {
        font-size: 0.95rem;
    }
    
    .countdown-separator {
        font-size: 2.2rem;
    }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .anticipation-section {
        padding: 80px 0;
    }
    
    .countdown-container {
        max-width: 700px;
    }
    
    .countdown-title {
        font-size: 2.1rem;
        margin-bottom: 35px;
        padding: 0 20px;
    }
    
    .countdown {
        gap: 20px;
    }
    
    .countdown-item {
        min-width: 130px;
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .countdown-item::before {
        height: 3px;
    }
    
    .countdown-value {
        font-size: 3rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .countdown-separator {
        font-size: 2rem;
        padding: 0 3px;
    }
}

/* Large Mobile (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .anticipation-section {
        padding: 70px 0;
    }
    
    .countdown-container {
        max-width: 540px;
    }
    
    .countdown-title {
        font-size: 1.9rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 115px;
        padding: 22px 15px;
        border-radius: 10px;
    }
    
    .countdown-item:hover {
        transform: translateY(-5px);
    }
    
    .countdown-value {
        font-size: 2.8rem;
    }
    
    .countdown-label {
        font-size: 0.85rem;
        letter-spacing: 1.2px;
    }
    
    .countdown-separator {
        font-size: 1.8rem;
        display: none; /* Hide separators on smaller tablets */
    }
}

/* Small Mobile (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .anticipation-section {
        padding: 60px 0;
    }
    
    .countdown-title {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    
    .countdown {
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 20px 12px;
        border-radius: 8px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
}

/* Extra Small Mobile (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .anticipation-section {
        padding: 50px 0;
    }
    
    .countdown-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .countdown {
        gap: 10px;
        width: 100%;
        justify-content: space-around;
    }
    
    .countdown-item {
        min-width: 85px;
        padding: 18px 10px;
        margin: 0 2px;
        flex: 1;
        max-width: 90px;
    }
    
    .countdown-value {
        font-size: 2.2rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
}

/* Tiny Mobile (320px - 374px) */
@media (min-width: 320px) and (max-width: 374px) {
    .anticipation-section {
        padding: 40px 0;
    }
    
    .countdown-container {
        padding: 0 10px;
    }
    
    .countdown-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 75px;
        padding: 15px 8px;
        border-radius: 6px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .countdown-item::before {
        height: 2px;
    }
}

/* Very Small Mobile (below 320px) */
@media (max-width: 319px) {
    .anticipation-section {
        padding: 30px 0;
    }
    
    .countdown-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .countdown {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .countdown-item {
        min-width: 200px;
        width: 80%;
        padding: 20px 15px;
        border-radius: 10px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
}

/* Landscape Orientation for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .anticipation-section {
        padding: 40px 0;
    }
    
    .countdown-container {
        max-width: 90%;
    }
    
    .countdown-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 120px;
        padding: 20px 15px;
    }
    
    .countdown-value {
        font-size: 2.8rem;
    }
}

/* High DPI/Retina Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .countdown-value {
        text-shadow: 0 0 30px rgba(255, 219, 12, 0.6);
    }
}

/* Print Styles */
@media print {
    .anticipation-section {
        background: white !important;
        color: black !important;
        padding: 50px 0 !important;
    }
    
    .anticipation-section::before {
        display: none;
    }
    
    .countdown-item {
        background: #f5f5f5 !important;
        border: 2px solid #ccc !important;
        box-shadow: none !important;
    }
    
    .countdown-value {
        color: #333 !important;
        text-shadow: none !important;
    }
    
    .countdown-label {
        color: #666 !important;
    }
    
    .countdown-item::before {
        background: #333 !important;
    }
}
        /* Interactive Elements */
        .interactive-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
            text-align: center;
        }

        .fun-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .fun-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .fun-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .fun-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-secondary);
        }

        .fun-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .fun-card:hover .fun-icon {
            transform: rotate(15deg) scale(1.1);
        }

        /* Celebration CTA */
        .celebration-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--secondary) 0%, #FFEC8B 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .celebration-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0C44.77 0 0 44.77 0 100s44.77 100 100 100 100-44.77 100-100S155.23 0 100 0zm0 180c-44.11 0-80-35.89-80-80s35.89-80 80-80 80 35.89 80 80-35.89 80-80 80z' fill='%23ffffff' fill-opacity='0.2'/%3E%3C/svg%3E");
        }

        .celebration-cta-content {
            position: relative;
            z-index: 2;
        }

        .celebration-cta h2 {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 30px;
            font-weight: 900;
        }

        .celebration-cta p {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 50px;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .thankyou-hero h1 {
                font-size: 3.5rem;
            }
            
            .celebration-elements {
                gap: 20px;
            }
            
            .countdown {
                gap: 15px;
            }
            
            .countdown-item {
                min-width: 120px;
                padding: 20px;
            }
            
            .countdown-value {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .thankyou-hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-subtitle {
                font-size: 1.4rem;
            }
            
            .celebration-elements {
                flex-direction: column;
                align-items: center;
            }
            
            .countdown {
                gap: 10px;
            }
            
            .countdown-item {
                min-width: 100px;
                padding: 15px;
            }
            
            .fun-grid {
                grid-template-columns: 1fr;
            }
            
            .celebration-cta h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .thankyou-hero h1 {
                font-size: 2.2rem;
            }
            
            .countdown {
                flex-direction: column;
                align-items: center;
            }
            
            .countdown-item {
                width: 100%;
                max-width: 200px;
            }
        }



        /* index lead Form Error Messages */
 /* index lead Form Error Messages */
 /* index lead Form Error Messages */
 /* index lead Form Error Messages */



.form-error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-error-message i {
    color: #dc3545;
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.form-error-message h3 {
    margin: 10px 0;
    font-size: 18px;
}

.form-error-message ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.form-error-message li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.form-error-message li:before {
     
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Lead Form Styles */
.lead-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.lead-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.lead-form-header h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.lead-form-header p {
    color: #666;
    font-size: 16px;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
}

.countdown-timer {
    background: linear-gradient(135deg, #ffbb00 0%, #facc4d 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}

.countdown-timer h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.countdown-numbers {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    display: block;
    font-size: 32px;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
    padding: 10px;
    min-width: 70px;
}

.countdown-label {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    opacity: 0.9;
}
/* Ebook Download PPhp */
/* Ebook Download PPhp */
/* Ebook Download PPhp */
     .download-container {
            max-width: 800px;
            margin: 50px auto;
            padding: 40px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .success-icon {
            color: #28a745;
            font-size: 80px;
            margin-bottom: 20px;
        }
        
        .download-container h1 {
            color: #333;
            margin-bottom: 20px;
        }
        
        .download-container p {
            color: #666;
            margin-bottom: 30px;
            font-size: 18px;
            line-height: 1.6;
        }
        
        .ebook-cover {
            width: 200px;
            height: 280px;
            background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
            border-radius: 10px;
            margin: 30px auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            box-shadow: 0 5px 15px rgba(0,123,255,0.3);
        }
        
        .ebook-cover i {
            font-size: 60px;
            margin-bottom: 20px;
        }
        
        .ebook-cover h3 {
            font-size: 20px;
            font-weight: 600;
            text-align: center;
            padding: 0 10px;
        }
        
        .btn-download {
            display: inline-block;
            background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
            color: white;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            margin: 20px 10px;
        }
        
        .btn-download:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40,167,69,0.3);
        }
        
        .btn-continue {
            display: inline-block;
            background: #007bff;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-continue:hover {
            background: #0056b3;
            transform: translateY(-2px);
        }
        
        .countdown {
            font-size: 24px;
            color: #dc3545;
            font-weight: bold;
            margin: 20px 0;
        }
        
        .user-info {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 5px;
            margin: 20px 0;
            text-align: left;
        }
        
        .user-info p {
            margin: 10px 0;
            font-size: 16px;
        }
        
        .spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #007bff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 20px auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }



        @media (max-width: 992px) {
    /* Fix the header to properly position the hamburger menu */
    .header-container {
        position: relative;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 40px; /* Position from the right */
        top: 50%;
        transform: translateY(-50%);
        z-index: 1002;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--primary);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Make sure the logo doesn't push the menu button */
    .logo {
        z-index: 1001;
        position: relative;
    }
    
    /* Position the mobile menu properly */
    nav ul {
        position: fixed;
        top: 80px; /* Adjust based on your header height */
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        transition: var(--transition);
        gap: 30px;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 1000;
    }
    
    nav ul.active {
        left: 0;
    }
    
    /* Remove the old mobile menu button styles that were centering it */
    .mobile-menu-btn {
        margin: 0;
    }
}

/* For tablet view (768px to 992px) */
@media (min-width: 768px) and (max-width: 992px) {
    .mobile-menu-btn {
        right: 30px; /* Adjust for tablet */
    }
}

/* For mobile view (below 768px) */
@media (max-width: 767px) {
    .mobile-menu-btn {
        right: 20px; /* Adjust for mobile */
    }
    
    .logo-image {
        height: 46px;
    }
    
    nav ul {
        top: 70px; /* Adjust for smaller header */
        height: calc(100vh - 70px);
    }
}

/* Make sure the hamburger icon stays visible on all pages */
.mobile-menu-btn i {
    font-size: 1.8rem;
}

/* Optional: Add a background to the hamburger button for better visibility */
.mobile-menu-btn {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Make sure the active navigation link color is visible */
nav ul li a.active {
    color: var(--secondary);
}

/* Ensure the Apply Now button is visible in mobile menu */
nav ul li:last-child a.btn-primary {
    background: var(--gradient-secondary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 10px;
    display: inline-block;
}



/* Whatsapp and Call */

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: none;
    outline: none;
}

.floating-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-button.call {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-button .button-tooltip {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.floating-button .button-tooltip:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary);
}

.floating-button:hover .button-tooltip {
    opacity: 1;
    visibility: visible;
}

.floating-button .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .floating-button .button-tooltip {
        right: 65px;
        font-size: 13px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-button {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
}

/* Floating buttons for contact page */
.contact-page .floating-buttons {
    bottom: 100px;
}

/* Animation for new messages */
@keyframes ring {
    0% { transform: rotate(0); }
    10% { transform: rotate(25deg); }
    20% { transform: rotate(-25deg); }
    30% { transform: rotate(25deg); }
    40% { transform: rotate(-25deg); }
    50%, 100% { transform: rotate(0); }
}

.floating-button.ringing {
    animation: ring 1.5s ease-in-out 3;
}

/* Custom rupee symbol */
.rupee-symbol {
    font-family: Arial, sans-serif;
    font-weight: bold;
    position: relative;
    display: inline-block;
}

.rupee-symbol::before {
    content: 'Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¹';
    font-size: 3.1em;

}


/* Additional CSS for the new landing hero section */


.landing-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.landing-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    height: 100%;
    gap: 50px; /* Added gap between columns */
}

.landing-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffd000 0%, #ff9a00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
}

.landing-content h1 span {
    display: block;
    font-size: 5rem;
    color: white;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    font-weight: 700;
    margin-top: 15px;
}

.landing-content .highlight {
    color: #ffd000;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 40px;
    display: block;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.landing-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 550px;
    opacity: 0.9;
}

.landing-cta {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-gold {
    background: linear-gradient(135deg, #ffd000 0%, #ff9a00 100%);
    color: #000;
    border: none;
    font-weight: 700; /* Reduced from 800 */
    padding: 15px 30px; /* Reduced from 22px 40px */
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Reduced from 15px */
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(255, 208, 0, 0.3); /* Reduced shadow */
    font-size: 1rem; /* Reduced from 1.2rem */
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Reduced from 1px */
}

.btn-gold:hover {
    transform: translateY(-3px); /* Reduced from -5px */
    box-shadow: 0 12px 20px rgba(255, 208, 0, 0.4); /* Reduced shadow */
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid #ffd000; /* Reduced from 3px */
    font-weight: 600; /* Reduced from 700 */
    padding: 15px 30px; /* Reduced from 20px 35px */
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem; /* Reduced from 1.2rem */
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Reduced from 1px */
}

.btn-outline:hover {
    background: rgba(255, 208, 0, 0.1); /* Reduced opacity */
    transform: translateY(-2px); /* Reduced from -3px */
}

/* Coach image container on right side, takes full column */
.coach-container-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
}

.coach-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.coach-main-image {
    width: 100%;
    height: 100%;
    max-height: 800px;
    top:-50px ;
    left: 125px;
    display: block;
    object-fit: cover; /* Changed from 300% height to contain */
    object-position: bottom;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    position: relative;
    z-index: 2;
}

/* Smaller name tag at bottom */
.coach-name-tag {
    position: absolute;
    bottom: -10px;
    left: 72%;
    transform: translateX(-50%);
    background: linear-gradient(to top, rgba(255, 208, 0, 0.95) 0%, rgba(255, 154, 0, 0.95) 100%);
    color: #000;
    padding: 15px 15px;
    text-align: center;
    z-index: 10;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 1s ease-out;
    min-width: 400px; /* Set a reasonable width */
    max-width: 50%; /* Don't let it be too wide */
}

@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.coach-name-tag h3 {
    margin: 0;
    font-size: 1.8rem; /* Reduced from 2.5rem */
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.coach-name-tag p {
    margin: 5px 0 0 0;
    font-size: 1rem; /* Reduced from 1.3rem */
    font-weight: 600;
    opacity: 0.9;
}

/* Stats showcase */
.landing-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding: 30px;
    background: rgba(255, 208, 0, 0.15);
    border-radius: 20px;
    border-left: 5px solid #ffd000;
}

.landing-stat-item {
    text-align: center;
    flex: 1;
}

.landing-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd000;
    line-height: 1;
}

.landing-stat-label {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 600;
    opacity: 0.9;
}

/* ===============================
   BASE / DESKTOP STYLES
================================ */

.landing-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.landing-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 50px;
}

.landing-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffd000 0%, #ff9a00 100%);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 900;
}

.landing-content h1 span {
    display: block;
    font-size: 5rem;
    color: #fff;
    font-weight: 700;
    margin-top: 15px;
}

.highlight {
    color: #ffd000;
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.6;
    text-transform: uppercase;
}

.landing-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 550px;
    opacity: 0.9;
}

.landing-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-gold,
.btn-outline {
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gold {
    background: linear-gradient(135deg, #ffd000, #ff9a00);
    color: #000;
    font-weight: 700;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #ffd000;
    font-weight: 600;
}

/* Image */

.landing-image {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.landing-image img {
    width: 100%;
    max-height: 800px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

/* ===============================
   LARGE DESKTOP
================================ */

@media (min-width: 1600px) {
    .landing-container {
        max-width: 1400px;
    }

    .landing-content h1,
    .landing-content h1 span {
        font-size: 5.5rem;
    }
}

/* ===============================
   LAPTOPS
================================ */

@media (max-width: 1200px) {
    .landing-content h1,
    .landing-content h1 span {
        font-size: 4.2rem;
    }

    .highlight {
        font-size: 1.3rem;
    }
}

/* ===============================
   TABLETS
================================ */

@media (max-width: 991px) {
    .landing-hero {
        padding-top: 80px;
        min-height: auto;
    }

    .landing-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .landing-content {
        align-items: center;
        max-width: 100%;
    }

    .landing-content p {
        max-width: 100%;
    }

    .landing-cta {
        justify-content: center;
    }

    /* CENTER IMAGE CONTAINER */
    .landing-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }

    .landing-image img {
        max-height: 500px;
        width: auto;
        margin: 0 auto;
        display: block;
    }
    .coach-name-tag {
        left: 50%;
        transform: translateX(-50%);
         
    }
}

/* ===============================
   MOBILE LANDSCAPE
================================ */

@media (max-width: 767px) {
    .landing-content h1,
    .landing-content h1 span {
        font-size: 3rem;
    }

    .highlight {
        font-size: 1.1rem;
    }

    .landing-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .landing-image img {
        max-height: 420px;
        width: auto;
        margin: 0 auto;
    }

    /* CENTER NAME TAG (IF PRESENT) */
    .coach-name-tag {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ===============================
   MOBILE PORTRAIT
================================ */

@media (max-width: 575px) {
    .landing-hero {
        padding-top: 60px;
    }

    .landing-content h1,
    .landing-content h1 span {
        font-size: 2.4rem;
        line-height: 1.15;
    }

    .highlight {
        font-size: 1rem;
    }

    .landing-content p {
        font-size: 0.95rem;
    }

    .landing-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .landing-cta a {
        width: 100%;
        max-width: 320px;
    }

    /* FORCE PERFECT IMAGE CENTER */
    .landing-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .landing-image img {
        max-height: 360px;
        width: auto;
        margin: 0 auto;
        display: block;
    }

    /* NAME TAG DEAD-CENTER */
    .coach-name-tag {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 320px;
    }
}

/* ===============================
   SMALL MOBILES
================================ */

@media (max-width: 375px) {
    .landing-content h1,
    .landing-content h1 span {
        font-size: 2rem;
    }

    .highlight {
        font-size: 0.9rem;
    }

    .landing-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .landing-image img {
        max-height: 300px;
        width: auto;
        margin: 0 auto;
    }

    .coach-name-tag {
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
    }

    .btn-gold,
    .btn-outline {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
}


/* ===============================
   BASE IMAGE SAFETY (ALL SCREENS)
================================ */

.coach-container-right,
.coach-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.coach-main-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ===============================
   DESKTOP ONLY (KEEP ORIGINAL LOOK)
================================ */

@media (min-width: 992px) {
    .coach-main-image {
        height: 100%;
        max-height: 800px;
        position: relative;
        top: -50px;
        left: 125px;
    }
}

/* ===============================
   TABLETS & BELOW (RESET OFFSETS)
================================ */

@media (max-width: 991px) {
    .coach-container-right {
        align-items: center;
    }

    .coach-main-image {
        position: static;        /* Ãƒ °Ã… ¸Ã¢â‚¬ Ã¢â‚¬Ëœ removes left/top issues */
        width: 100%;
        height: auto;
        max-height: 520px;
        margin: 0 auto;
        left: 65px;
    }
}

/* ===============================
   MOBILE LANDSCAPE
================================ */

@media (max-width: 767px) {
    .coach-main-image {
        max-height: 500px;
        width: 100%;
    }
}

/* ===============================
   MOBILE PORTRAIT
================================ */

@media (max-width: 575px) {
    .coach-main-image {
        max-height: 450px;
        width: 100%;
    }
}

/* ===============================
   SMALL MOBILES
================================ */

@media (max-width: 375px) {
    .coach-main-image {
        max-height: 450px;
        width: 100%;
    }
}









/* Anuj Sharma's Mission Statement Section - SPECIFIC CLASSES */
.anuj-mission-section .mission-statement-container {
    max-width: 1200px;
    margin: 0 auto;
}

.anuj-mission-section .mission-quote-card {
    background: linear-gradient(135deg, var(--primary) 0%, #667eea 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.2);
    position: relative;
}

.anuj-mission-section .quote-icon {
    font-size: 3rem;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.anuj-mission-section .mission-quote-card h3 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.anuj-mission-section .quote-author {
    font-style: italic;
    opacity: 0.9;
}

/* The Problem - SPECIFIC TO ANUJ SECTION */
.anuj-mission-section .mission-problem {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.anuj-mission-section .mission-problem h4 {
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.anuj-mission-section .mission-problem h4 i {
    color: var(--primary);
    margin-right: 10px;
}

.anuj-mission-section .mission-problem p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.anuj-mission-section .problem-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid var(--primary);
}

.anuj-mission-section .problem-box h5 {
    color: var(--dark);
    margin-bottom: 10px;
}

.anuj-mission-section .problem-box p {
    margin-bottom: 20px;
    font-style: italic;
}

.anuj-mission-section .answer-box {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.anuj-mission-section .answer-box i {
    font-size: 2rem;
    color: #FF9800;
    margin-right: 20px;
}

.anuj-mission-section .answer-box p {
    margin: 0;
    font-style: normal;
}


/* ===== AUTHOR BIO – COMPACT & PROFESSIONAL ===== */
.author-bio {
    padding: 60px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.author-bio-card {
    display: flex;
    gap: 40px;
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-M);
    transition: var(--transition);
    border: 1px solid #E2E8F0;
    align-items: flex-start;
}

.author-bio-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.author-bio-left {
    flex-shrink: 0;
    text-align: center;
}

.author-bio-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;          /* keeps the image filling the circle, but may crop */
    object-position: center 20%; /* adjust vertical alignment – 20% from top focuses on face */
    border: 4px solid var(--secondary);
    box-shadow: 0 10px 20px rgba(255, 196, 0, 0.2);
    transition: var(--transition);
    display: block;             /* removes any extra inline spacing */
}

.author-bio-card:hover .author-bio-photo {
    transform: scale(1.02);
    border-color: var(--primary);
}
.author-bio-contact {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.author-bio-contact .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.author-bio-contact .social-link:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
}
.author-bio-right {
    flex: 1;
}

.author-bio-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.2;
}

.author-bio-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.author-bio-tagline {
    background: rgba(255, 196, 0, 0.1);
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 20px;
    border-left: 4px solid var(--secondary);
}

.author-bio-summary {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    opacity: 0.9;
    margin-bottom: 20px;
}

.author-bio-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
    margin-top: 15px;
}

.author-bio-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F8F9FA;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.author-bio-highlights span i {
    color: var(--secondary);
    font-size: 1rem;
}

.author-bio-highlights span:hover {
    background: var(--gradient-secondary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 196, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .author-bio-card {
        gap: 30px;
        padding: 30px;
    }
    .author-bio-photo {
        width: 130px;
        height: 130px;
    }
    .author-bio-name {
        font-size: 1.8rem;
    }
    .author-bio-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .author-bio-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        padding: 30px;
    }
    .author-bio-left {
        margin-bottom: 0;
    }
    .author-bio-photo {
        width: 120px;
        height: 120px;
    }
    .author-bio-tagline {
        text-align: left;
    }
    .author-bio-highlights {
        justify-content: center;
    }
    .author-bio-highlights span {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .author-bio {
        padding: 40px 0;
    }
    .author-bio-card {
        padding: 25px;
    }
    .author-bio-name {
        font-size: 1.6rem;
    }
    .author-bio-title {
        font-size: 1rem;
    }
    .author-bio-tagline {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    .author-bio-summary {
        font-size: 0.95rem;
    }
    .author-bio-highlights span {
        width: 100%;
        justify-content: center;
    }
}
/* Mission Difference - SPECIFIC TO ANUJ SECTION */
.anuj-mission-section .mission-difference {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.anuj-mission-section .difference-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.anuj-mission-section .avoid-card {
    border-top: 4px solid #f44336;
}

.anuj-mission-section .offer-card {
    border-top: 4px solid #4CAF50;
}

.anuj-mission-section .difference-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.anuj-mission-section .avoid-card .difference-header i {
    color: #f44336;
}

.anuj-mission-section .offer-card .difference-header i {
    color: #4CAF50;
}

.anuj-mission-section .difference-header i {
    font-size: 2rem;
    margin-right: 15px;
}

.anuj-mission-section .difference-header h4 {
    color: var(--dark);
    margin: 0;
}

.anuj-mission-section .difference-items {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.anuj-mission-section .difference-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.anuj-mission-section .difference-item:hover {
    transform: translateX(5px);
    background: #e9ecef;
}

.anuj-mission-section .avoid-card .difference-item {
    border-left: 3px solid #f44336;
}

.anuj-mission-section .offer-card .difference-item {
    border-left: 3px solid #4CAF50;
}

.anuj-mission-section .difference-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.anuj-mission-section .avoid-card .difference-item i {
    color: #f44336;
}

.anuj-mission-section .offer-card .difference-item i {
    color: #4CAF50;
}

.anuj-mission-section .difference-item span {
    color: var(--dark);
    font-weight: 500;
}

.anuj-mission-section .difference-note {
    color: #666;
    font-size: 0.95rem;
    padding: 15px;
    background: #fff8e1;
    border-radius: 8px;
    margin: 0;
}

/* The Hard Truth - SPECIFIC TO ANUJ SECTION */
.anuj-mission-section .mission-truth {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.anuj-mission-section .truth-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: var(--dark);
}

.anuj-mission-section .truth-header i {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 15px;
}

.anuj-mission-section .truth-header h4 {
    margin: 0;
}

.anuj-mission-section .truth-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.anuj-mission-section .truth-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.anuj-mission-section .truth-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.anuj-mission-section .truth-icon.wrong {
    background: #ffebee;
    color: #f44336;
}

.anuj-mission-section .truth-icon.result {
    background: #fff3e0;
    color: #FF9800;
}

.anuj-mission-section .truth-icon.right {
    background: #e8f5e9;
    color: #4CAF50;
}

.anuj-mission-section .truth-text h5 {
    color: var(--dark);
    margin-bottom: 5px;
}

.anuj-mission-section .truth-text p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.anuj-mission-section .truth-arrow {
    color: var(--primary);
    font-size: 1.5rem;
}

/* MPP Methodology - SPECIFIC TO ANUJ SECTION */
.anuj-mission-section .mpp-methodology {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.anuj-mission-section .mpp-header {
    text-align: center;
    margin-bottom: 40px;
}

.anuj-mission-section .mpp-header h4 {
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.anuj-mission-section .mpp-header h4 i {
    color: var(--primary);
}

.anuj-mission-section .mpp-header p {
    color: #666;
    font-size: 1.1rem;
}

.anuj-mission-section .mpp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.anuj-mission-section .mpp-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.anuj-mission-section .mpp-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.anuj-mission-section .mpp-letter {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    line-height: 80px;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.anuj-mission-section .mpp-card h5 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.anuj-mission-section .mpp-card p {
    color: #666;
    margin-bottom: 20px;
}

.anuj-mission-section .mpp-card ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.anuj-mission-section .mpp-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #666;
}

.anuj-mission-section .mpp-card ul li i {
    color: var(--primary);
    margin-right: 10px;
}

/* Program Philosophy - SPECIFIC TO ANUJ SECTION */
.anuj-mission-section .program-philosophy {
    margin-bottom: 50px;
}

.anuj-mission-section .program-philosophy .philosophy-box {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.anuj-mission-section .program-philosophy .philosophy-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #667eea 100%);
    color: white;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    flex-shrink: 0;
}

.anuj-mission-section .program-philosophy .philosophy-content {
    flex: 1;
    padding: 30px;
}

.anuj-mission-section .program-philosophy .philosophy-content h4 {
    color: var(--dark);
    margin-bottom: 20px;
}

.anuj-mission-section .program-philosophy .philosophy-content p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.anuj-mission-section .program-philosophy .philosophy-points {
    display: grid;
    gap: 15px;
}

.anuj-mission-section .program-philosophy .point {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.anuj-mission-section .program-philosophy .point i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.anuj-mission-section .program-philosophy .point:nth-child(odd) i {
    color: #f44336;
}

.anuj-mission-section .program-philosophy .point:nth-child(even) i {
    color: #4CAF50;
}

.anuj-mission-section .program-philosophy .point span {
    color: var(--dark);
    font-weight: 500;
}

/* Mission CTA - SPECIFIC TO ANUJ SECTION */
.anuj-mission-section .mission-cta {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--primary);
}

.anuj-mission-section .cta-box h3 {
    text-align: center;
    color: var(--dark);
    margin-bottom: 20px;
}

.anuj-mission-section .cta-question {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.anuj-mission-section .cta-criteria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.anuj-mission-section .criteria-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.anuj-mission-section .criteria-item:hover {
    transform: translateX(5px);
    background: #e9ecef;
}

.anuj-mission-section .criteria-item i {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 1.2rem;
}

.anuj-mission-section .criteria-item span {
    color: var(--dark);
    font-weight: 500;
}

.anuj-mission-section .cta-message {
    background: #f0f7ff;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.anuj-mission-section .cta-message p {
    color: #666;
    margin-bottom: 15px;
}

.anuj-mission-section .final-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary);
    font-style: italic;
}

.anuj-mission-section .final-quote i {
    font-size: 1.5rem;
    opacity: 0.5;
}

.anuj-mission-section .final-quote p {
    margin: 0;
    font-size: 1.1rem;
}

.anuj-mission-section .cta-action {
    text-align: center;
}

.anuj-mission-section .cta-action .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.anuj-mission-section .cta-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design for Anuj Mission Section */
@media (max-width: 768px) {
    .anuj-mission-section .mission-quote-card {
        padding: 30px 20px;
    }
    
    .anuj-mission-section .mission-quote-card h3 {
        font-size: 1.5rem;
    }
    
    .anuj-mission-section .truth-content {
        flex-direction: column;
    }
    
    .anuj-mission-section .truth-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .anuj-mission-section .program-philosophy .philosophy-box {
        flex-direction: column;
    }
    
    .anuj-mission-section .program-philosophy .philosophy-icon {
        width: 100%;
        height: 100px;
        padding: 20px;
    }
    
    .anuj-mission-section .cta-criteria {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .anuj-mission-section .mission-difference {
        grid-template-columns: 1fr;
    }
    
    .anuj-mission-section .mpp-cards {
        grid-template-columns: 1fr;
    }
    
    .anuj-mission-section .difference-item,
    .anuj-mission-section .criteria-item,
    .anuj-mission-section .program-philosophy .point {
        font-size: 0.9rem;
    }
}


/* Binary Reality Section */
.binary-reality-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reality-container {
    max-width: 1200px;
    margin: 0 auto;
}

.truth-quote {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary);
}

.truth-quote h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin: 20px 0;
    line-height: 1.4;
}

.reality-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.reality-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.reality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.reality-card:nth-child(1) {
    border-top-color: #4CAF50;
}
.reality-card:nth-child(2) {
    border-top-color: #2196F3;
}
.reality-card:nth-child(3) {
    border-top-color: #FF9800;
}
.reality-card:nth-child(4) {
    border-top-color: #9C27B0;
}

.reality-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.reality-card h4 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.positive-outcome {
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.negative-outcome {
    color: #f44336;
    font-weight: 600;
    padding: 8px 15px;
    background: rgba(244, 67, 54, 0.1);
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

.vs-separator {
    background: var(--primary);
    color: white;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 15px auto;
    font-weight: bold;
    font-size: 1.1rem;
}

.reality-card .negative {
    color: #f44336;
    margin-top: 20px;
}

.reality-footer {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mp-methodology h4 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark);
}

.mp-methodology h4 i {
    color: var(--primary);
    margin-right: 10px;
}

.mp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.mp-item {
    text-align: center;
    padding: 20px;
}

.mp-badge {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.mp-item h5 {
    color: var(--dark);
    margin-bottom: 10px;
}


/* Process Steps Section */
.process-steps-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), #667eea);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.step-number {
    width: 100px;
    flex-shrink: 0;
    position: relative;
}

.step-number span {
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-left: 20px;
    border-left: 4px solid var(--primary);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.step-header h3 {
    color: var(--dark);
    margin: 0;
}

.step-tag {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.step-highlight i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-right: 20px;
}

.step-highlight h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

.step-features h5,
.step-purposes h5,
.program-features h5 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.step-features ul {
    list-style: none;
    padding-left: 0;
}

.step-features ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: #666;
}

.step-features ul li i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 3px;
}

.step-offer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.offer-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.original-price {
    text-decoration: line-through;
    font-size: 1.2rem;
    opacity: 0.8;
}

.current-price {
    font-size: 2.5rem;
    font-weight: bold;
}

.offer-badge {
    background: #FF9800;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.offer-note {
    text-align: center;
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.offer-note i {
    margin-right: 8px;
}

.purpose-item {
    display: flex;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.purpose-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: #e9ecef;
}

.feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature span {
    font-weight: 600;
    color: var(--dark);
}

.pricing-card {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.pricing-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

.pricing-header h5 {
    margin: 0;
    font-size: 1.3rem;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #FF9800;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-body {
    padding: 25px;
}

.price-comparison {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.actual-price, .offer-price {
    text-align: center;
}

.actual-price .label,
.offer-price .label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.actual-price .amount {
    display: block;
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
}

.offer-price .amount {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
}

.offer-price .gst {
    font-size: 0.9rem;
    color: #666;
    display: block;
}

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 15px 0 0;
}

.pricing-note i {
    color: var(--primary);
    margin-right: 8px;
}

.process-cta {
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.cta-content h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.cta-content p {
    color: #666;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.cta-note i {
    color: var(--primary);
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
    }
    
    .step-number span {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }
    
    .step-content {
        margin-left: 10px;
        padding: 20px;
    }
    
    .step-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-tag {
        margin-top: 10px;
    }
    
    .step-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .step-highlight i {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .reality-grid,
    .program-details-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 20px;
    }
    
    .step-content {
        margin-left: 0;
    }
}









/* Combined Saksham Program CSS - Isolated and Responsive */

/* Section Base */
.saksham-program-combined {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Header */
.saksham-header {
    text-align: center;
    margin-bottom: 50px;
}

.saksham-subtitle {
    display: inline-block;
    color: #667eea;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.saksham-header h2 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.saksham-description {
    color: #718096;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.saksham-tagline-badge {
    background: #667eea;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Main Card */
.saksham-main-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 1200px;
    margin: 0 auto;
}

/* Purpose Section */
.saksham-purpose-section {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.saksham-purpose-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-right: 30px;
    flex-shrink: 0;
}

.saksham-purpose-content {
    flex: 1;
}

.saksham-purpose-content h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.saksham-purpose-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.saksham-vision-statement {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    font-style: italic;
    margin-top: 20px;
}

/* Highlights Grid */
.saksham-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.saksham-highlight-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.saksham-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: #667eea;
}

.saksham-highlight-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.saksham-highlight-header i {
    font-size: 2rem;
    color: #667eea;
    margin-right: 15px;
}

.saksham-highlight-header h4 {
    color: #2d3748;
    margin: 0;
    font-size: 1.3rem;
}

.saksham-highlight-body p,
.saksham-highlight-body ul {
    color: #666;
    line-height: 1.6;
}

.saksham-highlight-body ul {
    list-style: none;
    padding-left: 0;
}

.saksham-highlight-body ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.saksham-highlight-body ul li i {
    color: #4CAF50;
    margin-right: 10px;
    margin-top: 5px;
}

.saksham-note {
    background: #fff8e1;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

.saksham-note i {
    color: #FF9800;
    margin-right: 8px;
}

/* Guarantee Card Special */
.saksham-guarantee-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #4CAF50;
}

.saksham-guarantee-badge {
    background: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
}

.saksham-guarantee-badge span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.saksham-guarantee-badge small {
    font-size: 0.9rem;
    opacity: 0.9;
}

.saksham-guarantee-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
}

.saksham-guarantee-note i {
    color: #2196F3;
    margin-right: 8px;
}

/* Target Section */
.saksham-target-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.saksham-target-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.saksham-target-header h4 {
    color: #2d3748;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.5rem;
}

.saksham-target-header h4 i {
    color: #667eea;
    margin-right: 10px;
}

.saksham-strict-badge {
    background: #dc3545;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.saksham-target-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.saksham-target-card {
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.saksham-eligible-card {
    border-top: 4px solid #4CAF50;
    background: white;
}

.saksham-noteligible-card {
    border-top: 4px solid #dc3545;
    background: #fff5f5;
}

.saksham-target-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.saksham-target-title i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.saksham-eligible-card .saksham-target-title i {
    color: #4CAF50;
}

.saksham-noteligible-card .saksham-target-title i {
    color: #dc3545;
}

.saksham-target-title h5 {
    color: #2d3748;
    margin: 0;
    font-size: 1.2rem;
}

.saksham-target-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.saksham-target-card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.saksham-eligible-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.saksham-noteligible-card ul li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* Philosophy Section */
.saksham-philosophy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.saksham-philosophy-section h4 {
    color: #2d3748;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.saksham-philosophy-section h4 i {
    color: #667eea;
    margin-right: 10px;
}

.saksham-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.saksham-philosophy-item {
    text-align: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.saksham-philosophy-item:hover {
    transform: translateY(-10px);
    background: #e9ecef;
}

.saksham-philosophy-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #667eea;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.saksham-philosophy-item h5 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.saksham-philosophy-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.saksham-philosophy-quote {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e3f2fd 100%);
    border-radius: 15px;
    border-left: 5px solid #667eea;
}

.saksham-philosophy-quote i {
    color: #667eea;
    font-size: 1.5rem;
    opacity: 0.5;
}

.saksham-philosophy-quote p {
    font-size: 1.3rem;
    color: #2d3748;
    margin: 15px 0;
    font-style: italic;
    line-height: 1.6;
}

/* Results Section */
.saksham-results-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.saksham-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.saksham-results-header h4 {
    color: #2d3748;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.5rem;
}

.saksham-results-header h4 i {
    color: #667eea;
    margin-right: 10px;
}

.saksham-impact-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
}

.saksham-impact-badge span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.saksham-impact-badge small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.saksham-results-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.saksham-result-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.saksham-metric {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.saksham-metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    line-height: 1;
    margin-bottom: 10px;
}

.saksham-metric-label {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.saksham-result-description p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.saksham-values h5 {
    color: #2d3748;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.saksham-values-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.saksham-value-tag {
    background: #667eea;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Warning Section */
.saksham-warning-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.saksham-warning-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #856404;
}

.saksham-warning-header i {
    font-size: 2rem;
    margin-right: 15px;
    color: #dc3545;
}

.saksham-warning-header h4 {
    margin: 0;
    color: #856404;
    font-size: 1.5rem;
}

.saksham-warning-points {
    display: grid;
    gap: 15px;
    margin: 25px 0;
}

.saksham-warning-point {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #fff5f5;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
}

.saksham-warning-point i {
    color: #dc3545;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.2rem;
}

.saksham-warning-point span {
    color: #666;
    line-height: 1.5;
}

.saksham-warning-note {
    background: #fff3cd;
    padding: 15px 20px;
    border-radius: 10px;
    color: #856404;
    font-style: italic;
    margin: 0;
}

.saksham-warning-note p {
    margin: 0;
}

/* CTA Section */
.saksham-cta-section {
    text-align: center;
}

.saksham-cta-content h3 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 2rem;
}

.saksham-cta-content p {
    color: #666;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.saksham-cta-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.saksham-cta-highlight {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 20px;
}

.saksham-cta-highlight i {
    color: #4CAF50;
    margin-right: 10px;
}

.saksham-cta-highlight span {
    color: #2d3748;
    font-weight: 500;
}

/* Button */
.saksham-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.saksham-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.saksham-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.saksham-cta-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .saksham-main-card {
        padding: 30px;
    }
    
    .saksham-result-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .saksham-purpose-section {
        flex-direction: column;
        text-align: center;
    }
    
    .saksham-purpose-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .saksham-target-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .saksham-results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .saksham-program-combined {
        padding: 60px 0;
    }
    
    .saksham-header h2 {
        font-size: 2rem;
    }
    
    .saksham-highlights-grid,
    .saksham-target-content,
    .saksham-philosophy-grid,
    .saksham-results-content {
        grid-template-columns: 1fr;
    }
    
    .saksham-cta-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .saksham-result-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .saksham-main-card {
        padding: 20px;
    }
    
    .saksham-header h2 {
        font-size: 1.8rem;
    }
    
    .saksham-purpose-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .saksham-result-metrics {
        grid-template-columns: 1fr;
    }
    
    .saksham-btn {
        width: 100%;
        text-align: center;
    }
}


/* ================================
   TRANSFORMATION PROCESS FIX
   ================================ */

.transformation-process {
    padding: 120px 0;
}

/* Lock correct card layout */
.transformation-process .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

/* Protect cards from timeline override */
.transformation-process .process-step {
    display: block;
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #E2E8F0;
    position: relative;
}

/* Headings */
.transformation-process .process-step h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Description text */
.transformation-process .process-step p {
    margin-bottom: 20px;
    color: var(--text);
}

/* Restore bullets */
.transformation-process .process-step ul {
    list-style: none;
    margin-top: 25px;
    padding-left: 0;
}

.transformation-process .process-step ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

/* REAL BULLET */
.transformation-process .process-step ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: 900;
}

/* Step number circle */
.transformation-process .step-number {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
}

/* Section title isolation */
.transformation-process .section-title {
    margin-bottom: 80px;
    text-align: center;
}

.transformation-process .section-title h2 {
    font-size: 3.2rem;
}

.transformation-process .section-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
    .transformation-process .process-step {
        padding: 35px 25px;
    }

    .transformation-process .section-title h2 {
        font-size: 2.2rem;
    }
}




.testimonial-track {
    position: relative;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transition: opacity .8s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

/* Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    font-size: 32px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.testimonial-arrow.prev { left: -60px; }
.testimonial-arrow.next { right: -60px; }

@media(max-width:768px){
    .testimonial-arrow.prev { left: 10px; }
    .testimonial-arrow.next { right: 10px; }
}

/* Dots */

.testimonial-dots {
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:30px;
}

.testimonial-dots span {
    width:12px;
    height:12px;
    background:rgba(255,255,255,.4);
    border-radius:50%;
    cursor:pointer;
}

.testimonial-dots span.active {
    background:#ffdb0c;
}



 /* \\\\\\\\\\\ Assessment Page Styling ///////// */

     /* Header Styles */
    .assessment-header {
        background: var(--gradient-primary);
        color: white;
        padding: 120px 0 80px;
        text-align: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 60px;
    }

    .assessment-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V100H1000V0C800,50 600,80 400,80C200,80 100,50 0,0Z" fill="%23ffc400" opacity="0.08"/></svg>');
        background-size: cover;
        background-position: bottom;
    }

    .header-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
    }

    .assessment-logo h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 15px;
        color: var(--secondary);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        text-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .assessment-logo span {
        color: white;
        font-weight: 300;
        font-size: 1.4rem;
        opacity: 0.9;
    }

    .tagline {
        font-size: 1.3rem;
        margin: 30px auto 40px;
        opacity: 0.9;
        line-height: 1.8;
        font-weight: 300;
        max-width: 800px;
    }

    .assessment-quote {
        background: rgba(255, 255, 255, 0.1);
        border-left: 4px solid var(--secondary);
        padding: 30px;
        margin: 40px auto;
        max-width: 800px;
        text-align: left;
        border-radius: 0 var(--border-radius) var(--border-radius) 0;
        backdrop-filter: blur(10px);
    }

    .assessment-quote p {
        font-size: 1.3rem;
        font-style: italic;
        margin-bottom: 10px;
        color: white;
    }

    .assessment-quote .author {
        text-align: right;
        font-size: 1rem;
        opacity: 0.8;
        color: var(--secondary);
    }

    /* Complexity Indicator */
    .complexity-indicator {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
        flex-wrap: wrap;
    }

    .complexity-item {
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        padding: 25px 20px;
        border-radius: var(--border-radius);
        min-width: 150px;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: var(--transition);
    }

    .complexity-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

    .complexity-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--secondary);
        margin-bottom: 10px;
        text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }

    .complexity-label {
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        opacity: 0.8;
        color: white;
    }

    /* Deep Assessment Intro */
    .deep-assessment-intro {
        padding: 80px 0;
        background-color: white;
        margin-bottom: 60px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-M);
    }

    .intro-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 25px;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 256px;
        height: 5px;
        background: var(--gradient-secondary);
        border-radius: 3px;
    }

    .deep-intro-text {
        font-size: 1.2rem;
        color: var(--text);
        margin-bottom: 40px;
        line-height: 1.9;
        max-width: 900px;
    }

    .assessment-warning {
        background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
        border: 2px solid var(--secondary);
        border-radius: var(--border-radius);
        padding: 35px;
        margin: 40px 0;
        position: relative;
        box-shadow: var(--shadow-M);
    }

    .warning-icon {
        position: absolute;
        top: -15px;
        left: 30px;
        background: var(--secondary);
        color: var(--primary);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: bold;
        box-shadow: 0 4px 12px rgba(255, 196, 0, 0.3);
    }

    .warning-content h4 {
        color: #E65100;
        margin-bottom: 15px;
        font-size: 1.4rem;
        font-weight: 600;
    }

    /* Framework Grid */
    .deep-framework {
        background: var(--light);
        padding: 80px 0;
        margin-bottom: 60px;
    }

    .framework-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .framework-pillar {
        background: white;
        border-radius: var(--border-radius);
        padding: 40px 30px;
        text-align: center;
        transition: var(--transition);
        border-top: 5px solid var(--primary);
        box-shadow: var(--shadow-M);
        position: relative;
        overflow: hidden;
    }

    .framework-pillar:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-top-color: var(--secondary);
    }

    .pillar-icon {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 25px;
        height: 80px;
        width: 80px;
        background: var(--gradient-secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        box-shadow: 0 8px 20px rgba(255, 196, 0, 0.2);
    }

    .pillar-title {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--primary);
    }

    .pillar-description {
        color: var(--text);
        margin-bottom: 25px;
        font-size: 1.05rem;
        line-height: 1.7;
        opacity: 0.9;
    }

    .pillar-metrics {
        display: flex;
        justify-content: space-around;
        margin-top: 25px;
        padding-top: 25px;
        border-top: 2px solid var(--light);
    }

    .metric-item {
        text-align: center;
    }

    .metric-value {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 5px;
    }

    .metric-label {
        font-size: 0.85rem;
        color: var(--text);
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.7;
    }

    /* Enhanced Assessment Form */
    .deep-assessment-form {
        padding: 100px 0;
        background-color: white;
        margin-bottom: 60px;
    }

    .deep-form-container {
        max-width: 1200px;
        margin: 0 auto;
        background: var(--light);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-xl);
        overflow: hidden;
    }

    .deep-form-header {
        background: var(--gradient-primary);
        color: white;
        padding: 50px 40px;
        text-align: center;
        position: relative;
    }

    .deep-form-header h3 {
        font-size: 2.4rem;
        font-weight: 800;
        margin-bottom: 15px;
        text-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .deep-form-header p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto;
    }

    .deep-form-progress {
        margin-top: 40px;
    }

    .progress-container {
        display: flex;
        align-items: center;
        gap: 20px;
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: var(--border-radius);
        backdrop-filter: blur(10px);
    }

    .progress-bar {
        flex: 1;
        height: 12px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        overflow: hidden;
        position: relative;
    }

    .progress-fill {
        height: 100%;
        background: var(--gradient-secondary);
        width: 0%;
        transition: var(--transition);
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(255, 196, 0, 0.3);
    }

    .progress-text {
        font-size: 1.2rem;
        font-weight: 600;
        min-width: 120px;
        text-align: right;
        color: var(--secondary);
    }

    .deep-form-body {
        padding: 60px 40px;
    }

    .deep-question-section {
        display: none;
    }

    .deep-question-section.active {
        display: block;
        animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes slideIn {
        from { opacity: 0; transform: translateX(30px); }
        to { opacity: 1; transform: translateX(0); }
    }

    .section-header {
        background: white;
        border-radius: var(--border-radius);
        padding: 40px;
        margin-bottom: 50px;
        border-left: 6px solid var(--primary);
        box-shadow: var(--shadow-M);
    }

    .section-title-main {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .section-description {
        color: var(--text);
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 20px;
        opacity: 0.9;
    }

    .section-weight {
        display: inline-block;
        background: var(--gradient-secondary);
        color: var(--primary);
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 700;
        margin-top: 15px;
        box-shadow: 0 4px 12px rgba(255, 196, 0, 0.2);
    }

    .deep-question-group {
        margin-bottom: 60px;
    }

    .deep-question-item {
        background: white;
        border-radius: var(--border-radius);
        padding: 40px;
        margin-bottom: 30px;
        border: 2px solid var(--light);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        box-shadow: var(--shadow-M);
    }

    .deep-question-item:hover {
        border-color: var(--secondary);
        box-shadow: var(--shadow-lg);
        transform: translateY(-5px);
    }

    .question-number {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--gradient-primary);
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.4rem;
        box-shadow: 0 6px 20px rgba(10, 37, 64, 0.2);
    }

    .deep-question-text {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 30px;
        color: var(--primary);
        line-height: 1.5;
        padding-right: 70px;
    }

    .question-context {
        background: var(--light);
        padding: 25px;
        border-radius: var(--border-radius);
        margin-bottom: 30px;
        border-left: 4px solid var(--accent);
        font-size: 1.1rem;
        color: var(--text);
        line-height: 1.7;
        opacity: 0.9;
    }

    .deep-options-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .deep-option-label {
        display: flex;
        align-items: center;
        padding: 25px;
        background: white;
        border-radius: var(--border-radius);
        cursor: pointer;
        transition: var(--transition);
        border: 2px solid var(--light);
        position: relative;
        overflow: hidden;
    }

    .deep-option-label:hover {
        border-color: var(--accent);
        transform: translateY(-5px);
        box-shadow: var(--shadow-M);
    }

    .deep-option-label.selected {
        border-color: var(--secondary);
        background: linear-gradient(135deg, rgba(255, 196, 0, 0.05) 0%, rgba(255, 219, 12, 0.05) 100%);
        box-shadow: 0 10px 30px rgba(255, 196, 0, 0.1);
    }

    .deep-option-input {
        margin-right: 25px;
        transform: scale(1.4);
        accent-color: var(--secondary);
    }

    .deep-option-text {
        font-size: 1.2rem;
        flex: 1;
        color: var(--text);
        font-weight: 500;
    }

    .option-score {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--gradient-primary);
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(10, 37, 64, 0.2);
    }

    .deep-form-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 80px;
        padding-top: 50px;
        border-top: 3px solid var(--light);
    }

    .deep-btn {
        padding: 20px 45px;
        border-radius: var(--border-radius);
        font-family: 'Segoe UI', system-ui, sans-serif;
        font-weight: 700;
        font-size: 1.2rem;
        cursor: pointer;
        transition: var(--transition);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        min-width: 220px;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: var(--shadow-M);
    }

    .deep-btn-primary {
        background: var(--gradient-secondary);
        color: var(--primary);
    }

    .deep-btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        background: linear-gradient(135deg, #ffc400 0%, #ffd700 100%);
    }

    .deep-btn-secondary {
        background: white;
        color: var(--primary);
        border: 3px solid var(--primary);
    }

    .deep-btn-secondary:hover {
        background: var(--gradient-primary);
        color: white;
        border-color: transparent;
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    /* Enhanced Results Section */
    .deep-results-section {
        padding: 120px 0;
        background: var(--light);
        display: none;
    }

    .deep-results-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    .deep-results-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .deep-score-display {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 80px;
    }

    .deep-score-circle {
        width: 350px;
        height: 350px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: conic-gradient(var(--secondary) 0% var(--score-percentage), var(--light) var(--score-percentage) 100%);
        position: relative;
        box-shadow: var(--shadow-xl);
        margin-bottom: 50px;
    }

    .deep-score-circle::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background: white;
        border-radius: 50%;
        box-shadow: inset 0 10px 30px rgba(0,0,0,0.1);
    }

    .deep-score-value {
        font-size: 5rem;
        font-weight: 900;
        color: var(--primary);
        position: relative;
        z-index: 2;
        text-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .deep-score-label {
        font-size: 1.8rem;
        color: var(--text);
        position: relative;
        z-index: 2;
        margin-top: 15px;
        font-weight: 600;
    }

    .score-range {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 800px;
        margin-top: 40px;
        gap: 20px;
    }

    .range-item {
        text-align: center;
        padding: 25px;
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-M);
        flex: 1;
        transition: var(--transition);
        border-top: 5px solid var(--primary);
    }

    .range-item:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .range-title {
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--primary);
        font-size: 1.3rem;
    }

    .range-value {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--secondary);
    }

    .deep-results-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        margin-bottom: 80px;
    }

    .deep-result-category {
        background: white;
        border-radius: var(--border-radius);
        padding: 50px 40px;
        text-align: center;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        position: relative;
        overflow: hidden;
        border-top: 6px solid var(--primary);
    }

    .deep-result-category:hover {
        transform: translateY(-15px);
        box-shadow: var(--shadow-xl);
        border-top-color: var(--secondary);
    }

    .category-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .category-icon {
        font-size: 3rem;
        color: var(--primary);
        background: var(--gradient-secondary);
        padding: 20px;
        border-radius: 50%;
        box-shadow: 0 8px 25px rgba(255, 196, 0, 0.2);
    }

    .deep-category-title {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary);
    }

    .deep-category-score {
        font-size: 4rem;
        font-weight: 900;
        margin: 30px 0;
        color: var(--primary);
        position: relative;
        text-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .category-progress {
        height: 12px;
        background: var(--light);
        border-radius: 6px;
        margin: 35px 0;
        overflow: hidden;
        box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
    }

    .category-progress-fill {
        height: 100%;
        background: var(--gradient-secondary);
        border-radius: 6px;
        width: 0%;
        transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(255, 196, 0, 0.3);
    }

    .deep-category-desc {
        color: var(--text);
        font-size: 1.1rem;
        line-height: 1.7;
        margin-top: 25px;
        opacity: 0.9;
    }

    .category-insights {
        background: var(--light);
        padding: 30px;
        border-radius: var(--border-radius);
        margin-top: 35px;
        text-align: left;
        box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
    }

    .insight-title {
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 20px;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .insight-title::before {
        content: '💡';
        font-size: 1.2rem;
    }

    .insight-list {
        list-style: none;
        padding-left: 0;
    }

    .insight-list li {
        margin-bottom: 12px;
        padding-left: 35px;
        position: relative;
        color: var(--text);
        line-height: 1.6;
    }

    .insight-list li::before {
        content: '→';
        position: absolute;
        left: 15px;
        color: var(--secondary);
        font-size: 1.3rem;
        font-weight: 700;
    }

    .deep-recommendation {
        background: white;
        border-radius: var(--border-radius);
        padding: 70px;
        margin-top: 80px;
        box-shadow: var(--shadow-xl);
        border-top: 8px solid var(--secondary);
        position: relative;
        overflow: hidden;
    }

    .deep-recommendation h3 {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }

    .recommendation-content {
        font-size: 1.3rem;
        line-height: 1.9;
        color: var(--text);
        margin-bottom: 50px;
        position: relative;
        z-index: 2;
    }

    .program-roadmap {
        background: linear-gradient(135deg, rgba(10, 37, 64, 0.05) 0%, rgba(29, 78, 137, 0.05) 100%);
        border-radius: var(--border-radius);
        padding: 50px;
        margin-top: 50px;
        position: relative;
        z-index: 2;
    }

    .roadmap-title {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 40px;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .roadmap-title i {
        color: var(--secondary);
        font-size: 2.5rem;
    }

    .roadmap-steps {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .roadmap-step {
        display: flex;
        align-items: flex-start;
        gap: 30px;
        padding: 40px;
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-M);
        transition: var(--transition);
        border-left: 5px solid var(--primary);
    }

    .roadmap-step:hover {
        transform: translateX(10px);
        box-shadow: var(--shadow-lg);
    }

    .step-number {
        background: var(--gradient-secondary);
        color: var(--primary);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 900;
        flex-shrink: 0;
        box-shadow: 0 8px 25px rgba(255, 196, 0, 0.3);
    }

    .step-content h4 {
        font-size: 1.6rem;
        color: var(--primary);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .step-duration {
        display: inline-block;
        background: var(--gradient-primary);
        color: white;
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 1rem;
        margin-bottom: 20px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(10, 37, 64, 0.2);
    }

    .step-description {
        color: var(--text);
        line-height: 1.8;
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .deep-action-section {
        text-align: center;
        margin-top: 80px;
        padding-top: 80px;
        border-top: 3px solid var(--light);
    }

    .action-title {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 40px;
        font-weight: 800;
    }

    .action-buttons {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }

    /* Footer Styles */
    .assessment-footer {
        background: white;
        color: white;
        padding: 80px 0 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .footer-logo h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        color: var(--secondary);
    }

    .footer-contact {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 40px 0;
        flex-wrap: wrap;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        background: rgba(255, 255, 255, 0.1);
        padding: 20px 30px;
        border-radius: var(--border-radius);
        backdrop-filter: blur(10px);
        transition: var(--transition);
    }

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
    }

    .contact-icon {
        color: var(--secondary);
        font-size: 1.5rem;
    }

    .copyright {
        margin-top: 60px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        opacity: 0.7;
        color: white;
    }

    /* Responsive Design */
    @media (max-width: 2560px){
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 677px;
        height: 5px;
        background: var(--gradient-secondary);
        border-radius: 3px;
    }
 }
    @media (max-width: 1200px) {
        .container {
            padding: 0 30px;
        }
        
        .deep-options-grid {
            grid-template-columns: 1fr;
        }
        
        .deep-results-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .deep-score-circle {
            width: 300px;
            height: 300px;
        }
        
        .deep-score-circle::before {
            width: 250px;
            height: 250px;
        }
        
        .deep-score-value {
            font-size: 4rem;
        }
         .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 677px;
        height: 5px;
        background: var(--gradient-secondary);
        border-radius: 3px;
    }
    }

    @media (max-width: 992px) {
        .assessment-header {
            padding: 80px 0 60px;
        }
        
        .assessment-logo h1 {
            font-size: 2.8rem;
        }
        
        .section-title {
            font-size: 2.4rem;
        }
        
        .deep-form-body {
            padding: 40px 30px;
        }
        
        .deep-question-item {
            padding: 30px;
        }
        
        .deep-form-navigation {
            flex-direction: column;
            gap: 25px;
            margin-top: 60px;
            padding-top: 40px;
        }
        
        .deep-btn {
            width: 100%;
            max-width: 400px;
        }
        
        .action-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .roadmap-step {
            flex-direction: column;
            text-align: center;
        }
        
        .score-range {
            flex-direction: column;
            gap: 20px;
        }
        
        .range-item {
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .container {
            padding: 0 20px;
        }
        
        .assessment-logo h1 {
            font-size: 2.2rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .complexity-indicator {
            gap: 15px;
        }
        
        .complexity-item {
            min-width: 120px;
            padding: 20px 15px;
        }
        
        .deep-score-circle {
            width: 250px;
            height: 250px;
        }
        
        .deep-score-circle::before {
            width: 200px;
            height: 200px;
        }
        
        .deep-score-value {
            font-size: 3.2rem;
        }
        
        .deep-category-score {
            font-size: 3rem;
        }
        
        .deep-recommendation {
            padding: 40px 30px;
        }
        
        .roadmap-step {
            padding: 30px;
        }
        
        .framework-grid {
            grid-template-columns: 1fr;
        }
        
        .deep-results-grid {
            grid-template-columns: 1fr;
        }
         .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 483px;
        height: 5px;
        background: var(--gradient-secondary);
        border-radius: 3px;
    }
    }

    @media (max-width: 576px) {
        .assessment-header {
            padding: 60px 0 40px;
        }
        
        .assessment-logo h1 {
            font-size: 1.8rem;
        }
        
        .tagline {
            font-size: 1.1rem;
        }
        
        .deep-question-text {
            font-size: 1.2rem;
            padding-right: 50px;
        }
        
        .question-number {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
        }
        
        .deep-btn {
            padding: 18px 30px;
            font-size: 1.1rem;
            min-width: auto;
        }
        
        .deep-score-circle {
            width: 200px;
            height: 200px;
        }
        
        .deep-score-circle::before {
            width: 160px;
            height: 160px;
        }
        
        .deep-score-value {
            font-size: 2.5rem;
        }
        
        .deep-score-label {
            font-size: 1.4rem;
        }
        .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 287px;
        height: 5px;
        background: var(--gradient-secondary);
        border-radius: 3px;
    }
    }
 @media (max-width: 375px){
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 248px;
        height: 5px;
        background: var(--gradient-secondary);
        border-radius: 3px;
    }
 }
  @media (max-width: 325px){
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 200px;
        height: 5px;
        background: var(--gradient-secondary);
        border-radius: 3px;
    }
 }
    /* Utility Classes */
    .text-center {
        text-align: center;
    }

    .mb-1 { margin-bottom: 10px; }
    .mb-2 { margin-bottom: 20px; }
    .mb-3 { margin-bottom: 30px; }
    .mb-4 { margin-bottom: 40px; }
    .mb-5 { margin-bottom: 50px; }

    .mt-1 { margin-top: 10px; }
    .mt-2 { margin-top: 20px; }
    .mt-3 { margin-top: 30px; }
    .mt-4 { margin-top: 40px; }
    .mt-5 { margin-top: 50px; }

    .px-1 { padding-left: 10px; padding-right: 10px; }
    .px-2 { padding-left: 20px; padding-right: 20px; }
    .px-3 { padding-left: 30px; padding-right: 30px; }
    .px-4 { padding-left: 40px; padding-right: 40px; }
    .px-5 { padding-left: 50px; padding-right: 50px; }

    /* Loading Animation */
    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    .loading {
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    /* Success Animation */
    @keyframes successPulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    .success-animation {
        animation: successPulse 0.6s ease-in-out;
    }

    /* Section Transitions */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Business Health Dashboard */
.business-health-dashboard {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    margin: 60px 0;
    box-shadow: var(--shadow);
}

.dashboard-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-title i {
    color: var(--accent-gold);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.metric-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.metric-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    width: 60px;
    height: 60px;
    background: rgba(29, 78, 137, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Detailed Scores Section */
.detailed-scores-section {
    margin: 60px 0;
}

.scores-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scores-title i {
    color: var(--accent-gold);
}

/* Critical Issues Panel */
.critical-issues-panel {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px 0;
    animation: pulseWarning 2s infinite;
}

@keyframes pulseWarning {
    0% { border-color: #ffc107; }
    50% { border-color: #ffd54f; }
    100% { border-color: #ffc107; }
}

.critical-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.critical-header i {
    color: #e65100;
    font-size: 1.8rem;
}

.critical-header h3 {
    color: #e65100;
    margin: 0;
}

.critical-list {
    display: grid;
    gap: 15px;
}

.critical-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #e65100;
    display: flex;
    align-items: center;
    gap: 15px;
}

.critical-severity {
    background: #e65100;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.critical-text {
    flex: 1;
    color: var(--text-dark);
}

/* Program Details in Recommendations */
.program-details {
    margin: 40px 0;
}

.program-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent-gold);
    margin-top: 20px;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.program-header h5 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 0;
}

.program-badge {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.program-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.program-metric {
    text-align: center;
}

.program-metric .metric-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.program-metric .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Executive Summary */
.executive-summary {
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.05) 0%, rgba(29, 78, 137, 0.05) 100%);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
}

.executive-summary h4 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.executive-summary p {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.executive-summary strong {
    color: var(--primary-dark);
}

/* Guarantee Note */
.guarantee-note {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 600;
}

.guarantee-note i {
    color: var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
    
    .program-metrics {
        grid-template-columns: 1fr;
    }
    
    .program-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .critical-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}




/*Assessment Page Report Download Styling...*/

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.95);
    z-index: 9999;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.report-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { 
        transform: translate(-50%, -40%);
        opacity: 0;
    }
    to { 
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 25px 30px;
    border-radius: var(--radius) var(--radius) 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-content {
    padding: 30px;
}

.modal-intro {
    background: var(--light-bg);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-gold);
}

.modal-intro p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.report-form {
    margin-top: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 25px 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius);
}

.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    transform: scale(1.2);
    accent-color: var(--accent-gold);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
    cursor: pointer;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    border: none;
    padding: 18px 40px;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(255, 196, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 196, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Loading state */
.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid var(--primary-dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success message */
.success-message {
    text-align: center;
    padding: 40px;
}

.success-message i {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.success-message h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--text-dark);
    margin-bottom: 25px;
}

.download-link {
    display: inline-block;
    background: var(--primary-dark);
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .report-modal {
        width: 95%;
        max-height: 85vh;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .modal-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
}

/* Go Back, Previous and Next Article Butttons */

/* Back to News button */
.back-to-news {
    text-align: center;
    margin: 30px 0 10px;
}
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: var(--primary);
    color: white;
}

/* Previous / Next navigation */
.article-navigation {
    margin: 20px 0 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: background 0.3s ease;
}
.nav-link:hover {
    background: var(--secondary);
}
.nav-link i {
    font-size: 0.9rem;
}
.nav-link.prev span {
    order: 2;
}
.nav-link.next span {
    order: 1;
}
/* Disabled state for first/last article */
.nav-link.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: #ccc;
}
@media (max-width: 600px) {
    .nav-links {
        flex-direction: column;
    }
    .nav-link {
        width: 100%;
        justify-content: center;
    }
}