/*
Theme Name: Flipkart Account Management
Author: Digibells
Description: Account management ke liye custom theme
Version: 1.0
*/






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

:root {
    --bg-dark: #f1f3f6;               /* Flipkart light grey-blue bg */
    --bg-surface: rgba(255, 255, 255, 0.9);
    --bg-surface-hover: rgba(255, 255, 255, 1);
    --primary: #2874f0;               /* Flipkart Blue */
    --primary-glow: rgba(40, 116, 240, 0.15);
    --secondary: #ffe11b;             /* Flipkart Yellow */
    --secondary-glow: rgba(255, 225, 27, 0.3);
    --text-main: #212121;             /* dark text for light bg */
    --text-muted: #878787;
    --text-bright: #212121;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-hover: rgba(40, 116, 240, 0.3);
    --accent-gradient: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    --gold-gradient: linear-gradient(135deg, var(--secondary) 0%, #d97706 100%);
    --card-shadow: 0 4px 16px 0 rgba(40, 116, 240, 0.08);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-dark);
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(40, 116, 240, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 225, 27, 0.04) 0%, transparent 40%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-bright);
    font-weight: 700;
    line-height: 1.2;
}

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

/* Typography Helpers */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #2874f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: linear-gradient(135deg, rgba(40, 116, 240, 0.85), rgba(30, 64, 175, 0.85));
    border-bottom: 1px solid rgba(255, 225, 27, 0.2);
    box-shadow: 0 2px 15px rgba(40, 116, 240, 0.2);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: linear-gradient(270deg, #2874f0, #1e40af, #2874f0, #172554);
    background-size: 400% 400%;
    animation: gradientFlow 8s ease infinite;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 25px rgba(40, 116, 240, 0.35),
                0 0 15px rgba(255, 225, 27, 0.15);
    border-bottom: 1px solid rgba(255, 225, 27, 0.25);
    transition: all var(--transition-smooth);
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-bright);
}

.logo span.blue {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.logo span.yellow {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary-glow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-bright);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.nav-links li {
    position: relative;
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(40, 116, 240, 0.15);
    border-radius: 8px;
    padding: 0.75rem 0;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(40, 116, 240, 0.15);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    list-style: none;
}

.dropdown-menu li a {
    color: #212121;
    padding: 0.5rem 1.25rem;
    display: block;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: rgba(40, 116, 240, 0.08);
    color: var(--primary);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(40, 116, 240, 0.15);
    color: var(--text-bright);
    padding-left: 1.75rem;
}

.nav-cta {
    background: var(--accent-gradient);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    color: #ffffff !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.nav-cta:hover {
    box-shadow: 0 6px 20px var(--primary-glow);
    transform: translateY(-2px);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 116, 240, 0.6);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-bright);
    transition: var(--transition-fast);
}

/* Layout Utilities */
.section {
    padding: 6rem 2rem;
    position: relative;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Button Component */
.btn {
    display: inline-block;
    padding: 0.8rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-bright);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 116, 240, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-bright);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #070a13;
    font-weight: 700;
    box-shadow: 0 4px 20px var(--secondary-glow);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 225, 27, 0.6);
}

/* Glassmorphic Card */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-color-hover);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(40, 116, 240, 0.15);
}

/* Animated Hero Card (replaces flat black glass background with a moving gradient glow) */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(40, 116, 240, 0.3);
    box-shadow: 0 0 40px rgba(40, 116, 240, 0.18);
    animation: float 4s ease-in-out infinite, fadeInUp 0.9s ease-out 0.1s both;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.hero-image-glow {
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 0deg, rgba(40,116,240,0.22), rgba(255,225,27,0.12), transparent 60%);
    animation: heroRotate 14s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.hero-animated-card {
    background: linear-gradient(135deg, rgba(40, 116, 240, 0.18), rgba(255, 225, 27, 0.10), rgba(40, 116, 240, 0.18));
    background-size: 200% 200%;
    border: 1px solid rgba(40, 116, 240, 0.35);
    box-shadow: 0 0 45px rgba(40, 116, 240, 0.2);
    animation: float 4s ease-in-out infinite, gradientShift 8s ease infinite, fadeInUp 0.9s ease-out 0.3s both;
}

.hero-animated-card:hover {
    box-shadow: 0 0 60px rgba(40, 116, 240, 0.35);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    color: var(--text-bright);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Page Hero */
.hero {
    min-height: 80vh;
    padding-top: 10rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 30%, rgba(40, 116, 240, 0.15) 0%, transparent 45%),
                radial-gradient(circle at 80% 70%, rgba(255, 225, 27, 0.10) 0%, transparent 45%),
                radial-gradient(circle at 50% 50%, rgba(40, 116, 240, 0.08) 0%, transparent 60%);
    background-size: 180% 180%;
    animation: heroGradientMove 12s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: conic-gradient(from 0deg, rgba(40,116,240,0.08), rgba(255,225,27,0.05), rgba(40,116,240,0.08));
    animation: heroRotate 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

@keyframes heroGradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes heroRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 650px;
    animation: fadeInUp 0.9s ease-out both;
}

.hero-content .hero-subtitle { animation: fadeInUp 0.7s ease-out 0.05s both; }
.hero-content h1 { animation: fadeInUp 0.8s ease-out 0.15s both; }
.hero-content .hero-desc { animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero-content .hero-actions { animation: fadeInUp 0.8s ease-out 0.45s both; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: var(--primary);
    animation: pulseLine 2.5s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% { width: 20px; opacity: 1; }
    50% { width: 32px; opacity: 0.6; }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-actions .btn { animation: none; }

/* Interactive Calculator Component */
.calculator-box {
    padding: 2rem;
    border: 1px solid rgba(40, 116, 240, 0.2);
    box-shadow: 0 0 30px rgba(40, 116, 240, 0.1);
}

.calc-title {
    margin-bottom: 1.5rem;
    text-align: center;
}

.slider-group {
    margin-bottom: 2rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.slider-value {
    color: var(--secondary);
    font-weight: 700;
}

.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary);
    transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 12px;
}

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

.result-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.result-val {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
}

/* Accordion FAQs */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-item {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: 0 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-item.active {
    border-color: rgba(40, 116, 240, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 350px;
}

.faq-icon {
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

/* Grid & Features Section */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(40, 116, 240, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    border: 1px solid rgba(40, 116, 240, 0.2);
}

.feature-title {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.glass-card .feature-desc[style*="secondary"] {
    color: #b45309 !important;
}

/* Steps timeline */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.step-card {
    display: flex;
    gap: 2rem;
    position: relative;
    padding-left: 3rem;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 0 15px var(--primary-glow);
}

.step-info {
    flex: 1;
}

.step-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Service Tiers / Pricing Matrix Table */
.pricing-table-container {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--bg-surface);
}

.pricing-table th, .pricing-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.pricing-table th {
    background: rgba(255, 255, 255, 0.02);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-bright);
}

.pricing-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Checklist Tool */
.checklist-box {
    margin-top: 2rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.checklist-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.checklist-checkbox.checked {
    background: var(--primary);
}

.checklist-checkbox.checked::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.checklist-text {
    flex: 1;
}

.checklist-text h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.checklist-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.checklist-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.checklist-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: var(--transition-smooth);
}

.checklist-score {
    text-align: center;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-bright);
}

/* Service Deep-dive Content Styling */
.guide-content {
    line-height: 1.75;
    font-size: 1.05rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guide-content h3 {
    font-size: 1.75rem;
    margin-top: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.guide-content h4 {
    font-size: 1.35rem;
    margin-top: 1rem;
}

.guide-content p {
    color: var(--text-muted);
}

.guide-content ul, .guide-content ol {
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-muted);
}

.guide-content li strong {
    color: var(--text-bright);
}

.infobox {
    background: rgba(40, 116, 240, 0.05);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.infobox-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 0.5rem;
}

.infobox-content {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.infobox-warning {
    background: rgba(255, 225, 27, 0.03);
    border-left-color: var(--secondary);
}

/* Footer Section */
footer {
    background: #04060d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 2rem 2rem 2rem;
    margin-top: auto;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.footer-logo span.blue { color: #ffffff; }
.footer-logo span.yellow { color: var(--secondary); }

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h5 {
    color: #ffffff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 0.25rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    /* font-weight: 500; */
}
main .contact-item svg,
main .contact-item {
    color: #1f2937;
}

main .contact-item {
    color: #4b5563;
    font-weight: 500;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive CSS */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: #070a13;
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        overflow-y: auto;
        border-top: 1px solid var(--border-color);
    }
    .nav-links.active {
        left: 0;
    }
    .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1.5rem;
    display: none;
}
.dropdown.active .dropdown-menu {
    display: block;
}
.dropdown-menu li a {
    color: rgba(255, 255, 255, 0.75) !important;
}
.dropdown-menu li a:hover {
    color: var(--secondary) !important;
}
.dropdown > a {
    color: rgba(255, 255, 255, 0.85) !important;
    opacity: 1 !important;
}

.dropdown.active > a {
    color: var(--secondary) !important;
    opacity: 1 !important;
}
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .hero {
        padding-top: 8rem;
        min-height: auto;
        padding-bottom: 4rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 4rem 1.5rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.nav-links a.active {
    color: var(--secondary) !important;
    font-weight: 700;
}

/* Animations classes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Animated Image Showcase Section */
.image-showcase .container.grid-2 {
    align-items: center;
}

.showcase-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(40, 116, 240, 0.25);
    box-shadow: 0 0 50px rgba(40, 116, 240, 0.15);
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.showcase-glow {
    position: absolute;
    inset: -30%;
    background: conic-gradient(from 0deg, rgba(40,116,240,0.25), rgba(255,225,27,0.15), transparent 60%);
    animation: heroRotate 14s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    animation: fadeInUp 0.9s ease-out both;
}

.showcase-content h2 {
    font-size: 2.25rem;
}

@media (max-width: 768px) {
    .image-showcase .container.grid-2 {
        gap: 2.5rem;
    }
}


/* Animated Image Showcase Section */
.showcase-section {
    position: relative;
    overflow: hidden;
}

.showcase-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
}

.showcase-image-frame {
    position: relative;
    width: 100%;
    border-radius: 20px;
    padding: 8px;
    background: var(--accent-gradient);
    box-shadow: 0 20px 50px rgba(40, 116, 240, 0.25);
    z-index: 2;
}

.showcase-image {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
}

/* Floating animation */
.float-animation {
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Glowing background orbs */
.showcase-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 1;
    animation: pulseOrb 6s ease-in-out infinite;
}

.orb-blue {
    width: 280px;
    height: 280px;
    background: var(--primary);
    top: -40px;
    left: -60px;
    animation-delay: 0s;
}

.orb-yellow {
    width: 220px;
    height: 220px;
    background: var(--secondary);
    bottom: -30px;
    right: -50px;
    animation-delay: 2s;
}

@keyframes pulseOrb {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.45; }
}

/* Dual Image Showcase Section */
.dual-showcase-section {
    position: relative;
    overflow: hidden;
}

.dual-showcase-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    flex-wrap: wrap;
}

.dual-image-card {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 460px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.card-before {
    transform: rotate(-3deg) translateY(10px);
}

.card-after {
    transform: rotate(3deg) translateY(-10px);
}

.dual-image-card:hover {
    transform: rotate(0deg) translateY(0) scale(1.03);
    box-shadow: 0 15px 40px var(--primary-glow);
    z-index: 3;
}

.dual-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.dual-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.tag-before {
    background: rgba(220, 38, 38, 0.9);
    color: #ffffff;
}

.tag-after {
    background: var(--gold-gradient);
    color: #1a1200;
}

.dual-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.connector-line {
    width: 3px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 10px;
}

.connector-arrow {
    font-size: 1.8rem;
    color: var(--primary);
    animation: arrowPulse 1.6s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(8px); opacity: 1; }
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
    .dual-showcase-grid {
        flex-direction: column;
    }
    .connector-arrow {
        transform: rotate(90deg);
    }
    .card-before, .card-after {
        transform: none;
    }
}

/* Split Diagonal Image Section */
.split-image-section {
    position: relative;
    overflow: hidden;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.split-text h2 {
    margin: 0.5rem 0;
}

.split-image-wrapper {
    position: relative;
    width: 100%;
}

.split-image-clip {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.split-image-clip:hover {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.split-image-clip:hover .split-image {
    transform: scale(1.05);
}

/* Floating stat cards */
.stat-float-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color-hover);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px var(--primary-glow);
    animation: statFloat 3.5s ease-in-out infinite;
}

.stat-card-1 {
    top: 10%;
    left: -8%;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: 8%;
    right: -6%;
    animation-delay: 1.5s;
}

@keyframes statFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .split-grid {
        grid-template-columns: 1fr;
    }
    .split-image-clip {
        clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);
    }
    .stat-card-1, .stat-card-2 {
        left: 10px;
        right: auto;
    }
}

/* Animated Impact Counter Section */
.impact-section {
    position: relative;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.impact-card {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.impact-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color-hover);
    box-shadow: 0 15px 35px var(--primary-glow);
}

.impact-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.impact-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.impact-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0.5rem 0 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impact-bar {
    width: 100%;
    height: 6px;
    background: rgba(40, 116, 240, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.impact-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-gradient);
    border-radius: 10px;
    transition: width 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.whatsapp-btn {
    width: 58px;
    height: 58px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
    transition: transform 0.2s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.08);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #075E54;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #075E54;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobile responsive */
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 18px;
        right: 18px;
    }
    .whatsapp-btn {
        width: 52px;
        height: 52px;
    }
    .whatsapp-tooltip {
        display: none; /* mobile par tooltip hide, sirf button dikhega */
    }
}

/* ===== Animated Stats Section ===== */

.stats-animate-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    padding: 2rem 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.stat-card.stat-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(40, 116, 240, 0.15);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--primary-color, #2874f0), #f4c430);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted, #666);
    margin: 0;
}

/* Stagger effect for cards */
.stat-card:nth-child(1) { transition-delay: 0s; }
.stat-card:nth-child(2) { transition-delay: 0.15s; }
.stat-card:nth-child(3) { transition-delay: 0.3s; }
.stat-card:nth-child(4) { transition-delay: 0.45s; }

/* Responsive */
@media (max-width: 900px) {
    .stats-animate-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .stats-animate-section .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 1.9rem;
    }
}



