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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #e5e7eb;
  overflow-x: hidden;
}

/* ══════ COMMON GRADIENT BACKGROUND ══════ */
.dark-gradient-bg {
  background: linear-gradient(135deg, #1a0a5e 0%, #1e0f72 35%, #2a0f8f 60%, #1a0a5e 100%);
  position: relative;
  overflow: hidden;
}

/* ════════════════════════════════════
       NAVBAR SECTION 
    ════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 40px;
  z-index: 1000;
  background: rgba(24, 9, 84, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 16px 40px;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-icon {
  width: 140px;
  height: 55px;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-size: 33px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.nav-logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-logo-sub .line {
  color: #c084fc;
  font-weight: 800;
}

.nav-logo-tag {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
}

.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu>li>a {
  color: #fff;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.nav-menu>li>a:hover {
  color: #c084fc;
}

.nav-menu li a svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  border-radius: 12px;
  padding: 12px 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 200;
  list-style: none;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  color: #333;
  padding: 10px 24px;
  font-size: 14.5px;
  font-weight: 500;
  display: block;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  text-decoration: none;
}

@media (min-width: 851px) {
  .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

  .has-dropdown:hover>a svg {
    transform: rotate(180deg);
  }

  .dropdown-menu li a:hover {
    background: #f3f4f6;
    color: #7c3aed;
    padding-left: 28px;
  }
}

.nav-btn {
  background: linear-gradient(90deg, #6366f1, #c084fc);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(192, 132, 252, 0.4);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.hamburger svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 20px 24px;
  }

  .navbar.scrolled {
    padding: 16px 24px;
  }

  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 850px) {
  .nav-logo-icon {
    width: 110px;
    height: 45px;
    margin-right: 0;
  }
}

  .nav-menu,
  .nav-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #180954;
    padding: 20px 24px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
  }

  .nav-menu.active>li {
    width: 100%;
  }

  .nav-menu.active>li>a {
    font-size: 18px;
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: none;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 10px 0 0 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-left: 10px;
    margin-top: 10px;
  }

  .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    font-size: 15px;
  }

  .dropdown-menu li a:hover {
    background: transparent;
    color: #c084fc;
    padding-left: 5px;
  }

  .has-dropdown.active .dropdown-menu {
    display: block;
  }

  .has-dropdown.active>a svg {
    transform: rotate(180deg);
    color: #c084fc;
  }

  .nav-btn.active {
    display: block;
    margin-top: 10px;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .nav-logo-name {
    font-size: 20px;
  }

  .nav-logo-icon {
    width: 36px;
    height: 44px;
    margin-right: 25px;
  }

  .nav-logo-tag {
    display: none;
  }
}

/* ════════════════════════════════════
       HERO SECTION 
    ════════════════════════════════════ */
.hero-section {
  padding: 150px 24px 60px;
  text-align: center;
  color: #fff;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  animation: fadeSlideUp 0.8s ease backwards;
  animation-delay: 0.1s;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #c084fc;
  border-radius: 50%;
  box-shadow: 0 0 10px #c084fc;
}

.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeSlideUp 0.8s ease backwards;
  animation-delay: 0.3s;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 700px;
  line-height: 1.6;
  animation: fadeSlideUp 0.8s ease backwards;
  animation-delay: 0.5s;
}

.hero-btn-main {
  background: linear-gradient(90deg, #6366f1, #c084fc);
  border: none;
  padding: 16px 36px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 20px rgba(192, 132, 252, 0.3);
  animation: fadeInScale 0.8s ease backwards;
  animation-delay: 0.7s;
}

.hero-btn-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 25px rgba(192, 132, 252, 0.5);
}

.hero-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
  align-items: center;
  animation: fadeIn 0.8s ease backwards;
  animation-delay: 0.9s;
}

.hero-dots .dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
}

.hero-dots .dot.active {
  width: 24px;
  border-radius: 999px;
  opacity: 1;
}

/* Hero Images */
.hero-images {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}

.hero-img-wrapper {
  position: relative;
  width: 200px;
  height: 420px;
  border-radius: 200px;
  z-index: 1;
  transition: transform 0.3s ease-in-out, z-index 0.3s ease-in-out;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 200px;
  position: relative;
  z-index: 2;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: #333;
}

/* Added dark bg for empty image */
@media (hover: hover) {
  .hero-img-wrapper:hover {
    transform: scale(1.15);
    z-index: 10;
  }
}

.hero-img-wrapper:nth-child(1) {
  animation: fadeSlideUp 0.8s ease backwards;
  animation-delay: 1.1s;
}

.hero-img-wrapper:nth-child(2) {
  animation: fadeSlideUp 0.8s ease backwards;
  animation-delay: 1.3s;
}

.hero-img-wrapper:nth-child(3) {
  animation: fadeSlideUp 0.8s ease backwards;
  animation-delay: 1.5s;
}

@media (max-width: 1024px) {
  .hero-img-wrapper {
    width: 170px;
    height: 360px;
  }

  .hero-images {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 120px 16px 50px;
  }

  .hero-images {
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: center;
    padding-top: 10px;
  }

  .hero-img-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50% !important;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  }

  .hero-img-wrapper img {
    border-radius: 50% !important;
  }
}

@media (max-width: 400px) {
  .hero-img-wrapper {
    width: 80px;
    height: 80px;
    gap: 10px;
  }
}

/* ════════════════════════════════════
       GUIDED BY EXPERTS SECTION
    ════════════════════════════════════ */
.experts-section {
  padding: 80px 24px 80px;
  background: #e5e7eb;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-title {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: #15093b;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.why-choose-title .purple-text {
  color: #7c3aed;
}

.why-choose-desc {
  font-size: clamp(15px, 2vw, 22px);
  color: #15093b;
  font-weight: 400;
  padding: 0 10px;
}

.experts-container {
  max-width: 1320px;
  margin: 0 auto;
  background: linear-gradient(135deg, #180954 0%, #2b1285 100%);
  border-radius: 100px 5px 100px 5px;
  padding: 70px 60px;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experts-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 70px;
}

.experts-left {
  width: 100%;
}

.experts-title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.experts-divider {
  width: 60px;
  height: 3px;
  background: #fff;
  border: none;
  margin-bottom: 20px;
  border-radius: 2px;
}

.experts-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.experts-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.expert-card {
  background: #fff;
  border-radius: 80px 0 80px 0;
  padding: 46px 32px;
  min-height: 200px;
  text-align: left;
  color: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}

.expert-card:hover {
  transform: translateY(-5px);
}

.expert-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1e0f72;
  margin-bottom: 12px;
}

.expert-card-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

@media (min-width: 1025px) {
  .experts-top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    align-items: start;
  }

  .experts-left {
    grid-column: 1 / 5;
  }

  .experts-right {
    display: contents;
  }

  .expert-card:nth-child(1) {
    grid-column: 5 / 9;
    margin-top: 10px;
  }

  .expert-card:nth-child(2) {
    grid-column: 9 / 13;
    margin-top: 10px;
  }

  .expert-card:nth-child(3) {
    grid-column: 4 / 8;
    margin-top: 20px;
  }

  .expert-card:nth-child(4) {
    grid-column: 8 / 12;
    margin-top: 20px;
  }
}

.experts-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-pill {
  background: linear-gradient(90deg, #9b4dff, #4ea3ff);
  padding: 16px 36px;
  border-radius: 999px;
  text-align: center;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
}

.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1024px) {
  .experts-container {
    border-radius: 80px 5px 80px 5px;
    padding: 50px 32px;
  }

  .experts-top {
    text-align: center;
    gap: 40px;
  }

  .experts-divider {
    margin: 0 auto 24px;
  }

  .expert-card {
    text-align: left;
  }

  .why-choose-header {
    margin-bottom: 40px;
    padding: 0 16px;
  }
}

@media (max-width: 768px) {
  .why-choose-title {
    white-space: normal;
  }
}

@media (max-width: 650px) {
  .experts-section {
    padding: 50px 16px 60px;
  }

  .experts-container {
    padding: 40px 20px;
    border-radius: 50px 5px 50px 5px;
  }

  .experts-right {
    grid-template-columns: 1fr;
  }

  .expert-card {
    border-radius: 60px 0 60px 0;
    padding: 32px 24px;
    min-height: auto;
  }

  .stat-pill {
    width: 100%;
    min-width: 0;
  }
}

/* ══════ CHOOSE YOUR PATH ══════ */
.path-section {
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}

.path-header {
  max-width: 800px;
  margin: 0 auto 56px;
}

.path-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.path-title .purple-text {
  color: #a855f7;
}

.path-desc {
  font-size: clamp(15px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.75);
}

.path-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.path-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #fff;
  transition: transform 0.4s, box-shadow 0.4s;
  animation: fadeSlideUp 0.8s ease backwards;
  backdrop-filter: blur(10px);
}

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

.path-badge {
  background: #4c1d95;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 25px;
  display: inline-block;
  width: fit-content;
  align-self: flex-start;
  text-transform: uppercase;
}

.path-icon {
  width: 50px;
  height: 50px;
  fill: #fff;
  margin-bottom: 20px;
}

.path-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.path-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  flex-grow: 1;
}

.path-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #a855f7;
  padding-bottom: 3px;
  display: inline-block;
  width: fit-content;
}

@media (max-width: 850px) {
  .path-grid {
    grid-template-columns: 1fr;
  }
}

/* ══════ TOP CATEGORIES ══════ */
.categories-section {
  background: #ffffff;
  padding: 80px 0 60px;
  text-align: center;
}

.categories-header {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 32px;
}

.categories-title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 30px;
}

.categories-title .purple-text {
  color: #7c3aed;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  margin-bottom: 48px;
  padding: 0 32px 10px;
  scrollbar-width: none;
}

.category-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: 999px;
  border: 1.5px solid #4f46e5;
  background: transparent;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.filter-btn.active {
  background: linear-gradient(90deg, #4f46e5, #9333ea);
  color: #fff;
  border-color: transparent;
}

.categories-slider-wrapper {
  width: 100%;
  padding-left: max(32px, calc((100vw - 1320px) / 2));
}

.categories-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0 30px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.categories-slider::-webkit-scrollbar {
  display: none;
}

.category-card {
  flex: 0 0 280px;
  min-height: 240px;
  background: linear-gradient(145deg, #1a0a5e, #310c9c);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: left;
  scroll-snap-align: start;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  animation: fadeIn 0.4s ease forwards;
  display: flex;
  flex-direction: column;
}

.category-card:last-child {
  margin-right: 40px;
}

.category-card.hidden {
  display: none;
}

.category-card-number {
  font-size: 34px;
  font-weight: 800;
  text-align: right;
  margin-bottom: 24px;
  opacity: 0.8;
}

.category-card-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 850px) {
  .category-filters {
    flex-wrap: wrap;
    overflow: visible;
    padding: 0 20px 20px;
  }

  .categories-slider-wrapper {
    padding: 0 24px;
  }

  .categories-slider {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    gap: 16px;
  }

  .category-card {
    flex: 1 1 100%;
    max-width: 100%;
    margin-right: 0 !important;
    min-height: 200px;
    padding: 20px;
  }
}

/* ══════ COUNSELLING SECTION ══════ */
.counsel-section {
  padding: 100px 40px;
}

.counsel-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.counsel-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.counsel-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
  display: inline-block;
}

.counsel-title {
  font-size: clamp(36px, 4.5vw, 55px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.counsel-title .purple-text {
  color: #a855f7;
}

.counsel-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}

.counsel-link {
  color: #a855f7;
  font-weight: 600;
  text-decoration: underline;
  font-size: 16px;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s;
}

.counsel-link:hover {
  color: #c084fc;
}

.counsel-form-card {
  background: rgba(0, 0, 0, 0.15);
  border: 1.5px solid #fff;
  border-radius: 20px;
  padding: 40px 50px;
  backdrop-filter: blur(10px);
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 30px;
}

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

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border 0.3s;
}

.form-input:focus {
  border-color: #a855f7;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.form-btn {
  width: 100%;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(90deg, #2563eb, #a855f7);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.3s, box-shadow 0.3s;
}

.form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.4);
}

@media (max-width: 1024px) {
  .counsel-section {
    padding: 80px 24px;
  }

  .counsel-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .counsel-text-col {
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 650px) {
  .counsel-form-card {
    padding: 30px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-input {
    padding: 14px 16px;
  }
}

/* ══════ TESTIMONIALS ══════ */
.testimonials-section {
  background: #f0f0f0;
  padding: 48px 32px 56px;
}

.testi-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}

.testi-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tc {
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
  position: relative;
  border: 1px solid #e8e8e8;
}

.tc-float-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  float: right;
  margin: 0 0 8px 12px;
  shape-outside: circle();
  border: 3px solid #f0f0f0;
  background: #eee;
}

.tc-center-avatar {
  text-align: center;
  padding: 20px 20px 18px;
}

.tc-center-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  margin: 0 auto 16px;
  border: 3px solid #f0f0f0;
  background: #eee;
}

.tc-center-avatar .big-quote {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 10px;
}

.tc-center-avatar .sub-quote {
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
  text-align: left;
}

.tc-center-avatar .t-name {
  text-align: left;
}

.tc-hero {
  padding: 0;
  overflow: hidden;
}

.tc-hero img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 14px 14px 0 0;
  background: #eee;
}

.tc-hero .hero-body {
  padding: 14px 16px 16px;
}

.tc-bubble {
  text-align: left;
}

.tc-bubble img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  margin: 0 auto 12px;
  border: 3px solid #f0f0f0;
  background: #eee;
}

.tc-bubble::after {
  content: '';
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 13px solid #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
}

.tc-side {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
}

.tc-side img {
  width: 110px;
  height: 130px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  background: #eee;
}

.tc-side .side-body {
  flex: 1;
}

.t-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 14px;
  clear: both;
}

.t-name {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.t-role {
  font-size: 12.5px;
  color: #aaa;
  font-weight: 400;
}

.t-name-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.testi-tagline h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-top: 8px;
}

.testi-tagline h2 .purple {
  color: #7c3aed;
}

@media (max-width: 1100px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-section {
    padding: 32px 14px 40px;
  }

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

/* ══════ FAQ ══════ */
.faq-section {
  position: relative;
  width: 100%;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px 80px;
}

.faq-bg {
  position: absolute;
  inset: 0;
  background-image: url('Images/faq.jpg');
  background-size: cover;
  background-position: center top;
  z-index: 0;
  background-color: #1a0a5e;
}

.faq-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 18, 60, 0.70);
}

.faq-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
}

.faq-badge {
  display: inline-block;
  padding: 6px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.faq-title {
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 18px;
}

.faq-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.accordion-question {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-align: left;
  line-height: 1.35;
}

.accordion-btn {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  color: #374151;
}

.accordion-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-btn {
  background: #7c3aed;
  color: #fff;
}

.accordion-item.open .accordion-btn svg {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.accordion-item.open .accordion-body {
  padding: 0 24px 22px;
}

.accordion-answer {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  text-align: left;
}

/* ══════ FOOTER ══════ */
.footer {
  font-family: 'Barlow', sans-serif;
  background: linear-gradient(135deg, #1a0a5e 0%, #1e0f6b 40%, #200e72 60%, #180960 100%);
  color: #fff;
  padding: 56px 60px 32px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 10% 50%, rgba(80, 40, 200, 0.18) 0%, transparent 55%), radial-gradient(ellipse at 90% 20%, rgba(60, 20, 180, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
}

.logo-icon {
  width: 70px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  margin-right: 15px;
}
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 33px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-tagline {
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.brand-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  max-width: 300px;
  margin-bottom: 28px;
}

.socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.2s;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nav-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-list li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-list li a:hover {
  color: #fff;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #fff;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

@media (max-width: 1024px) {
  .footer {
    padding: 48px 40px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .brand-col {
    grid-column: 1 / -1;
  }

  .brand-desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 48px 16px 60px;
  }

  .accordion-header {
    padding: 18px;
  }

  .accordion-question {
    font-size: 15px;
  }

  .accordion-item.open .accordion-body {
    padding: 0 18px 18px;
  }

  .footer {
    padding: 40px 24px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .brand-col {
    grid-column: 1 / -1;
  }

  .nav-col:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .brand-col,
  .nav-col {
    grid-column: auto;
  }
}

/* Keyframes */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}






/* marquee */

.mwrap {
  width: 100%;
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid rgba(155, 89, 245, 0.2);
  border-bottom: 1px solid rgba(155, 89, 245, 0.2);
}

.minner {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.minner img {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 50px;
  display: block;
}