/* style.css - Professional Blue Theme */
:root {
    /* Professional Blue Color Palette */
    --primary-blue: #1A56DB;
    --secondary-blue: #2563EB;
    --accent-blue: #3B82F6;
    --dark-blue: #1E3A8A;
    --light-blue: #EFF6FF;
    --teal-blue: #0E7490;
    --blue-gray: #475569;
    --navy-blue: #1E40AF;
    
    /* Supporting Colors */
    --success-green: #059669;
    --warning-amber: #D97706;
    --trust-orange: #EA580C;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --medium-gray: #64748B;
    --dark-gray: #334155;
    --text-color: #1E293B;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-blue) 0%, var(--teal-blue) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-blue) 0%, #FFFFFF 100%);
    
    /* Shadows & Effects */
    --shadow-xs: 0 1px 3px rgba(30, 86, 219, 0.1);
    --shadow-sm: 0 4px 6px -1px rgba(30, 86, 219, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(30, 86, 219, 0.15);
    --shadow-lg: 0 20px 25px -5px rgba(30, 86, 219, 0.2);
    --shadow-xl: 0 25px 50px -12px rgba(30, 86, 219, 0.25);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 6px;
    --border-radius: 10px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

h2 {
    font-size: 2.75rem;
    letter-spacing: -0.3px;
    position: relative;
}

h3 {
    font-size: 2rem;
    letter-spacing: -0.2px;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-color);
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--medium-gray);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 1000px;
}

section {
    padding: 120px 0;
    position: relative;
}

.section-sm {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    margin-bottom: 24px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title .subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 32px auto 0;
    color: var(--medium-gray);
    font-weight: 400;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline::before {
    background: var(--gradient-primary);
}

.btn-outline:hover {
    color: white;
}

.btn-accent {
    background: linear-gradient(135deg, var(--trust-orange) 0%, var(--warning-amber) 100%);
    color: white;
}

.btn-accent::before {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal-blue) 100%);
}

.btn-secondary {
    background: var(--secondary-blue);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1.125rem;
}
/* Header - Professional Blue Theme */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(30, 86, 219, 0.1);
    padding: 6px 0; /* reduced height */
}

.header.scrolled {
    padding: 4px 0; /* minimal height when scrolled */
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px; /* reduced from 20px 24px */
}

/* Logo Design - Blue Theme */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* reduced spacing */
    text-decoration: none;
}

.logo-img {
    width: 68px; /* increased */
    height: 68px; /* increased */
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* Adjusted Logo Text Sizes */
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.35rem; /* decreased */
    color: var(--primary-blue);
    line-height: 1.1;
}

.logo-text span {
    display: block;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 1rem; /* decreased */
    margin-top: 1px;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 8px 0;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    bottom: 0;
    left: 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a.active {
    color: var(--primary-blue);
    font-weight: 700;
}

.mobile-toggle {
    display: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--primary-blue);
    background: none;
    border: none;
    padding: 8px;
    border-radius: var(--border-radius-sm);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    margin-top: 90px;
    height: 600px;
    overflow: hidden;
    border-radius: 0 0 var(--border-radius-xl) var(--border-radius-xl);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 60px;
    max-width: 800px;
    background: rgba(26, 86, 219, 0.85);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    margin: 0 20px;
}

.slide-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.7), rgba(30, 58, 138, 0.8));
    z-index: 1;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-nav button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.slider-nav button:hover {
    background: white;
    transform: scale(1.1);
}

/* Hero Section - Professional Financial Services */
.hero {
    padding-top: 120px;
    padding-bottom: 120px;
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: 40% 30% 60% 40%;
    transform: rotate(15deg);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    color: var(--dark-blue);
    margin-bottom: 32px;
    line-height: 1.1;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--teal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.hero-text .lead-text {
    margin-bottom: 40px;
    font-size: 1.3rem;
    color: var(--dark-gray);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0 48px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 14px 22px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(30, 86, 219, 0.1);
    transition: var(--transition-fast);
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.badge i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.badge-accent {
    background: linear-gradient(135deg, var(--light-blue), white);
    border-color: rgba(30, 86, 219, 0.2);
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Hero Image with Professional Design */
.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-visual {
    width: 100%;
    height: 500px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 60px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: moveBackground 20s linear infinite;
    z-index: 1;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.hero-visual i {
    font-size: 5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.hero-visual h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-size: 2rem;
}

.hero-visual p {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

/* RBI Compliance Banner */
.rbi-banner {
    background: linear-gradient(135deg, var(--success-green) 0%, #10B981 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rbi-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rbi-content i {
    font-size: 2.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

.rbi-text {
    text-align: left;
}

.rbi-text strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 5px;
}

.rbi-text span {
    opacity: 0.9;
    font-size: 1rem;
}

/* Stats Section */
.stats {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="white" opacity="0.1"/></svg>');
    animation: moveBackground 30s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Preview */
.services-preview {
    background: var(--light-gray);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(30, 86, 219, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(30, 86, 219, 0.2);
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.8rem;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--medium-gray);
    font-size: 1.05rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
    position: relative;
    z-index: 1;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
}

.service-features i {
    color: var(--success-green);
    font-size: 0.9rem;
}

/* Trust Indicators */
.trust-indicators {
    background: white;
    padding: 80px 0;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.indicator-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid rgba(30, 86, 219, 0.1);
}

.indicator-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.indicator-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.indicator-item h4 {
    margin-bottom: 16px;
    color: var(--dark-blue);
    font-size: 1.4rem;
}

/* Process Section */
.process-section {
    background: var(--gradient-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    counter-reset: step-counter;
}

.process-step {
    background: white;
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(30, 86, 219, 0.1);
}

.process-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -25px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.process-step h4 {
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-size: 1.5rem;
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%23ffffff" opacity="0.05"/></svg>');
    animation: moveBackground 60s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    color: white;
    margin-bottom: 24px;
    font-size: 3rem;
}

.cta p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 60px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.95);
}

.cta-btns {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 100px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--teal-blue));
    left: 0;
    bottom: 0;
}

.footer-column p {
    opacity: 0.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.contact-info {
    margin-top: 20px;
}

.contact-info li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-info i {
    color: var(--accent-blue);
    margin-top: 5px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: white;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition-fast);
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-blue);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    .hero-slider {
        height: 500px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .hero-slider {
        height: 400px;
        margin-top: 80px;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        padding: 40px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-smooth);
        gap: 30px;
        z-index: 999;
        border-top: 1px solid rgba(30, 86, 219, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-sm {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .slide-content {
        padding: 30px;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    .section-title h2::after {
        width: 80px;
        bottom: -12px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 30px 20px;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .cta p {
        font-size: 1.2rem;
    }
    
    .hero-slider {
        height: 300px;
        margin-top: 70px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Global Unified Header Design */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 86, 219, 0.1);
    z-index: 1200;
    padding: 8px 0;
    transition: all 0.3s ease-in-out;
}

.header.scrolled {
    padding: 4px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    border-radius: 6px;
}
.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.1;
    color: var(--primary-blue);
}
.logo-text span {
    display: block;
    color: var(--navy-blue);
    font-size: 1rem;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-img {
        width: 52px;
        height: 52px;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .logo-text span {
        font-size: 0.9rem;
    }
}
