:root {

  --primary: #1a237e;

  --secondary: #283593;

  --accent: #00b0ff;

  --purple: #7c3aed;

  --gradient: linear-gradient(135deg, #1a237e 0%, #7c3aed 60%, #00b0ff 100%);

  --gradient-soft: linear-gradient(135deg, #e8eaf6 0%, #ede7f6 100%);

  --text-dark: #0d1b4b;

  --text-muted: #5c6bc0;

  --card-bg: #fff;

  --border-radius: 18px;

}

* {
  box-sizing: border-box;
}

body {

  font-family: 'Nunito', sans-serif;

  color: var(--text-dark);

  background: #f5f7ff;

  overflow-x: hidden;
   

}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}



/* ===== NAVBAR ===== */

.navbar {

  background: var(--primary) !important;

  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.3);

  padding: 10px 0;

}

.navbar-brand img {
  height: 52px;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent) !important;
}

.nav-cta {

  background: var(--accent);

  color: #fff !important;

  border-radius: 30px;

  padding: 8px 22px !important;

  font-weight: 700 !important;

  transition: all 0.3s;

}

.nav-cta:hover {
  background: #fff;
  color: var(--primary) !important;
  transform: scale(1.05);
}



/* ===== HERO ===== */

.hero {

  background: var(--gradient);

  color: #fff;

  padding: 80px 0 60px;

  position: relative;

  overflow: hidden;

}

.hero::before {

  content: '';

  position: absolute;

  top: -60px;
  right: -80px;

  width: 340px;
  height: 340px;

  background: rgba(255, 255, 255, 0.06);

  border-radius: 50%;

}

.hero::after {

  content: '';

  position: absolute;

  bottom: -80px;
  left: -40px;

  width: 220px;
  height: 220px;

  background: rgba(0, 176, 255, 0.12);

  border-radius: 50%;

}

.hero-logo {
  width: 140px;
  border-radius: 16px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 2.5rem);
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 520px;
}

.hero-badges span {

  background: rgba(255, 255, 255, 0.18);

  border: 1px solid rgba(255, 255, 255, 0.3);

  border-radius: 30px;

  padding: 6px 16px;

  font-size: 0.82rem;

  font-weight: 700;

  display: inline-block;

  margin: 4px 3px;

}

.btn-hero-primary {

  background: #fff;

  color: var(--primary);

  font-weight: 800;

  border-radius: 40px;

  padding: 14px 36px;

  font-size: 1rem;

  border: none;

  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);

  transition: all 0.3s;

}

.btn-hero-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-hero-outline {

  background: transparent;

  color: #fff;

  font-weight: 700;

  border-radius: 40px;

  padding: 13px 32px;

  font-size: 1rem;

  border: 2px solid rgba(255, 255, 255, 0.6);

  transition: all 0.3s;

}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.hero-stats {
  margin-top: 32px;
}

.stat-box {
  text-align: center;
}

.stat-box .number {
  font-size: 1.9rem;
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
}

.stat-box .label {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 600;
}



/* ===== SECTION TITLES ===== */

.section-title {

  font-size: clamp(1.6rem, 5vw, 2.4rem);

  font-weight: 700;

  color: var(--primary);

}

.section-title span {
  color: var(--purple);
}

.section-badge {

  background: var(--gradient);

  color: #fff;

  border-radius: 30px;

  font-size: 0.8rem;

  font-weight: 700;

  padding: 5px 18px;

  display: inline-block;

  margin-bottom: 12px;

  letter-spacing: 1px;

}

.divider {

  width: 60px;
  height: 4px;

  background: var(--gradient);

  border-radius: 4px;

  margin: 12px auto 0;

}



/* ===== TRUST BAR ===== */

.trust-bar {

  background: #fff;

  border-bottom: 2px solid #e8eaf6;

  padding: 18px 0;

}

.trust-item {
  text-align: center;
  padding: 8px;
}

.trust-item .icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.trust-item .value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Rajdhani', sans-serif;
}

.trust-item .desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}



    /* ── SECTION 1: AI Tools ── */
    .ai-tools-section {
      background: linear-gradient(160deg, #fef9f0 0%, #fff8ec 50%, #fef3e2 100%);
      padding: 64px 20px 72px;
      text-align: center;
    }
 
    .ai-tools-section .eyebrow {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #f5a623;
      margin-bottom: 12px;
    }
 
    .ai-tools-section h2 {
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      font-weight: 800;
      color: #1a1a2e;
      margin-bottom: 10px;
      line-height: 1.25;
    }
 
    .ai-tools-section .subtitle {
      font-size: 15px;
      color: #7a7a8c;
      margin-bottom: 36px;
      font-weight: 400;
    }
 
    .tools-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      max-width: 720px;
      margin: 0 auto;
    }
 
    .tool-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 20px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      border: 1.5px solid transparent;
      cursor: default;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }
 
    .tool-badge:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
 
    .tool-badge.style-green {
      background: #e8f9f0;
      color: #1a7a50;
      border-color: #b2ecd3;
    }
    .tool-badge.style-orange {
      background: #fff3e0;
      color: #c25f00;
      border-color: #fcd6a0;
    }
    .tool-badge.style-blue {
      background: #e8f0fe;
      color: #1a4fc4;
      border-color: #b3ccfc;
    }
    .tool-badge.style-purple {
      background: #f3effe;
      color: #6b21d8;
      border-color: #d4b8fc;
    }
    .tool-badge.style-teal {
      background: #e6fafa;
      color: #0d7f7f;
      border-color: #a3e3e3;
    }
    .tool-badge.style-red {
      background: #fdecea;
      color: #b91c1c;
      border-color: #f9c6c0;
    }
    .tool-badge.style-slate {
      background: #f1f3f6;
      color: #3b4a6b;
      border-color: #cdd5e0;
    }
 
    .tool-badge .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      opacity: 0.55;
      flex-shrink: 0;
    }
 
    /* ── SECTION 2: Placement Support ── */
    .placement-section {
      background: #0f172a;
      padding: 72px 20px;
    }
 
    .placement-inner {
      max-width: 1080px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 56px;
    }
 
    .placement-content {
      flex: 1;
      min-width: 0;
    }
 
    .placement-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #f5a623;
      background: rgba(245,166,35,0.12);
      border: 1px solid rgba(245,166,35,0.25);
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 18px;
    }
 
    .placement-content h2 {
      font-size: clamp(1.5rem, 2.8vw, 2rem);
      font-weight: 800;
      color: #f8fafc;
      margin-bottom: 14px;
      line-height: 1.3;
    }
 
    .placement-content .desc {
      font-size: 15px;
      color: #94a3b8;
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 460px;
    }
 
    .placement-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
 
    .placement-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: #cbd5e1;
      font-weight: 500;
      line-height: 1.5;
    }
 
    .check-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 2px solid #22c55e;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
 
    .check-icon svg {
      width: 11px;
      height: 11px;
      stroke: #22c55e;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .placement-image-wrap {
      flex: 0 0 380px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.45);
      position: relative;
    }
 
    .placement-image-wrap img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
      filter: brightness(0.92) saturate(1.05);
    }
 
    .image-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(15,23,42,0.15) 0%, transparent 60%);
    }
 
    /* Responsive */
    @media (max-width: 768px) {
      .placement-inner {
        flex-direction: column;
        gap: 36px;
      }
      .placement-image-wrap {
        flex: none;
        width: 100%;
      }
    }



       .sf-wrap {
      background: linear-gradient(160deg, #fef3dc 0%, #fde8b8 40%, #fcd89a 100%);
      padding: 64px 20px 72px;
      font-family: 'Inter', sans-serif;
    }
 
    .sf-wrap .sf-heading {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.3rem, 2.8vw, 1.75rem);
      font-weight: 700;
      color: #1e1b14;
      text-align: center;
      margin-bottom: 8px;
    }
 
    .sf-wrap .sf-tagline {
      font-size: 14px;
      color: #7a6e58;
      text-align: center;
      margin-bottom: 40px;
    }
 
    /* Card */
    .sf-item {
      background: rgba(255, 252, 244, 0.82);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.7);
      border-radius: 14px;
      padding: 22px 20px 20px;
      height: 100%;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      position: relative;
      overflow: hidden;
    }
 
    .sf-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    }
 
    /* Colored left border accent */
    .sf-item::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 3.5px;
      border-radius: 14px 0 0 14px;
    }
 
    .sf-accent-emerald::before  { background: #22c55e; }
    .sf-accent-amber::before    { background: #f59e0b; }
    .sf-accent-violet::before   { background: #a855f7; }
    .sf-accent-rose::before     { background: #ef4444; }
    .sf-accent-sky::before      { background: #3b82f6; }
 
    .sf-emoji {
      font-size: 22px;
      margin-bottom: 14px;
      line-height: 1;
    }
 
    .sf-title {
      font-size: 15px;
      font-weight: 700;
      color: #1e1b14;
      margin-bottom: 5px;
    }
 
    .sf-desc {
      font-size: 12.5px;
      color: #7a6e58;
      font-weight: 400;
    }
 
    /* View All card */
    .sf-viewall {
      background: transparent;
      border: 1.5px dashed #c8b88a;
      border-radius: 14px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 22px;
      transition: background 0.2s;
    }
 
    .sf-viewall:hover {
      background: rgba(255,255,255,0.35);
    }
 
    .sf-viewall a {
      font-size: 14.5px;
      font-weight: 600;
      color: #5a4a2a;
      text-decoration: none;
      letter-spacing: 0.01em;
    }
 
    .sf-viewall a:hover {
      color: #1e1b14;
    }



/* ===== COURSES ===== */

.courses-section {
  padding: 70px 0;
  background: #f5f7ff;
}

.course-card {

  background: var(--card-bg);

  border-radius: var(--border-radius);

  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.08);

  overflow: hidden;

  height: 100%;

  display: flex;

  flex-direction: column;

  transition: transform 0.3s, box-shadow 0.3s;

  border: 1px solid #e8eaf6;

}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 35, 126, 0.16);
}

.course-card-header {

  padding: 20px 20px 14px;

  position: relative;

}

.course-icon {

  width: 52px;
  height: 52px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;

  color: #fff;

  margin-bottom: 12px;

}

.course-card h5 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.course-card .taught-by {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.course-card .course-body {
  padding: 0 20px 16px;
  flex: 1;
}

.course-card ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.course-card ul li {
  font-size: 0.83rem;
  color: #37474f;
  margin-bottom: 4px;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.highlight-tag {

  background: #e8f5ff;

  color: #0077b6;

  border-radius: 20px;

  padding: 3px 10px;

  font-size: 0.72rem;

  font-weight: 700;

}

.course-footer {

  padding: 14px 20px;

  background: #f8f9ff;

  border-top: 1px solid #e8eaf6;

  display: flex;

  align-items: center;

  justify-content: space-between;

}

.course-price {
  font-family: 'Rajdhani', sans-serif;
}

.course-price .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.course-price .label {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

.btn-enroll {

  background: var(--gradient);

  color: #fff;

  border: none;

  border-radius: 30px;

  padding: 10px 22px;

  font-weight: 700;

  font-size: 0.88rem;

  transition: all 0.3s;

  cursor: pointer;

}

.btn-enroll:hover {
  background: #25D366;
  opacity: 1;
  transform: scale(1.04);
}

.popular-badge {

  position: absolute;

  top: 14px;
  right: 14px;

  background: #ff6f00;

  color: #fff;

  font-size: 0.65rem;

  font-weight: 800;

  border-radius: 20px;

  padding: 3px 10px;

  letter-spacing: 0.5px;

}


  .hop-wrap {
      background: #f5f2eb;
      padding: 64px 20px;
      font-family: 'Inter', sans-serif;
    }
 
    .hop-inner {
      max-width: 1050px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 52px;
    }
 
    /* ── Left Content ── */
    .hop-content {
      flex: 1;
      min-width: 0;
    }
 
    .hop-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #c8a96e;
      background: rgba(200,169,110,0.12);
      border: 1px solid rgba(200,169,110,0.3);
      padding: 4px 12px;
      border-radius: 999px;
      margin-bottom: 16px;
    }
 
    .hop-heading {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.65rem);
      font-weight: 700;
      color: #1e1b14;
      margin-bottom: 10px;
      line-height: 1.35;
    }
 
    .hop-desc {
      font-size: 14px;
      color: #7a6e58;
      line-height: 1.7;
      margin-bottom: 28px;
      max-width: 400px;
    }
 
    .hop-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 13px;
    }
 
    .hop-list li {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      font-size: 14px;
      color: #3d3525;
      font-weight: 500;
      line-height: 1.5;
    }
 
    .hop-list li .hop-folder {
      width: 30px;
      height: 30px;
      border-radius: 8px;
      background: rgba(200,169,110,0.13);
      border: 1px solid rgba(200,169,110,0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 0px;
    }
 
    .hop-list li .hop-folder svg {
      width: 15px;
      height: 15px;
      stroke: #c8a96e;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .hop-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 30px;
      font-size: 13.5px;
      font-weight: 600;
      color: #5a4a2a;
      text-decoration: none;
      border-bottom: 1.5px solid #c8a96e;
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
 
    .hop-cta:hover {
      color: #1e1b14;
      border-color: #1e1b14;
    }
 
    /* ── Right Image ── */
    .hop-img-wrap {
      flex: 0 0 500px;
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 52px rgba(0,0,0,0.13);
    }
 
    .hop-img-wrap img {
      width: 100%;
      height: 290px;
      object-fit: cover;
      display: block;
      filter: saturate(0.95) brightness(0.96);
    }
 
    /* floating badge on image */
    .hop-badge {
      position: absolute;
      bottom: 16px;
      left: 16px;
      background: rgba(255,252,244,0.92);
      backdrop-filter: blur(6px);
      border-radius: 10px;
      padding: 10px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }
 
    .hop-badge-icon {
      width: 34px;
      height: 34px;
      background: linear-gradient(135deg, #f59e0b, #c8a96e);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      flex-shrink: 0;
    }
 
    .hop-badge-text strong {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: #1e1b14;
      line-height: 1.2;
    }
 
    .hop-badge-text span {
      font-size: 11px;
      color: #7a6e58;
    }
 
    /* Responsive */
    @media (max-width: 768px) {
      .hop-inner {
        flex-direction: column;
        gap: 36px;
      }
      .hop-img-wrap {
        flex: none;
        width: 100%;
      }
    }



/* ===== TUTORS ===== */

.tutors-section {
  padding: 70px 0;
  background: #fff;
}

.tutor-card {

  background: #fff;

  border-radius: var(--border-radius);

  box-shadow: 0 4px 24px rgba(26, 35, 126, 0.1);

  overflow: hidden;

  border: 1px solid #e8eaf6;

  transition: transform 0.3s;

}

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

.tutor-img-wrap {

  height: 200px;

  background: var(--gradient);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 5rem;

  color: rgba(255, 255, 255, 0.7);

  position: relative;

  overflow: hidden;

}

.tutor-img-wrap::after {

  content: '';

  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;

  height: 40px;

  background: #fff;

  border-radius: 50% 50% 0 0;

}

.tutor-body {
  padding: 16px 20px 20px;
}

.tutor-body h5 {
  color: var(--primary);
  margin-bottom: 2px;
}

.tutor-designation {
  font-size: 0.8rem;
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 10px;
}

.tutor-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tutor-meta-item {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.tutor-meta-item i {
  color: var(--accent);
  margin-right: 4px;
}

.tutor-about {
  font-size: 0.83rem;
  color: #546e7a;
  line-height: 1.5;
}

.tutor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.tutor-tag {

  background: #ede7f6;

  color: var(--purple);

  border-radius: 20px;

  padding: 3px 10px;

  font-size: 0.72rem;

  font-weight: 700;

}



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

.why-section {
  padding: 60px 0;
  background: var(--gradient);
  color: #fff;
}

.why-card {

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 16px;

  padding: 24px;

  text-align: center;

  height: 100%;

  transition: background 0.3s;

}

.why-card:hover {
  background: rgba(255, 255, 255, 0.18);
}

.why-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.why-card h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  /* font-size: 0.83rem; */
  opacity: 0.85;
  margin: 0;
}



/* ===== TESTIMONIALS ===== */

.testimonials-section {
  padding: 70px 0;
  background: #f5f7ff;
}

.testimonial-card {

  background: #fff;

  border-radius: 16px;

  padding: 24px;

  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.07);

  border-left: 4px solid var(--accent);

}

.testimonial-card .stars {
  color: #ffd600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 0.88rem;
  font-style: italic;
  color: #455a64;
  margin-bottom: 14px;
}

.testimonial-card .name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}

.testimonial-card .role {
  font-size: 0.75rem;
  color: var(--text-muted);
}


 .faq-section {
      font-family: 'Inter', sans-serif;
      /* background: #f5f2eb; */
      width: 100%;
      max-width: 760px;
      margin: 0 auto;
      padding: 60px 20px;
    }
 
    .faq-title {
      font-family: 'Merriweather', serif;
      font-size: clamp(1.4rem, 3vw, 1.9rem);
      font-weight: 700;
      color: #2c2c3a;
      text-align: center;
      margin-bottom: 40px;
      letter-spacing: -0.01em;
    }
 
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
 
    .faq-item {
      border-bottom: 1px solid #ddd8cc;
      padding: 22px 4px;
      cursor: pointer;
    }
 
    .faq-item:first-child {
      border-top: 1px solid #ddd8cc;
    }
 
    .faq-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
 
    .faq-question {
      font-size: 15.5px;
      font-weight: 600;
      color: #2c2c3a;
      line-height: 1.45;
      flex: 1;
    }
 
    .faq-icon {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      border: 1.5px solid #b0a98f;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: border-color 0.2s, background 0.2s;
    }
 
    .faq-icon svg {
      width: 12px;
      height: 12px;
      stroke: #7a7260;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      transition: transform 0.3s ease, stroke 0.2s;
    }
 
    .faq-item.open .faq-icon {
      border-color: #c8a96e;
      background: rgba(200,169,110,0.1);
    }
 
    .faq-item.open .faq-icon svg {
      transform: rotate(180deg);
      stroke: #c8a96e;
    }
 
    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.38s ease, opacity 0.3s ease;
      opacity: 0;
    }
 
    .faq-item.open .faq-body {
      opacity: 1;
    }
 
    .faq-answer {
      font-size: 14.5px;
      color: #6b6455;
      line-height: 1.75;
      padding-top: 14px;
      padding-right: 40px;
    }


/* ===== PAYMENT MODAL ===== */

.modal-header {
  background: var(--gradient);
  color: #fff;
}

.modal-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
}

.pay-option {

  border: 2px solid #e8eaf6;

  border-radius: 12px;

  padding: 16px;

  cursor: pointer;

  transition: all 0.2s;

  margin-bottom: 10px;

}

.pay-option:hover,
.pay-option.selected {
  border-color: var(--accent);
  background: #e8f5ff;
}

.pay-option .pay-icon {
  font-size: 1.8rem;
  color: var(--accent);
}

.pay-option .pay-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.pay-option .pay-desc {
  font-size: 0.77rem;
  color: #78909c;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 176, 255, 0.15);
}

.btn-pay-now {

  background: var(--gradient);

  color: #fff;

  border: none;

  border-radius: 40px;

  padding: 14px;

  font-weight: 800;

  font-size: 1rem;

  width: 100%;

  letter-spacing: 0.5px;

  transition: opacity 0.3s;

}

.btn-pay-now:hover {
  opacity: 0.88;
}



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

.cta-section {
  padding: 60px 0;
  background: #fff;
}

.cta-box {

  background: var(--gradient);

  border-radius: 24px;

  padding: 50px 30px;

  text-align: center;

  color: #fff;

}

.cta-box h2 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
}

.btn-cta-white {

  background: #fff;

  color: var(--primary);

  font-weight: 800;

  border-radius: 40px;

  padding: 14px 40px;

  border: none;

  font-size: 1rem;

  transition: all 0.3s;

}

.btn-cta-white:hover {
  background: var(--accent);
  color: #fff;
}



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

.footer {

  background: var(--primary);

  color: rgba(255, 255, 255, 0.75);

  padding: 50px 0 24px;

}

.footer h6 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1rem;
}

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

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

.footer-brand img {
  height: 56px;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 12px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 18px;
  font-size: 0.8rem;
  text-align: center;
}



/* ===== ANIMATE ===== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.fade-up {
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}



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

@media(max-width:576px) {

  .hero {
    padding: 60px 0 50px;
  }

  .hero-logo {
    width: 100px;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    margin-bottom: 10px;
  }

}


/* Hide Scrollbar for Testimonials */
.custom-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.custom-scrollbar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}