/*
 * ═══════════════════════════════════════════════════════════════════
 *  Daksha Skilling Academy — style.css
 *  Version : 1.0
 *  Fonts   : Sora (headings) + DM Sans (body) via Google Fonts
 *  Colours : Navy #0d1b3e  |  Gold #f5a623  |  White #ffffff
 * ═══════════════════════════════════════════════════════════════════
 *
 *  TABLE OF CONTENTS
 *  ─────────────────
 *  1.  CSS Custom Properties (Design Tokens)
 *  2.  Reset & Base
 *  3.  Typography
 *  4.  Layout Utilities
 *  5.  Buttons
 *  6.  Navbar
 *  7.  Services Dropdown
 *  8.  Mobile Navigation
 *  9.  Hero Section
 *  10. Section Commons
 *  11. Service Cards
 *  12. About / Who Section
 *  13. Clients Strip & Cards
 *  14. Project Spotlights
 *  15. Story Cards & Testimonials
 *  16. Impact / Stats
 *  17. Contact Section & Form
 *  18. Footer
 *  19. Page-Specific — About Page
 *  20. Page-Specific — Clients Page
 *  21. Page-Specific — Finacle / Service Pages
 *  22. Animations & Scroll Effects
 *  23. WhatsApp Widget
 *  24. Responsive — Tablet (≤1024px)
 *  25. Responsive — Mobile (≤768px)
 *  26. Responsive — Small (≤520px)
 * ═══════════════════════════════════════════════════════════════════
 */


/* ─────────────────────────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ───────────────────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --navy:        #0d1b3e;
  --navy-dark:   #091229;
  --gold:        #f5a623;
  --gold-dark:   #d4891a;
  --gold-light:  #ffc857;

  /* Neutral palette */
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --light-gray:  #f1f3f8;
  --border:      #e2e8f0;

  /* Text */
  --text-dark:   #1a2744;
  --text-mid:    #4a5568;
  --text-light:  #718096;

  /* Shadows */
  --shadow-sm:   0 2px 8px  rgba(13, 27, 62, 0.08);
  --shadow-md:   0 8px 32px rgba(13, 27, 62, 0.12);
  --shadow-lg:   0 20px 60px rgba(13, 27, 62, 0.18);

  /* Shape */
  --radius:      12px;
  --radius-sm:   8px;

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}


/* ─────────────────────────────────────────────────────────────────
   2. RESET & BASE
   ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}


/* ─────────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ───────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
}


/* ─────────────────────────────────────────────────────────────────
   4. LAYOUT UTILITIES
   ───────────────────────────────────────────────────────────────── */
section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  line-height: 1.7;
}


/* ─────────────────────────────────────────────────────────────────
   5. BUTTONS
   ───────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
}


/* ─────────────────────────────────────────────────────────────────
   6. NAVBAR
   ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon svg { width: 26px; height: 26px; }

.logo-text { display: flex; flex-direction: column; }

.logo-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-name span { color: var(--gold); }

.logo-sub {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a,
.nav-dropdown-toggle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.18s ease;
  cursor: pointer;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-dropdown-toggle:hover {
  color: var(--navy);
  background: var(--light-gray);
}

.nav-links a.nav-active {
  color: var(--navy);
  font-weight: 700;
  background: var(--light-gray);
  border-radius: 8px;
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s;
}

.nav-dropdown-wrap:hover .nav-dropdown-toggle svg,
.nav-dropdown-wrap.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Connect With Us CTA button */
.btn-connect {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-connect:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ─────────────────────────────────────────────────────────────────
   7. SERVICES DROPDOWN
   ───────────────────────────────────────────────────────────────── */
.nav-dropdown-wrap {
  position: relative;
}

.services-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 400px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 20px 60px rgba(13,27,62,0.14);
  border: 1px solid var(--border);
  padding: 16px;
  display: none;
  z-index: 9999;
}

.services-dropdown.active {
  display: block;
}

.dropdown-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0 12px 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: 10px;
  transition: background 0.15s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.dropdown-item:hover {
  background: var(--light-gray);
}

.dropdown-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--light-gray);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.2s;
}

.dropdown-icon svg { width: 18px; height: 18px; }

.dropdown-item:hover .dropdown-icon {
  transform: scale(1.08);
}

.dropdown-info { flex: 1; }

.dropdown-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.dropdown-sub {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.4;
}


/* ─────────────────────────────────────────────────────────────────
   8. MOBILE NAVIGATION
   ───────────────────────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-nav .btn-primary {
  margin-top: 16px;
  justify-content: center;
}


/* ─────────────────────────────────────────────────────────────────
   9. HERO SECTION
   ───────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,166,35,0.04) 0%, transparent 60%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-badge-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero h1 .gold { color: var(--gold); }

.hero-desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Hero visual / image */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.hero-img-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.hero-img-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.hero-img-main:hover img { transform: scale(1.03); }

.hero-img-overlay-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.5);
}

.pct-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.pct-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 3px;
  letter-spacing: 0.04em;
}

.hero-img-small {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-img-small img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-img-small:hover img { transform: scale(1.03); }

.hero-img-caption-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,18,41,0.92) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 28px 14px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}


/* ─────────────────────────────────────────────────────────────────
   10. SECTION COMMONS
   ───────────────────────────────────────────────────────────────── */
.view-all-wrap {
  text-align: center;
  margin-top: 48px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold);
  font-weight: 600;
  cursor: pointer;
}

.breadcrumb span { color: rgba(255, 255, 255, 0.4); }


/* ─────────────────────────────────────────────────────────────────
   11. SERVICE CARDS
   ───────────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

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

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--light-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon-wrap {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.1) rotate(-3deg);
}

.service-icon-wrap svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--light-gray);
  color: var(--text-mid);
  padding: 3px 10px;
  border-radius: 100px;
  transition: all 0.2s;
}

.service-card:hover .service-tag {
  background: rgba(245, 166, 35, 0.12);
  color: var(--gold-dark);
}


/* ─────────────────────────────────────────────────────────────────
   12. ABOUT / WHO SECTION
   ───────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left h2 {
  text-align: left;
  font-size: 2.4rem;
  margin-bottom: 24px;
}

.about-subsection { margin-bottom: 28px; }

.about-subsection h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-subsection h4 svg { color: var(--gold); width: 16px; height: 16px; }

.about-subsection p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Finacle authorized badge */
.finacle-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-top: 20px;
}

.finacle-badge-logo {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #cc0000;
}

.finacle-badge-info { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.finacle-badge-sub  { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }

/* About photos */
.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.about-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.about-photo-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.4s ease;
}

.about-photo-wrap:hover img { transform: scale(1.05); }

.about-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,18,41,0.85) 0%, transparent 100%);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 20px 10px 8px;
}


/* ─────────────────────────────────────────────────────────────────
   13. CLIENTS STRIP & CARDS
   ───────────────────────────────────────────────────────────────── */
.clients-section { background: var(--white); }

.clients-category-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.clients-category-label::before,
.clients-category-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: var(--border);
}

.clients-category-label::before { right: calc(50% + 80px); }
.clients-category-label::after  { left:  calc(50% + 80px); }

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.client-chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
  cursor: default;
}

.client-chip:hover {
  border-color: var(--navy);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.client-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.client-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: all 0.22s;
  cursor: default;
}

.client-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.client-card-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.client-card-type {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}


/* ─────────────────────────────────────────────────────────────────
   14. PROJECT SPOTLIGHTS
   ───────────────────────────────────────────────────────────────── */
.project-spotlight {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
  position: relative;
}

.project-spotlight:hover { box-shadow: var(--shadow-lg); }

.spotlight-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
}

.spotlight-grid-reverse {
  grid-template-columns: 1fr 420px;
}

.spotlight-img-wrap {
  position: relative;
  overflow: hidden;
}

.spotlight-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.project-spotlight:hover .spotlight-img-wrap img { transform: scale(1.04); }

.spotlight-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.spotlight-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.spotlight-meta-item {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 12px 14px;
}

.spotlight-meta-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.spotlight-meta-val {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.spotlight-impact {
  background: #fefce8;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.spotlight-impact-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}

.spotlight-impact p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stag {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--light-gray);
  color: var(--text-mid);
  padding: 4px 12px;
  border-radius: 100px;
}


/* ─────────────────────────────────────────────────────────────────
   15. STORY CARDS & TESTIMONIALS
   ───────────────────────────────────────────────────────────────── */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.story-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
}

.story-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.story-header {
  padding: 14px 24px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-header.navy { background: var(--navy);  color: var(--white); }
.story-header.gold { background: var(--gold);  color: var(--navy-dark); }

.story-body { padding: 28px 24px; }

.story-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.story-body p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.7;
}

.story-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.story-metric {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 12px 14px;
}

.metric-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3px;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.story-impact {
  background: #fefce8;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 14px 16px;
}

.story-impact .impact-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.story-impact p {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.6;
}


/* ─────────────────────────────────────────────────────────────────
   16. IMPACT / STATS SECTION
   ───────────────────────────────────────────────────────────────── */
.impact-section {
  background: var(--navy);
  padding: 96px 24px;
}

.impact-section .section-label { color: var(--gold-light); }
.impact-section .section-title { color: var(--white); }
.impact-section .section-desc  { color: rgba(255, 255, 255, 0.6); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.stat-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.12) translateY(-2px);
}

.stat-icon svg { width: 24px; height: 24px; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}


/* ─────────────────────────────────────────────────────────────────
   17. CONTACT SECTION & FORM
   ───────────────────────────────────────────────────────────────── */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 28px;
  color: var(--white);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-detail-icon svg { width: 16px; height: 16px; }

.contact-detail-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contact-detail-value {
  font-size: 0.9rem;
  color: var(--white);
  margin-top: 2px;
}

/* Contact form card */
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group label span { color: #e53e3e; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #c0c8d8; }

.form-group textarea { resize: vertical; min-height: 100px; }


/* ─────────────────────────────────────────────────────────────────
   18. FOOTER
   ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  padding: 64px 24px 32px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.75;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-finacle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.footer-finacle-logo {
  background: white;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 800;
  color: #cc0000;
}

.footer-finacle span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-col a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}


/* ─────────────────────────────────────────────────────────────────
   19. PAGE-SPECIFIC — ABOUT PAGE
   ───────────────────────────────────────────────────────────────── */
.about-hero { background: var(--navy); padding: 120px 24px 72px; }

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about-hero h1 span.gold { color: var(--gold); }

.about-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 540px;
}

/* Stats bar */
.stats-bar { background: var(--white); border-top: 1px solid var(--border); }

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-bar-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.stat-bar-item:last-child { border-right: none; }
.stat-bar-item:hover { background: var(--off-white); }

.stat-bar-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-bar-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Team cards */
.founder-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 28px;
  transition: all 0.25s;
}

.founder-card:hover { box-shadow: var(--shadow-md); }

.founder-name { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.founder-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.team-grid-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.team-card-small {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all 0.25s;
}

.team-card-small:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.team-card-name   { font-size: 1rem;  font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.team-card-role   { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px; }
.team-card-bio    { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; }

/* Values & Vision */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.vision-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.vision-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.vision-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.vision-card:hover::after { transform: scaleX(1); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.25s;
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(245, 166, 35, 0.4);
}


/* ─────────────────────────────────────────────────────────────────
   20. PAGE-SPECIFIC — CLIENTS PAGE
   ───────────────────────────────────────────────────────────────── */
.clients-hero-banner {
  background: var(--navy);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}

.clients-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 80px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.clients-stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1.5px solid var(--border);
  transition: background 0.2s;
}

.clients-stat:last-child { border-right: none; }
.clients-stat:hover { background: var(--off-white); }

.cstat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.cstat-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.why-daksha-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 72px 0 80px;
  border-top: 1.5px solid var(--border);
}

.why-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 14px;
  line-height: 1.6;
}

.why-check {
  width: 22px; height: 22px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-check svg { width: 12px; height: 12px; color: #16a34a; }


/* ─────────────────────────────────────────────────────────────────
   21. PAGE-SPECIFIC — FINACLE / SERVICE PAGES
   ───────────────────────────────────────────────────────────────── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.cap-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.25s;
}

.cap-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}


/* ─────────────────────────────────────────────────────────────────
   22. ANIMATIONS & SCROLL EFFECTS
   ───────────────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.green-dot,
.caption-live-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1);    }
  50%       { opacity: 0.6; transform: scale(1.15); }
}


/* ─────────────────────────────────────────────────────────────────
   23. WHATSAPP WIDGET
   ───────────────────────────────────────────────────────────────── */
#wa-btn { position: relative; }

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0;   }
}

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


/* ─────────────────────────────────────────────────────────────────
   24. RESPONSIVE — TABLET (≤ 1024px)
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
  .footer-top           { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-hero-inner     { grid-template-columns: 1fr; }
  .who-grid             { grid-template-columns: 1fr; gap: 40px; }
  .vision-grid          { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: repeat(3, 1fr); }
  .capabilities-grid    { grid-template-columns: repeat(2, 1fr); }
  .founder-card         { grid-template-columns: 1fr; }
  .stats-bar-inner      { grid-template-columns: repeat(2, 1fr); }
  .client-cards-grid    { grid-template-columns: repeat(2, 1fr); }
  .spotlight-grid,
  .spotlight-grid-reverse { grid-template-columns: 1fr; }
  .clients-stats-bar    { grid-template-columns: repeat(2, 1fr); }
  .why-daksha-section   { grid-template-columns: 1fr; gap: 40px; }
}


/* ─────────────────────────────────────────────────────────────────
   25. RESPONSIVE — MOBILE (≤ 768px)
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links,
  .btn-connect          { display: none; }
  .hamburger            { display: flex; }

  .hero-inner           { grid-template-columns: 1fr; }
  .hero-visual          { display: none; }

  .about-grid           { grid-template-columns: 1fr; gap: 40px; }
  .about-left h2        { font-size: 1.8rem; }

  .stories-grid         { grid-template-columns: 1fr; }
  .contact-grid         { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }

  .footer-top           { grid-template-columns: 1fr 1fr; }
  .footer-bottom        { flex-direction: column; gap: 12px; text-align: center; }

  .team-grid-small      { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: repeat(2, 1fr); }

  .clients-category-label::before,
  .clients-category-label::after { display: none; }
}


/* ─────────────────────────────────────────────────────────────────
   26. RESPONSIVE — SMALL MOBILE (≤ 520px)
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 520px) {
  section               { padding: 64px 16px; }
  .services-grid        { grid-template-columns: 1fr; }
  .stats-grid           { grid-template-columns: 1fr; }
  .footer-top           { grid-template-columns: 1fr; }
  .capabilities-grid    { grid-template-columns: 1fr; }
  .values-grid          { grid-template-columns: 1fr 1fr; }
  .hero-stats           { flex-wrap: wrap; gap: 20px; }
  .clients-stats-bar    { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner      { grid-template-columns: repeat(2, 1fr); }
}
