/*
 * Judah Global Support - Premium Corporate Website
 * Main Stylesheet with Indian Premium Design System
 * Author: Judah Global
 */

/* ========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
======================================== */
:root {
    /* Primary Colors - Indian Premium Palette */
    --royal-blue: #1a365d;
    --royal-blue-light: #2c5282;
    --royal-blue-dark: #0d1b2a;
    --deep-saffron: #ff6b35;
    --saffron-light: #ff8c5a;
    --saffron-dark: #e55a25;
    --gold: #d4a853;
    --gold-light: #f0c674;
    --gold-dark: #b8942e;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --black: #0a0a0a;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--royal-blue) 0%, var(--royal-blue-dark) 100%);
    --gradient-saffron: linear-gradient(135deg, var(--deep-saffron) 0%, var(--saffron-dark) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(13, 27, 42, 0.98) 100%);

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   RESET & BASE STYLES
======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--royal-blue-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: var(--space-md);
}

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

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

/* ========================================
   LAYOUT UTILITIES
======================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-lg);
}

.section {
    padding: var(--space-3xl) 0;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.flex {
    display: flex;
}

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

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

.grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

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

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

/* Grid Responsive Breakpoints */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .grid-2 {
        gap: 1.5rem;
    }
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(26, 54, 93, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    padding: var(--space-sm) 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: var(--transition-fast);
}

.navbar.scrolled .logo img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-text span {
    color: var(--gold);
}

/* Footer logo */
.footer .logo img {
    height: 45px;
}

@media (max-width: 576px) {
    .logo img {
        height: 40px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: var(--space-sm) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-normal);
}

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

.nav-link:hover {
    color: var(--gold);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    padding: var(--space-sm) 0;
}

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

.dropdown-item {
    display: block;
    padding: var(--space-sm) var(--space-lg);
    color: var(--dark-gray);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--off-white);
    color: var(--deep-saffron);
    padding-left: calc(var(--space-lg) + 5px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
    }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--royal-blue-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

/* Animated Background Patterns */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(212, 168, 83, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(26, 54, 93, 0.2) 0%, transparent 70%);
    z-index: 1;
}

/* Floating Elements */
.hero-float {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.1;
    z-index: 1;
}

.hero-float-1 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.hero-float-2 {
    width: 200px;
    height: 200px;
    background: var(--deep-saffron);
    bottom: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-float-3 {
    width: 150px;
    height: 150px;
    background: var(--white);
    top: 40%;
    right: 20%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: var(--space-lg);
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    animation: fadeInDown 0.8s ease forwards;
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero h1 span {
    color: var(--gold);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* ========================================
   HERO SLIDER
======================================== */
.hero-slider {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Slide Backgrounds */
.hero-slide[data-slide="0"] {
    background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.7)), url('../images/hero/slide1.jpg');
}

.hero-slide[data-slide="1"] {
    background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.7)), url('../images/hero/slide2.jpg');
}

.hero-slide[data-slide="2"] {
    background-image: linear-gradient(rgba(13, 71, 161, 0.8), rgba(13, 71, 161, 0.7)), url('../images/hero/slide3.jpg');
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide .hero-content {
    animation: none;
    opacity: 1;
}

.hero-slide.active .hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-slide.active .hero-badge {
    animation: fadeInDown 0.8s ease forwards;
}

.hero-slide.active h1 {
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-slide.active .hero-tagline {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-slide.active .hero-cta {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Slider Navigation Dots */
.hero-slider-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    padding: 0;
    min-height: auto;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: var(--gold);
    border-color: var(--white);
    transform: scale(1.2);
}

/* Slider Nav Mobile Responsive */
@media (max-width: 992px) {
    .hero-slider-nav {
        bottom: 80px;
        gap: 10px;
        padding: 8px 16px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    .hero-slider-nav {
        bottom: 100px; /* Above mobile sticky bar */
        gap: 12px;
        padding: 10px 18px;
    }

    .slider-dot {
        width: 14px;
        height: 14px;
        /* Touch-friendly size */
    }

    .slider-dot.active {
        transform: scale(1.15);
    }
}

@media (max-width: 576px) {
    .hero-slider-nav {
        bottom: 90px;
        gap: 10px;
        padding: 8px 14px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }
}

/* Slider Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-arrow:hover {
    background: var(--gold);
    color: var(--royal-blue-dark);
}

.hero-slider-arrow.prev {
    left: 30px;
}

.hero-slider-arrow.next {
    right: 30px;
}

@media (max-width: 768px) {
    .hero-slider-arrow {
        display: none;
    }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-saffron);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--royal-blue-dark);
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--royal-blue-dark);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.5);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4); }
    50% { box-shadow: 0 4px 40px rgba(255, 107, 53, 0.8), 0 0 60px rgba(255, 107, 53, 0.4); }
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--deep-saffron);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-title span {
    color: var(--deep-saffron);
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

/* ========================================
   CARDS
======================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-saffron);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.card:hover .card-icon {
    background: var(--gradient-saffron);
    transform: rotateY(180deg);
}

.card-title {
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

.card-text {
    color: var(--medium-gray);
    margin-bottom: var(--space-md);
}

.card-link {
    color: var(--deep-saffron);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
}

.card-link:hover {
    gap: var(--space-sm);
}

/* Glass Card */
.card-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* ========================================
   SERVICE CARDS (Animated)
======================================== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition-slow);
    z-index: 0;
}

.service-card:hover::after {
    height: 100%;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover * {
    color: var(--white);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    background: var(--off-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--deep-saffron);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(10deg);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
    transition: var(--transition-normal);
}

.service-card p {
    color: var(--medium-gray);
    transition: var(--transition-normal);
}

/* ========================================
   STATS SECTION
======================================== */
.stats-section {
    background: var(--gradient-primary);
    padding: var(--space-2xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.2);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.why-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.why-item:hover {
    background: var(--off-white);
    transform: translateX(10px);
}

.why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-saffron);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.why-content h4 {
    margin-bottom: var(--space-xs);
}

.why-content p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* ========================================
   NRI SECTION (Emotional)
======================================== */
.nri-section {
    background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 100%);
    position: relative;
    overflow: hidden;
}

.nri-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.nri-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.nri-text {
    color: var(--white);
}

.nri-text h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.nri-text h2 span {
    color: var(--gold);
}

.nri-tagline {
    font-size: 1.5rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: var(--space-lg);
    font-family: var(--font-heading);
}

.nri-features {
    margin: var(--space-xl) 0;
}

.nri-feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nri-feature:last-child {
    border-bottom: none;
}

.nri-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.nri-image {
    position: relative;
}

.nri-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.nri-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--gold);
    border-radius: var(--radius-xl);
    z-index: -1;
}

/* ========================================
   COUNTRIES/GLOBAL SECTION
======================================== */
.countries-section {
    background: var(--off-white);
}

.countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.country-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.country-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.country-flag {
    font-size: 2rem;
}

.country-name {
    font-weight: 600;
    color: var(--royal-blue-dark);
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-md);
    left: var(--space-lg);
    font-size: 5rem;
    color: var(--deep-saffron);
    opacity: 0.2;
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.testimonial-info p {
    color: var(--medium-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* ========================================
   CONTACT FORM
======================================== */
.contact-section {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
}

.contact-info {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--gold);
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.contact-details p, .contact-details a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--gold);
    color: var(--royal-blue-dark);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--dark-gray);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--deep-saffron);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--royal-blue-dark);
    color: var(--white);
    padding-top: var(--space-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: var(--space-lg) 0;
}

.footer h4 {
    color: var(--gold);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: var(--space-sm);
}

.footer-bottom {
    padding: var(--space-lg) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ========================================
   STICKY CTA BUTTONS
======================================== */
.sticky-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sticky-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.sticky-btn:hover {
    transform: scale(1.1);
}

.sticky-btn.whatsapp {
    background: #25d366;
}

.sticky-btn.phone {
    background: var(--deep-saffron);
}

.sticky-btn.callback {
    background: var(--gold);
    color: var(--royal-blue-dark);
}

.sticky-btn.support {
    background: var(--gold);
    color: var(--royal-blue-dark);
}

/* Tooltip */
.sticky-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 65px;
    background: var(--dark-gray);
    color: var(--white);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.sticky-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   PAGE HEADER (Inner Pages)
======================================== */
.page-header {
    background: var(--gradient-primary);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-header h1 span {
    color: var(--gold);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ========================================
   PROCESS/STEPS SECTION
======================================== */
.process-section {
    background: var(--off-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--light-gray);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-saffron);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.process-step h3 {
    margin-bottom: var(--space-sm);
}

.process-step p {
    color: var(--medium-gray);
}

/* ========================================
   PRICING/FEATURE LIST
======================================== */
.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--light-gray);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .check-icon {
    width: 24px;
    height: 24px;
    background: var(--deep-saffron);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ========================================
   CALLBACK MODAL
======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--deep-saffron);
    color: var(--white);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

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

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nri-content {
        grid-template-columns: 1fr;
    }

    .nri-image {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .sticky-cta {
        display: none;
    }

    .mobile-sticky-bar {
        display: block;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--space-md);
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: var(--space-md);
    }

    .contact-form-wrapper {
        padding: var(--space-lg);
    }

    .contact-info {
        padding: var(--space-lg);
    }
}

/* ========================================
   ANIMATIONS (Keyframes)
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--light-gray);
    border-top-color: var(--deep-saffron);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }
.mb-5 { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }
.mt-5 { margin-top: var(--space-2xl); }

.py-1 { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-2 { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-3 { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-4 { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-5 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

.hidden { display: none !important; }
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }

.bg-primary { background: var(--gradient-primary); }
.bg-saffron { background: var(--gradient-saffron); }
.bg-white { background: var(--white); }
.bg-offwhite { background: var(--off-white); }

/* ========================================
   ENHANCED MOBILE RESPONSIVE DESIGN
   Complete Mobile UX Fix
======================================== */

/* === TABLET LANDSCAPE (1024px) === */
@media (max-width: 1024px) {
    :root {
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }
}

/* === TABLET PORTRAIT (992px) === */
@media (max-width: 992px) {
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }

    /* Mobile Navigation - Full Screen Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 100%);
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: var(--space-xl) var(--space-xxl);
        gap: 0;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-menu > li {
        width: 100%;
        text-align: left;
    }

    .nav-link {
        padding: var(--space-md) var(--space-lg);
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.15rem;
        letter-spacing: 0.5px;
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
        text-align: left;
        display: block;
    }

    .nav-dropdown > .nav-link {
        display: block;
        width: 100%;
        text-align: left;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.15);
        border-radius: var(--radius-lg);
        margin: var(--space-sm) 0;
        padding: var(--space-sm);
        min-width: 100%;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.95rem;
        border-radius: var(--radius-sm);
        color: rgba(255, 255, 255, 0.9);
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--gold);
        padding-left: var(--space-md);
    }

    .dropdown-item i {
        color: var(--gold);
        width: 24px;
    }

    .nav-menu .btn {
        width: 80%;
        max-width: 280px;
        margin-top: var(--space-xl);
        justify-content: center;
        padding: var(--space-md) var(--space-xl);
    }

    /* Menu Toggle Animation */
    .menu-toggle {
        z-index: 1001;
        padding: 10px;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 26px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s ease;
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Logo adjustments for mobile */
    .logo-text {
        font-size: 1.35rem;
    }

    /* Page Header */
    .page-header {
        min-height: 35vh;
        padding: 5rem 0 2rem;
    }

    .page-header h1 {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    /* Cards */
    .card {
        padding: var(--space-lg);
    }

    /* Service Cards Grid */
    .service-cards-grid {
        gap: var(--space-lg);
    }

    /* Grid inline style overrides */
    [style*="gap: 4rem"] {
        gap: 2rem !important;
    }

    [style*="gap: 3rem"] {
        gap: 1.5rem !important;
    }
}

/* === MOBILE LANDSCAPE (768px) === */
@media (max-width: 768px) {
    /* Global Spacing Adjustments */
    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Body padding for mobile sticky bar */
    body {
        padding-bottom: 75px;
    }

    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-bottom: 80px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }

    /* Hero Slider Mobile */
    .hero-slide-content {
        padding: 1rem;
    }

    /* Scroll Indicator - hide on mobile */
    .scroll-indicator {
        display: none;
    }

    /* Desktop sticky buttons - hide */
    .sticky-cta {
        display: none !important;
    }

    /* Mobile sticky bar - show */
    .mobile-sticky-bar {
        display: block !important;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.75rem;
        margin-bottom: 0.75rem;
    }

    /* Stats Section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-item {
        padding: 1rem 0.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-item::after {
        display: none;
    }

    /* Cards Mobile Enhancement */
    .card {
        padding: 1.25rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .card h3,
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

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

    /* Service Cards */
    .service-card {
        padding: 1.25rem;
    }

    .service-card-icon,
    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: var(--space-md);
    }

    /* Process Steps */
    .process-step {
        padding: var(--space-lg);
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Forms Mobile */
    .form-input,
    .form-select,
    .form-textarea {
        padding: var(--space-md);
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-group {
        margin-bottom: var(--space-md);
    }

    /* Contact Section */
    .contact-info,
    .contact-form-wrapper {
        padding: var(--space-lg);
        border-radius: var(--radius-lg);
    }

    .contact-info-item {
        padding: var(--space-md);
    }

    /* Footer Mobile */
    .footer {
        padding: var(--space-xl) 0 var(--space-lg);
    }

    .footer-grid {
        gap: var(--space-lg);
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: var(--space-md);
    }

    /* Buttons Mobile */
    .btn {
        padding: var(--space-md) var(--space-lg);
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: var(--space-md) var(--space-xl);
    }

    .btn-sm {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.85rem;
    }

    /* Modal Mobile */
    .modal {
        margin: var(--space-md);
        max-height: 85vh;
        max-width: calc(100% - var(--space-lg));
        overflow-y: auto;
        border-radius: var(--radius-xl);
        padding: var(--space-lg);
    }

    .modal h3 {
        font-size: 1.25rem;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        top: var(--space-sm);
        right: var(--space-sm);
    }

    .modal-overlay {
        padding: var(--space-md);
    }

    /* Testimonials */
    .testimonial-card {
        padding: var(--space-lg);
    }

    /* FAQ Section */
    .faq-item {
        padding: var(--space-md);
    }

    /* Page specific - NRI Hero */
    .nri-hero {
        min-height: auto;
        padding: 7rem 0 3rem;
    }

    .nri-hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .nri-hero-content h1[style*="font-size"] {
        font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    }

    .nri-hero-content p[style*="font-size: 1.2rem"] {
        font-size: 1rem !important;
    }

    .phone-highlight {
        padding: var(--space-md) var(--space-lg);
        font-size: 1.2rem;
        width: 100%;
        justify-content: center;
    }

    .whatsapp-big {
        width: 100%;
        justify-content: center;
    }

    /* NRI Hero Form on mobile */
    .nri-hero .form-input,
    .nri-hero .form-select,
    .nri-hero .form-textarea {
        font-size: 16px !important; /* Prevent iOS zoom */
    }

    /* Pain points section */
    .pain-points {
        margin: var(--space-md) 0;
    }

    .pain-points p {
        font-size: 0.9rem !important;
        line-height: 1.6;
    }
}

/* === MOBILE PORTRAIT (576px) === */
@media (max-width: 576px) {
    /* Extra Small Screen Adjustments */
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2rem;
        --space-2xl: 2.5rem;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    /* Hero Fine Tuning */
    .hero-content {
        padding: var(--space-md) var(--space-sm);
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 0.95rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }

    /* Stats 2 column on small screens */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    /* Cards */
    .card {
        padding: var(--space-md) var(--space-sm);
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Grid 4 to single column */
    .grid-4 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    /* Contact quick cards */
    .quick-contact-card {
        padding: var(--space-md);
    }

    /* Footer */
    .footer-bottom p {
        font-size: 0.85rem;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.85rem;
    }

    /* Blog cards */
    .blog-card-title {
        font-size: 1.1rem;
    }

    .blog-card-excerpt {
        font-size: 0.9rem;
    }
}

/* === EXTRA SMALL SCREENS (400px) === */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: var(--space-sm);
    }
}

/* ========================================
   UNIQUE MOBILE STICKY BOTTOM BAR
======================================== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
    padding: 8px 0;
}

.mobile-sticky-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: block !important;
    }

    body {
        padding-bottom: 70px;
    }

    .sticky-cta {
        display: none !important;
    }
}

.mobile-cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs) var(--space-sm);
    color: var(--royal-blue-dark);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: var(--transition-fast);
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-md);
    min-width: 60px;
    flex: 1;
}

.mobile-cta-btn i {
    font-size: 1.25rem;
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.mobile-cta-btn:hover,
.mobile-cta-btn:active {
    color: var(--deep-saffron);
    background: rgba(255, 107, 53, 0.1);
}

.mobile-cta-btn.primary {
    color: var(--royal-blue);
}

.mobile-cta-btn.primary:hover,
.mobile-cta-btn.primary:active {
    background: rgba(26, 54, 93, 0.1);
}

/* Pulse animation for mobile CTA */
.mobile-cta-btn.primary i {
    animation: mobileCtaPulse 2s ease-in-out infinite;
}

@keyframes mobileCtaPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ========================================
   MOBILE-SPECIFIC UNIQUE ENHANCEMENTS
======================================== */

/* Floating Action Button Style */
@media (max-width: 768px) {
    /* Card Swipe Indicator */
    .card-swipe-hint {
        display: block;
        text-align: center;
        color: var(--medium-gray);
        font-size: 0.8rem;
        margin-top: var(--space-sm);
    }

    .card-swipe-hint i {
        animation: swipeHint 1.5s ease-in-out infinite;
    }

    @keyframes swipeHint {
        0%, 100% { transform: translateX(0); opacity: 0.5; }
        50% { transform: translateX(10px); opacity: 1; }
    }

    /* Touch-friendly tap targets */
    a, button, .btn, .nav-link, .dropdown-item {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    /* Better spacing for touch */
    .nav-link {
        min-height: 48px;
    }

    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Remove hover effects on touch devices */
    @media (hover: none) {
        .card:hover,
        .service-card:hover,
        .blog-card:hover {
            transform: none;
            box-shadow: var(--shadow-md);
        }

        .btn:hover::before {
            display: none;
        }
    }

    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Map responsiveness */
    iframe[src*="google.com/maps"] {
        max-width: 100%;
    }

    /* Map overlay card mobile */
    .map-overlay-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        max-width: 100% !important;
        border-radius: 0;
        margin: 0;
    }
}

/* ========================================
   MOBILE ANIMATIONS & MICRO-INTERACTIONS
======================================== */
@media (max-width: 768px) {
    /* Subtle entrance animations */
    [data-aos] {
        transition-duration: 0.6s !important;
    }

    /* Active state feedback */
    .btn:active {
        transform: scale(0.97);
    }

    .card:active {
        transform: scale(0.99);
    }

    /* Loading states */
    .loading-spinner {
        width: 30px;
        height: 30px;
    }

    /* Focus states for accessibility */
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: 2px solid var(--deep-saffron);
        outline-offset: 2px;
    }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
    .navbar,
    .sticky-cta,
    .mobile-sticky-bar,
    .hero-slider-nav,
    .hero-slider-arrow,
    .scroll-indicator {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    body {
        padding-bottom: 0;
    }
}

/* ========================================
   LANDSCAPE MOBILE ORIENTATION
======================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }

    .hero-content {
        padding: var(--space-md);
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .page-header {
        min-height: 30vh;
        padding: 4rem 0 2rem;
    }

    .nri-hero {
        padding: 5rem 0 2rem;
    }
}

/* ========================================
   RESPONSIVE OVERRIDES FOR INLINE STYLES
======================================== */

/* Grid-2 layouts - reduce gap on mobile */
@media (max-width: 992px) {
    .grid-2[style*="gap: 4rem"],
    .grid-2[style*="gap: 3rem"] {
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .grid-2[style*="gap"] {
        gap: 1.5rem !important;
    }

    /* About section mini stats */
    #about-intro [style*="display: flex"][style*="gap: 2rem"] {
        gap: 1rem !important;
        justify-content: center;
    }

    #about-intro [style*="font-size: 2.5rem"] {
        font-size: 1.75rem !important;
    }

    /* Why Choose box inside about */
    [style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }

    [style*="padding: 2.5rem"] {
        padding: 1.25rem !important;
    }

    [style*="padding: 2rem"] {
        padding: 1rem !important;
    }

    /* NRI Section Features */
    .nri-features {
        gap: var(--space-sm) !important;
    }

    .nri-feature {
        padding: var(--space-sm) !important;
    }

    .nri-feature-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    .nri-feature strong {
        font-size: 0.9rem;
    }

    .nri-feature p {
        font-size: 0.8rem !important;
    }

    /* NRI Testimonials */
    .nri-image > div {
        padding: 1rem !important;
    }

    .nri-image [style*="padding: 1.5rem"] {
        padding: 1rem !important;
    }

    .nri-image [style*="width: 50px"] {
        width: 40px !important;
        height: 40px !important;
    }

    /* Contact grid mobile */
    .contact-grid {
        gap: var(--space-lg);
    }

    /* Countries grid */
    .countries-grid {
        gap: var(--space-sm);
    }

    .country-item {
        padding: var(--space-sm) var(--space-md);
    }

    .country-flag {
        font-size: 1.5rem;
    }

    .country-name {
        font-size: 0.8rem;
    }

    /* Why Choose Grid */
    .why-choose-grid {
        gap: var(--space-md);
    }

    .why-item {
        padding: var(--space-md);
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Footer grid mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: var(--space-md);
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-sm) var(--space-md);
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-contact ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-social {
        justify-content: center;
    }

    /* CTA buttons in sections */
    [style*="display: flex"][style*="gap: 1rem"] {
        flex-direction: column;
        width: 100%;
    }

    [style*="display: flex"][style*="gap: 1rem"] .btn {
        width: 100%;
        justify-content: center;
    }

    /* ========================================
       COMPREHENSIVE INLINE STYLE MOBILE FIXES
    ======================================== */

    /* Font size overrides */
    [style*="font-size: 4rem"] {
        font-size: 2rem !important;
    }

    [style*="font-size: 3rem"],
    [style*="font-size: 2.5rem"] {
        font-size: 1.5rem !important;
    }

    [style*="font-size: 2rem"] {
        font-size: 1.25rem !important;
    }

    [style*="font-size: 1.5rem"] {
        font-size: 1.1rem !important;
    }

    [style*="font-size: 1.2rem"],
    [style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }

    /* Padding overrides */
    [style*="padding: 3rem"],
    [style*="padding: 2.5rem"] {
        padding: 1.25rem !important;
    }

    [style*="padding: 2rem"] {
        padding: 1rem !important;
    }

    [style*="padding: 1.5rem"] {
        padding: 0.875rem !important;
    }

    /* Gap overrides */
    [style*="gap: 4rem"],
    [style*="gap: 3rem"] {
        gap: 1.5rem !important;
    }

    [style*="gap: 2rem"],
    [style*="gap: 2.5rem"] {
        gap: 1rem !important;
    }

    [style*="gap: 1.5rem"] {
        gap: 0.75rem !important;
    }

    /* Margin overrides */
    [style*="margin-bottom: 2rem"],
    [style*="margin-bottom: 1.5rem"] {
        margin-bottom: 1rem !important;
    }

    /* Width constraints */
    [style*="max-width: 700px"],
    [style*="max-width: 600px"],
    [style*="max-width: 800px"] {
        max-width: 100% !important;
    }

    /* Grid column overrides */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
    }

    /* Flex layout fixes */
    [style*="display: flex"][style*="align-items: center"][style*="gap"] {
        flex-wrap: wrap;
    }

    /* Icon size overrides */
    [style*="width: 80px"][style*="height: 80px"],
    [style*="width: 70px"][style*="height: 70px"] {
        width: 50px !important;
        height: 50px !important;
    }

    [style*="width: 60px"][style*="height: 60px"] {
        width: 44px !important;
        height: 44px !important;
    }

    /* Border radius for large values */
    [style*="border-radius: var(--radius-xl)"] {
        border-radius: var(--radius-lg) !important;
    }

    /* About page stats box */
    .grid-2 > div[style*="background: var(--gradient-primary)"] {
        padding: 1.5rem !important;
    }

    .grid-2 > div[style*="background: var(--gradient-primary)"] [style*="font-size: 4rem"] {
        font-size: 2.25rem !important;
    }

    .grid-2 > div[style*="background: var(--gradient-primary)"] [style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
    }

    /* Service page cards with flex layout */
    .card[style*="display: flex"][style*="gap: 1.5rem"] {
        flex-direction: column;
        text-align: center;
    }

    .card[style*="display: flex"][style*="gap: 1.5rem"] .card-icon {
        margin: 0 auto 1rem;
    }

    /* NRI Section glass cards */
    [style*="backdrop-filter: blur"] {
        padding: 1rem !important;
    }

    /* Section CTA areas */
    .nri-section [style*="text-align: center"] {
        padding: 0 1rem;
    }

    /* Lists in cards */
    .card ul[style*="margin: 1rem 0"] {
        margin: 0.75rem 0 !important;
    }

    .card ul li[style*="padding: 0.25rem"] {
        padding: 0.375rem 0 !important;
        font-size: 0.9rem;
    }

    /* Quote/testimonial boxes */
    [style*="border-left: 4px solid"] {
        padding: 0.875rem !important;
        font-size: 0.9rem !important;
    }

    /* Button rows */
    [style*="display: flex"][style*="justify-content: center"][style*="flex-wrap: wrap"] {
        gap: 0.75rem !important;
    }

    [style*="display: flex"][style*="justify-content: center"] .btn {
        flex: 1;
        min-width: 140px;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    /* Very small screens adjustments */
    #about-intro [style*="font-size: 2.5rem"] {
        font-size: 1.5rem !important;
    }

    .nri-content h2 {
        font-size: 1.5rem !important;
    }

    .nri-tagline {
        font-size: 1rem !important;
    }

    /* Countries grid - 3 columns on small */
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .country-flag {
        font-size: 1.25rem;
    }

    .country-name {
        font-size: 0.7rem;
    }
}

/* ========================================
   CONTACT PAGE MAP MOBILE STYLES
======================================== */
.map-container {
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: var(--radius-xl);
}

.map-overlay-card {
    position: absolute;
    top: 50%;
    left: var(--space-lg);
    transform: translateY(-50%);
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 300px;
    z-index: 10;
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
        border-radius: var(--radius-lg);
    }

    .map-overlay-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        max-width: 100% !important;
        margin-top: var(--space-md);
        border-radius: var(--radius-lg);
    }
}

/* ========================================
   BLOG PAGE MOBILE STYLES
======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 200px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--deep-saffron);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card-content {
    padding: var(--space-lg);
}

.blog-card-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--dark-gray);
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.blog-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-layout {
        grid-template-columns: 1fr !important;
    }

    .blog-sidebar {
        position: static;
    }
}

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

    .blog-card-content {
        padding: var(--space-md);
    }

    .blog-card-title {
        font-size: 1.1rem;
    }
}

/* Blog Details Page */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-article-header {
    padding: var(--space-xl);
}

.blog-article-image {
    height: 400px;
    background: var(--light-gray);
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-content {
    padding: var(--space-xl);
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: var(--space-xl) 0 var(--space-md);
    color: var(--dark-gray);
}

.blog-article-content p {
    margin-bottom: var(--space-md);
}

.blog-share {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-lg);
    border-top: 1px solid var(--light-gray);
}

.blog-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.blog-share-btn:hover {
    transform: scale(1.1);
}

.blog-share-btn.facebook { background: #1877f2; }
.blog-share-btn.twitter { background: #1da1f2; }
.blog-share-btn.linkedin { background: #0077b5; }
.blog-share-btn.whatsapp { background: #25d366; }

@media (max-width: 768px) {
    .blog-article-header {
        padding: var(--space-lg);
    }

    .blog-article-image {
        height: 250px;
    }

    .blog-article-content {
        padding: var(--space-lg);
        font-size: 1rem;
    }

    .blog-article-content h2 {
        font-size: 1.25rem;
    }

    .blog-share {
        justify-content: center;
    }
}

/* ========================================
   SERVICE PAGE SPECIFIC MOBILE STYLES
======================================== */
@media (max-width: 768px) {
    /* Service page process steps */
    .process-grid {
        gap: var(--space-md);
    }

    /* Service cards within pages */
    .service-detail-card {
        padding: var(--space-md);
    }

    /* Lists in service pages */
    [style*="list-style: none"] li {
        padding: var(--space-sm) !important;
        margin-bottom: var(--space-xs) !important;
    }

    /* Icon lists */
    [style*="display: flex"][style*="align-items: center"][style*="gap: 1rem"] {
        gap: 0.75rem !important;
    }
}

/* ========================================
   UNIQUE MOBILE DESIGN ENHANCEMENTS
======================================== */

/* Gradient accent bar at top on mobile */
@media (max-width: 768px) {
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-saffron);
        z-index: 9999;
    }

    /* Smooth card transitions */
    .card,
    .service-card,
    .blog-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    /* Better tap feedback */
    .btn:active,
    .card:active,
    .nav-link:active {
        opacity: 0.8;
    }

    /* Improved readability */
    p {
        line-height: 1.7;
    }

    /* Section spacing harmony */
    .section + .section {
        margin-top: 0;
    }

    /* Full width buttons in mobile CTA areas */
    .hero-cta,
    .nri-content [style*="display: flex"][style*="gap"] {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn,
    .nri-content .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    /* Ensure touch targets are large enough */
    .dropdown-item,
    .footer-links a,
    .contact-item a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Better focus indicators */
    a:focus,
    button:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: 2px solid var(--deep-saffron);
        outline-offset: 2px;
    }

    /* Skip link for accessibility */
    .skip-link {
        position: absolute;
        top: -100%;
        left: 0;
        background: var(--royal-blue);
        color: var(--white);
        padding: var(--space-md);
        z-index: 10000;
        transition: top 0.3s;
    }

    .skip-link:focus {
        top: 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }

    .card {
        border: 1px solid var(--dark-gray);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-slider {
        transition: none !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

.text-white { color: var(--white); }
.text-primary { color: var(--royal-blue); }
.text-saffron { color: var(--deep-saffron); }
.text-gold { color: var(--gold); }

/* ========================================
   ENHANCED UI/UX IMPROVEMENTS
   Attractive design refinements
======================================== */

/* === IMPROVED SECTION SPACING === */
.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-title {
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    max-width: 600px;
    margin: 0 auto;
}

/* === ENHANCED CARD DESIGN === */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(1.25rem, 4vw, 2rem);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-hover-lift:hover {
    transform: translateY(-8px);
}

.card-icon {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1.25rem;
}

.card-title {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-text {
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.7;
    color: var(--medium-gray);
}

/* === SERVICE CARD IMPROVEMENTS === */
.service-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: clamp(70px, 12vw, 90px);
    height: clamp(70px, 12vw, 90px);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

/* === BUTTON REFINEMENTS === */
.btn {
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-lg {
    padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.35);
}

/* === FORM ENHANCEMENTS === */
.form-input,
.form-select,
.form-textarea {
    border-radius: var(--radius-md);
    padding: clamp(0.875rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.25rem);
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--deep-saffron);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* === PAGE HEADER IMPROVEMENTS === */
.page-header {
    min-height: clamp(35vh, 40vh, 50vh);
    padding: clamp(5rem, 10vw, 7rem) 0 clamp(2rem, 5vw, 3rem);
}

.page-header h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: clamp(0.85rem, 2vw, 1rem);
    gap: 0.5rem;
}

/* === FOOTER REFINEMENTS === */
.footer {
    padding: clamp(3rem, 8vw, 5rem) 0 clamp(1.5rem, 4vw, 2rem);
}

.footer-grid {
    gap: clamp(1.5rem, 4vw, 3rem);
}

.footer h4 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.footer-links li {
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
}

.footer-links a {
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    transition: all 0.3s ease;
}

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

/* === STATS SECTION IMPROVEMENTS === */
.stats-grid {
    gap: clamp(1rem, 3vw, 2rem);
}

.stat-item {
    padding: clamp(1.25rem, 4vw, 2rem);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.1;
}

.stat-label {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-top: 0.5rem;
}

/* === PROCESS SECTION IMPROVEMENTS === */
.process-step {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.process-number {
    width: clamp(50px, 10vw, 70px);
    height: clamp(50px, 10vw, 70px);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1.25rem;
}

.process-step h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    margin-bottom: 0.75rem;
}

/* === WHY CHOOSE US IMPROVEMENTS === */
.why-choose-grid {
    gap: clamp(1rem, 3vw, 1.5rem);
}

.why-item {
    padding: clamp(1.25rem, 3vw, 1.75rem);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.why-icon {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

/* === NRI SECTION IMPROVEMENTS === */
.nri-section {
    padding: clamp(4rem, 10vw, 7rem) 0;
}

.nri-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    line-height: 1.2;
}

.nri-tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
}

.nri-features {
    gap: clamp(0.75rem, 2vw, 1rem);
}

.nri-feature {
    padding: clamp(0.875rem, 2vw, 1rem);
    border-radius: var(--radius-md);
}

/* === CONTACT SECTION IMPROVEMENTS === */
.contact-grid {
    gap: clamp(2rem, 5vw, 3rem);
}

.contact-info,
.contact-form-wrapper {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-xl);
}

.contact-item {
    padding: clamp(0.875rem, 2vw, 1.25rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

/* === TESTIMONIAL IMPROVEMENTS === */
.testimonial-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
}

.testimonial-text {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.8;
}

/* === COUNTRY GRID IMPROVEMENTS === */
.countries-grid {
    gap: clamp(0.75rem, 2vw, 1.25rem);
}

.country-item {
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 2.5vw, 1.5rem);
    border-radius: var(--radius-md);
}

.country-flag {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.country-name {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
}

/* ========================================
   MOBILE-SPECIFIC UI/UX ENHANCEMENTS
======================================== */
@media (max-width: 768px) {
    /* Better visual hierarchy on mobile */
    .section-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }

    /* Card improvements for mobile */
    .card {
        padding: 1.25rem;
        border-radius: var(--radius-md);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .card:active {
        transform: scale(0.98);
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    }

    /* Service cards on mobile */
    .service-card {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    /* Better list spacing in service cards */
    .card ul li,
    .service-card ul li {
        padding: 0.375rem 0;
    }

    /* Improved buttons on mobile */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        border-radius: var(--radius-md);
    }

    .btn-lg {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
    }

    /* Better icon sizing */
    .card-icon {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    /* Improved spacing in gradient boxes */
    [style*="background: var(--gradient-primary)"],
    [style*="background: rgba(255,255,255,0.1)"] {
        padding: 1.25rem !important;
        border-radius: var(--radius-lg) !important;
    }

    /* Better quote boxes */
    [style*="border-left: 4px solid"] {
        padding: 1rem !important;
        margin: 1rem 0 !important;
    }

    /* Stats in inline styles */
    [style*="font-size: 2.5rem"],
    [style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
    }

    /* Grid items with inline styles */
    [style*="display: grid"][style*="grid-template-columns: 1fr 1fr"] {
        gap: 0.75rem !important;
    }

    /* Better icon containers */
    [style*="width: 80px"][style*="height: 80px"],
    [style*="width: 70px"][style*="height: 70px"] {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.25rem !important;
    }

    /* CTA sections on mobile */
    [style*="text-align: center"][style*="max-width: 700px"],
    [style*="text-align: center"][style*="max-width: 600px"] {
        max-width: 100% !important;
    }

    /* Glass effect boxes on mobile */
    [style*="backdrop-filter: blur"] {
        backdrop-filter: blur(10px);
        padding: 1.25rem !important;
    }
}

@media (max-width: 576px) {
    /* Extra small screen refinements */
    .card {
        padding: 1rem;
    }

    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
    }

    /* Tighter spacing for lists */
    ul[style*="list-style: none"] li {
        padding: 0.5rem 0.75rem !important;
        margin-bottom: 0.375rem !important;
    }

    /* Better contact items */
    .contact-item {
        padding: 0.75rem;
    }

    /* Footer refinements */
    .footer-brand p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ========================================
   VISUAL POLISH & MICRO-INTERACTIONS
======================================== */

/* Smooth gradient text */
.section-title span {
    background: linear-gradient(135deg, var(--deep-saffron) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card link hover effect */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--deep-saffron);
    transition: all 0.3s ease;
}

.card-link:hover {
    gap: 0.75rem;
    color: var(--saffron-dark);
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(4px);
}

/* Better social links */
.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
    color: var(--royal-blue-dark);
    transform: translateY(-3px);
}

/* Contact info icons */
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    color: var(--deep-saffron);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Gradient border effect for featured cards */
.card-featured {
    position: relative;
    background: var(--white);
    z-index: 1;
}

.card-featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--deep-saffron), var(--gold));
    border-radius: calc(var(--radius-lg) + 2px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-featured:hover::before {
    opacity: 1;
}

/* Better scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--royal-blue-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--royal-blue);
}

/* Selection styling */
::selection {
    background: var(--deep-saffron);
    color: var(--white);
}

::-moz-selection {
    background: var(--deep-saffron);
    color: var(--white);
}

/* ========================================
   CRITICAL MOBILE FIXES - FINAL OVERRIDE
======================================== */
@media screen and (max-width: 992px) {
    /* NAVBAR LAYOUT FIX */
    .navbar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* BURGER MENU - FORCE VISIBLE */
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 44px !important;
        height: 44px !important;
        padding: 8px !important;
        cursor: pointer !important;
        z-index: 9999 !important;
        position: relative !important;
        background: transparent !important;
        border: none !important;
    }

    .menu-toggle span {
        display: block !important;
        width: 24px !important;
        height: 3px !important;
        background-color: #ffffff !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    /* Nav menu hide by default */
    .nav-menu {
        display: none !important;
    }

    .nav-menu.active {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%) !important;
        padding: 80px 20px 20px 20px !important;
        z-index: 9998 !important;
        overflow-y: auto !important;
    }

    .nav-menu.active .nav-link {
        color: #ffffff !important;
        padding: 15px 0 !important;
        font-size: 18px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
}

@media screen and (max-width: 768px) {
    /* MOBILE BOTTOM BAR - FORCE VISIBLE & FULL WIDTH */
    .mobile-sticky-bar {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        background-color: #ffffff !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.15) !important;
        z-index: 9998 !important;
        padding: 8px 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-sizing: border-box !important;
    }

    .mobile-sticky-bar .container {
        display: flex !important;
        justify-content: space-evenly !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .mobile-cta-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 1 0 !important;
        min-width: 0 !important;
        padding: 4px 2px !important;
        color: #1a365d !important;
        font-size: 10px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        background: transparent !important;
        border: none !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .mobile-cta-btn i {
        font-size: 18px !important;
        margin-bottom: 2px !important;
    }

    .mobile-cta-btn span {
        font-size: 10px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .mobile-cta-btn.primary {
        color: var(--royal-blue) !important;
    }

    /* Hide desktop sticky buttons */
    .sticky-cta {
        display: none !important;
    }

    /* Body padding for bottom bar */
    body {
        padding-bottom: 65px !important;
    }

    /* Fix container overflow */
    .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    html, body {
        overflow-x: hidden !important;
    }

    /* FIX CARD SPACING - mt-3 between cards */
    .service-card,
    .card,
    .card-hover-lift {
        margin-bottom: 1.5rem !important;
        padding: 1.25rem !important;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .services-grid,
    .service-cards-grid {
        gap: 1.5rem !important;
    }

    .grid-3 {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .section {
        padding: 2rem 0 !important;
    }

    /* Service icon spacing */
    .service-icon,
    .service-card-icon {
        margin-bottom: 0.75rem !important;
    }
}

/* CARD SPACING FOR ALL SCREENS */
.service-card,
.card,
.card-hover-lift {
    margin-bottom: 1.5rem !important;
}

.grid-2,
.grid-3,
.grid-4 {
    gap: 1.5rem !important;
}

/* ========================================
   IMAGE WITH OVERLAY COMPONENTS
======================================== */
.image-with-overlay {
    position: relative;
    margin-bottom: 2rem;
}

.image-with-overlay .responsive-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
}

.image-overlay-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}

.overlay-icons {
    display: flex;
    justify-content: space-around;
    color: var(--white);
    text-align: center;
}

.overlay-icons > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.overlay-icons i {
    color: var(--gold);
    font-size: 1.25rem;
}

.overlay-icons span {
    font-size: 0.75rem;
}

/* 4-column icon variant */
.overlay-icons-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.overlay-icons-4 span {
    font-size: 0.65rem;
}

/* Stats Overlay Card */
.stats-overlay-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    display: flex;
    gap: 2rem;
    box-shadow: var(--shadow-xl);
}

.stat-item-mini {
    text-align: center;
    color: var(--white);
}

.stat-number-mini {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label-mini {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .stats-overlay-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1rem;
        padding: 1rem 1.5rem;
        gap: 1.5rem;
        justify-content: center;
    }

    .stat-number-mini {
        font-size: 1.5rem;
    }

    .stat-label-mini {
        font-size: 0.7rem;
    }

    .overlay-icons-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
}

@media (max-width: 576px) {
    .stats-overlay-card {
        padding: 0.75rem 1rem;
        gap: 1rem;
    }

    .stat-number-mini {
        font-size: 1.25rem;
    }
}

/* Responsive Image Overlay */
@media (max-width: 768px) {
    .image-with-overlay {
        margin-bottom: 1rem;
    }

    .image-overlay-card {
        position: relative;
        bottom: auto;
        left: 0;
        right: 0;
        margin-top: 1rem;
        padding: 1rem;
    }

    .overlay-icons i {
        font-size: 1rem;
    }

    .overlay-icons span {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    .image-overlay-card {
        padding: 0.75rem;
    }

    .overlay-icons {
        gap: 0.5rem;
    }
}

/* Testimonial Overlay Card */
.testimonial-overlay-card {
    position: absolute;
    bottom: -25px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    box-shadow: var(--shadow-xl);
}

.testimonial-text {
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    color: var(--royal-blue);
    font-size: 0.9rem;
    display: block;
}

.testimonial-author span {
    color: var(--medium-gray);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .testimonial-overlay-card {
        position: relative;
        bottom: auto;
        left: 0;
        right: 0;
        margin-top: 1rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .testimonial-overlay-card {
        padding: 1rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .author-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.7rem;
    }

    .testimonial-author strong {
        font-size: 0.8rem;
    }

    .testimonial-author span {
        font-size: 0.7rem;
    }
}

/* ========================================
   RESPONSIVE IMAGE OVERLAY FIXES
======================================== */

/* Tablet Adjustments */
@media (max-width: 992px) {
    /* Image overlay stats - reduce size */
    .grid-2 [style*="position: absolute"][style*="bottom:"] {
        padding: 1rem !important;
    }

    .grid-2 [style*="font-size: 1.75rem"] {
        font-size: 1.25rem !important;
    }

    .grid-2 [style*="font-size: 1.25rem"] {
        font-size: 1rem !important;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    /* Convert absolute overlays to relative on mobile */
    .grid-2 > div > div[style*="position: relative"] > div[style*="position: absolute"] {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        margin-top: 1rem !important;
        width: 100% !important;
    }

    /* Image sections - add bottom margin */
    .grid-2 img[style*="border-radius"] {
        margin-bottom: 0 !important;
    }

    /* Reduce overlay icon grid columns */
    [style*="display: grid"][style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.25rem !important;
    }

    [style*="display: grid"][style*="grid-template-columns: repeat(3"] {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }

    /* Reduce overlay text sizes */
    [style*="font-size: 0.8rem"],
    [style*="font-size: 0.75rem"],
    [style*="font-size: 0.7rem"],
    [style*="font-size: 0.65rem"] {
        font-size: 0.6rem !important;
    }

    /* Stats in overlays */
    [style*="font-size: 1.75rem"] {
        font-size: 1.25rem !important;
    }

    /* Hero Slide Backgrounds - Mobile Optimization */
    .hero-slide[data-slide="0"],
    .hero-slide[data-slide="1"],
    .hero-slide[data-slide="2"] {
        background-position: center center !important;
        background-size: cover !important;
    }

    /* NRI Section Image on Homepage */
    .nri-image {
        margin-top: 2rem;
    }

    .nri-image img {
        max-height: 300px;
        object-fit: cover;
    }

    .nri-image > div[style*="position: relative"] > div[style*="position: absolute"] {
        position: relative !important;
        bottom: auto !important;
        margin-top: 1rem !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* About page team image section */
    [data-aos="fade-left"] > div[style*="position: relative"] > div[style*="position: absolute"][style*="bottom:"] {
        position: relative !important;
        bottom: auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        margin-top: 1rem !important;
        width: 100% !important;
    }

    /* Service page image overlays */
    [data-aos="fade-left"] [style*="display: grid"][style*="text-align: center"] {
        gap: 0.5rem !important;
    }

    [data-aos="fade-left"] [style*="display: grid"] i {
        font-size: 1rem !important;
    }

    /* Ensure images don't overflow */
    .grid-2 img,
    [data-aos] img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Touch targets - minimum 44px */
    .btn,
    button,
    a.btn {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
    }

    .btn-lg {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }

    /* Form inputs touch-friendly */
    .form-input,
    .form-select,
    .form-textarea {
        min-height: 48px;
        padding: 0.75rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* NRI Support page form */
    .nri-hero .form-input,
    .nri-hero .form-select,
    .nri-hero .form-textarea {
        font-size: 16px;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 576px) {
    /* Further reduce overlay complexity */
    [style*="display: flex"][style*="justify-content: space-around"] {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    [style*="display: flex"][style*="justify-content: space-around"] > div {
        flex: 0 0 30% !important;
    }

    /* Reduce icon sizes in overlays */
    [style*="display: grid"] i,
    [style*="display: flex"] i.fas,
    [style*="display: flex"] i.fab {
        font-size: 1rem !important;
    }

    /* Hero content adjustments */
    .hero-content {
        padding: 0 0.75rem !important;
    }

    .hero h1 {
        font-size: 1.35rem !important;
        line-height: 1.3 !important;
    }

    .hero-tagline {
        font-size: 0.85rem !important;
    }

    .hero-badge {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.75rem !important;
    }

    /* CTA buttons in hero - stack on very small */
    .hero-cta {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .hero-cta .btn {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Testimonial card in NRI section */
    .nri-image [style*="padding: 1.25rem"] {
        padding: 0.75rem !important;
    }

    .nri-image [style*="font-size: 0.9rem"] {
        font-size: 0.8rem !important;
    }

    /* Service highlight cards */
    .service-highlight {
        padding: 1rem !important;
    }

    .service-highlight-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
    }

    /* Section headers */
    .section-title {
        font-size: 1.5rem !important;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
    }
}

/* Extra Small Screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.2rem !important;
    }

    .btn {
        padding: 0.625rem 1rem !important;
        font-size: 0.85rem !important;
    }

    .section-title {
        font-size: 1.35rem !important;
    }

    /* 2-column grid in overlays */
    [style*="display: grid"][style*="grid-template-columns: repeat(3"],
    [style*="display: grid"][style*="grid-template-columns: repeat(4"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Mobile bottom bar icons */
    .mobile-cta-btn i {
        font-size: 16px !important;
    }

    .mobile-cta-btn span {
        font-size: 9px !important;
    }
}
