/* ============================================
   UNIVERSAL SETTINGS — Change these to restyle everything
   ============================================ */
:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #dbeafe;
    --secondary-color: #ffcc00;
    --accent-color: #f0f4f8;
    --text-main: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-body: #ffffff;
    --bg-card: #ffffff;
    --bg-footer: #002240;
    --success: #16a34a;
    --danger: #dc2626;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --fs-h1: clamp(2.2rem, 5vw, 3.5rem);
    --fs-h2: clamp(1.6rem, 4vw, 2.5rem);
    --fs-h3: 1.25rem;
    --fs-body: 1rem;
    --fs-small: 0.875rem;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --container-width: 1200px;

    /* UI */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 50px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: 0.3s ease;
}

/* ============================================
   RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-main);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: var(--fs-body);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
    background: var(--secondary-color);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.desktop-only {
    display: block;
}

/* ============================================
   HEADER
   ============================================ */
header {
    background: var(--primary-color);
    color: var(--text-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-subtitle {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Language Toggle */
.lang-toggle-nav {
    display: flex;
    gap: 0.25rem;
    margin-left: var(--spacing-sm);
    align-items: center;
}

.lang-toggle-nav button {
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition);
}

.lang-toggle-nav button.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* ============================================
   HERO SECTION — Full-bleed background with gradient overlay
   ============================================ */
.hero {
    background: url('assets/hero-bg.jpg') no-repeat center center / cover;
    color: var(--text-white);
    min-height: 520px;
    padding: 5rem 0 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Gradient overlay: dark left for text, lighter right for image */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(0, 15, 50, 0.94) 0%,
            rgba(0, 25, 65, 0.88) 30%,
            rgba(10, 40, 100, 0.6) 55%,
            rgba(20, 60, 130, 0.3) 75%,
            rgba(37, 99, 235, 0.1) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Text content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    padding: 1rem 0;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: var(--text-white);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.highlight {
    color: var(--secondary-color);
    display: block;
}

/* On mobile, let it wrap inline naturally */
@media (max-width: 768px) {
    .highlight {
        display: inline;
    }
}

/* LIC logo in hero */
.hero-lic-logo {
    margin-bottom: 1rem;
}

.hero-lic-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    /* White logo */
    opacity: 0.9;
}

/* Urgency badge — orange for visibility */
.hero-badge {
    display: inline-block;
    background: rgba(234, 88, 12, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1.25rem;
    border-radius: 999px;
    font-size: var(--fs-small);
    margin-bottom: 1.25rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.03em;
    animation: fadeIn 0.6s ease-out;
}

/* Earnings subtitle under the main title */
.hero-earning {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Bullet list */
.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.hero-bullets li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.3rem 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
}

/* Secondary outline button for hero */
.btn-hero-secondary {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--fs-body);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    font-size: var(--fs-h2);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.section-title p {
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */
.agent-card,
.service-card,
.benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    color: var(--text-main);
}

.agent-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Agent Types Grid */
.agent-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.agent-card {
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

.agent-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--primary-color);
    padding: var(--spacing-lg) 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: var(--fs-small);
    opacity: 0.9;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
    background: var(--accent-color);
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-main);
    font-size: var(--fs-small);
}

.trust-badge span:first-child {
    font-size: 1.4rem;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-section {
    padding: var(--spacing-xl) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-color);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-size: var(--fs-h3);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: #f8fafc;
    padding: var(--spacing-xl) 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--secondary-color);
    transition: transform var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-size: var(--fs-body);
}

.author-info p {
    margin: 0;
    font-size: var(--fs-small);
    color: #999;
}

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--primary-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    margin-bottom: var(--spacing-md);
    opacity: 0.92;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--bg-footer);
    color: #ccc;
    padding: var(--spacing-lg) 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: #ccc;
    transition: color var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: 0.75rem;
}

.footer-contact-item a {
    color: #ccc;
}

.footer-contact-item a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-xs);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: background var(--transition), transform var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: var(--fs-small);
}

.footer-trust {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

/* ============================================
   AGENT DETAIL PAGE STYLES
   ============================================ */
.agent-detail {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid #eee;
}

.agent-detail:nth-child(even) {
    background-color: var(--accent-color);
}

.agent-detail h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.agent-detail ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.agent-detail li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

.highlight-box {
    background: var(--primary-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.highlight-box h3 {
    color: var(--primary-dark);
}

.apply-btn-container {
    margin-top: var(--spacing-md);
}

/* Process Steps */
.process-section {
    background: var(--accent-color);
    padding: var(--spacing-xl) 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    text-align: center;
}

.process-step {
    padding: var(--spacing-md);
}

.step-num {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.2rem;
    font-weight: 700;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-form {
    background: #fff;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: var(--fs-body);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info-box {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.contact-info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.info-item span {
    font-size: 1.2rem;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    padding: var(--spacing-xl) 0;
    background: var(--accent-color);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.step-card h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xs);
}

.step-card p {
    color: var(--text-light);
    font-size: var(--fs-small);
    margin-bottom: 0;
}

.step-connector {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    padding: 0 0.5rem;
    margin-top: 2rem;
    font-weight: 700;
}

/* ============================================
   HIGHLIGHTED AGENT CARD
   ============================================ */
.agent-card-highlighted {
    border-top: 4px solid var(--secondary-color);
    border: 2px solid var(--secondary-color);
    position: relative;
    background: linear-gradient(to bottom, #fffdf0, var(--bg-card));
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #1a1a1a;
    padding: 0.2rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: var(--fs-small);
    margin-top: var(--spacing-sm);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: var(--spacing-sm) 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .desktop-only {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 3.5rem 0 3rem;
        background-position: 65% center;
    }

    .hero::before {
        background: linear-gradient(180deg,
                rgba(0, 15, 50, 0.92) 0%,
                rgba(0, 20, 60, 0.85) 60%,
                rgba(10, 40, 100, 0.75) 100%);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 6vw, 2.1rem);
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 var(--spacing-sm);
        justify-content: center;
    }

    .hero-bullets {
        padding-left: 0;
    }

    .hero-bullets li,
    .hero-earning {
        text-align: center;
    }

    .agent-types-grid,
    .benefits-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 var(--spacing-md);
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .step-connector {
        display: none;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }

    .agent-card-highlighted {
        transform: scale(1);
    }
}

/* ============================================
   HINDI FONT SUPPORT
   ============================================ */
[lang="hi"] body {
    font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
}

[lang="hi"] h1,
[lang="hi"] h2,
[lang="hi"] h3,
[lang="hi"] h4 {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 72px;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}