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

:root {
    --primary-blue: #1e3a8a;
    --primary-orange: #f97316;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
    --gradient-2: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.16);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light-bg);
    transition: background 0.3s, color 0.3s;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-2);
    z-index: 9999;
    transform-origin: left;
    transition: width var(--transition-fast);
}

/* Ensure main sections have top padding to avoid hiding under fixed navbar */
section {
    padding-top: 28px;
}

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

/* Modern Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    align-items: center;
    gap: 10px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover {
    transform: scale(1.05);
}


/* Buttons hover/focus */
.btn:focus,
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}

/* Form focus */
input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 6px 18px rgba(37,99,235,0.08);
}

/* Improve glass card appearance for contact form */
.glass-card {
    backdrop-filter: blur(6px);
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.85));
}

/* Make footer links more readable */
.footer-section ul li {
    color: #cbd5e1;
}
@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Floating Action Button */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
    animation: pulse-float 2s ease-in-out infinite;
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}

.floating-cta i {
    font-size: 1.2rem;
}

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

/* Navigation Actions - Desktop only */
.nav-actions {
    display: none; /* Hidden by default (mobile) */
    align-items: center;
}

.nav-tabs {
    display: flex;
    gap: 0.5rem;
    background: rgba(30, 58, 138, 0.1);
    padding: 4px 6px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

.nav-tab {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-tab:hover,
.nav-tab:focus {
    background: rgba(30, 58, 138, 0.15);
    color: var(--primary-blue);
}

.nav-tab.active {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.25);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover .logo-text {
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 12px rgba(30,58,138,0.07);
    transition: background 0.3s;
}

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

/* NAVBAR LOGO FIX - ensure consistent vertical centering across desktop/tablet */
.nav-container {
    align-items: center; /* reinforce centering */
}

/* Target the actual image element to avoid interfering with .logo pseudo styling (if any) */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.nav-logo img.logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.nav-logo .logo-text {
    line-height: 1;
    margin: 0;
    font-size: 1.3rem;
}

/* If header still appears off-by-a-pixel on some desktop browsers, nudge both elements equally */
@media (min-width: 900px) {
    .nav-logo img.logo,
    .nav-logo .logo-text {
        transform: translateY(0.5px);
    }
}

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

/* Desktop: show nav-menu, hide hamburger and nav-actions with tabs */
@media (min-width: 901px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-actions {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
}

body {
    padding-top: 72px;
}

.nav-link:hover {
    color: #f97316;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background: linear-gradient(90deg, #f97316, #1e3a8a);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #f97316;
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #f97316;
}

/* When navbar has .scrolled give subtle background */
.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 8px 32px rgba(2,6,23,0.08);
}

/* Nav link base styles */
.nav-item {
    position: relative;
}

.nav-link {
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 6px;
    display: inline-block;
}

/* Mobile and Tablet behavior */
@media (max-width: 900px) {
    /* Hide desktop nav-menu by default on mobile */
    .nav-menu {
        position: fixed;
        display: none;
        flex-direction: column;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 5rem 2rem 2rem;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease;
        opacity: 0;
        pointer-events: none;
    }
    
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1001;
    }
    
    /* Hide nav-tabs on mobile */
    .nav-actions {
        display: none !important;
    }
    
    .nav-menu.show {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-menu .nav-item {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 8px;
        text-align: center;
        transition: all 0.2s ease;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(249, 115, 22, 0.2);
        color: #f97316;
        transform: scale(1.05);
    }
    
    /* Staggered animation delays */
    .nav-menu .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu .nav-item:nth-child(4) { transition-delay: 0.25s; }
    
    body.nav-open {
        overflow: hidden;
    }
}

/* Hero responsiveness */
@media (max-width: 900px) {
    .hero {
        padding: 96px 0 56px;
        min-height: auto;
    }
    .hero-container {
        flex-direction: column;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .slide-caption {
        font-size: 1rem;
        padding: 30px 15px 15px;
    }
}

/* Form controls */
input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e6edf3;
    background: #fff;
    font-size: 0.98rem;
    color: #0f172a;
    box-shadow: inset 0 1px 0 rgba(16,24,40,0.02);
}

label {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-weight: 600;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.btn-primary {
    background: linear-gradient(90deg, #2563eb, #f97316);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.btn {
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 10px;
}

.btn[disabled],
.btn.disabled {
    opacity: 0.6;
    pointer-events: none;
    transform: none;
}

.btn:focus {
    outline: 3px solid rgba(37,99,235,0.12);
}

/* Make grids responsive */
@media (max-width: 700px) {
    .form-grid { grid-template-columns: 1fr; }
}

/* Hero Section */
.hero {
    background: var(--gradient-1);
    color: white;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 40px 20px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

@media (max-width: 600px) {
    .slide-caption {
        font-size: 0.85rem;
        padding: 18px 8px 10px;
    }
    
    /* Make logo slide appear zoomed out on mobile */
    .slide-logo img {
        object-fit: contain;
        padding: 140px 70px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Show left side of 9.png image on mobile */
    .slide-9 img {
        object-position: 20% center;
    }
}

.hero-slideshow .slide.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

.slideshow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7), rgba(249, 115, 22, 0.5));
    z-index: 2;
    pointer-events: none;
}

/* Animated Background Orbs */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 3;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4), transparent);
    top: -200px;
    left: -100px;
    animation-duration: 15s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4), transparent);
    bottom: -150px;
    right: -100px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.8s ease-out;
}

.trust-badge i {
    color: #fbbf24;
}

/* Hero Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: #f97316;
    font-weight: 700;
    background: #f97316 !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Hero Image Wrapper */
.image-wrapper {
    position: relative;
    animation: fadeIn 1s ease-out 0.6s both;
}

.image-wrapper img {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Floating Cards on Hero Image */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1s;
}

.card-3 {
    top: 50%;
    right: -40px;
    animation-delay: 2s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeIn 1s ease-out 1s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-text {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 4;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInFromLeft 1s ease-out;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: slideInFromLeft 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInFromLeft 1s ease-out 0.4s both;
}

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInFromRight 1s ease-out 0.3s both;
}

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

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e3a8a, #f97316);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Tracking Widget Section */
.tracking-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, white 100%);
}

.tracking-widget {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.tracking-input-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tracking-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.tracking-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.track-btn {
    padding: 16px 32px;
    white-space: nowrap;
}

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

.tracking-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    padding-left: 2.5rem;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 50px;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: var(--border-color);
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-step.completed::before {
    background: #10b981;
}

.timeline-step.active::before {
    background: var(--primary-orange);
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border-color);
    color: var(--text-light);
    flex-shrink: 0;
    position: absolute;
    left: 0;
}

.timeline-step.completed .step-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.timeline-step.active .step-icon {
    background: var(--gradient-2);
    color: white;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.step-content h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.timestamp {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.tracking-map {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--primary-blue);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.route-animation {
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    margin: 1rem auto 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.route-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-orange);
    animation: route-move 2s ease-in-out infinite;
}

@keyframes route-move {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.lead-text:last-of-type {
    margin-bottom: 3rem;
}

/* Animated Stats Dashboard */
.stats-dashboard {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all var(--transition-normal);
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stat-progress {
    width: 100%;
    height: 6px;
    background: rgba(30, 58, 138, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-2);
    border-radius: 3px;
    transition: width 1.5s ease-out;
    animation: progress-fill 2s ease-out;
}

@keyframes progress-fill {
    from {
        width: 0;
    }
}

/* Counter Animation */
.counter {
    display: inline-block;
}

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

.stat-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(249, 115, 22, 0.05) 100%);
}

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

.vm-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

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

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

.vm-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(5deg);
}

.vm-icon i {
    font-size: 2rem;
    color: white;
}

.vm-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.vm-card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vm-card {
        padding: 2rem;
    }
}


/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* 3D Flip Service Cards */
.service-card-3d {
    perspective: 1000px;
    height: 400px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card-3d:hover .card-inner {
    transform: rotateY(180deg);
}

.service-card-3d .card-inner.flipped {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 2rem;
    background: white;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.card-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--border-color);
}

.card-back {
    background: var(--gradient-1);
    color: white;
    transform: rotateY(180deg);
    justify-content: space-between;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.service-card-3d:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-front h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.card-front p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: auto;
}

.learn-more-btn {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-normal);
    margin-top: 1rem;
}

.learn-more-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(4px);
}

.back-btn-card {
    display: none;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-normal);
    margin-top: 1rem;
}

.back-btn-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.55);
}

.card-back h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.card-back ul {
    list-style: none;
    padding: 0;
    flex: 1;
}

.card-back ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.card-back ul li i {
    color: #fbbf24;
}

.contact-btn-card {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 100%;
}

.contact-btn-card:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* Old service card styles for compatibility */
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8fafc;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: white;
}

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

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    border-color: #f97316;
}

.industry-item i {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.industry-item:hover i {
    color: #f97316;
    transform: scale(1.1);
}

.industry-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
}


.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    width: 2px;
    height: 30px;
    background: #e2e8f0;
}

.timeline-item.completed::after {
    background: #10b981;
}

.timeline-item.active::after {
    background: #f97316;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.timeline-item.completed .timeline-icon {
    background: #10b981;
}

.timeline-item.active .timeline-icon {
    background: #f97316;
}

.timeline-item .timeline-icon {
    background: #e2e8f0;
    color: #64748b;
}

.timeline-content h4 {
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: #64748b;
    font-size: 0.875rem;
}


/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, #f8fafc 100%);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    scroll-behavior: smooth;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.author-info h4 {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.rating {
    display: flex;
    gap: 4px;
    color: #fbbf24;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

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

.badge-item i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.badge-item span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Contact Section */
/* Contact Section - Overhauled */
.contact {
    padding: 64px 0 64px 0;
    background: #f6f8fa;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1 1 320px;
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(30,58,138,0.07);
    padding: 32px 28px;
}

.contact-details {
    margin-top: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #2563eb, #f97316);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(30,58,138,0.08);
}

.contact-text h4 {
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.25rem;
    font-size: 1.08rem;
}

.contact-text p {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-text .address-label {
    font-weight: 600;
    color: #f97316;
    margin-top: 0.5rem;
    margin-bottom: 0.1rem;
    display: block;
    font-size: 0.98rem;
}

.contact-form {
    flex: 1 1 320px;
    min-width: 280px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(30,58,138,0.07);
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.75rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.form-group.full-width {
    width: 100%;
}

#contactForm {
    display: block;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #1e3a8a;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.form-status {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color 0.3s ease;
    min-height: 1.2rem;
}

.form-status.sending {
    color: var(--primary-blue);
}

.form-status.success {
    color: #16a34a;
}

.form-status.error {
    color: #dc2626;
}

/* Footer */
/* Footer - Overhauled */
.footer {
    background: #1e293b;
    color: #f1f5f9;
    padding: 56px 0 18px 0;
}

.footer { padding-bottom: 32px; }

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 32px auto;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 180px;
    margin-bottom: 18px;
}

.footer-section h4 {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: #f97316;
    letter-spacing: 0.01em;
}

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

.footer-section ul li {
    margin-bottom: 0.65rem;
    line-height: 1.7;
    font-size: 0.98rem;
}

.footer-section .address-label {
    font-weight: 600;
    color: #f97316;
    margin-top: 0.5rem;
    margin-bottom: 0.1rem;
    display: block;
    font-size: 0.97rem;
}

.footer-section ul li a {
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.1rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo .logo-text {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: 0.97rem;
}

/* Footer mobile tweaks */
@media (max-width: 700px) {
    .footer-content { padding: 0 20px; }
    .footer-section { width: 100%; }
    .footer-section ul li { font-size: 0.95rem; }
}

/* Address label emphasis */
.address-label {
    display: inline-block;
    font-weight: 700;
    color: #f97316;
    margin-right: 6px;
}

@media (max-width: 900px) {
    .contact-content,
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info,
    .contact-form,
    .footer-section {
        min-width: 0;
        width: 100%;
        margin-bottom: 12px;
    }

    .footer-section {
        flex: none;
    }

    .footer-logo {
        margin-bottom: 0.75rem;
    }
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social links removed (not in use) */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-image img {
        max-width: 500px;
        height: 350px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .input-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    #contactForm {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.1rem;
    }
    
    .footer-section {
        flex: none;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-logo img {
        width: 60px;
        height: 60px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    
    .footer-logo .logo-text {
        text-align: center;
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .footer-section p {
        max-width: 300px;
        margin: 0 auto 1.5rem auto;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-section h4 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 400px;
        height: 300px;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .service-card { padding: 1.5rem; }
    
    /* logos responsive rules removed */
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        padding: 0 1rem;
    }
    
    .footer-section h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        font-size: 0.875rem;
        max-width: 280px;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-logo img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    
    .footer-logo .logo-text {
        text-align: center;
        margin-left: 0;
        color: white;
        font-size: 1.375rem;
        font-weight: 700;
    }
    
    .social-links {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 360px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section {
        padding: 0 0.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p {
        font-size: 0.8rem;
        max-width: 250px;
        margin-bottom: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.875rem;
    }
    
    .social-links {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .footer-logo img {
        width: 45px;
        height: 45px;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    
    .footer-logo .logo-text {
        font-size: 1.25rem;
        text-align: center;
        margin-left: 0;
        color: white;
        font-weight: 700;
    }
    
    .footer-bottom {
        padding: 0.75rem 0.5rem;
        margin-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

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

.feature-card,
.service-card {
    animation: fadeInUp 0.6s ease;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Contact Form Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #b21f1f;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

@media (max-width: 768px) {
    /* Contact Form */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 25px;
    }

    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* ========================================
   2026 MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 900px) {
    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .metric-value {
        font-size: 1.8rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
    
    .floating-card {
        display: none; /* Hide floating cards on mobile for cleaner look */
    }
    
    .image-wrapper img {
        height: 300px;
    }
    
    /* Floating CTA Mobile */
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .floating-cta span {
        display: none;
    }
    
    /* Tracking Widget Mobile */
    .tracking-demo {
        grid-template-columns: 1fr;
    }
    
    .tracking-input-wrapper {
        flex-direction: column;
    }
    
    .tracking-map {
        min-height: 200px;
    }
    
    /* Service Cards Mobile - Button-triggered flip */
    .service-card-3d {
        height: 440px;
    }

    .card-inner {
        transition: transform 0.6s ease;
    }

    .card-front,
    .card-back {
        padding: 1.75rem;
    }

    .card-back {
        justify-content: flex-start;
        gap: 1.25rem;
    }

    .card-back ul {
        margin-bottom: 1rem;
    }

    .service-card-3d:hover .card-inner:not(.flipped) {
        transform: none;
    }

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

    .back-btn-card {
        display: inline-flex;
    }
    
    /* Stats Dashboard Mobile */
    .stats-dashboard {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Mobile */
    .testimonials-slider {
        padding: 0 40px;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Trust Badges Mobile */
    .trust-badges {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    /* Extra small devices */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .floating-cta {
        padding: 12px;
        border-radius: 50%;
    }
    
    .floating-cta i {
        margin: 0;
    }
    
    .tracking-widget {
        padding: 1.5rem;
    }
    
    .slider-btn {
        display: none;
    }
    
    .testimonials-slider {
        padding: 0 20px;
    }
}

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

/* Print Styles */
@media print {
    .navbar,
    .floating-cta,
    .scroll-progress,
    .testimonials-slider .slider-btn {
        display: none !important;
    }
}
