/* ============================================
   BOOT & BOOST - MAIN STYLESHEET
   ============================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
    --primary: #0039a6;
    --primary-dark: #002580;
    --primary-light: #1a52cc;
    --accent: #f97316;
    --accent-hover: #ea6a00;
    --white: #ffffff;
    --light-bg: #f8faff;
    --light-gray: #f1f5f9;
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0,57,166,0.08);
    --shadow-md: 0 8px 24px rgba(0,57,166,0.12);
    --shadow-lg: 0 16px 48px rgba(0,57,166,0.18);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-main: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- UTILITY CLASSES ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    display: inline-block;
    background: rgba(0,57,166,0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 40px 0;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249,115,22,0.35);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(249,115,22,0.5);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,57,166,0.3);
}

.btn-blue:hover {
    background: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(0,57,166,0.5);
    transform: translateY(-2px);
    color: var(--white);
}

/* ============================================
   HEADER — DEFAULT (top pe white)
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* ============================================
   HEADER — SCROLLED STATE (blue background)
   ============================================ */
.header.scrolled {
    background: #0039A6 !important;
    box-shadow: 0 4px 30px rgba(0,20,80,0.4);
}

/* Scrolled: logo */
.header.scrolled .logo-text .name   { color: #ffffff; }
.header.scrolled .logo-text .tagline { color: rgba(255,255,255,0.65); }
.header.scrolled .logo-icon {
    background: #ffffff;
    color: #0039A6;
}

/* Scrolled: nav links */
.header.scrolled .nav-link {
    color: #ffffff;
}
.header.scrolled .nav-link:hover {
    color: #f59e0b;
    background: rgba(255,255,255,0.12);
}
.header.scrolled .nav-link .arrow {
    color: rgba(255,255,255,0.7);
}

/* Scrolled: active link indicator */
.header.scrolled .nav-link.active-link         { color: #f59e0b; }
.header.scrolled .nav-link.active-link::after  { background: #f59e0b; }

/* Scrolled: CTA button */
.header.scrolled .btn-primary {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #ffffff;
}
.header.scrolled .btn-primary:hover {
    background: #d97706;
    border-color: #d97706;
}

/* Scrolled: hamburger lines */
.header.scrolled .hamburger span {
    background: #ffffff;
}

/* ============================================
   HEADER INNER LAYOUT
   ============================================ */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

.header-inner,
.nav,
.nav-item {
    overflow: visible !important;
}

/* ============================================
   LOGO
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 800;
    transition: background 0.4s ease, color 0.4s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .name {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 800;
    color: var(--text-dark);
    transition: color 0.4s ease;
}

.logo-text .tagline {
    font-size: 9px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

/* ============================================
   NAV
   ============================================ */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 6px 12px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0,57,166,0.06);
}

.nav-link .arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-item:hover .arrow {
    transform: rotate(180deg);
}

/* Active link underline */
.nav-link.active-link {
    color: var(--primary);
}
.nav-link.active-link::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    margin-top: 2px;
}

/* ============================================
   DROPDOWN — General (Solutions, Resources)
   ============================================ */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    overflow: hidden;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 12px 18px;
    font-size: 13px;
    color: var(--text-body);
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: rgba(0,57,166,0.06);
    color: var(--primary);
    padding-left: 24px;
}

/* ============================================
   SERVICES DROPDOWN — 2 COLUMN GRID (6 + 6)
   ============================================ */
.dropdown.services-dropdown {
    width: 580px;
    min-width: unset;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-item:hover .dropdown.services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown.services-dropdown a {
    display: block;
    padding: 13px 20px;
    font-size: 13px;
    color: var(--text-body);
    border-bottom: 1px solid #eee;
    transition: var(--transition);
    white-space: normal;
}

/* Left column: right border (vertical divider) */
.dropdown.services-dropdown a:nth-child(odd) {
    border-right: 1px solid #eee;
}

/* Last row: no bottom border */
.dropdown.services-dropdown a:nth-last-child(1),
.dropdown.services-dropdown a:nth-last-child(2) {
    border-bottom: none;
}

.dropdown.services-dropdown a:hover {
    background: rgba(0,57,166,0.06);
    color: var(--primary);
    padding-left: 26px;
}

/* ============================================
   HEADER ACTIONS
   ============================================ */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-btn {
    width: 40px;
    height: 40px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(37,211,102,0.4);
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.1);
    box-shadow: 0 5px 16px rgba(37,211,102,0.6);
    color: white;
}

/* ============================================
   HAMBURGER
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    overflow-y: auto;
    z-index: 999;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
    color: var(--primary);
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #001a6e 0%, #0039a6 40%, #0f52cc 70%, #1a3a8f 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 0px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.15)"/><circle cx="80" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="10" cy="70" r="0.7" fill="rgba(255,255,255,0.12)"/><circle cx="90" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.5;
}

/* Grid overlay */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding:20px 30px;
}

.hero-badge {
    display: inline-block;
    background: rgba(249,115,22,0.15);
    color: #fbbf24;
    border: 1px solid rgba(249,115,22,0.3);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-main);
    font-size: 35px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-bottom: 36px;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
}

.hero-feat-item .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero image side */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.hero-image-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    /* 
       CHANGE HERO IMAGE PATH HERE:
       Replace 'images/hero/hero-main.png' with your actual image path
    */
    /* Image placeholder glow */
    filter: drop-shadow(0 20px 60px rgba(0,57,166,0.4));
}

/* Floating animation cards */
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}

.hero-float-card:nth-child(2) { animation-delay: 0.5s; top: 10%; right: -10%; }
.hero-float-card:nth-child(3) { animation-delay: 1s; bottom: 20%; left: -8%; }
.hero-float-card:nth-child(4) { animation-delay: 1.5s; bottom: 5%; right: 10%; }

.hero-float-card .icon {
    font-size: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   STATS / COUNTER SECTION
   ============================================ */
.stats-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 30px;
    border-right: 1px solid var(--border);
    transition: var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: rgba(0,57,166,0.03);
    border-radius: var(--radius-md);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,57,166,0.08);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-main);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-number .counter {
    font-size: 26px;
    font-weight: 800;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    color: inherit;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,57,166,0.08);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 14px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.service-title {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.services-footer {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   JOURNEY / PROCESS SECTION (UPDATED)
   ============================================ */
.journey-section {
    background: var(--white);
}

.journey-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 50px;
    overflow-x: auto;
    /* CROP PROBLEM SOLUTION: Upar aur neeche padding badha di taaki hover effect na kate */
    padding-top: 15px; 
    padding-bottom: 20px;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 110px;
}

/* Connecting line design */
.journey-step:not(:last-child)::after {
    content: '';
    position: absolute;
    /* Line ko icon ke center me lane ke liye adjust kiya */
    top: 43px; 
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), rgba(0,57,166,0.2));
    z-index: 1;
}

/* Arrow between steps */
.journey-arrow {
    position: absolute;
    top: 35px;
    right: -16px;
    color: var(--primary);
    font-size: 22px;
    z-index: 2;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(0,57,166,0.08);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 10px;
    border: 2px solid rgba(0,57,166,0.15);
    transition: all 0.3s ease; /* Smooth transition */
    position: relative;
    z-index: 3; /* Line se upar dikhane ke liye */
}

/* HOVER EFFECT FIX: Jab pure step par ya direct icon par hover ho */
.journey-step:hover {
    z-index: 10; /* Hover wala step baaki sabhi steps ke upar dikhega, shadow nahi kategi */
}

.journey-step:hover .step-icon {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.15);
    /* Image jaisa shadow effect */
    box-shadow: 0 10px 25px rgba(0, 57, 166, 0.35); 
}

.step-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    margin: 8px auto;
    border: 2px solid rgba(0,57,166,0.3);
}

.step-label {
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    background: var(--light-bg);
}

.products-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    margin-top: 50px;
    align-items: start;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    color: inherit;
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    color: inherit;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.product-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0,57,166,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.product-card:hover .product-logo {
    background: var(--primary);
    transform: rotate(10deg) scale(1.1);
}

.product-name {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.product-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}

.product-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.product-card:hover .product-link {
    gap: 8px;
}

/* Why Choose Box */
.why-choose-box {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    color: white;
    position: sticky;
    top: 90px;
}

.why-title {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.why-item .check {
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #4ade80;
}

/* ============================================
   SUCCESS STORIES (CLIENTS) SECTION (UPDATED)
   ============================================ */
.clients-section {
    background: var(--white);
}

.clients-slider-wrap {
    margin-top: 40px;
    overflow: hidden;
    position: relative;
    /* FIX 1: Vertical padding di taaki card ka hover effect aur shadow upar-neeche se na kate */
    padding-top: 12px;
    padding-bottom: 16px;
    /* Spacing kam ki taaki neeche ka button upar aa sake */
    margin-bottom: 10px; 
}

/* Fade edges */
.clients-slider-wrap::before,
.clients-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.clients-slider-wrap::before {
    left: 0;
    background: linear-gradient(90deg, var(--white), transparent);
}

.clients-slider-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, var(--white), transparent);
}

.clients-track {
    display: flex;
    gap: 24px;
    animation: slideClients 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes slideClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 34px 38px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease; /* Smooth behavior */
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.client-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 57, 166, 0.15); /* Soft premium shadow */
    transform: translateY(-6px); /* Card smoothly floats up */
    color: inherit;
}

.client-logo {
    width: 100%;
    max-width: 230px;
    height: 130px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.client-card:hover .client-logo {
    filter: grayscale(0);
}

/* Fallback if no image */
.client-logo-placeholder {
    width: 170px;
    height: 130px;
    background: rgba(0,57,166,0.06);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 62px;
    transition: var(--transition);
}

.client-card:hover .client-logo-placeholder {
    background: rgba(0,57,166,0.12);
}

.client-name {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
}

.client-website {
    font-size: 12.5px;
    color: var(--primary);
    font-weight: 600;
}

/* FIX 2: Impact row se divider hataya aur gap kam kiya */
.impact-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;    /* Margin kam kiya */
    padding-top: 10px;   /* Padding kam kiya */
    border-top: none;    /* Divider line ko poori tarah hata diya */
}

.impact-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.impact-item:hover {
    background: rgba(0,57,166,0.06);
    transform: translateY(-3px);
}

.impact-number {
    font-family: var(--font-main);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.impact-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   FUNDING SECTION
   ============================================ */
.funding-section {
    background: var(--light-bg);
}

/* ============================================
   TESTIMONIALS (UPDATED)
   ============================================ */
.testimonials-section {
    background: var(--white);
}

.testimonials-slider {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    /* FIX 1: Vertical padding di taaki hover par box-shadow aur card top/bottom se crop na ho */
    padding-top: 15px;
    padding-bottom: 20px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 30px;
    /* FIX 2: Ek row me perfect 4 cards dikhane ke liye calculation standard kiya */
    flex: 0 0 calc(25% - 18px);
    min-width: calc(25% - 18px);
    border: 1.5px solid var(--border);
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-card:hover {
    border-color: var(--primary);
    /* Soft clean premium shadow lagayi */
    box-shadow: 0 12px 30px rgba(0, 57, 166, 0.15);
    transform: translateY(-6px); /* Card smoothly jumps up */
    background: var(--white); /* Hover par card background image jaisa clean white ho jayega */
}

.testimonial-text {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '\201C';
    font-size: 60px;
    color: var(--primary);
    opacity: 0.15;
    line-height: 0;
    position: absolute;
    top: 10px;
    left: -6px;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.author-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.author-info .name {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-dark);
}

.author-info .role {
    font-size: 11.5px;
    color: var(--text-muted);
}

.stars {
    color: #f59e0b;
    font-size: 13px;
    margin-top: 3px;
    letter-spacing: 2px;
}

/* Slider controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}
/* ============================================
   CTA / CONTACT FORM SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #001a6e 0%, #0039a6 50%, #0f52cc 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content {
    color: white;
}

.cta-badge {
    display: inline-block;
    background: rgba(249,115,22,0.2);
    color: #fbbf24;
    border: 1px solid rgba(249,115,22,0.3);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.cta-title {
    font-family: var(--font-main);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-desc {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.cta-perks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-perk {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
}

.cta-perk .check {
    color: #4ade80;
}

/* CTA Visual (rocket image) */
.cta-visual {
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 200px;
    opacity: 0.6;
    pointer-events: none;
    /* 
       CHANGE CTA ROCKET IMAGE:
       Replace with path like 'images/hero/rocket.png'
    */
}

/* Contact Form */
.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--text-dark);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,57,166,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover {
    background: var(--accent-hover);
    box-shadow: 0 6px 20px rgba(249,115,22,0.5);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0039A6;
    color: rgba(255,255,255,0.75);
}

.footer-main {
    padding: 70px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text .name {
    color: white;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 13px;
    color: #FFFFFF;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: white;
    padding-left: 6px;
}

.footer-links a::before {
    content: '›';
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contact info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #FFFFFF;
}

.contact-item .icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-item a {
    color: #FFFFFF;
    transition: var(--transition);
}

.contact-item a:hover {
    color: white;
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 100px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 14px;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-sm);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgb(255, 152, 0);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 12.5px;
    color: rgb(255, 255, 255);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12.5px;
    color: rgb(255, 255, 255);
    transition: var(--transition);
    text-decoration: none;
}

.footer-legal a:hover {
    color: rgb(255, 152, 0);
}

/* WhatsApp floating button */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: var(--transition);
    text-decoration: none;
    animation: pulse 2s ease-in-out infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.7);
    color: white;
    animation: none;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 28px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.15); }
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delay for grid items */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(9) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(10) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }

    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-title { font-size: 38px; }
    .hero-desc { margin: 0 auto 28px; }
    .hero-features { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-visual { display: none; }

    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .products-layout { grid-template-columns: 1fr; }
    .why-choose-box { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { grid-template-columns: 1fr; text-align: center; }
    .cta-perks { justify-content: center; }
}

@media (max-width: 768px) {
    .section-title { font-size: 26px; }
    .section-padding { padding: 60px 0; }

    .stats-grid { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }

    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .journey-steps { gap: 20px; }
    .journey-step:not(:last-child)::after { display: none; }

    .products-grid { grid-template-columns: 1fr; }

    .testimonial-card { min-width: calc(100% - 0px); }

    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .impact-row { grid-template-columns: repeat(2, 1fr); }

    .hero-title { font-size: 30px; }

    .client-card { min-width: 220px; padding: 26px 24px; }
    .client-logo { max-width: 170px; height: 100px; }
    .client-logo-placeholder { width: 130px; height: 100px; font-size: 48px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-row { grid-template-columns: repeat(2, 1fr); }
    .cta-title { font-size: 26px; }
    .contact-form-box { padding: 24px 20px; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}