/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    line-height: 1.6;
    color: #111827; /* graphite */
    overflow-x: hidden;
    overflow-y: auto;
    background: #f3f4f6; /* light silver */
}

/* Modern Silver + Red Accent Palette */
:root {
    --primary-color: #d12c2c;      /* Red accent */
    --secondary-color: #8f1a1a;    /* Deeper red */
    --accent-color: #ff5555;       /* Bright red */
    --gold-color: #ef4444;         /* Red used for numbers */
    --deep-orange: #a61b1b;        /* Dark red */
    --warm-cream: #f3f4f6;         /* Light silver surface */
    --terracotta-dark: #111827;    /* Graphite */
    --saffron: #ff6666;            /* Soft red */
    --text-dark: #111827;          /* Graphite */
    --text-light: #4b5563;         /* Slate */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--warm-cream);
    box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(205, 133, 63, 0.5);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--terracotta-dark) 100%);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 246, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(17, 24, 39, 0.08);
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 250px;
    filter: drop-shadow(2px 2px 4px rgba(17, 24, 39, 0.15));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(3px 3px 6px rgba(17, 24, 39, 0.25));
}

/* Removed .brand-text styles as logo includes text */

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.3s ease;
}

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

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

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    padding: 0;
    margin: 0;
}

.dropdown-btn:hover {
    text-decoration: none;
}

.dropdown-btn:focus {
    outline: none;
}

.dropdown-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-btn i,
.dropdown.active .dropdown-btn i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0.5rem 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(47, 52, 57, 0.1), rgba(91, 98, 105, 0.1));
    color: var(--text-dark);
    text-decoration: none;
    transform: translateX(3px);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-content {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        min-width: unset;
        border-radius: 15px 15px 0 0;
        max-height: 50vh;
        overflow-y: auto;
        transform: translateY(100%);
        padding: 1rem 0;
    }
    
    .dropdown:hover .dropdown-content,
    .dropdown.active .dropdown-content {
        transform: translateY(0);
    }
    
    .dropdown-item {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
}



.btn-sm {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-top: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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



.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Simple Hero Section */
.hero-advanced {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #374151 0%, #6b7280 50%, #9ca3af 100%);
    overflow: hidden;
}

/* Live indicator */
.stats-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #fff;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.live-indicator .live-dot {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    animation: livePulse 1.4s ease-out infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); transform: scale(1); }
    70% { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); transform: scale(1.15); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); transform: scale(1); }
}

/* Remove premium background - using simple gradient now */

/* Removed animated elements for simple design */



/* Removed hero blobs for simple design */

.blob1 {
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15) 0%, rgba(156, 163, 175, 0.3) 45%, transparent 70%);
    top: -120px;
    left: -120px;
    animation: blobFloat1 16s ease-in-out infinite;
}

.blob2 {
    background: radial-gradient(circle at 70% 70%, rgba(209, 213, 219, 0.2) 0%, rgba(107, 114, 128, 0.25) 40%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: blobFloat2 18s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, 20px) scale(1.05); }
    50% { transform: translate(10px, 60px) scale(0.98); }
    75% { transform: translate(-20px, 20px) scale(1.04); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    20% { transform: translate(-30px, -10px) scale(1.03); }
    50% { transform: translate(-60px, 30px) scale(0.97); }
    80% { transform: translate(-20px, -20px) scale(1.06); }
}

/* Hero background animation */
@keyframes heroBackgroundShift {
    0%, 100% { 
        background: linear-gradient(135deg,
            #d1d5db 0%,
            #e5e7eb 25%,
            #f3f4f6 50%,
            #f9fafb 75%,
            #ffffff 100%);
    }
    25% { 
        background: linear-gradient(135deg,
            #e5e7eb 0%,
            #f3f4f6 25%,
            #f9fafb 50%,
            #ffffff 75%,
            #ffffff 100%);
    }
    50% { 
        background: linear-gradient(135deg,
            #f3f4f6 0%,
            #f9fafb 25%,
            #ffffff 50%,
            #ffffff 75%,
            #ffffff 100%);
    }
    75% { 
        background: linear-gradient(135deg,
            #e5e7eb 0%,
            #f3f4f6 25%,
            #f9fafb 50%,
            #ffffff 75%,
            #ffffff 100%);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(47, 52, 57, 0.3) 0%,
        rgba(17, 24, 39, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 10;
}

.business-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: businessFloat 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes businessFloat {
    0%, 100% { 
        transform: translateX(0px) translateY(0px);
        opacity: 1;
    }
    25% {
        transform: translateX(10px) translateY(-10px);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-5px) translateY(-20px);
        opacity: 0.9;
    }
    75% {
        transform: translateX(-10px) translateY(-10px);
        opacity: 0.7;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(205, 133, 63, 0.3) 0%,
        rgba(210, 105, 30, 0.4) 50%,
        rgba(45, 24, 16, 0.6) 100%
    );
    z-index: 2;
}

/* Hero CTA Buttons */
.hero-cta-advanced {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    z-index: 10;
    position: relative;
}

.btn-advanced {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary-advanced {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary-advanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(209, 44, 44, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.btn-secondary-advanced {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-secondary-advanced:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Trust Indicators */
.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    z-index: 10;
    position: relative;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.trust-item i {
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.trust-item span {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {

    
    /* Simple hero background for mobile */
    
    .hero-cta-advanced {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-advanced {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
        max-width: 250px;
    }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    top: 30%;
    left: 60%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 90%;
    animation-delay: 8s;
    animation-duration: 20s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 1;
    }
}

/* Hero Content */
.hero-content-advanced {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2rem;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Side - Text Content */
.hero-text-advanced {
    animation: slideInLeft 1s ease-out;
}

.hero-badge-advanced {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    left: 1rem;
    width: 10px;
    height: 10px;
    background: #ffd700;
    border-radius: 50%;
    animation: pulse 2s infinite ease-in-out;
}

.badge-icon {
    color: #ffd700;
    font-size: 1.2rem;
    margin-left: 1rem;
}

.hero-badge-advanced span:last-child {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-title-advanced {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 0.5px;
}

.title-line-1 {
    display: block;
    font-size: 3.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: titleSlideUp 1s ease-out 0.2s both;
}

.title-line-2 {
    display: block;
    font-size: 4.5rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: titleSlideUp 1.1s ease-out 0.45s both;
}

.hero-description-advanced {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

@keyframes titleSlideUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Language Switcher */
.language-switcher {
    margin-left: 1rem;
}

.language-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--warm-cream);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(205, 133, 63, 0.3);
}

.language-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(205, 133, 63, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

.lang-icon {
    font-size: 1.1rem;
}

#currentLang {
    font-weight: 700;
    min-width: 25px;
    text-align: center;
}

/* Mobile responsive for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .language-btn {
        width: 100%;
        justify-content: center;
    }
}

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

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) contrast(1.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 153, 51, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(205, 133, 63, 0.9) 0%, rgba(139, 69, 19, 0.85) 50%, rgba(184, 134, 11, 0.8) 100%);
    z-index: 2;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    text-align: center;
    color: var(--warm-cream);
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(205, 133, 63, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 133, 63, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    animation: fadeInUp 1s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line {
    display: block;
    margin-bottom: 10px;
}

.title-highlight {
    display: block;
    color: #b8860b;
    font-weight: 700;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: 60px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary.btn-lg {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--warm-cream);
    box-shadow: 0 10px 30px rgba(205, 133, 63, 0.4);
    border: 2px solid var(--gold-color);
}

.btn-primary.btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(205, 133, 63, 0.6);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--terracotta-dark) 100%);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-outline:hover {
    background: white;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(205, 133, 63, 0.3);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(205, 133, 63, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(205, 133, 63, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Improve readability of stats on dark/terracotta backgrounds (hero) */
.hero-advanced .stat-number,
.hero-advanced .stat-label,
.hero-stats-panel .stat-number,
.hero-stats-panel .stat-label {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* Ensure high contrast inside success-stories gradient section */
.success-stories .stat-number,
.success-stories .stat-label {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.scroll-indicator {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--warm-cream);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 12px;
    position: relative;
    background: rgba(205, 133, 63, 0.1);
    backdrop-filter: blur(10px);
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--warm-cream);
}

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

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animated stat cards (hero) */
.stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 16px 16px 12px;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.stat-icon { transition: transform 0.6s ease; }
.stat-card.visible .stat-icon { transform: translateY(-3px); }

.stat-progress .progress-bar {
    height: 6px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 0%;
    transition: width 1s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--warm-cream);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Success Stories */
.success-stories {
    position: relative;
    background: linear-gradient(135deg, #374151 0%, #6b7280 50%, #9ca3af 100%);
    color: white;
    overflow: hidden;
}

/* Removed animated elements for simple design */

.success-stories .container {
    position: relative;
    z-index: 2;
}

.success-stories .section-header h2 {
    color: white;
    -webkit-text-fill-color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.success-stories .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.success-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.success-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.success-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Team Section */
.team {
    background: var(--warm-cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 30px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-desc {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    background: var(--warm-cream);
    padding: 8px 16px;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.member-location i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* City Offices Section */
.city-offices {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--warm-cream) 0%, #e5e7eb 100%);
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.city-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 15px rgba(17, 24, 39, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.15);
    border-color: var(--primary-color);
}

.city-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.city-card p {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.city-card .btn {
    margin-top: 1rem;
}

/* Responsive grid adjustments */
@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .city-card {
        padding: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .cities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .cities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
}

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

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.testimonial-content span {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background: var(--primary-color);
    border: 2px solid var(--gold-color);
    color: var(--warm-cream);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(205, 133, 63, 0.5);
}

/* Blog Section */
.blog {
    background: var(--warm-cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin: 15px 0;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 15px;
}

/* Read More functionality styles */
.blog-preview, .blog-full-text {
    transition: all 0.3s ease;
    line-height: 1.6;
}

.blog-full-text {
    display: none;
    margin-top: 10px;
    padding: 15px;
    background: rgba(205, 133, 63, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.blog-card.expanded {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(205, 133, 63, 0.15);
}

.blog-card {
    transition: all 0.3s ease;
}

/* Price Section */
.price {
    padding: 100px 0;
    background: var(--warm-cream);
}

.price-grid {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(205, 133, 63, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    max-width: 500px;
    width: 100%;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(205, 133, 63, 0.2);
}

.price-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.price-amount .currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.price-amount .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-left: 5px;
}

.price-period {
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.price-features li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.price-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.price-disclaimer {
    background: #f4f1ec;
    border: 1px solid #d2691e;
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
    text-align: left;
}

.price-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.4;
}

.price-disclaimer strong {
    color: #664d03;
}

.price-action .btn {
    width: 100%;
    padding: 15px;
    font-weight: 600;
}

/* Contact section removed */

/* Footer */
.footer {
    background: linear-gradient(135deg, #374151 0%, #6b7280 50%, #9ca3af 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Removed animated elements for simple design */

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1) drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(2px 2px 6px rgba(255, 255, 255, 0.4));
}

/* Removed .footer-brand-text styles as logo includes text */

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Mumbai Hero Advanced Elements */
.mumbai-elements {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mumbai-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: floatBadge 3s ease-in-out infinite;
}

.russia-flag {
    width: 50px;
    height: 30px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: waveFlag 2s ease-in-out infinite;
}

.flag-strip {
    height: 33.33%;
    width: 100%;
}

.flag-strip.white { background: #ffffff; }
.flag-strip.blue { background: #0052cc; }
.flag-strip.red { background: #d52b1e; }

.hero-counter {
    position: absolute;
    bottom: 30px;
    left: 50px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: pulseCounter 2s ease-in-out infinite;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.counter-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    display: block;
}

.hero-blob.blob3 {
    top: 40%;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.2) 0%, rgba(156, 163, 175, 0.4) 40%, transparent 65%);
    animation: blobFloat3 20s ease-in-out infinite;
}

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

@keyframes waveFlag {
    0%, 100% { transform: perspective(100px) rotateY(0deg); }
    50% { transform: perspective(100px) rotateY(15deg); }
}

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

@keyframes blobFloat3 {
    0%, 100% { 
        transform: translate(0px, 0px) rotate(0deg); 
        opacity: 0.3;
    }
    25% { 
        transform: translate(-20px, -30px) rotate(90deg); 
        opacity: 0.4;
    }
    50% { 
        transform: translate(-10px, -60px) rotate(180deg); 
        opacity: 0.2;
    }
    75% { 
        transform: translate(15px, -40px) rotate(270deg); 
        opacity: 0.35;
    }
}

/* Russia Info Section */
.russia-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
    color: #6c757d;
    position: relative;
    padding-left: 1.5rem;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.info-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ================================================
   MUMBAI SPECIFIC STYLES
   ================================================ */

/* Mumbai Navigation */
.navbar-mumbai {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 53, 69, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-mumbai .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.navbar-mumbai .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-mumbai .logo {
    height: 40px;
    width: auto;
}

.navbar-mumbai .brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.navbar-mumbai .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-mumbai .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.navbar-mumbai .nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-mumbai .nav-list a:hover {
    color: var(--primary-color);
}

.navbar-mumbai .nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-mumbai .nav-cta:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Mumbai Hero Section - Based on Main Hero */
.hero-mumbai {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Mumbai Specific Elements */
.mumbai-elements {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mumbai-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: floatBadge 3s ease-in-out infinite;
}

.russia-flag {
    width: 45px;
    height: 27px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: waveFlag 4s ease-in-out infinite;
}

.flag-strip {
    flex: 1;
}

.flag-strip.white { background: #ffffff; }
.flag-strip.blue { background: #0052cc; }
.flag-strip.red { background: #d52b1e; }

/* Mumbai Variant Badge */
.hero-badge-advanced.mumbai-variant {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1), rgba(255, 71, 87, 0.1));
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Mumbai Title Styling */
.hero-mumbai .title-line-3 {
    display: block;
    color: #ffd700;
    font-size: 0.7em;
    margin-top: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Mumbai Stats Panel */
.mumbai-stats .stats-header h3 {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.mumbai-stats .stat-number {
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        #2f3439 0%,
        #5b6269 25%,
        #858b94 50%,
        #a6adb7 75%,
        #c1c8d1 100%);
    animation: heroGradientShift 8s ease-in-out infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    background-size: 400px 400px, 600px 600px;
    animation: patternFloat 20s linear infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
}

.float-element.element-1 {
    top: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    animation: floatElement1 15s ease-in-out infinite;
}

.float-element.element-2 {
    top: 60%;
    right: 20%;
    width: 150px;
    height: 150px;
    animation: floatElement2 12s ease-in-out infinite;
}

.float-element.element-3 {
    bottom: 20%;
    left: 30%;
    width: 180px;
    height: 180px;
    animation: floatElement3 18s ease-in-out infinite;
}

.float-element.element-4 {
    top: 30%;
    right: 10%;
    width: 120px;
    height: 120px;
    animation: floatElement4 14s ease-in-out infinite;
}

.hero-mumbai .container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    animation: badgeFloat 3s ease-in-out infinite;
}

.russia-flag {
    width: 30px;
    height: 18px;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.flag-stripe {
    flex: 1;
}

.flag-stripe.white { background: #ffffff; }
.flag-stripe.blue { background: #0052cc; }
.flag-stripe.red { background: #d52b1e; }

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-main {
    display: block;
    color: white;
}

.title-sub {
    display: block;
    color: #f8f9fa;
    font-size: 0.8em;
}

.title-highlight {
    display: block;
    color: #ffd700;
    font-size: 0.9em;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-mumbai {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.btn-primary-mumbai:hover {
    background: #c82333;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.4);
}

.btn-secondary-mumbai {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-mumbai:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.feature-item i {
    color: #ffd700;
    font-size: 1.2rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 10;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    transform: rotate(45deg);
    margin: 0 auto 0.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

/* Mumbai Services Section */
.services-mumbai {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.service-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.service-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.salary-range {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.service-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.service-btn:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Mumbai Process Section */
.process-mumbai {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), #ff4757);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 10;
    margin: 0 2rem;
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.3);
}

.step-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.step-content p {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-duration {
    background: #ffd700;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Mumbai Success Section */
.success-mumbai {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.success-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.success-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        #2f3439 0%,
        #5b6269 25%,
        #858b94 50%,
        #a6adb7 75%,
        #c1c8d1 100%);
}

.success-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    background-size: 500px 500px;
    animation: patternFloat 25s linear infinite;
}

.success-mumbai .container {
    position: relative;
    z-index: 10;
}

.success-mumbai .section-header h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.success-mumbai .section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    align-items: start;
}

.success-story {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.success-story:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.story-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.story-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.story-content {
    padding: 2rem 2rem 2.5rem 2rem;
}

.story-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.story-location {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.story-salary {
    background: #ffd700;
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.story-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-desc {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Mumbai Contact Section */
.contact-mumbai {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info > p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-text p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.urgency-banner {
    background: linear-gradient(135deg, #ff4757, var(--primary-color));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    animation: urgencyPulse 2s ease-in-out infinite;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.mumbai-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-submit {
    background: linear-gradient(135deg, var(--primary-color), #ff4757);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.4);
}

.form-note {
    color: #6c757d;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

/* Mumbai Footer */
.footer-mumbai {
    background: linear-gradient(135deg, 
        #2f3439 0%,
        #5b6269 25%,
        #858b94 50%,
        #a6adb7 75%,
        #c1c8d1 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-mumbai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    background-size: 400px 400px;
    animation: patternFloat 30s linear infinite;
}

.footer-mumbai .container {
    position: relative;
    z-index: 10;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

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

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-column ul li i {
    color: #ffd700;
    width: 16px;
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes heroGradientShift {
    0%, 100% { 
        background: linear-gradient(135deg, #2f3439 0%, #5b6269 25%, #858b94 50%, #a6adb7 75%, #c1c8d1 100%);
    }
    50% { 
        background: linear-gradient(135deg, #5b6269 0%, #858b94 25%, #a6adb7 50%, #c1c8d1 75%, #2f3439 100%);
    }
}

@keyframes patternFloat {
    0% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-50px) translateY(-30px); }
    50% { transform: translateX(-100px) translateY(0); }
    75% { transform: translateX(-50px) translateY(30px); }
    100% { transform: translateX(0) translateY(0); }
}

@keyframes floatElement1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
    25% { transform: translate(30px, -20px) rotate(90deg); opacity: 0.5; }
    50% { transform: translate(60px, 0) rotate(180deg); opacity: 0.2; }
    75% { transform: translate(30px, 20px) rotate(270deg); opacity: 0.4; }
}

@keyframes floatElement2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
    33% { transform: translate(-40px, 30px) rotate(120deg); opacity: 0.2; }
    66% { transform: translate(-20px, -40px) rotate(240deg); opacity: 0.5; }
}

@keyframes floatElement3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.2; }
    50% { transform: translate(50px, -50px) rotate(180deg); opacity: 0.4; }
}

@keyframes floatElement4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
    40% { transform: translate(-30px, -30px) rotate(144deg); opacity: 0.3; }
    80% { transform: translate(30px, 30px) rotate(288deg); opacity: 0.4; }
}

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

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
}

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

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

@keyframes waveFlag {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.05) rotate(1deg); }
    50% { transform: scale(1) rotate(0deg); }
    75% { transform: scale(1.05) rotate(-1deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-stats {
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    /* contact styles removed */
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-mumbai .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Success Stories Mobile - 1 column */
    .success-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .story-image {
        height: 250px;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .story-stats {
        gap: 1rem;
    }
    
    .hero-mumbai {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .mumbai-elements {
        position: static;
        order: -1;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .mumbai-badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .russia-flag {
        width: 35px;
        height: 21px;
    }
    
    .hero-stats {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .stat-item {
        min-width: 200px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary-mumbai,
    .btn-secondary-mumbai {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 80px;
    }
    
    .step-number {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .step-content {
        max-width: none;
    }
    
    .mumbai-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-mumbai {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .success-grid {
        gap: 1.5rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 6px;
    }
    50% {
        opacity: 0.5;
        top: 20px;
    }
    100% {
        opacity: 1;
        top: 6px;
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
    }
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-lg {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .about-content,
    .success-content,
    /* contact styles removed */

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

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

    .nav-btn {
        display: none;
    }

    .slider-dots {
        bottom: 20px;
    }

    section {
        padding: 60px 0;
    }

    .services-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero {
        height: 70vh;
        padding-top: 90px;
    }

    /* contact styles removed */
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    color: var(--warm-cream);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(205, 133, 63, 0.5);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--terracotta-dark) 100%);
}
