/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (REFACTORED FOR FORMAL ENTERPRISE AESTHETICS)
   ========================================================================== */
:root {
    /* Color Palette - Premium Corporate Light Theme */
    --color-bg-light: #f8fafc;       /* Off-white page background */
    --color-bg-white: #ffffff;       /* Card and section background */
    --color-bg-navy: #0f172a;        /* Deep Slate Navy for dark accents / footer */
    --color-bg-navy-light: #1e293b;  /* Lighter Navy for code/sub-elements */
    --color-white: #ffffff;          /* Pure White */
    
    /* Text Colors */
    --color-text-dark: #0f172a;      /* Primary headings */
    --color-text-body: #334155;      /* Body text (slate-700) */
    --color-text-muted: #64748b;     /* Muted/secondary text (slate-500) */
    
    /* Brand Accents */
    --color-accent: #1e3a8a;         /* Royal Navy Blue */
    --color-accent-gold: #b45309;    /* Corporate Gold/Amber (Slate-700 complementary) */
    --color-accent-light: rgba(30, 58, 138, 0.05);
    --color-accent-gold-light: rgba(180, 83, 9, 0.08);
    
    /* Gradients */
    --grad-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); /* Premium dark hero */
    --grad-gold: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    --grad-blue: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --border-glass: 1px solid rgba(255, 255, 255, 0.12);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Styling Utilities */
    --border-light: 1px solid #e2e8f0;
    --border-accent: 1px solid rgba(30, 58, 138, 0.15);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px -4px rgba(15, 23, 42, 0.12);
    --shadow-glow-blue: 0 4px 20px rgba(30, 58, 138, 0.25);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   GLOBAL STYLES & RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-light);
    color: var(--color-text-body);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.25;
}

p {
    color: var(--color-text-body);
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common Styles */
section {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-bg-white);
}

.section-header {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    color: var(--color-text-dark);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
}

.section-header.text-center h2::after {
    left: 50%;
}

.section-subtitle {
    color: var(--color-accent-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    margin-top: 10px;
}

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

/* Glassmorphism/Card Utilities */
.glass-card {
    background: var(--color-bg-white);
    border: var(--border-light);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Buttons */
a.btn-cta, button.btn-cta, .btn-cta {
    display: inline-block;
    padding: 14px 30px;
    background: var(--color-accent);
    color: var(--color-white) !important;
    font-weight: 600;
    border-radius: 4px;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-glow-blue);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

a.btn-cta:hover, button.btn-cta:hover, .btn-cta:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(30, 58, 138, 0.4);
    color: var(--color-white) !important;
}

a.btn-secondary, button.btn-secondary, .btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background: transparent;
    color: var(--color-text-dark) !important;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--color-accent);
    cursor: pointer;
    transition: var(--transition-smooth);
}

a.btn-secondary:hover, button.btn-secondary:hover, .btn-secondary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    color: var(--color-accent) !important;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--color-accent-gold-light);
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-content .badge {
    background-color: rgba(245, 158, 11, 0.2) !important;
    border: 1px solid #f59e0b !important;
    color: #fbbf24 !important;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
    padding: 6px 0;
}

.navbar.scrolled {
    padding: 3px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4px 24px;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    text-decoration: none;
}

.nav-logo {
    height: 76px;
    width: auto;
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo {
    height: 60px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.2px;
    color: var(--color-text-dark);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.accent-text {
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

.nav-item:hover, .nav-item.active {
    color: var(--color-accent);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
    box-shadow: none;
}

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

/* ==========================================================================
   HERO SECTION (DARK PROFESSIONAL INTRO)
   ========================================================================== */
.hero-section {
    background: var(--grad-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    color: var(--color-white) !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cbd5e1;
    line-height: 1.7;
}

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

.hero-actions a.btn-cta, .hero-actions button.btn-cta, .hero-actions .btn-cta {
    background: var(--color-accent-gold);
    color: var(--color-white) !important;
    box-shadow: 0 4px 14px rgba(180, 83, 9, 0.4);
}

.hero-actions a.btn-cta:hover, .hero-actions button.btn-cta:hover, .hero-actions .btn-cta:hover {
    background: #9a3412;
    box-shadow: 0 6px 20px rgba(180, 83, 9, 0.6);
}

.hero-actions a.btn-secondary, .hero-actions .btn-secondary {
    border-color: #cbd5e1 !important;
    color: var(--color-white) !important;
}

.hero-actions a.btn-secondary:hover, .hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--color-white) !important;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
}

.shape-1 {
    top: -50px;
    right: -50px;
    width: 350px;
    height: 350px;
    background: var(--color-accent);
}

.shape-2 {
    bottom: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: var(--color-accent-gold);
}

.hero-graphic {
    position: relative;
    z-index: 2;
}

.hero-card {
    padding: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fca5a5; /* warm light red/coral */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-white);
}

.hero-card p {
    margin-bottom: 24px;
    line-height: 1.7;
    color: #94a3b8;
}

.compliance-row {
    display: flex;
    gap: 16px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
}

.compliance-badge i {
    color: var(--color-accent-gold);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--color-bg-white);
}

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

.about-text-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-quote {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-dark);
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
    margin-top: 30px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--color-bg-light);
    border: var(--border-light);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    background: var(--color-bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(30, 58, 138, 0.15);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.stat-card h3 {
    font-size: 1.8rem;
    margin-bottom: 6px;
    color: var(--color-text-dark);
}

.stat-card p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* ==========================================================================
   BHARAT PROCESS SECTION (INTERACTIVE TABS)
   ========================================================================== */
.bharat-section {
    background-color: var(--color-bg-light);
    border-top: var(--border-light);
    border-bottom: var(--border-light);
}

.bharat-interactive-container {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.bharat-alphabet-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alphabet-btn {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    border: var(--border-light);
    background: var(--color-bg-white);
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.alphabet-btn:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: var(--color-accent-light);
}

.alphabet-btn.active {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.bharat-content-display {
    position: relative;
    min-height: 380px;
}

.bharat-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s ease;
    background: var(--color-bg-white);
    border: var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.bharat-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    z-index: 2;
}

.alphabet-watermark {
    position: absolute;
    bottom: -60px;
    right: -10px;
    font-family: var(--font-heading);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(30, 58, 138, 0.02);
    user-select: none;
    line-height: 1;
}

.bharat-card-header {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.bharat-card-header h3 {
    font-size: 2rem;
    color: var(--color-text-dark);
    border-bottom: 2px solid var(--color-accent-light);
    padding-bottom: 12px;
}

.bharat-card-body {
    position: relative;
    z-index: 2;
}

.bharat-card-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.bharat-card-body .hindi-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    margin-bottom: 16px;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.process-list li {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-list li i {
    color: var(--color-accent-gold);
    font-size: 0.9rem;
}

.process-list li strong {
    color: var(--color-text-dark);
}

.grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background-color: var(--color-bg-white);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.service-box {
    padding: 40px;
    border-radius: var(--radius-md);
    border: var(--border-light);
}

.service-box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.box-icon {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.service-box h3 {
    font-size: 1.6rem;
}

.service-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.box-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-body);
    font-weight: 500;
    font-size: 0.95rem;
}

.box-list li i {
    color: var(--color-accent-gold);
}

.gov-schemes-header {
    margin-top: 80px;
    margin-bottom: 40px;
}

.gov-schemes-header h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.gov-schemes-header p {
    color: var(--color-text-muted);
}

.gov-schemes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.scheme-card {
    background: var(--color-bg-light);
    border: var(--border-light);
    border-radius: var(--radius-md);
    padding: 35px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.scheme-card:hover {
    background: var(--color-bg-white);
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.scheme-icon {
    font-size: 2rem;
    color: var(--color-accent-gold);
    margin-bottom: 16px;
}

.scheme-card h4 {
    font-size: 1.4rem;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.scheme-card h5 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 600;
}

.scheme-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
.why-us-section {
    background-color: var(--color-bg-light);
    border-top: var(--border-light);
    border-bottom: var(--border-light);
}

.why-us-intro {
    font-size: 1.05rem;
    max-width: 800px;
    margin: 20px auto 0 auto;
    line-height: 1.7;
    color: var(--color-text-body);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.benefit-item {
    background: var(--color-bg-white);
    border: var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.3rem;
    color: var(--color-accent);
    background: var(--color-accent-light);
    width: 42px;
    height: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

/* ==========================================================================
   HOW WE WORK SECTION
   ========================================================================== */
.how-section {
    background-color: var(--color-bg-white);
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    max-width: 800px;
    margin: 50px auto 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 2px;
    height: 100%;
    background: #e2e8f0;
}

.timeline-step {
    display: flex;
    gap: 24px;
    position: relative;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--color-bg-white);
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-number {
    background-color: var(--color-accent) !important;
    color: var(--color-white) !important;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.step-content {
    background: var(--color-bg-light);
    border: var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    flex-grow: 1;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-content {
    background: var(--color-bg-white);
    border-color: rgba(30, 58, 138, 0.2);
    box-shadow: var(--shadow-sm);
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.step-tagline {
    font-size: 0.8rem;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--color-text-body);
}

.cta-banner {
    background: var(--color-accent-light);
    border: var(--border-accent);
    color: var(--color-accent);
    padding: 35px;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-top: 50px;
}

.cta-banner h4 {
    font-size: 1.6rem;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.cta-banner p {
    font-size: 1.05rem;
    color: var(--color-text-body);
    font-weight: 600;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg-light);
    border-top: var(--border-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.11fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1.15;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--color-text-body);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.info-item p {
    font-size: 0.95rem;
    color: var(--color-text-body);
}

.info-item p a:hover {
    color: var(--color-accent);
}

.contact-form-container {
    padding: 35px;
    border-radius: var(--radius-md);
    background-color: var(--color-bg-white);
    border: var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

input, select, textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--color-bg-light);
    border: var(--border-light);
    color: var(--color-text-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-accent);
    background: var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

select option {
    background: var(--color-bg-white);
    color: var(--color-text-dark);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--color-bg-navy);
    padding: 80px 0 40px 0;
    color: #94a3b8;
}

.footer h1, .footer h2, .footer h3, .footer h4 {
    color: var(--color-white);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-about .logo-container {
    margin-bottom: 20px;
}

.footer-logo {
    height: 75px;
    width: auto;
}

.footer-about .logo-text {
    color: var(--color-white);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--color-accent-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.copyright {
    margin-top: 30px;
    font-size: 0.8rem !important;
    color: #64748b !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .about-grid, .contact-grid {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    section {
        padding: 80px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-graphic {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text-content {
        order: 1;
    }
    
    .about-stats-grid {
        order: 2;
    }

    .bharat-interactive-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .bharat-alphabet-sidebar {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .alphabet-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .bharat-card {
        padding: 30px;
    }
    
    .services-detailed-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gov-schemes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-bg-white);
        padding: 30px 24px;
        border-bottom: 1px solid #e2e8f0;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }
    
    .header-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 14px;
    }

    .nav-logo {
        height: 72px !important;
    }

    .navbar.scrolled .nav-logo {
        height: 56px !important;
    }

    .logo-text {
        font-size: 1.0rem !important;
    }
    
    .logo-container {
        gap: 8px !important;
    }

    .alphabet-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.25rem !important;
    }

    .contact-form-container {
        padding: 20px !important;
    }

    .upload-zone {
        padding: 20px !important;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn-cta, .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .compliance-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .timeline-container::before {
        left: 15px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .timeline-step {
        gap: 12px;
    }
    
    .step-content {
        padding: 14px 16px;
    }
}

/* ==========================================================================
   NEW GRAPHICS & IMAGE COMPONENT STYLES
   ========================================================================== */
.hero-img-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.hero-badge-card {
    position: absolute;
    bottom: -20px !important;
    left: 50% !important;
    top: auto !important;
    transform: translateX(-50%) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border: var(--border-light);
    border-left: 4px solid var(--color-accent) !important;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.2) !important;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
    width: calc(100% - 40px);
    max-width: 320px;
}

.badge-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hero-badge-card h4 {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    margin-bottom: 2px;
}

.hero-badge-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* About Image Frame */
.about-image-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-light);
}

.about-main-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.about-image-container:hover .about-main-img {
    transform: scale(1.03);
}

.about-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 100%);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-white);
}

.about-image-caption i {
    font-size: 1.5rem;
    color: var(--color-accent-gold);
}

.about-image-caption span {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    color: #e2e8f0;
}

/* Services Banner Card */
.services-banner-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    padding: 50px;
    border-radius: var(--radius-lg);
    background: var(--color-bg-white);
    border: var(--border-light);
    box-shadow: var(--shadow-md);
    align-items: center;
    overflow: hidden;
    margin-top: 40px;
}

.banner-card-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.banner-card-content p {
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.banner-card-image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
}

.banner-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* Responsive Overrides for new elements */
@media (max-width: 900px) {
    .services-banner-card {
        grid-column: span 1;
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    
    .banner-card-image img {
        height: 200px;
    }
    
    .hero-img-container {
        max-width: 420px;
        margin-bottom: 30px;
    }
    
    .hero-badge-card {
        padding: 12px 20px;
    }
}

/* ==========================================================================
   SURVEY FORM STYLE UTILITIES
   ========================================================================== */
.survey-radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.survey-radio-label {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: var(--color-text-body);
}

.survey-radio-label:hover {
    background: #f1f5f9;
    border-color: var(--color-accent);
    color: var(--color-text-dark);
}

.survey-radio-label input[type="radio"],
.survey-radio-label input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0;
    cursor: pointer;
    accent-color: var(--color-accent);
    flex-shrink: 0;
}

.survey-radio-label input[type="radio"]:checked + span,
.survey-radio-label input[type="checkbox"]:checked + span {
    color: var(--color-accent);
    font-weight: 600;
}

.survey-step {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.survey-progress-container {
    background: rgba(30, 58, 138, 0.03);
    padding: 16px 20px;
    border-radius: 8px;
    border: var(--border-accent);
}

.survey-cta-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-accent-gold);
    padding: 24px;
    border-radius: var(--radius-sm);
    margin-top: 24px;
}

.survey-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.s-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.s-feature-item i {
    color: var(--color-accent-gold);
}

.survey-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--grad-gold);
    border: none;
    box-shadow: 0 4px 15px rgba(180, 83, 9, 0.4);
}

.survey-btn:hover {
    box-shadow: 0 6px 20px rgba(180, 83, 9, 0.6);
}

/* Service Selection Grid for Survey */
.survey-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.survey-service-card {
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.survey-service-card:hover {
    border-color: var(--color-accent-light);
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.survey-service-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.survey-service-card .service-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(30, 58, 138, 0.08);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.survey-service-card .service-info h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.3;
}

.survey-service-card.selected,
.survey-service-card:has(input[type="radio"]:checked) {
    border-color: var(--color-accent);
    background: rgba(30, 58, 138, 0.04);
    box-shadow: 0 0 0 1px var(--color-accent);
}

.survey-service-card.selected .service-icon,
.survey-service-card:has(input[type="radio"]:checked) .service-icon {
    background: var(--color-accent);
    color: #ffffff;
}

@media (max-width: 600px) {
    .survey-service-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ==========================================================================
   ONBOARDING & DOCUMENT CENTER STYLE UTILITIES
   ========================================================================== */
.document-section {
    position: relative;
    overflow: hidden;
}

.upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--color-accent) !important;
    background: rgba(30, 58, 138, 0.02) !important;
}

.upload-zone.dragover i {
    transform: translateY(-5px);
    color: var(--color-accent) !important;
}

.upload-zone i {
    transition: transform 0.2s ease;
}

@media (max-width: 900px) {
    .document-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* ==========================================================================
   TEAM & ADVISORY PANEL SECTION STYLE UTILITIES
   ========================================================================== */
.team-section {
    position: relative;
    overflow: hidden;
}

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

.team-card {
    background: var(--color-bg-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent-light);
}

.team-photo-container {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-bg-light);
    position: relative;
    margin: 24px auto 0 auto;
    border: 2px solid #e2e8f0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: border-color 0.3s ease;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-expand-btn {
    background: var(--color-bg-light);
    border: var(--border-light);
    color: var(--color-text-body);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-expand-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg-white);
    border-color: var(--color-accent);
}

.team-expand-btn.active {
    background: var(--color-accent-gold);
    color: var(--color-text-dark);
    border-color: var(--color-accent-gold);
}

.team-expand-btn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.team-expand-btn.active i {
    transform: rotate(180deg);
}

.team-desc-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-bg-light);
    border-top: 0 solid var(--border-light);
}

.team-card.active .team-desc-panel {
    border-top-width: 1px;
}

.team-desc-inner {
    padding: 20px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text-body);
    text-align: left;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .team-card {
        border-radius: 8px !important;
    }
    
    .team-photo-container {
        width: 86px !important;
        height: 86px !important;
        margin-top: 16px !important;
        border-width: 1.5px !important;
    }
    
    .team-info {
        padding: 12px 8px !important;
    }
    
    .team-name {
        font-size: 0.92rem !important;
        margin-bottom: 2px !important;
    }
    
    .team-role {
        font-size: 0.72rem !important;
        margin-bottom: 8px !important;
    }
    
    .team-expand-btn {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.72rem !important;
    }
    
    .team-desc-inner {
        padding: 12px !important;
        font-size: 0.78rem !important;
    }
}

/* Service and Scheme Image Logos */
.box-icon-img {
    width: 60px;
    height: 60px;
    background: var(--color-bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
}

.service-logo-img {
    max-width: 42px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.scheme-icon-img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    margin-bottom: 20px;
    align-self: center;
}

.scheme-logo-img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    padding: 6px;
    background: var(--color-bg-white);
}

/* Onboarding Gateway CSS */
body.gateway-locked {
    overflow: hidden !important;
    height: 100vh !important;
}

.gateway-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.75);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 20px;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
}

.gateway-card {
    background: var(--color-bg-white);
    width: 100%;
    max-width: 580px;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-xl), 0 20px 25px -5px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.gateway-header {
    text-align: center;
    margin-bottom: 30px;
}

.gateway-logo {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

.gateway-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.gateway-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    max-width: 460px;
    margin: 0 auto;
}

.gateway-step {
    display: none;
}

.gateway-step.active {
    display: block;
}

/* Step 1 Choice Selection Cards */
.gateway-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 10px;
}

.gateway-choice-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px 16px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gateway-choice-card:hover {
    border-color: var(--color-accent);
    background: rgba(30, 58, 138, 0.02);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.choice-icon {
    width: 60px;
    height: 60px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
    transition: all 0.25s ease;
}

.gateway-choice-card:hover .choice-icon {
    background: var(--color-accent);
    color: var(--color-white);
}

.gateway-choice-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.gateway-choice-card p {
    font-size: 0.8rem;
    color: var(--color-text-body);
    line-height: 1.4;
}

/* Step 2 Form Controls */
.gateway-back-nav {
    margin-bottom: 20px;
}

.btn-back {
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.btn-back:hover {
    color: #1d4ed8;
}

.gateway-form input,
.gateway-form select {
    width: 100%;
    padding: 11px 14px;
    font-size: 0.95rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    background: var(--color-bg-white);
    color: var(--color-text-dark);
    transition: border-color 0.2s ease;
}

.gateway-form input:focus,
.gateway-form select:focus {
    border-color: var(--color-accent);
    outline: none;
}

.gateway-form label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 6px;
    display: block;
}

.gateway-other-wrapper {
    margin-top: 14px;
    animation: slideDown 0.25s ease;
}

/* Animation utilities */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Placeholder for advisory panel without photo */
.advisory-no-photo .no-photo-placeholder {
    aspect-ratio: 1 / 1.08;
    background: #e2e8f0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Overrides */
@media (max-width: 600px) {
    .gateway-card {
        padding: 24px 16px;
    }
    .gateway-choice-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gateway-header h2 {
        font-size: 1.35rem;
    }
    .gateway-logo {
        height: 64px;
    }
}

/* Tab T Double Card Layout */
.bharat-double-card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: flex !important;
    gap: 24px !important;
    overflow: visible !important;
    width: 100% !important;
}

.bharat-sub-card {
    background: var(--color-bg-white);
    border: var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .bharat-double-card {
        flex-direction: column !important;
        gap: 20px !important;
    }
}
