/* Updated CSS with Why-Choose color scheme applied to header, hero, and footer */

:root {
  /* Core Primary System */
  --primary: #0157ff;
  --primary-dark: #0045d8;
  --primary-light: #4a86ff;
  --primary-gradient: linear-gradient(135deg, #0157ff, #3d7aff);

  --secondary: #ff113b;
  --secondary-dark: #e01036;
  --secondary-light: #ff4d6d;
  --secondary-gradient: linear-gradient(135deg, #ff113b, #ff4d6d);

  --combined-gradient: linear-gradient(135deg, var(--primary), var(--secondary));

  /* Extended Primary Palette */
  --primary-blue: #2563eb;
  --primary-purple: #8b5cf6;
  --primary-green: #10b981;
  --primary-orange: #f59e0b;
  --primary-red: #ef4444;

  /* Dark Mode Base */
  --dark: #111827;
  --dark-secondary: #1f2937;
  --dark-gradient: linear-gradient(135deg, #111827, #374151);

  /* Light Base */
  --light: #f9fafb;
  --light-secondary: #f3f4f6;

  /* Neutral Palette */
  --white: #ffffff;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  /* Gradient Presets */
  --gradient-blue: linear-gradient(135deg, #2563eb, #3b82f6);
  --gradient-purple: linear-gradient(135deg, #8b5cf6, #a78bfa);
  --gradient-green: linear-gradient(135deg, #10b981, #34d399);
  --gradient-orange: linear-gradient(135deg, #f59e0b, #fbbf24);
  --gradient-red: linear-gradient(135deg, #ef4444, #f87171);

  /* Text Colors */
  --text-primary: #111827;
  --text-secondary: #374151;
  --text-tertiary: #6b7280;

  /* Typography Scale */
  --font-xs: clamp(0.694rem, calc(0.655rem + 0.20vw), 0.833rem);
  --font-sm: clamp(0.833rem, calc(0.775rem + 0.29vw), 1rem);
  --font-base: clamp(1rem, calc(0.92rem + 0.40vw), 1.2rem);
  --font-md: clamp(1.2rem, calc(1.089rem + 0.56vw), 1.6rem);
  --font-lg: clamp(1.44rem, calc(1.288rem + 0.76vw), 2.125rem);
  --font-xl: clamp(1.728rem, calc(1.523rem + 1.03vw), 2.827rem);
  --font-2xl: clamp(2.074rem, calc(1.798rem + 1.38vw), 3.767rem);
  --font-3xl: clamp(2.488rem, calc(2.119rem + 1.85vw), 5.018rem);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing Scale */
  --space-3xs: clamp(0.25rem, calc(0.23rem + 0.10vw), 0.313rem);
  --space-2xs: clamp(0.5rem, calc(0.46rem + 0.20vw), 0.625rem);
  --space-xs: clamp(0.75rem, calc(0.69rem + 0.30vw), 0.938rem);
  --space-sm: clamp(1rem, calc(0.92rem + 0.40vw), 1.25rem);
  --space-md: clamp(1.5rem, calc(1.38rem + 0.60vw), 1.875rem);
  --space-lg: clamp(2rem, calc(1.84rem + 0.80vw), 2.5rem);
  --space-xl: clamp(3rem, calc(2.77rem + 1.15vw), 3.75rem);
  --space-2xl: clamp(4rem, calc(3.69rem + 1.55vw), 5rem);
  --space-3xl: clamp(6rem, calc(5.54rem + 2.3vw), 7.5rem);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-inner: inset 0 2px 4px 0 rgba(0,0,0,0.04);

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 250ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 350ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index */
  --z-negative: -1;
  --z-elevate: 1;
  --z-dropdown: 10;
  --z-sticky: 100;
  --z-drawer: 200;
  --z-modal: 300;
  --z-tooltip: 600;
}


/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--text-primary);
    background-color: var(--neutral-50);
    overflow-x: hidden;
    font-weight: 400;
    font-size: var(--font-base);
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.01em;
}

h1 {
    font-size: var(--font-3xl);
    font-weight: 800;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: var(--space-md);
    font-size: var(--font-base);
    color: var(--text-secondary);
    max-width: 65ch;
}

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

a:hover {
    color: var(--primary-light);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
}

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

/* Offering */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-header::after {
            content: "";
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
            border-radius: 2px;
        }
        
        .section-title {
            font-size: 44px;
            font-weight: 800;
            margin-bottom: 18px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        
        .section-subtitle {
            font-size: 22px;
            color: var(--neutral-700);
            max-width: 800px;
            margin: 0 auto 30px;
            font-weight: 500;
            line-height: 1.4;
        }
        
        .section-description {
            font-size: 16px;
            color: var(--neutral-600);
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.7;
        }

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 5;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    font-family: 'Plus Jakarta Sans', sans-serif;
    /* Separate transitions for different properties */
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, #2563eb, #c026d3, #ff113b);
    color: white !important ;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    box-shadow: none;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: rgba(1, 87, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline:active {
    transform: translateY(0);
}

.btn-icon {
    margin-left: var(--space-xs);
    transition: transform var(--transition-normal);
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}





/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 4rem;
    
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230157ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.neural-mesh-slide {
    background-color: transparent;
    position: relative;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

.hero-subtitle {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: var(--font-3xl);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.hero-title span {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: var(--font-md);
    color: var(--neutral-700);
    margin-bottom: var(--space-lg);
    font-weight: 400;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

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

/* Add decoration elements similar to Why Choose section */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.shape-1 {
    background: var(--primary);
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}



/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
    color: var(--primary);
}

.logo-circle {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 5px;
    margin-left: 4px;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background-color: var(--neutral-200);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar {
    height: 100%;
    width: 0;
    background: var(--combined-gradient);
    transition: width 0.2s;
}

/* Cursor effect */
.cursor-dot, .cursor-circle {
    position: fixed;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    z-index: var(--z-tooltip);
}

.cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 10px rgba(1, 87, 255, 0.5);
}

.cursor-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.cursor-dot.active, .cursor-circle.active {
    opacity: 1;
}
.footer-bottom p{
    max-width: 100% !important;
    text-align: center;
    color: var(--neutral-500) !important;
    font-size: 0.85rem !important;
    position: relative;
    z-index: 1;
}
/* Policy Pages Styling */
.policy-page {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--neutral-50);
}

.policy-hero {
    background: var(--cool-gradient-blue);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(1, 87, 255, 0.1), transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(255, 17, 59, 0.05), transparent 30%);
    opacity: 0.8;
    z-index: 0;
}

.policy-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.policy-title {
    font-size: var(--font-2xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.policy-subtitle {
    color: var(--text-secondary);
    font-size: var(--font-base);
}

.policy-content {
    padding: 3rem 0;
}

.policy-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.policy-toc {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.toc-title {
    font-size: var(--font-lg);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.toc-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 0.25rem 0;
    font-size: var(--font-sm);
}

.toc-list a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.policy-text {
    background: white;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: var(--font-xl);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

.subsection-title {
    font-size: var(--font-lg);
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.policy-list {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-list li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-info {
    background: var(--neutral-50);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.75rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .policy-container {
        grid-template-columns: 1fr;
    }
    
    .policy-toc {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .policy-hero {
        padding: 3rem 0;
    }
    
    .policy-title {
        font-size: var(--font-xl);
    }
    
    .policy-content {
        padding: 2rem 0;
    }
    
    .policy-text {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: var(--font-lg);
    }
    
    .subsection-title {
        font-size: var(--font-md);
    }
}

