/* =========================================================
   DISHA INFOTECH SOLUTIONS
   Homepage Design System
   ========================================================= */

:root {
  --ink: #0b0d14;
  --ink-soft: #171a24;
  --muted: #8b93a6;
  --muted-light: #b7becc;
  --white: #ffffff;
  --surface: #faf9fc;
  --surface-2: #f1eff6;
  --line: rgba(11, 13, 20, .10);

  --blue: #6d28d9;
  --blue-dark: #4c1d95;
  --cyan: #a78bfa;

  --cta: #c9962f;
  --cta-dark: #a97a1f;
  --success: #22c55e;
  --error: #ef4444;

  --dark: #0b0d14;
  --dark-2: #12141d;

  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --shadow-sm: 0 12px 30px rgba(11, 13, 20, .06);
  --shadow-md: 0 24px 70px rgba(11, 13, 20, .10);

  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, 90%);
  margin: 0 auto;
}

::selection {
  background: rgba(109, 40, 217, .18);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #e8edf3;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  border-radius: 999px;
}

/* =========================================================
   HEADER
   ========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11, 13, 20, .08);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.logo-text strong,
.logo-text span {
  display: block;
}

.logo-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.05;
  letter-spacing: -.02em;
}

.logo-text span {
  margin-top: 3px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  padding: 10px 13px;
  color: #45546a;
  font-size: .92rem;
  font-weight: 600;
  border-radius: 10px;
  transition: .25s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue);
  background: rgba(109, 40, 217, .07);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 700;
  transition: .3s var(--ease);
}

.header-cta:hover {
  background: var(--cta);
  color: var(--ink);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-toggle span {
  width: 23px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: .3s var(--ease);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 82px 0 auto;
  z-index: 999;
  padding: 18px 5% 24px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu > a {
  padding: 12px 0;
  color: var(--ink-soft);
  font-weight: 600;
  border-bottom: 1px solid rgba(11, 13, 20, .06);
}

.mobile-menu-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 13px 18px !important;
  color: var(--ink) !important;
  background: var(--cta);
  border-radius: 999px;
}

/* Dark backdrop behind the open mobile menu. This class was
   referenced by every page's HTML (#menuOverlay) and by
   script.js but had no styling anywhere, so it was an
   invisible, non-blocking, zero-size element. */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(11, 13, 20, .45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease);
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Header row inside the mobile menu panel (mini logo + close
   button). Referenced in markup but had no CSS at all. */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(11, 13, 20, .08);
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
}

.menu-close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 13, 20, .06);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: .2s var(--ease);
}

.menu-close:hover {
  background: rgba(11, 13, 20, .12);
}

/* =========================================================
   MOBILE NAVIGATION BREAKPOINT
   This is the rule that switches the header from the full
   desktop nav to the hamburger + slide-down menu. It existed
   in the source file but was commented out (and a stray,
   non-matching copy in styles.css used the wrong class names),
   so the hamburger button never appeared on ANY page/width.
   ========================================================= */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }
}

@media (min-width: 901px) {
  .mobile-menu,
  .menu-overlay {
    display: none !important;
  }
}

/* =========================================================
   GLOBAL COMPONENTS
   ========================================================= */

.section {
  padding: 10px 0;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-heading {
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.section-heading2 {
  align-items: end;
  gap: 40px;
  margin-bottom: 20px;
}

.section-heading h2,
.intro-heading h2,
.process-heading h2,
.academy-copy h2,
.cta-panel h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.section-heading h2 {
  max-width: 650px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  position: relative;
  z-index: 2;
  background: transparent;
}

.section-heading > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  transition: .3s var(--ease);
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--cta), #e8c368);
  box-shadow: 0 16px 35px rgba(201, 150, 47, .30);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--cta-dark), var(--cta));
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(201, 150, 47, .36);
}

.btn-outline {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  color: var(--blue);
  border-color: rgba(109, 40, 217, .30);
  transform: translateY(-3px);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .16);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 700;
}

.text-link:hover i {
  transform: translateX(4px);
}

.text-link i {
  transition: .25s var(--ease);
}

.visual-header,
.visual-footer,
.flow-item {
  position: relative;
  z-index: 1;
}

.visual-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.visual-label {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.visual-header h2 {
  max-width: 300px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.visual-orbit {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(109, 40, 217, .30);
}

.solution-flow {
  padding: 28px 0 25px;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.flow-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  font-size: .78rem;
  font-weight: 800;
}

.flow-item strong,
.flow-item small {
  display: block;
}

.flow-item strong {
  color: var(--white);
  font-size: 1rem;
}

.flow-item small {
  margin-top: 2px;
  color: var(--muted-light);
  font-size: .82rem;
}

.flow-line {
  width: 1px;
  height: 28px;
  margin: 4px 0 4px 20px;
  background: linear-gradient(var(--blue), var(--cyan));
}

.visual-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.visual-footer span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d6dfeb;
  font-size: .78rem;
}

.visual-footer i {
  color: var(--cyan);
  font-size: .7rem;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(11, 13, 20, .09);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.floating-note i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(109, 40, 217, .09);
  border-radius: 10px;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: .8rem;
}

.floating-note span {
  color: var(--muted);
  font-size: .7rem;
}

.floating-note-one {
  top: 55px;
  left: -35px;
}

.floating-note-two {
  right: -35px;
  bottom: 50px;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 65px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-bottom-label {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
}

.capability-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.capability-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #526176;
  font-size: .82rem;
  font-weight: 600;
}

.capability-strip i {
  color: var(--blue);
}

/* =========================================================
   INTRO
   ========================================================= */

.intro-section {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.intro-heading h2 {
  max-width: 530px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.intro-heading h2 span {
  color: var(--blue);
}

.intro-content {
  max-width: 600px;
}

.intro-content p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* =========================================================
   SERVICES
   ========================================================= */

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(109, 40, 217, .16), transparent 28%),
    var(--dark);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p {
  color: #a9b7c9;
}

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

.service-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  color: var(--white);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 22px;
  transition: .35s var(--ease);
}

.service-card:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(167, 139, 250, .42);
  transform: translateY(-7px);
}

.service-card-featured {
  background: linear-gradient(145deg, rgba(109, 40, 217, .36), rgba(255, 255, 255, .05));
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.service-index {
  color: #91a2ba;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.service-card-top > i {
  color: var(--cyan);
  font-size: 1.35rem;
}

.service-card h3 {
  margin-bottom: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.service-card p {
  color: #a9b7c9;
  font-size: .9rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
}

.service-link i {
  transition: .25s var(--ease);
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* =========================================================
   WHY US
   ========================================================= */

.why-section {
  background: var(--surface);
}

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

.why-card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.why-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue);
  background: rgba(109, 40, 217, .08);
  border-radius: 15px;
}

.why-card h3 {
  margin-bottom: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.why-card p {
  color: var(--muted);
  font-size: .9rem;
}

/* =========================================================
   PROCESS
   ========================================================= */

.process-section {
  background: var(--white);
}

.process-panel {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
  padding: 55px;
  background: var(--surface);
  border: 1px solid #111;
  border-radius: var(--radius-lg);
}

.process-heading h2 {
  max-width: 400px;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
}

.process-heading p {
  max-width: 390px;
  margin-top: 18px;
  color: var(--muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.process-step {
  min-height: 185px;
  padding: 23px;
  background: var(--white);
  border: 1px solid #8b5cf6;
  border-radius: 19px;
}

.process-step > span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 7px;
  font-family: "Manrope", sans-serif;
}

.process-step p {
  color: var(--muted);
  font-size: .86rem;
}

/* =========================================================
   ACADEMY
   ========================================================= */

.academy-section {
  background: #f9fbfd;
}

.academy-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 65px;
  background:
    linear-gradient(135deg, rgba(109, 40, 217, .08), transparent 55%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.academy-copy h2 {
  max-width: 550px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.academy-copy p {
  max-width: 550px;
  margin: 22px 0 28px;
  color: var(--muted);
}

.academy-highlights {
  display: grid;
  gap: 13px;
}

.academy-highlight {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
}

.academy-highlight > i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  background: var(--white);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.academy-highlight strong,
.academy-highlight span {
  display: block;
}

.academy-highlight strong {
  font-size: .95rem;
}

.academy-highlight span {
  margin-top: 2px;
  color: var(--muted);
  font-size: .8rem;
}

/* =========================================================
   TEAM
   ========================================================= */

.team-section {
  background: var(--white);
}

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

.team-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

/* =========================================
   TEAM MEMBER IMAGE FRAME
   ========================================= */

.member-image {
    position: relative;
    width: 100%;
    height: 300px;          /* Same height for every member */
    overflow: hidden;
    background: #edf3fb;
}

/* All team photos */
.member-image img {
    width: 100%;
    height: 100%;
    display: block;

    /*
     * Fills the complete frame while maintaining
     * the original image proportions.
     */
    object-fit: cover;

    /*
     * Default position:
     * keeps the upper part of the person visible.
     */
    object-position: center 25%;

    transition: transform 0.4s ease;
}

/* Slight zoom on hover */
.team-card:hover .member-image img {
    transform: scale(1.03);
}

.member-placeholder {
  display: none;
  width: 100%;
  min-height: 310px;
  place-items: center;
  color: var(--blue);
  font-size: 5rem;
}

.member-content {
  padding: 24px;
}

.member-role {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.member-content h3 {
  margin-bottom: 9px;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.member-content p {
  color: var(--muted);
  font-size: .9rem;
}

.leadership-note {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 35px;
  padding: 30px;
  /* background: var(--dark); */
  color: #111;
  border-radius: 24px;
  border: 1px solid #111;
}

.leadership-note-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cyan);
  background: rgba(167, 139, 250, .12);
  border-radius: 14px;
}

.leadership-note h3 {
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
}

.leadership-note p {
  max-width: 780px;
  color: #585858;
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
  padding-top: 30px;
  background: var(--white);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 55px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(167, 139, 250, .22), transparent 25%),
    linear-gradient(135deg, #1a1330, #0b0d14);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-panel h2 {
  max-width: 700px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-panel p {
  max-width: 600px;
  margin-top: 14px;
  color: #a9b7c9;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  margin-top: 10px;
  padding: 10px 0 25px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 50px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-logo .logo-text strong {
  color: var(--white);
}

.footer-brand > p {
  max-width: 300px;
  margin: 22px 0;
  color: #9caabd;
  font-size: .9rem;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  color: #c5d0df;
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  transition: .25s var(--ease);
}

.footer-socials a:hover {
  color: var(--ink);
  background: var(--cta);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: .95rem;
}

.footer-column a,
.footer-column span {
  color: #9caabd;
  font-size: .86rem;
  transition: .25s var(--ease);
}

.footer-column a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #77869b;
  border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: .78rem;
}

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */

.whatsapp-btn,
#topBtn {
  position: fixed;
  z-index: 1001;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 15px 35px rgba(11, 13, 20, .18);
}

.whatsapp-btn {
  left: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  background: #20c86b;
  font-size: 1.35rem;
}

#topBtn {
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  display: none;
  border: 0;
  background: var(--blue);
  cursor: pointer;
}

#topBtn.show {
  display: grid;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* @media (max-width: 1050px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-layout {
    gap: 45px;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */

@media (max-width: 850px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 75px;
  }

  .hero-layout,
  .intro-grid,
  .process-panel,
  .academy-panel {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 60px;
  }

  /* .hero-visual {
    min-height: 470px;
  } */

  .intro-grid {
    gap: 35px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .process-panel,
  .academy-panel {
    padding: 35px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-panel {
    display: block;
  }

  .cta-panel .btn {
    margin-top: 25px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(92%, 560px);
  }

  .header-content {
    min-height: 72px;
  }

  .mobile-menu {
    inset: 72px 0 auto;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 65px 0 35px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  /* .hero-actions {
    flex-direction: column;
    align-items: stretch;
  } */

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 10px;
  }

  /* .hero-visual {
    min-height: 430px;
  } */

  .hero-visual-card {
    padding: 23px;
  }

  .visual-header h2 {
    font-size: 1.6rem;
  }

  .floating-note {
    transform: scale(.86);
  }

  .floating-note-one {
    left: -18px;
    top: 15px;
  }

  .floating-note-two {
    right: -18px;
    bottom: 18px;
  }

  .hero-bottom {
    display: block;
    margin-top: 40px;
  }

  .capability-strip {
    margin-top: 16px;
  }

  .services-grid,
  .why-grid,
  .process-steps,
  .team-grid
   {
    grid-template-columns: 1fr;
  }

  .process-panel,
  .academy-panel,
  .cta-panel {
    padding: 28px 22px;
  }

  .team-grid {
    gap: 20px;
  }

  .member-image,
  .member-image img,
  .member-placeholder {
    min-height: 280px;
  }

  .leadership-note {
    display: block;
  }

  .leadership-note-icon {
    margin-bottom: 18px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 7px;
  }

  .whatsapp-btn {
    left: 15px;
    bottom: 15px;
  }

  #topBtn {
    right: 15px;
    bottom: 15px;
  }
}


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


.section-heading {
display: block;
}

.section-heading > p {
margin-top: 20px;
}


@media (max-width: 620px) {
.hero-light {
padding: 70px 0 35px;
}

.hero h1 {
font-size: clamp(2.7rem, 13vw, 4rem);
}

.hero-description {
font-size: 1rem;
}

/* .hero-actions {
flex-direction: column;
align-items: stretch;
} */

.hero-actions .btn {
width: 100%;
}

.hero-visual-card {
width: 100%;
padding: 14px;
}

.hero-mini-cards {
gap: 10px;
}

.mini-card {
padding: 12px;
}

.capability-strip {
margin-top: 4px;
}

.services-grid {
grid-template-columns: 1fr;
}
}

.course-enroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 13px 18px;
  width: 100%;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #6d28d9, #8b5cf6);
  box-shadow: 0 16px 35px rgba(109, 40, 217, 0.22);
  transition: all 0.3s ease;
}

.course-enroll-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(109, 40, 217, 0.28);
  color: #ffffff;
}

.course-enroll-btn i {
  transition: transform 0.25s ease;
}

.course-enroll-btn:hover i {
  transform: translateX(4px);
}
