/* Global Styles for Devraj infotech */

:root {
  --color-primary: #2A0F63;          /* Deep Purple */
  --color-primary-dark: #1B083F;     /* Darker Purple */
  --color-secondary: #3B1B7A;        /* Purple Secondary */

  --color-accent-gold: #7C3AED;      /* Logo Purple (used in accent button etc.) */
  --color-accent-gold-dark: #6D28D9; /* Dark Purple */

  --color-accent-green: #22B8FF;     /* Sky Blue (used in primary CTA etc.) */

  --color-bg: #f4f6fb;
  --color-bg-alt: #e9edf6;
  --color-text: #1f2933;
  --color-muted: #6b7280;
  --color-border: #d1d5db;

  --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.12);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;
}

* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}


html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans Devanagari', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}
:root {
  --primary: #22B8FF;        /* Sky Blue */
  --primary-soft: #E9F7FF;   /* Sky Blue soft bg */
  --border-soft: #CDEEFF;    /* Soft border */
  --text-dark: #1f2937;
  --text-muted: #6b7280;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
}

body {
  background: #f9fbff;
  color: var(--text-dark);
}
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f6f9fc;
}
/* ================= ROOT ================= */
:root {
  --nav-bg: rgba(42, 15, 99, 0.92);                 /* Purple glass */
  --nav-bg-mobile: linear-gradient(180deg, #2A0F63, #1B083F);
  --accent: #22B8FF;                                 /* Sky Blue highlight */
  --text-light: #e5e7eb;

  --footer-bg: #12062D;                              /* Deep purple */
  --footer-dark: #1B083F;
  --footer-border: #22B8FF;                          /* Sky Blue top border */
  --text-muted: #cbd5f5;
}


/* ================= HEADER ================= */
.logo {
  width: 200px; /* Adjust width as per your logo size */
  height: auto;
}

.logo img {
  width: 100%;
  height: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(42, 15, 99, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: none;

  transition: 
    background 0.3s ease,
    box-shadow 0.3s ease;
}


/* ================= INNER ================= */
/* ================= HEADER FIX ================= */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ================= LOGO ================= */
.logo {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  white-space: nowrap;
}

/* ================= DESKTOP NAV ================= */
.main-nav ul {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
  border-color: var(--accent);
}


/* ================= LANGUAGE TOGGLE ================= */
.lang-toggle-nav {
  display: flex;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 3px;
}

.lang-toggle-nav button {
  border: none;
  background: transparent;
  color: #ffffff;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
}

.lang-toggle-nav button.active {
  background: var(--accent);
  color: #2A0F63;
}

/* ================= APPLY BUTTON ================= */
.btn-apply {
  background: var(--accent);
  color: #22B8FF;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

/* ================= HAMBURGER ================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #ffffff;
  cursor: pointer;
}

/* ================= TABLET & MOBILE NAV (PRO) ================= */
@media (max-width: 1024px) {
  

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px; /* exactly below header */
    left: 0;
    width: 100%;

    /* Premium glass background */
    background: linear-gradient(
      180deg,
      rgba(42, 15, 99, 0.92),
      rgba(42, 15, 99, 0.92)
    );
    backdrop-filter: blur(10px);

    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;

    box-shadow:
      0 20px 40px rgba(0,0,0,0.45),
      inset 0 1px 0 rgba(255,255,255,0.06);

    transform: translateY(-16px);
    
    pointer-events: none;

    transition:
      transform 0.3s ease,
      opacity 0.25s ease;
    z-index: 999;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Menu list */
  .main-nav ul {
    display: flex;
    flex-direction: column;
    padding: 24px 22px 26px;
    gap: 4px;
  }

  /* Menu links */
  .main-nav a {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;

    padding: 12px 6px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);

    transition:
      background 0.2s ease,
      padding-left 0.2s ease,
      color 0.2s ease;
  }

  .main-nav a:hover {
    background: rgba(255,255,255,0.08);
    padding-left: 14px;
    color: var(--accent);
  }
}

@media (max-width: 600px) {
  .header-inner {
    height: auto;
    padding: 10px 12px;
    gap: 10px;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .btn-apply {
    padding: 7px 12px;
    font-size: 13px;
  }
}


/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .logo {
    font-size: 18px;
  }
}

/* ================= BODY LOCK ================= */
body.menu-open {
  overflow: hidden;
}

/* ================= STICKY ON SCROLL ================= */
.site-header.scrolled {
  background: rgba(42, 15, 99, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

/* Slight compact feel after scroll */
.site-header.scrolled .header-inner {
  height: 64px;
  transition: height 0.25s ease;
}

/* Adjust mobile dropdown position after scroll */
@media (max-width: 1024px) {
  .site-header.scrolled .main-nav {
    top: 64px;
  }
}


/* ===============================
   STATS SECTION (ENHANCED)
================================ */
.stats-section {
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #f3f7fd 100%
  );
  padding: 70px 20px 60px;
  text-align: center;
}

.stats-section h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 50px;
  color: rgba(42, 15, 99, 0.92);
}

/* GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: auto;
}

/* STAT CARD */
.stat {
  padding: 20px 10px;
  border-radius: 16px;
  transition: all 0.35s ease;
  cursor: default;
}

/* GLOW ON HOVER */
.stat:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 25px #22B8FF,
    0 0 0 1px #22B8FF;
  transform: translateY(-6px);
}

/* ICON (EMOJI) */
.stat span {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}

/* NUMBER */
.stat h3 {
  font-size: 36px;
  font-weight: 800;
  color: #22B8FF;
  margin: 6px 0;
}

/* LABEL */
.stat p {
  font-size: 15px;
  color: #3a4b5c;
  margin: 0;
}
/* ===============================
   MOBILE STATS FIX (IMPORTANT)
================================ */

/* Tablet */
@media (max-width: 768px) {
  .stats-section {
    padding: 50px 14px 40px;
  }

  .stats-section h2 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 30px;
  }

  .stats-grid {
    gap: 18px;
  }

  .stat h3 {
    font-size: 30px;
  }

  .stat span {
    font-size: 32px;
  }
}

/* Mobile slider polish */
@media (max-width: 600px) {
  .stats-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .stat {
    min-width: 85%;
    margin: 0 auto;
    scroll-snap-align: center;
    background: rgba(255,255,255,0.75);
  }

  .stat h3 {
    font-size: 32px;
  }

  .stat p {
    font-size: 14px;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .stats-section h2 {
    font-size: 22px;
  }

  .stat {
    min-width: 92%;
    padding: 18px 10px;
  }

  .stat span {
    font-size: 28px;
  }

  .stat h3 {
    font-size: 28px;
  }
}

/* ===============================
   ANIMATED UNDERLINE HEADING
================================ */
.section-title {
  position: relative;
  display: inline-block;
  font-size: 34px;
  font-weight: 800;
  color: #22B8FF;
  margin-bottom: 55px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #22B8FF, #38bdf8);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.8s ease;
}

/* Trigger animation */
.section-title.animate::after {
  width: 120px;
}
@media (max-width: 600px) {
  .stats-grid::after {
    content: "← Swipe →";
    display: block;
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-top: 10px;
    opacity: 0.7;
  }
}


/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 50px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
}

.services-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.service-card {
  background: #fff;
  border: 2px solid var(--border-soft);
  border-radius: 26px;
  padding: 20px 15px;
  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
  height: 100%; /* 🔑 important */
}


.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px #22B8FF;
}

.service-card .icon {
  font-size: 44px;
  margin-bottom: 16px;
  margin-top: 10px;
  display: block;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: rgb(15, 13, 13);
  line-height: 1.6;
  margin-bottom: 22px;
  font-weight: 500;
}

.learn-more {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.6px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto; /* 🔥 MAGIC LINE */
  align-self: center;
}

.learn-more:hover {
  background: var(--primary);
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-wrapper {
    grid-template-columns: 1fr;
  }

  .stats-section h2,
  .services-section h2 {
    font-size: 28px;
  }
}
@media (max-width: 1024px) and (min-width: 600px) {
  .grid,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}


a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 640px;
  color: var(--color-muted);
  margin-bottom: 2rem;
}

.alt-bg {
  background: var(--color-bg-alt);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 31, 59, 0.97);
  backdrop-filter: blur(10px);
  color: #f9fafb;
  box-shadow: 0 2px 10px #22B8FF;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f9fafb;
}

.logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .brand-en {
  font-size: 0.95rem;
  font-weight: 600;
}

.logo-text .brand-mr {
  font-size: 0.8rem;
  opacity: 0.9;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  border: 1px solid #22B8FF;
}

.lang-btn {
  border: none;
  background: transparent;
  color: #e5e7eb;
  font-size: 0.8rem;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--color-accent-gold);
  color: #111827;
}

.lang-switcher .divider {
  color: #9ca3af;
  font-size: 0.8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-med), color var(--transition-med), box-shadow var(--transition-med), transform var(--transition-med);
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-green), #1f9250);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(5, 150, 105, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1f9250, var(--color-accent-green));
  transform: translateY(-1px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-gold-dark));
  color: #111827;
  box-shadow: 0 10px 18px rgba(34,184,255,0.75);
}

.btn-accent:hover {
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.8);
  color: #e5e7eb;
  background: transparent;
}

.btn-outline:hover {
  background: #22B8FF;
}

/* Hero */

/* ================= HERO FIX ================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: none !important;
  overflow: hidden;
}
.hero-bg-overlay{
  position:absolute;
  inset:0;

  /* 1) Stronger overlay for text readability */
  background:
    linear-gradient(
      90deg,
      rgba(40, 14, 92, 0.92) 0%,     /* deep purple left */
      rgba(40, 14, 92, 0.70) 35%,    /* keep dark till text area */
      rgba(34, 184, 255, 0.14) 55%,  /* sky tint mid */
      rgba(18, 6, 45, 0.90) 100%     /* deep right */
    ),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* 2) Extra dark layer only for text clarity (optional but best) */
.hero-bg-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.28);   /* increase to 0.35 if still light */
  z-index:0;
}

/* keep your glow layer if you have ::after */
.hero-bg-overlay::after{
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
}

.hero-content h1 {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.25;
}

.hero-sub {
  color: #e5e7eb;
  max-width: 540px;
}

.eyebrow {
  color: #9ca3af;
  letter-spacing: 0.14em;
}


.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}

.tag {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
}

.tag-gold {
  background: rgba(250, 204, 21, 0.1);
  color: rgba(34,184,255,0.75);
  border: 1px solid rgba(34,184,255,0.75);
}

.tag-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-accent-green);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 90px 0 50px;
  }

  .hero-card-grid {
    grid-template-columns: 1fr;
  }
}
.hero-card {
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 20px 40px rgba(0,0,0,0.55);
}

.hero-card h3 {
  color: #ffffff;
}

.hero-card p {
  color: #d1d5db;
}
.site-header {
  background: linear-gradient(
    180deg,
    rgba(11, 31, 59, 0.98),
    rgba(11, 31, 59, 0.92)
  );
  backdrop-filter: blur(12px);
}


.hero-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent-gold);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.8);
}

.hero-image-placeholder {
  border-radius: 1rem;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  padding: 0.75rem 0.9rem;
  font-size: 0.8rem;
  color: #9ca3af;
  background: radial-gradient(circle at top left, rgba(236, 72, 153, 0.18), rgba(37, 99, 235, 0.28));
}


/* Generic image frame for photos */

.image-frame {
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #020617;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Info Cards & Panels */

.info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.info-card .highlight {
  margin-top: 0.75rem;
  font-weight: 500;
  color: var(--color-accent-green);
}

/* Compact variant for small quote card */

.info-card-compact {
  padding: 0.7rem 0.9rem;
  max-width: 320px;
}

.info-card-compact .highlight {
  font-size: 0.9rem;
  line-height: 1.45;
}

.info-card-compact .image-frame {
  height: 230px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.panel-image-placeholder {
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border);
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: var(--color-muted);
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.18), rgba(209, 213, 219, 0.4));
}

.panel-image-placeholder.large {
  min-height: 200px;
}

.panel-image-placeholder.medium {
  min-height: 160px;
}

/* Lists */

.check-list,
.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
}

.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.8rem;
  color: var(--color-accent-green);
}

.bullet-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
}

.bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1rem;
  color: var(--color-secondary);
}
/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1001; /* Ensures it's above other content */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* Centers the modal */
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0; /* Make sure it's invisible by default */
  transition: opacity 0.3s ease; /* Smooth transition for visibility */
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  max-height: 90vh; /* To prevent it from being too tall on smaller screens */
  overflow-y: auto;
}

.modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.modal .close:hover {
  color: #f00;
}

/* Modal Form Fields */
.field {
  margin-bottom: 15px;
}

input, select {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 14px;
}

button[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #45a049;
}


@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }

  .hero-bg-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(2, 6, 23, 0.92),
        rgba(2, 6, 23, 0.92)
      ),
      url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80');
  }
}

/* Highlights Section */

.highlights .info-card {
  text-align: left;
}

/* ================= HERO ANIMATIONS ================= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* Background slow zoom (premium look) */
.hero-bg-overlay {
  will-change: transform;
  animation: heroBgZoom 14s ease-in-out infinite alternate;
}
@keyframes heroBgZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.04); }
}

/* Soft floating glow overlay */
.hero-bg-overlay::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,183,3,0.12), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(16,185,129,0.10), transparent 60%);
  filter: blur(20px);
  animation: heroGlowFloat 10s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes heroGlowFloat {
  0%   { transform: translate3d(-10px, -8px, 0); opacity: 0.55; }
  100% { transform: translate3d(12px, 10px, 0); opacity: 0.85; }
}

/* Hero content entrance */
.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-sub,
.hero-cta {
  opacity: 0;
  transform: translateY(14px);
  animation: heroFadeUp 850ms cubic-bezier(.2,.9,.2,1) forwards;
}

.hero-content .eyebrow { animation-delay: 0.10s; }
.hero-content h1       { animation-delay: 0.20s; }
.hero-content .hero-sub{ animation-delay: 0.32s; }
.hero-cta              { animation-delay: 0.44s; }

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Tags pop-in stagger */
.hero-tags .tag {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  animation: tagPop 650ms cubic-bezier(.2,.9,.2,1) forwards;
}
.hero-tags .tag:nth-child(1) { animation-delay: 0.34s; }
.hero-tags .tag:nth-child(2) { animation-delay: 0.40s; }
.hero-tags .tag:nth-child(3) { animation-delay: 0.46s; }
.hero-tags .tag:nth-child(4) { animation-delay: 0.52s; }

@keyframes tagPop {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Cards entrance + stagger */
.hero-card {
  opacity: 0;
  transform: translateY(18px);
  animation: cardIn 750ms cubic-bezier(.2,.9,.2,1) forwards;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  position: relative;
  overflow: hidden;
}
.hero-card:nth-child(1) { animation-delay: 0.50s; }
.hero-card:nth-child(2) { animation-delay: 0.60s; }
.hero-card:nth-child(3) { animation-delay: 0.70s; }
.hero-card:nth-child(4) { animation-delay: 0.80s; }

@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Premium hover: lift + subtle shine */
.hero-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 60%;
  height: 180%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.10), transparent);
  transform: rotate(12deg);
  transition: left 450ms ease;
  pointer-events: none;
}
.hero-card:hover::before { left: 120%; }

.hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,184,255,0.75);
  box-shadow: 0 24px 50px rgba(0,0,0,0.60);
}

/* CTA button micro animation (soft pulse for primary) */
.hero-cta .btn-primary,
.hero-cta a.btn-primary,
.hero-cta button.btn-primary {
  position: relative;
  overflow: hidden;
}
.hero-cta .btn-primary::after,
.hero-cta a.btn-primary::after,
.hero-cta button.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.35);
  animation: ctaPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.00); }
  50%      { box-shadow: 0 0 0 10px rgba(16,185,129,0.10); }
}

/* Mobile: reduce animation intensity */
@media (max-width: 768px) {
  .hero-bg-overlay { animation-duration: 18s; }
  .hero-bg-overlay::after { opacity: 0.55; }
}

.home-showcase {
  padding: 80px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.home-showcase-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.home-showcase-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(42, 15, 99, 0.82);
  margin-bottom: 10px;
}

.home-showcase-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 900;
  color: rgba(42, 15, 99, 0.92);
  margin: 0 0 14px;
}

.home-showcase-sub {
  font-size: 16px;
  color: #4b5563;
  max-width: 560px;
  margin: 0 0 18px;
}

.home-showcase-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.home-showcase-cta .btn-outline {
  color: rgba(42, 15, 99, 0.92);
  border-color: rgba(42, 15, 99, 0.25);
}

.home-showcase-cta .btn-outline:hover {
  background: rgba(42, 15, 99, 0.92);
  color: #ffffff;
}

.home-showcase-right {
  position: relative;
  min-height: 340px;
}

.home-showcase-visual {
  position: relative;
  width: 100%;
  min-height: 340px;
}

.home-showcase-hero-img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin-left: auto;
}

.home-showcase-person-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  max-width: 320px;
  height: auto;
  z-index: 2;
}

.home-showcase-float-box {
  position: absolute;
  left: 0;
  top: 18px;
  width: min(240px, 64%);
  background: #ffffff;
  border-radius: 18px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  z-index: 3;
}

.home-showcase-float-title {
  font-weight: 900;
  color: rgba(42, 15, 99, 0.92);
  font-size: 15px;
  margin-bottom: 4px;
}

.home-showcase-float-sub {
  color: #4b5563;
  font-size: 13px;
  margin-bottom: 10px;
}

.home-showcase-float-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-gold-dark));
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}

.home-showcase-float-link:hover {
  text-decoration: none;
}

.showcase-device-top {
  height: 54px;
  background: rgba(255, 255, 255, 0.08);
}

.showcase-device-content {
  padding: 18px;
}

.showcase-chip {
  width: 74px;
  height: 18px;
  border-radius: 999px;
  background: rgba(34, 184, 255, 0.75);
  margin-bottom: 16px;
}

.showcase-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: 10px;
}

.showcase-lines span:nth-child(1) { width: 86%; }
.showcase-lines span:nth-child(2) { width: 68%; }
.showcase-lines span:nth-child(3) { width: 78%; margin-bottom: 16px; }

.showcase-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.showcase-mini-card {
  height: 84px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-float-card {
  position: absolute;
  right: 240px;
  top: 26px;
  width: 170px;
  height: 110px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.showcase-float-card.alt {
  right: 210px;
  top: 164px;
  width: 190px;
  height: 120px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(34, 184, 255, 0.14));
}

.home-showcase-features {
  margin-top: 44px;
}

.home-showcase-features-title {
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  color: rgba(42, 15, 99, 0.92);
  margin: 0 0 20px;
}

.home-showcase-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-feature {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.10);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  text-align: left;
}

.home-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 184, 255, 0.75);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.16);
}

.home-feature.featured {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 22px 60px rgba(124, 58, 237, 0.12);
}

.home-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(34, 184, 255, 0.14));
  margin-bottom: 12px;
  font-size: 20px;
}

.home-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home-feature h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: rgba(42, 15, 99, 0.92);
}

.home-feature p {
  margin: 0;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .home-showcase-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-showcase-right {
    min-height: 320px;
  }

  .home-showcase-hero-img {
    margin-left: 0;
    max-width: 560px;
  }

  .home-showcase-visual {
    min-height: 360px;
  }

  .home-showcase-person-img {
    max-width: 340px;
  }

  .showcase-device {
    margin-left: 0;
  }

  .showcase-float-card {
    right: 40px;
  }

  .showcase-float-card.alt {
    right: 18px;
  }

  .home-showcase-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .home-showcase-title {
    font-size: 32px;
  }

  .home-showcase-visual {
    min-height: 320px;
  }

  .home-showcase-person-img {
    width: 62%;
    max-width: 280px;
  }

  .home-showcase-float-box {
    top: auto;
    left: 0;
    right: 0;
    bottom: 8px;
    margin: 0 auto;
    width: min(280px, 92%);
  }

  .home-showcase-features-grid {
    grid-template-columns: 1fr;
  }

  .showcase-float-card,
  .showcase-float-card.alt {
    display: none;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 150px;
  }
}

.promo-badge {
  align-self: flex-start;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-gold-dark));
  color: #111827;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ================= PARTNERS ================= */
.partners {
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #f3f7fd 100%
  );
  overflow: hidden;
}

/* FORCE CENTER TITLE */
.center-title {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

/* underline already centered */
.center-title::after {
  margin-left: auto;
  margin-right: auto;
}


/* SLIDER */
.partners-slider {
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.partners-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content; /* 🔥 KEY: prevents cut */
  animation: partnersScroll 28s linear infinite;
    padding-left: 0;
  padding-right: 0;
}

/* PAUSE ON HOVER */
.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

/* LOGO BOX */
.partner-logo {
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-logo img {
  max-width: 100%;
  max-height: 85px;    /* ⬆️ was 60px */
  object-fit: contain;
  opacity: 0.85;
  transition: all 0.3s ease;
}


.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}

/* ANIMATION – EXACT 50% MOVE (NO JUMP) */
@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .partners-track {
    gap: 40px;
    animation-duration: 22s;
  }

  .partner-logo {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .partners-track {
    gap: 30px;
    animation-duration: 18s;
  }

  .partner-logo {
    width: 100px;
  }
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #f3f7fd 100%
  );
  padding: 90px 0;
}

.testimonials .section-title {
  text-align: center;
  width: 100%;
  margin: 0 auto 12px;
}

.testimonials .section-subtitle {
  text-align: center;
  margin-bottom: 40px;
}


.testimonial-slider {
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 cards + 2 gaps */
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  min-height: 250px;
  box-shadow: 0 16px 40px rgba(0,0,0,.15);
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: #334155;
  line-height: 1.7;
  text-align: justify;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.testimonial-user img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0fb9b1;
}

.testimonial-user strong {
  color: #0f172a;
}

.testimonial-user span {
  font-size: 14px;
  color: #64748b;
}

/* Dots */
.testimonial-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
  cursor: pointer;
}

.testimonial-dots span.active {
  background: #0fb9b1;
}

/* Tablet */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 16px);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* Page hero & breadcrumbs */

.page-hero {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #e5e7eb;
}

.page-hero .section-intro {
  color: #d1d5db;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.82rem;
  margin-top: 0.75rem;
  color: #cbd5f5;
}

.breadcrumb a {
  color: #e5e7eb;
}

.breadcrumb .chevron {
  opacity: 0.7;
}

/* Service Category Cards */

.service-category-grid {
  margin-top: 0.5rem;
}

.service-category-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.service-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-green);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.25);
}

.service-category-card .link-label {
  display: inline-flex;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--color-accent-green);
}

/* Contact */

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.contact-list .label {
  font-weight: 600;
  margin-right: 0.25rem;
}

.map-placeholder {
  border-radius: var(--radius-md);
  border: 1px dashed var(--color-border);
  padding: 0.8rem 1rem;
  font-size: 0.82rem;
  color: var(--color-muted);
  background: #f9fafb;
  margin-top: 1rem;
}

/* Form */

form {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.form-row {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.8rem;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.5);
}

textarea {
  resize: vertical;
}

.form-actions {
  margin-top: 0.75rem;
}

.form-message {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.form-message.success {
  color: var(--color-accent-green);
}

.form-message.error {
  color: #b91c1c;
}

/* Accordion */

.accordion-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: #ffffff;
}

.accordion-header {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #f9fafb;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
}

.accordion-icon {
  font-size: 1.1rem;
  color: var(--color-muted);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height var(--transition-med), padding-bottom var(--transition-med);
}

.accordion-item.open .accordion-body {
  padding-bottom: 0.75rem;
}
/* ================= ROOT ================= */
:root {
  --footer-bg: #020617;
  --footer-dark: #0f172a;
  --footer-border: #7C3AED;
  --text-light: #e5e7eb;
  --text-muted: #cbd5f5;
}

/* ================= FOOTER ================= */
.site-footer {
  background: linear-gradient(180deg, var(--footer-bg), var(--footer-bg) 70%);
  color: var(--text-light);
  border-top: 3px solid var(--footer-border);
  margin: 0;
}

/* FOOTER GRID */
.footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  padding: 2.2rem 2.2rem 1.4rem;
}

/* FOOTER COLUMNS */
.footer-col h3,
.footer-col h4 {
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.footer-col p,
.footer-col li {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-col p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-col h4{
  margin-left: 10px;
}


/* LIST RESET */
.footer-col ul {
  list-style: none;
  padding: 0;
  
}

/* LINKS */
.footer-links li {
  margin-bottom: 0.45rem;
  margin-left: 30px;
}

.footer-links a,
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
 
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover,
.footer-col a:hover {
  color: var(--footer-border);
  padding-left: 5px;
}

/* ================= FOOTER SOCIAL ICONS (CLEAN, NO BG) ================= */

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  margin-left: 10px;     /* tightly below email */
}

/* ICON LINKS – NO CIRCLE, NO BG */
.footer-social a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ICON STYLE */
.footer-social a i {
  font-size: 18px;
  color: #ffffff;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* HOVER */
.footer-social a:hover i {
  color: #7C3AED;
  transform: translateY(-2px);
}

/* ================= COPYRIGHT ================= */
.footer-bottom {
  border-top: 1px solid rgba(148,163,184,0.25);
  background: rgba(15,23,42,0.95);
  text-align: center;
  font-size: 0.78rem;
  padding: 0.6rem 0;
  margin: 0;
}

/* ================= FLOATING BUTTONS ================= */
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  color: #ffffff;
  border: none;

  cursor: pointer;
  transition: transform 0.25s ease;
}

.fab:hover {
  transform: scale(1.06);
}

/* WhatsApp Floating */
.fab-whatsapp {
  background: #25D366;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.fab-whatsapp i {
  font-size: 30px;
  margin-left: 13px;
  padding-top: 10px;
}

/* Back to Top Button – hidden by default */
.fab-top {
  background: #7C3AED;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.45);

  display: none !important;   /* 🔒 FORCE hidden initially */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show after scroll */
.fab-top.show {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.2rem 1.4rem;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col p {
    justify-content: center;
  }
}

/* ================= GOVERNMENT SCHEMES ================= */
.govt-schemes {
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #f3f7fd 100%
  );
  padding: 90px 20px;
}

.govt-schemes .section-title {
  width: 100%;
  margin-left: auto;
  margin-right: auto;

  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.govt-schemes .section-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.schemes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.scheme-card {
  background: #f8fbff;
  border: 1.5px solid #e6ecf5;
  border-radius: 20px;

  padding: 24px 20px;          /* ⬅ reduced padding */
  text-align: center;

  display: flex;               /* ⬅ key */
  flex-direction: column;
  justify-content: center;     /* ⬅ vertical centering */

  min-height: 160px;           /* ⬅ equal height */
  transition: all 0.35s ease;
}


.scheme-card:hover {
  transform: translateY(-6px);
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

/* ICON */
.scheme-icon {
  font-size: 40px;
  margin-bottom: 10px;
  transition: transform 0.35s ease;
}

.scheme-card:hover .scheme-icon {
  transform: scale(1.1);
}

/* TITLE */
.scheme-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .schemes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .govt-schemes {
    padding: 70px 16px;
  }

  .govt-schemes .section-title {
    font-size: 28px;
  }

  .schemes-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CSC & DIGITAL SEVA ================= */
.seva-services {
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #f3f7fd 100%
  );
  padding: 90px 20px;
}

/* CENTER ONLY SECTION TITLE */
.seva-services .section-title {
  display: block;
  width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 36px;
}


.seva-services .section-intro {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.seva-services .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.seva-services .info-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 34px 26px;
  text-align: center;
  border: 1.5px solid #e6ecf5;
  transition: transform .35s ease,
              box-shadow .35s ease,
              border-color .35s ease;
}

.seva-services .info-card:hover {
  transform: translateY(-6px);
  border-color: 0 18px 40px rgba(34,184,255,0.75);
  box-shadow: 0 18px 40px rgba(34,184,255,0.75);
}

/* ICON */
.seva-services .card-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.seva-services .card-icon {
  font-size: 42px;
  margin-bottom: 18px;
  display: inline-block;
  transition: transform .35s ease;
}

.seva-services .info-card:hover .card-icon {
  transform: translateY(-6px) scale(1.08);
}

/* TITLE */
.seva-services .info-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

/* TEXT */
.seva-services .info-card p {
  font-size: 16px;
  font-weight: 500;
  color: #475569;
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .seva-services .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .seva-services .grid {
    grid-template-columns: 1fr;
  }

  .seva-services {
    padding: 70px 16px;
  }

  .seva-services .section-title {
    font-size: 30px;
    text-align: center;
  }
  .seva-services .section-title {
  display: block;
  width: 100%;
  text-align: center;
  margin: 0 auto 14px;
}
}

/* ================= WHY CHOOSE US – CARDS ================= */
.why-choose-us {
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    #f3f7fd 100%
  );
  padding: 50px 20px;
}

.why-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* GRID */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 15px;
  border: 1.5px solid #e6ecf5;
  text-align: left;
  transition: all 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border-color: #22B8FF;
}

/* ICON */
.why-icon {
  font-size: 38px;
  margin-bottom: 14px;
}

/* TITLE */
.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

/* TEXT */
.why-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
}

/* TABLET */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 28px;
  }

  .why-card {
    padding: 26px 22px;
  }
}
/* ================= FIX CARD ALIGNMENT & SIZE ================= */

/* Ensure equal height cards */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch; /* 🔥 equal height */
}

/* Card layout control */
.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;      /* 🔥 center emoji & text */
  text-align: center;
  height: 100%;             /* 🔥 equal height */
}

/* Emoji perfectly centered */
.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f1f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 16px;
}

/* Title alignment */
.why-card h4 {
  text-align: center;
  min-height: 48px;   /* 🔥 keeps title alignment even */
}

/* Paragraph alignment */
.why-card p {
  text-align: center;
  flex-grow: 1;       /* 🔥 fills remaining space evenly */
}

/* Tablet */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .why-cards {
    grid-template-columns: 1fr;
  }
}
body {
  margin: 0;
  background: #f8fbff;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.contact-section {
  max-width: 920px;
  margin: 80px auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* TOGGLE */
.lang-toggle {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.lang-toggle button {
  border: 1.5px solid #0ea5a4;
  background: transparent;
  color: #0ea5a4;
  padding: 6px 14px;
  font-weight: 600;
  cursor: pointer;
}

.lang-toggle button.active {
  background: #0ea5a4;
  color: #ffffff;
}

/* HEADER */
.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
}

.form-header p {
  color: #475569;
  font-size: 15px;
}

/* FORM */
.row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #0ea5a4;
  outline: none;
}

/* BUTTON */
.submit-row {
  text-align: center;
  margin-top: 25px;
}

.submit-row button {
  background: #0ea5a4;
  color: white;
  padding: 12px 30px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.submit-row button:hover {
  background: #149CE6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .row {
    grid-template-columns: 1fr;
  }

  .contact-section {
    margin: 40px 16px;
    padding: 28px;
  }
}

/* ================= CENTER HELPERS ================= */
.who-we-serve .section-title {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ================= HOW IT WORKS ================= */
.how-it-works {
  background: #f8fbff;
}

.how-it-works .section-title {
  width: 100%;
  text-align: center;
  display: block;
}

.how-it-works .section-subtitle {
  width: 100%;
  text-align: center;
}


.section-subtitle {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
}

/* ================= STEPS ================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #e6ecf5;
  padding: 28px 22px;
  text-align: center;
  min-height: 210px;
  transition: all 0.35s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
}

.step-number {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.12);
  color: var(--accent);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= NEED HELP (PLAIN) ================= */
.plain-cta {
  background: none;
  padding-top: 0;
}
.cta-title {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.cta-subtitle {
  font-size: 16px;
  color: #475569;
  margin-bottom: 26px;
  text-align: center;
}

.cta-btn-wrap {
  display: flex;
  justify-content: center;
}

.cta-btn-outline {
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 26px;
  }
}


/* ================= FOOTER ================= */
.site-footer {
  background: linear-gradient(180deg, #2A0F63, #081629);
  color: #e5e7eb;
  margin-top: 80px;
}

/* MAIN */
.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 20px 40px;
}

/* COLUMN */
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5f5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbd5f5;
}

.footer-col a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-col a:hover {
  color: #7C3AED;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: #9ca3af;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col ul {
    align-items: center;
  }
}


/* ================= SECTION BASE ================= */
.section {
  padding: 90px 0;
  background: #f8fafc;
}

.section:nth-child(even) {
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ================= SECTION TITLE ================= */
.certificates .section-title {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;

  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 48px;
}


/* ================= GRID ================= */
.grid {
  display: grid;
  gap: 32px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ================= INFO CARD ================= */
.info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.1),
    inset 0 0 0 1px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.info-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2A0F63;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* ================= CARD ICON ================= */
.card-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

/* ================= SERVE CARDS ================= */
.serve-card {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: #2A0F63;
}

/* ================= HOVER ================= */
.info-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 22px 50px rgba(15, 23, 42, 0.18),
    inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .section-title.center {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

}
/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms cubic-bezier(.2,.9,.2,1),
              transform 700ms cubic-bezier(.2,.9,.2,1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}




/* =========================================
   ABOUT PAGE ONLY CSS (NO HEADER/FOOTER)
   Works with your HTML classes:
   .about-page, .about-hero, .about-overview,
   .about-grid, .illustration-card, .floating-icon,
   .about-mvv, .leadership, etc.
========================================= */

/* Avoid hero hidden behind fixed header */
.about-page {
  padding-top: 86px; /* adjust if your header height changes */
}

/* ---------------- HERO ---------------- */
.about-hero {
  position: relative;
  padding: 72px 0 56px;
  color: #e5e7eb;

  background:
    radial-gradient(circle at 10% 20%, rgba(255,183,3,0.16), transparent 55%),
    radial-gradient(circle at 90% 50%, rgba(14,165,233,0.16), transparent 60%),
    linear-gradient(135deg, #2A0F63, #081629);
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,183,3,0.12), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(16,185,129,0.10), transparent 60%);
  filter: blur(26px);
  opacity: 0.9;
  pointer-events: none;
  animation: aboutHeroGlow 10s ease-in-out infinite alternate;
}

@keyframes aboutHeroGlow {
  0% { transform: translate3d(-10px, -10px, 0); }
  100% { transform: translate3d(12px, 10px, 0); }
}

.about-hero h1 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.about-hero .hero-sub {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: #d1d5db;
  position: relative;
  z-index: 1;
}
/* ===============================
   BREADCRUMB THEME (Purple + Sky)
=============================== */

/* If your breadcrumb wrapper is .breadcrumb */
.breadcrumb{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(124,58,237,0.18),
    rgba(34,184,255,0.14)
  ) !important;

  border: 1px solid rgba(34,184,255,0.40) !important;

  color: rgba(255,255,255,0.90) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* Links inside breadcrumb */
.breadcrumb a{
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: color .2s ease, opacity .2s ease;
}

.breadcrumb a:hover{
  color: #22B8FF !important;
}

/* Separator ( > ) */
.breadcrumb .chevron,
.breadcrumb span{
  color: rgba(255,255,255,0.65) !important;
}

/* Active page text (About Us) */
.breadcrumb strong,
.breadcrumb .current{
  color: #22B8FF !important;
  font-weight: 800;
}

/* Optional hover glow */
.breadcrumb:hover{
  border-color: rgba(34,184,255,0.75) !important;
  box-shadow: 0 14px 30px rgba(34,184,255,0.18);
}


/* ---------------- OVERVIEW SECTION ---------------- */
.about-overview {
  background: transparent;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 42px;
  align-items: center;
}

/* image/illustration card */
.illustration-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: #0b1220;
}

.about-illustration {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.illustration-card:hover .about-illustration {
  transform: scale(1.06);
}

/* floating icons */
.floating-icon {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);

  box-shadow: 0 14px 30px rgba(0,0,0,0.25);
  font-size: 22px;
  z-index: 2;
  animation: floaty 5.5s ease-in-out infinite alternate;
}

@keyframes floaty {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* positions */
.floating-icon.i1 { top: 18px; left: 18px; animation-delay: 0.0s; }
.floating-icon.i2 { top: 22px; right: 18px; animation-delay: 0.5s; }
.floating-icon.i3 { bottom: 22px; left: 18px; animation-delay: 0.9s; }
.floating-icon.i4 { bottom: 26px; right: 18px; animation-delay: 0.3s; }
.floating-icon.i5 { top: 50%; left: 16px; transform: translateY(-50%); animation-delay: 0.7s; }

/* text side */
.about-content h2 {
  font-size: 34px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-content p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 500;
}

.about-points {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.point {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 14px;
  border-radius: 14px;

  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(148,163,184,0.28);
  box-shadow: 0 10px 20px rgba(15,23,42,0.06);
}

.point .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7C3AED;
  box-shadow: 0 0 0 6px rgba(34,184,255,0.75);
  flex-shrink: 0;
}

/* ---------------- MVV SECTION ---------------- */
.about-mvv {
  background: linear-gradient(180deg, #f8fbff, #f3f7fd);
}

.mvv-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}

.mvv-head h2 {
  font-size: 36px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.mvv-head p {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.mvv-card {
  background: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(34,184,255,0.75);
  border-radius: 22px;
  padding: 28px 26px;
  /* box-shadow: 0 18px 40px rgba(34,184,255,0.75); */
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
}

.mvv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(34,184,255,0.75);
  box-shadow: 0 18px 40px rgba(34,184,255,0.75);
}

.mvv-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #2A0F63;
  margin-bottom: 10px;
}

.mvv-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  font-weight: 500;
}

.values {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.values li {
  position: relative;
  padding-left: 22px;
  color: #475569;
  font-weight: 600;
  font-size: 14.5px;
}

.values li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-size: 13px;
}
/* ================= KEY MANAGEMENT (ATTRACTIVE) ================= */
.leadership{
  background: radial-gradient(circle at 20% 0%, rgba(34,184,255,0.12), transparent 55%),
              radial-gradient(circle at 80% 10%, rgba(124,58,237,0.12), transparent 60%),
              #fff;
  padding: 60px 0; /* reduce empty space */
}

.leader-head{
  text-align: center;
  margin-bottom: 26px;
}

.leader-title{
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.leader-underline{
  width: 120px;
  height: 5px;
  border-radius: 999px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #22B8FF, #7C3AED);
  box-shadow: 0 10px 22px rgba(34,184,255,0.18);
}

/* ✅ Center single card and remove awkward grid space */
.leader-grid{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

/* Premium card */
.leader-card{
  width: min(460px, 92vw);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(34,184,255,0.45);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(2,6,23,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.leader-card:hover{
  transform: translateY(-8px);
  border-color: rgba(34,184,255,0.8);
  box-shadow: 0 26px 70px rgba(34,184,255,0.20);
}

.leader-photo{
  height: 300px;
  background: linear-gradient(135deg, rgba(34,184,255,0.10), rgba(124,58,237,0.10));
  overflow: hidden;
}

.leader-photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 10%;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.leader-card:hover .leader-photo img{
  transform: scale(1.08);
}

.leader-info{
  padding: 18px 18px 22px;
  text-align: left;
}

.leader-info h3{
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 6px;
}

.leader-info p{
  font-size: 14.5px;
  color: #475569;
  font-weight: 700;
  margin: 0;
}

/* Mobile spacing */
@media (max-width: 600px){
  .leadership{ padding: 44px 0; }
  .leader-title{ font-size: 30px; }
  .leader-photo{ height: 240px; }
}

/* FIX: remove extra white space before breadcrumb section */
.page-hero {
  margin-top: 0 !important;
  padding-top: 80px !important;
}

/* If any section above is causing gap */
main { padding-top: 0 !important; }
body { margin: 0; }

/* ================== BREADCRUMB PREMIUM ANIMATION ================== */

/* Breadcrumb entrance: slide + blur + fade */
.about-hero .breadcrumb{
  opacity: 0;
  transform: translateY(14px);
  filter: blur(6px);
  animation: breadcrumbIn 850ms cubic-bezier(.2,.9,.2,1) forwards;
  animation-delay: .25s;
  position: relative;
  overflow: hidden; /* required for shimmer */
}

/* Shimmer sweep (very subtle) */
.about-hero .breadcrumb::before{
  content:"";
  position:absolute;
  top:-40%;
  left:-60%;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.14),
    transparent
  );
  transform: rotate(18deg);
  animation: breadcrumbShimmer 2.8s ease-in-out infinite;
  pointer-events:none;
}

/* Hover: lift and glow */
.about-hero .breadcrumb:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(34,184,255,0.75);
  border-color: rgba(34,184,255,0.75);
}

/* Link hover: subtle underline glow */
.about-hero .breadcrumb a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: transform .2s ease, color .2s ease;
}

.about-hero .breadcrumb a:hover{
  transform: translateY(-1px);
  color: #7C3AED;
}

/* If you have arrows/icons inside breadcrumb */
.about-hero .breadcrumb .sep{
  display:inline-flex;
  align-items:center;
  opacity:.7;
  transition: transform .2s ease, opacity .2s ease;
}

.about-hero .breadcrumb:hover .sep{
  transform: translateX(2px);
  opacity: 1;
}

/* Keyframes */
@keyframes breadcrumbIn{
  to{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes breadcrumbShimmer{
  0%   { left: -70%; opacity: 0; }
  25%  { opacity: .9; }
  55%  { left: 120%; opacity: 0; }
  100% { left: 120%; opacity: 0; }
}
.about-hero .breadcrumb i{
  transform: translateY(0);
  animation: iconPop 850ms cubic-bezier(.2,.9,.2,1) both;
  animation-delay: .38s;
}

@keyframes iconPop{
  0%   { transform: translateY(6px) scale(.92); opacity:0; }
  60%  { transform: translateY(-1px) scale(1.04); opacity:1; }
  100% { transform: translateY(0) scale(1); opacity:1; }
}

/* ================= TABLET (<=1024px) ================= */
@media (max-width: 1024px){

  /* Hero */
  .about-hero{
    padding: 64px 0 48px;
  }

  .about-hero h1{
    font-size: 36px;
  }

  .about-hero .hero-sub{
    font-size: 15.5px;
  }

  /* Overview grid → stacked but balanced */
  .about-grid{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-illustration{
    height: 380px;
  }

  /* MVV grid → 2 columns */
  .mvv-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* Leadership */
  .leader-title{
    font-size: 34px;
  }

  .leader-card{
    width: min(420px, 90%);
  }
}
/* ================= MOBILE (<=764px) ================= */
@media (max-width: 764px){

  /* Page padding */
  .about-page{
    padding-top: 72px;
  }

  /* HERO */
  .about-hero{
    padding: 56px 0 40px;
    text-align: center;
  }

  .about-hero h1{
    font-size: 30px;
    line-height: 1.2;
  }

  .about-hero .hero-sub{
    font-size: 14.5px;
    line-height: 1.7;
    margin: 0 auto;
  }

  /* Breadcrumb center */
  .about-hero .breadcrumb{
    margin: 16px auto 0;
    justify-content: center;
    font-size: 13px;
    padding: 8px 14px;
  }

  /* OVERVIEW */
  .about-grid{
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .illustration-card{
    border-radius: 18px;
  }

  .about-illustration{
    height: 300px;
  }

  /* Floating icons smaller */
  .floating-icon{
    width: 42px;
    height: 42px;
    font-size: 18px;
    border-radius: 12px;
  }

  /* Text */
  .about-content h2{
    font-size: 26px;
    text-align: center;
  }

  .about-content p{
    font-size: 14.5px;
    text-align: center;
  }

  .about-points{
    gap: 10px;
  }

  .point{
    padding: 10px 12px;
    font-size: 14px;
  }

  /* MVV */
  .mvv-head h2{
    font-size: 28px;
  }

  .mvv-head p{
    font-size: 14.5px;
  }

  .mvv-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mvv-card{
    padding: 22px 20px;
    border-radius: 18px;
  }

  /* LEADERSHIP */
  .leadership{
    padding: 44px 0;
  }

  .leader-title{
    font-size: 28px;
  }

  .leader-photo{
    height: 220px;
  }

  .leader-info h3{
    font-size: 18px;
  }

  .leader-info p{
    font-size: 14px;
  }
}


/* ===========================
   FINAL THEME OVERRIDE (PASTE LAST)
   Purple + Sky Blue (Logo Theme)
=========================== */

/* 1) FORCE VARIABLES (LAST WINS) */
:root{
  /* Brand */
  --brand-purple: #7C3AED;
  --brand-purple-dark: #5B21B6;
  --brand-sky: #22B8FF;
  --brand-sky-dark: #149CE6;

  /* Map your existing variables */
  --color-primary: #2A0F63;
  --color-primary-dark: #1B083F;
  --color-secondary: #3B1B7A;

  --color-accent-gold: var(--brand-purple);
  --color-accent-gold-dark: var(--brand-purple-dark);
  --color-accent-green: var(--brand-sky);

  --primary: var(--brand-sky);
  --primary-soft: #E9F7FF;
  --border-soft: #CDEEFF;

  --nav-bg: rgba(42, 15, 99, 0.92);
  --nav-bg-mobile: linear-gradient(180deg, #2A0F63, #1B083F);
  --accent: var(--brand-sky);

  --footer-bg: #12062D;
  --footer-dark: #1B083F;
  --footer-border: var(--brand-sky);
}

/* 2) HEADER / NAVBAR FORCE */
.site-header{
  background: linear-gradient(180deg, rgba(42, 15, 99, 0.98), rgba(27, 8, 63, 0.92)) !important;
  backdrop-filter: blur(12px);
}

.site-header.scrolled{
  background: rgba(27, 8, 63, 0.98) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.55);
}

/* Nav underline + hover */
.main-nav a:hover,
.main-nav a.active{
  border-color: var(--brand-sky) !important;
  color: #fff !important;
}

/* 3) LANGUAGE TOGGLE */
.lang-toggle-nav{
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(34,184,255,0.35);
}

.lang-toggle-nav button.active{
  background: var(--brand-sky) !important;
  color: #06101f !important;
}

/* 4) APPLY BUTTON */
.btn-apply{
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-sky-dark)) !important;
  color: #06101f !important;
  box-shadow: 0 12px 22px rgba(34,184,255,0.25);
}

/* 5) PRIMARY / ACCENT BUTTONS */
.btn-primary{
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-sky-dark)) !important;
  box-shadow: 0 10px 18px rgba(34,184,255,0.30) !important;
}

.btn-accent{
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark)) !important;
  color: #fff !important;
  box-shadow: 0 10px 18px rgba(124,58,237,0.30) !important;
}

/* 6) STATS NUMBERS / HIGHLIGHTS (if still blue) */
.stat h3{
  color: var(--brand-sky) !important;
}

/* 7) FOOTER TOP BORDER */
.site-footer{
  border-top: 3px solid var(--brand-sky) !important;
}
/* ================= ROOT ================= */
:root {
  --nav-bg: rgba(42, 15, 99, 0.92);                 /* Purple glass */
  --nav-bg-mobile: linear-gradient(180deg, #2A0F63, #1B083F);
  --accent: #22B8FF;                                 /* Sky Blue highlight */
  --text-light: #e5e7eb;

  --footer-bg: #12062D;                              /* Deep purple */
  --footer-dark: #1B083F;
  --footer-border: #22B8FF;                          /* Sky Blue top border */
  --text-muted: #cbd5f5;
}

/* ================= GLOBAL STYLES ================= */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Noto Sans Devanagari', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
}

main p,
main li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ================= HEADER ================= */
.site-header {
  background: rgba(42, 15, 99, 0.92);
  padding: 0;
}

.site-header .logo {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
}

.site-header .main-nav ul {
  display: flex;
  justify-content: flex-start;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .main-nav li {
  margin: 0;
}

.site-header .main-nav a {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
}

.site-header .header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.site-header .lang-toggle-nav button {
  border: none;
  background: transparent;
  color: #ffffff;
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  margin-left: 0;
}

.site-header .btn-apply {
  background: var(--accent);
  color: #2A0F63;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 0;
}

/* ================= FIX NAV TOGGLE (PASTE LAST) ================= */

/* show hamburger on tablet + mobile */
@media (max-width: 1024px) {
  .site-header .nav-toggle{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(34,184,255,0.35);
    color: #fff;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  /* hide desktop menu by default on mobile */
  .site-header .main-nav{
    opacity: 0;
    pointer-events: none;
  }

  /* show menu when active */
  .site-header .main-nav.active{
    opacity: 1;
    pointer-events: auto;
  }
}

/* ================= BREADCRUMB ================= */
.breadcrumb-section {
  padding: 10px 0;
  background-color: #fff;
}

.breadcrumb {
  font-size: 16px;
  color: inherit;
}

.breadcrumb .chevron {
  margin: 0 5px;
}

.services-section{
  padding: 50px 20px;
}
/* Service Block Styles */
.service-block {
  display: flex;
  align-items: center;
  gap: 20px; /* Space between image and text */
  margin-bottom: 30px; /* Increased margin for more space between sections */
  padding: 5px 0; /* Increased top and bottom padding for better spacing */
  justify-content: flex-start; /* Align both image and text properly */
  border-radius: 10px; /* Optional border radius for smoother edges */
  background-color: #f4f7fa; /* Added light background to each block */
  transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Service Image */
.service-image {
  flex: 0 1 45%; /* Adjust width of the image */
  position: relative;
  overflow: hidden;
  padding: 10px; /* Padding around the image */
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow around the image */
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px; /* Rounded corners for the image */
  transition: transform 0.3s ease; /* Smooth zoom effect */
}

/* Zoom effect for images */
.service-image:hover img {
  transform: scale(1.1); /* Slightly zoom image when hovered */
}

/* Service Text */
.service-text {
  flex: 1; /* Allow text to take up remaining space */
  max-width: 100%;
  margin-right: 10%; /* 10% margin on the right */
  margin-left: 10%; /* 10% margin on the left */
  padding-bottom: 5px; /* Padding at the bottom for text spacing */
}

.service-text h3 {
  font-size: 1.8rem;
  margin-bottom: 5px; /* Added some space between heading and paragraph */
  color: #2A0F63; /* Deep purple color for the title */
  font-weight: 700;
}

.service-text p {
  font-size: 1;
  line-height: 1.6;
  color: #00000081; /* Muted text color */
  max-width: 560px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  margin-bottom: 20px; /* Add spacing between paragraphs */
}

.service-text li {
  font-size: 15px;
  line-height: 1.6;
  color: #00000081; /* Muted text color */
  max-width: 560px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  margin-bottom: 20px; /* Add spacing between paragraphs */
}

.service-text h4 {
  font-size: 1.2rem;
  color: #2A0F63; /* Deep purple for the subheading */
  margin-top: 15px;
  font-weight: 600;
}

/* Hover Effects for the Service Blocks */
.service-block:hover {
  background-color: #e5f7ff; /* Light blue background when hovering over the service block */
  box-shadow: 0 10px 15px rgba(34, 184, 255, 0.3); /* Sky blue shadow on hover */
  border-color: #22B8FF; /* Sky blue border on hover */
  transform: scale(1.03); /* Slight scale-up effect on hover */
}

/* Animation for fading in */
.animate-fade {
  animation: fadeIn 1s ease-out;
}

/* Adjustments for the second image */
.reverse .service-image {
  flex: 0 1 45%; /* Make image smaller if it's cut off on the left side */
  max-width: 100%;
}

/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-block {
    flex-direction: column;
    text-align: center;
  }

  .service-image {
    max-width: 100%;
    margin-bottom: 20px; /* Space between the image and text on smaller screens */
    padding: 10%; /* Padding around the image */
  }

  .service-text {
    max-width: 100%;
    margin-left: 5%; /* Reduce left margin on small screens */
    margin-right: 5%; /* Reduce right margin on small screens */
  }
}

@media (max-width: 576px) {
  .service-text h3 {
    font-size: 1.5rem; /* Smaller font size for mobile */
  }

  .service-text p {
    font-size: 0.9rem; /* Smaller text for better readability */
  }

  .service-text h4 {
    font-size: 1rem;
  }

  .service-block a {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

:root {
  --header-height: 92px;
  --header-height-scrolled: 86px;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 88px;
    --header-height-scrolled: 82px;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 84px;
    --header-height-scrolled: 78px;
  }
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  padding-top: var(--header-height);
}

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  will-change: background-color, box-shadow, transform;
}

.header-inner {
  min-height: var(--header-height);
  height: var(--header-height);
  align-items: center;
  transition: height 0.25s ease;
}

.site-header .logo img {
  height: 70px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .site-header .logo img {
    height: 52px;
  }
}

.site-header .main-nav a {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header.scrolled .header-inner {
  height: var(--header-height-scrolled);
}

@media (max-width: 1024px) {
  .site-header .main-nav {
    top: var(--header-height);
  }

  .site-header.scrolled .main-nav {
    top: var(--header-height-scrolled);
  }
}

/* GLOBAL TYPOGRAPHY (CONSISTENT ACROSS ALL PAGES) */
h1 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.35rem, 2.0vw, 2.0rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

p,
main li {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

a {
  font-weight: 500;
}

/* ---------------- HERO (FAQ / PAGE HERO) ---------------- */
.page-hero {
  position: relative;
  padding: 72px 0 56px;
  color: #e5e7eb;

  background:
    radial-gradient(circle at 10% 20%, rgba(255,183,3,0.16), transparent 55%),
    radial-gradient(circle at 90% 50%, rgba(14,165,233,0.16), transparent 60%),
    linear-gradient(135deg, #2A0F63, #081629);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,183,3,0.12), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(16,185,129,0.10), transparent 60%);
  filter: blur(26px);
  opacity: 0.9;
  pointer-events: none;
  animation: pageHeroGlow 10s ease-in-out infinite alternate;
}

@keyframes pageHeroGlow {
  0% { transform: translate3d(-10px, -10px, 0); }
  100% { transform: translate3d(12px, 10px, 0); }
}

/* Title */
.page-hero h1 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

/* Subtitle */
.page-hero .section-intro {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: #d1d5db;
  position: relative;
  z-index: 1;
}
/* ===============================
   BREADCRUMB THEME (Purple + Sky)
=============================== */

/* If your breadcrumb wrapper is .breadcrumb */
.breadcrumb{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(124,58,237,0.18),
    rgba(34,184,255,0.14)
  ) !important;

  border: 1px solid rgba(34,184,255,0.40) !important;

  color: rgba(255,255,255,0.90) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* Links inside breadcrumb */
.breadcrumb a{
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: color .2s ease, opacity .2s ease;
}

.breadcrumb a:hover{
  color: #22B8FF !important;
}

/* Separator ( > ) */
.breadcrumb .chevron,
.breadcrumb span{
  color: rgba(255,255,255,0.65) !important;
}

/* Active page text (About Us) */
.breadcrumb strong,
.breadcrumb .current{
  color: #22B8FF !important;
  font-weight: 800;
}

/* Optional hover glow */
.breadcrumb:hover{
  border-color: rgba(34,184,255,0.75) !important;
  box-shadow: 0 14px 30px rgba(34,184,255,0.18);
}







