:root {
  /* Colors */
  --primary-color: #4F46E5;
  --primary-hover: #4338CA;
  --primary-light: #E0E7FF;
  --secondary-color: #EC4899;
  
  --text-dark: #0F172A;
  --text-gray: #475569;
  --text-light: #94A3B8;
  
  --bg-color: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --border-color: #E2E8F0;

  /* Typography */
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 5rem;
  --spacing-4xl: 8rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

[data-theme="dark"] {
  --text-dark: #F8FAFC;
  --text-gray: #CBD5E1;
  --text-light: #64748B;
  
  --bg-color: #0F172A;
  --bg-white: #1E293B;
  --bg-glass: rgba(30, 41, 59, 0.7);
  --border-color: #334155;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

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

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

body {
  font-family: var(--font-family);
  color: var(--text-gray);
  background-color: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 {font-size: 23px;font-weight: 400;}
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-md);
}

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

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

/* Layout & Grid Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-2xl) 0;
}

.section-sm {
  padding: var(--spacing-2xl) 0;
}

.grid {
  display: grid;
  gap: var(--spacing-xl);
}

.grid-cols-2 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 768px) {
  .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  h1 { font-size: 4rem; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.bg-white { background-color: var(--bg-white); }
.mb-0 { margin-bottom: 0 !important; }
.mt-xl { margin-top: var(--spacing-xl); }
.mt-2xl { margin-top: var(--spacing-2xl); }
.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.logo-icon1 img {
    width: 233px;
}
.image-box>img {
    position: absolute;
    height: 551px !important;
    bottom: -65px;
}
/* ravindr */
/* ========================================
   CTA SECTION — LaraPush
   ======================================== */

.cta-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background:
   linear-gradient(135deg, rgb(11 28 59) 0%, rgba(0, 25, 80, 0.95) 100%), center center / cover no-repeat;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.cta-section .btn-primary {
  background: #0067F5;
  border: none;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-section .btn-primary:hover {
  background: #0052cc;
  transform: translateY(-2px);
}
.image-box {
    text-align: center;
}

.image-box img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .image-box img {
        width: 100%;
    }
    .image-box {
    text-align: center;
    margin-left: -78px;
}
}

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

.image-fit img {
    width: 100%;
    max-width: 600px; /* Desktop max width */
    height: auto;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .image-fit img {
        max-width: 500px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .image-fit {
        padding: 0 15px;
    }

    .image-fit img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; /* header height ke barabar */
  left: 0;
  right: 0;
  background: #fff;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-top: 1px solid #eee;
}
.mobile-nav.open {
  display: block !important;
}

/* ravinder saini */

.footer-color{
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.dark1 {
    color: #000000;
}