:root {
  /* ===== COLORS ===== */

  --primary-color: #5000f0;
  --secondary-color: #16122a;
  --accent-color: #1c113e;

  --bg-color: #ffffff;
  --light-bg: #f7f7f7;

  --text-black-color: #000;
  --text-white-color: #fff;
  --text-light: #5a5670;
  --text-light-grey: #dbdbdb;

  --border-color: #e5e5e5;
  --border-20px-radius: 20px;
  --border-100px-radius: 100px;

  /* ===== FONTS ===== */

  --font-primary: "Inter", sans-serif;

  /* ===== FONT SIZES ===== */

  --fs-h1: 60px;
  --fs-h2: 42px;
  --fs-h3: 34px;
  --fs-h4: 28px;
  --fs-h5: 24px;
  --fs-h6: 20px;

  --fs-body: 16px;
  --fs-small: 14px;

  /* ===== SPACING ===== */

  --section-padding: 80px;
  --container-width: 1200px;

  /* ===== TRANSITIONS ===== */

  --transition: all 0.3s ease;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  font-family: var(--font-primary);
  overflow-x: clip;
}
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(80, 0, 240, 0.35) transparent;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(80, 0, 240, 0.28);
  border-radius: 100px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(80, 0, 240, 0.45);
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
button,
input,
textarea,
label {
  font-family: inherit;
}
* {
  padding: 0;
  margin: 0;
}
p, li {
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 300;
}
ul {
  margin: 0;
}
/* ===== TOP BAR ===== */
.top-bar {
  background: var(--secondary-color);
  color: var(--text-light-grey);

  padding: 10px 0;
}
.top-bar p,
.top-bar span {
  font-size: var(--fs-small);
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact span {
  margin-left: 15px;
}

/* ===== NAVBAR ===== */
.main-nav {
  background: var(--bg-color);
  border-bottom: 1px solid #eee;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

/* Logo */
.logo img {
  height: 40px;
}

/* Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

/* Buttons */
.nav-actions {
  display: flex;
  gap: 10px;
}

.btn-outline {
  --color: var(--primary-color);
  --color2: var(--text-white-color);

  display: inline-block;
  padding: 15px 40px;
  border: 1px solid var(--color);
  border-radius: 999px;

  color: var(--color);
  text-decoration: none;
  font-weight: 500;

  position: relative;
  overflow: hidden;
  z-index: 1;

  transition: all 0.3s ease;
}

/* LAYERS */
.btn-outline::before,
.btn-outline::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 300%;
  left: 50%;
  top: 50%;
  z-index: -1;

  background: var(--secondary-color);

  transform: translate(-50%, -50%) rotate(45deg) scaleY(0);
  transition: transform 0.5s ease;
}

/* SECOND LAYER DELAY */
.btn-outline::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleY(0);
}

/* HOVER */
.btn-outline:hover::before {
  transform: translate(-50%, -50%) rotate(45deg) scaleY(1);
}

.btn-outline:hover::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleY(1);
}

.btn-outline:hover {
  color: var(--color2);
  transform: translateY(-3px);
  border-color: var(--secondary-color);
}

/* CLICK */
.btn-outline:active {
  transform: scale(0.96);
}

.btn-primary {
    --color: #16122a;
    --color2: var(--text-white-color);
    display: inline-block;
    padding: 15px 50px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    background: var(--primary-color);
    color: var(--text-white-color) !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

/* SAME ANIMATION STRUCTURE */
.btn-primary::before,
.btn-primary::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 300%;
  left: 50%;
  top: 50%;
  z-index: -1;

  background: var(--color);

  transform: translate(-50%, -50%) rotate(45deg) scaleY(0);
  transition: transform 0.5s ease;
}

.btn-primary::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleY(0);
}

/* HOVER */
.btn-primary:hover::before {
  transform: translate(-50%, -50%) rotate(45deg) scaleY(1);
}

.btn-primary:hover::after {
  transform: translate(-50%, -50%) rotate(-45deg) scaleY(1);
}

.btn-primary:hover {
  color: var(--text-white-color);
  transform: translateY(-3px);
}

/* CLICK */
.btn-primary:active {
  transform: scale(0.96);
}

.nav-btn {
  padding: 10px 25px;
}
/* Hero */

.hero-section {
  padding: var(--section-padding) 0;
  background: var(--bg-color);
}

.hero-heading {
  font-size: var(--fs-h1);
  line-height: calc(var(--fs-h1) + 12px);
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 20px;
  letter-spacing: -1px;
  font-family: var(--font-primary);
}
.purple {
  color: var(--primary-color) !important;
  font-size: var(--fs-h1);
  font-weight: 700;
  transition: color 0.38s ease;
}

.paragraph {
  font-size: var(--fs-body);
  color: var(--text-light);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 30px;
}

/* SUBHEADING */
.subheading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--border-100px-radius);
  background: rgba(80, 0, 240, 0.08);
  border: 1px solid rgba(80, 0, 240, 0.1);
  margin-bottom: 20px;
}

.subheading p {
  margin: 0;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--primary-color);
}

.subheading .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
}

/* BUTTON WRAPPER */
.buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

/* ICON LIST */
.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}

.icon-list li {
  display: flex;
  gap: 10px;
  font-size: var(--fs-small);
  color: var(--secondary-color);
  font-weight: 500;
}
ul.icon-list li img {
  width: 20px;
  height: 20px;
}
.icon-list i {
  color: var(--primary-color);
  margin-top: 3px;
}

/* RIGHT SIDE */
.hero-visual {
  position: relative;
  max-width: 550px;
  margin-left: auto;
}

/* CARD */
.hero-card {
  background: linear-gradient(180deg, #f3efff, #fff);
  border-radius: var(--border-20px-radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 10px solid #fff;
}

.hero-card img {
  width: 100%;
  border-radius: 12px;
}

/* FLOATING BADGES */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;

  background: #fff;
  border-radius: 14px;
  padding: 10px 20px;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.badge-text {
  display: flex;
  flex-direction: column;
}
span.counter {
    font-weight: bold;
}
.badge-top {
  top: -15px;
  right: -25px;
}

.badge-bottom {
  bottom: -15px;
  left: -25px;
}

.badge-icon {
  width: 35px;
  height: 35px;
  border-radius: 40px;
  background: rgba(80, 0, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  padding: 25px;
}

.badge-text small {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
}

.badge-text strong {
  font-size: 14px;
  color: var(--secondary-color);
}

/* Services Section */
.services-marquee {
  position: relative;
  overflow: hidden;
  background: var(--secondary-color);
  padding: 50px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 22s linear infinite;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 60px;
  padding-right: 60px;
}

.marquee-item {
  position: relative;
  flex-shrink: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-white-color);
  opacity: 0.75;
  white-space: nowrap;
  line-height: 1;
}

.services-marquee:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Under Roof */

.features-section {
  padding: var(--section-padding) 0;
  background: var(--bg-color);
}

/* HEADER */
.features-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading {
  margin: 0 0 20px;
  font-size: var(--fs-h2);
  line-height: calc(var(--fs-h2 + 12px));
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: -1.5px;
}

.section-subtext {
  margin: 0 auto;
  max-width: 860px;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-light);
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

/* CARD */
.feature-card {
  position: relative;
  min-height: 220px;
  padding: 32px;
  border-radius: 28px;
  background: #fcfaff;
  border: 1px solid rgba(80, 0, 240, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* 4 CORNER FILL LAYERS */
.feature-card::before,
.feature-card::after,
.feature-card .feature-fill-one,
.feature-card .feature-fill-two {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  background: linear-gradient(
    135deg,
    #6a18ff 0%,
    var(--primary-color) 55%,
    #4b00df 100%
  );
  border-radius: 50%;
  z-index: -2;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* top-left */
.feature-card::before {
  top: -30%;
  left: -80%;
  transform: scale(0);
  transform-origin: top left;
}

/* top-right */
.feature-card::after {
  top: -30%;
  right: -80%;
  transform: scale(0);
  transform-origin: top right;
}

/* bottom-left */
.feature-card .feature-fill-one {
  bottom: -80%;
  left: -80%;
  transform: scale(0);
  transform-origin: bottom left;
}

/* bottom-right */
.feature-card .feature-fill-two {
  bottom: -80%;
  right: -80%;
  transform: scale(0);
  transform-origin: bottom right;
}

/* soft highlight layer */
.feature-card .feature-sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.2),
    transparent 40%
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.45s ease;
}

/* HOVER */
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(22, 18, 42, 0.16);
  border-color: rgba(80, 0, 240, 0.2);
}

.feature-card:hover::before,
.feature-card:hover::after,
.feature-card:hover .feature-fill-one,
.feature-card:hover .feature-fill-two {
  transform: scale(1);
}

.feature-card:hover .feature-sheen {
  opacity: 1;
}

/* ICON */
.feature-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(80, 0, 240, 0.1);
  /* border: 1px solid rgba(80, 0, 240, 0.08); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.35s ease;
  z-index: 2;
}

/* TEXT */
.feature-card h4 {
  position: relative;
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--secondary-color);
  transition: color 0.38s ease;
  z-index: 2;
}

.feature-card p {
  position: relative;
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text-light);
  transition: color 0.38s ease;
  z-index: 2;
}

/* CONTENT COLOR TRANSITION ON HOVER */
.feature-card:hover h4,
.feature-card:hover p {
  color: var(--text-white-color);
}
.feature-card:hover .feature-icon {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.feature-card:hover .feature-icon i {
  color: var(--text-white-color);
  transform: scale(1.05);
}

.services-section {
  padding: var(--section-padding) 0;
}
.service-feature-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(80, 0, 240, 0.1);
  /* border: 1px solid rgba(80, 0, 240, 0.08); */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.35s ease;
  z-index: 2;
}

.feature-card:hover .service-feature-icon {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.feature-card:hover .service-feature-icon i {
  color: var(--text-white-color);
  transform: scale(1.05);
}

/* Process Section */

.process-section {
  padding: var(--section-padding) 0;
}

.process-section .features-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.process-section .feature-card {
  position: relative;
}

h1.process-number {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: #dee3e5;
  position: absolute;
  right: 20px;
  top: 10px;
  transition: 0.5s all ease;
}

.process-section .service-feature-icon {
  background: var(--primary-color);
  border-radius: 16px;
  box-shadow: 0px 5px 15px 0px #5000f060;
}

.process-section .service-feature-icon p.process-icon {
  color: #fff;
  font-size: var(--fs-body);
  font-weight: 700;
}

.process-section .feature-card:hover .service-feature-icon .process-icon {
  color: var(--primary-color);
}

.process-section .feature-card:hover .service-feature-icon {
  box-shadow: 0px 5px 15px 0px #783af4;
}

.process-section .feature-card:hover h1.process-number {
  color: #7130f3 !important;
}

/* Why Choose Section */

.why-choose-section {
  position: relative;
  padding: var(--section-padding) 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(80, 0, 240, 0.22), transparent 42%),
    var(--secondary-color);
  color: var(--text-white-color);
  overflow: hidden;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(80, 0, 240, 0.18),
    transparent 35%
  );
  pointer-events: none;
}

.why-choose-section .container {
  position: relative;
  z-index: 2;
}

.why-choose-section .row {
  align-items: center;
}

.why-choose-section .left {
  padding-right: 60px;
}

.why-choose-section .section-heading {
  margin-bottom: 24px;
  color: var(--text-white-color);
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.why-choose-section .paragraph {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-body);
  line-height: 1.7;
}

/* Cards Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* Card */
.choose-card {
  position: relative;
  min-height: 130px;
  padding: 28px 30px;
  border-radius: var(--border-20px-radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}

.choose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-color), #6a18ff);
  opacity: 0;
  z-index: -2;
  transition: opacity 0.35s ease;
}

.choose-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  opacity: 0;
  transform: scale(0.6);
  z-index: -1;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.choose-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.choose-card:hover::before {
  opacity: 1;
}

.choose-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.choose-card h4 {
  margin: 0 0 12px;
  color: var(--text-white-color);
  font-size: var(--fs-h6);
  line-height: 1.25;
  font-weight: 700;
}

.choose-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--fs-body);
  line-height: 1.5;
  transition: color 0.35s ease;
}

.choose-card:hover p {
  color: rgba(255, 255, 255, 0.88);
}

/* Author Experience */

.author-experience-section {
  padding: var(--section-padding) 0;
  background: var(--bg-color);
}

/* IMPORTANT: prevent layout shift */
.author-image-wrapper {
  min-height: 400px; /* Apni image ke hisaab se set karo */
}

.author-image-wrapper img {
  width: 90%;
  height: auto;
  border-radius: 50px;
  display: block;
}

/* CONTENT */
.author-content .section-heading {
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.author-content .paragraph {
  margin-bottom: 24px;
  color: var(--text-light);
  line-height: 1.7;
}

/* LIST */
.author-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}

.author-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  color: var(--secondary-color);
  font-weight: 500;
}

.author-list li img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* BUTTON spacing */
.author-content .btn-primary {
  margin-top: 10px;
}

/* Books Gallery */

.author-range-section {
  padding: var(--section-padding) 0;
  background: var(--light-bg);
  overflow: hidden;
}

.author-range-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.author-range-header .section-heading {
  margin-bottom: 14px;
  color: var(--secondary-color);
}

.author-range-header .paragraph {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.6;
}

/* Tabs */
.author-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 70px;
}

.author-tab-btn {
  appearance: none;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  color: var(--secondary-color);
  padding: 15px 22px;
  border-radius: var(--border-100px-radius);
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(22, 18, 42, 0.04);
}

.author-tab-btn:hover,
.author-tab-btn.is-active {
  background: var(--primary-color);
  color: var(--text-white-color);
  border-color: var(--primary-color);
  box-shadow: 0 12px 26px rgba(80, 0, 240, 0.22);
  transform: translateY(-2px);
}

/* Panels */
.author-books-wrapper {
  position: relative;
  min-height: 270px;
}

.author-books-panel {
  display: none;
  animation: booksFadeUp 0.45s ease forwards;
}

.author-books-panel.is-active {
  display: block;
}

.author-books-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 70px;
}

.author-book-card {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.author-book-card img {
  width: 100%;
  max-width: 150px;
  height: 230px;
  object-fit: cover;
  display: block;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  filter: drop-shadow(-10px 9px 3px #00000050);
  cursor: pointer;
}

.author-book-card:hover img {
  transform: translateY(-10px) scale(1.03);
  /* box-shadow: 0 25px 35px rgba(22, 18, 42, 0.22); */
}

/* Reviews */

.reviews-section {
  padding: var(--section-padding) 0;
  background: var(--bg-color);
  overflow: hidden;
}

.reviews-header {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.reviews-header .section-heading {
  margin-bottom: 14px;
  color: var(--secondary-color);
}

.reviews-header .paragraph {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-light);
}

/* Slider */
.reviews-slider {
  overflow: visible;
  padding: 18px 0 10px;
  overflow-x: clip;
}

.review-card {
  position: relative;
  min-height: 295px;
  padding: 55px 42px 38px;
  border-radius: 30px;
  background: #fbf9ff;
  border: 1px solid rgba(80, 0, 240, 0.08);
  box-shadow: 0 18px 40px rgba(22, 18, 42, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(22, 18, 42, 0.1);
}

.review-star {
  position: absolute;
  top: -21px;
  left: 48px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--text-white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-star i {
  font-size: 17px;
}

.review-text {
  margin: 0 0 36px;
  color: var(--secondary-color);
  font-size: 18px;
  line-height: 30px;
  font-style: italic;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(80, 0, 240, 0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.review-author h4 {
  margin: 0;
  color: var(--secondary-color);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

/* Swiper spacing */
.reviews-slider .swiper-slide {
  height: auto;
  display: flex;
}

/* Packages Section */

.packages-section {
  padding: var(--section-padding) 0;
  background: #fcfaff;
}

.packages-header {
  max-width: 850px;
  margin: 0 auto 70px;
  text-align: center;
}

.packages-header .section-heading {
  margin-bottom: 18px;
}

.packages-header .paragraph {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text-light);

}

/* Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* Card */
.package-card {
  position: relative;
  background: var(--bg-color);
  border: 2px solid rgba(80, 0, 240, 0.08);
  border-radius: 38px;
  padding: 42px 42px 38px;
  min-height: 560px;
  display: flex;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.package-card:hover {
  border-color: rgba(80, 0, 240, 0.35);
  box-shadow: 0 22px 55px rgba(22, 18, 42, 0.08);
}

.package-card.is-popular {
  border-color: var(--primary-color);
  box-shadow: 0 25px 65px rgba(80, 0, 240, 0.1);
  margin-top: -20px;
  margin-bottom: -20px;

  padding-top: 60px;
  padding-bottom: 60px;
}

/* Badge */
.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--text-white-color);
  border-radius: var(--border-100px-radius);
  padding: 8px 34px;
  font-size: 15px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Content */
.package-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.package-card h3 {
  margin: 0 0 12px;
  color: var(--secondary-color);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 800;
}

.package-subtitle {
  min-height: 54px;
  margin: 0 0 18px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.45;
}

.package-card h4 {
  margin: 0 0 28px;
  color: var(--primary-color);
  font-size: 42px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1px;
}

/* Features scroll */
.package-features-scroll {
  max-height: 190px;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 34px;
}

/* Thin package scrollbar */
.package-features-scroll {
  scrollbar-width: thin;
  scrollbar-color: rgba(80, 0, 240, 0.35) transparent;
}

.package-features-scroll::-webkit-scrollbar {
  width: 4px;
}

.package-features-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.package-features-scroll::-webkit-scrollbar-thumb {
  background: rgba(80, 0, 240, 0.28);
  border-radius: 100px;
}

.package-features-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(80, 0, 240, 0.45);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.4;
}

.package-features li i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Button bottom alignment */
.package-content > a {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* Popular button spacing */
.package-card.is-popular .btn-primary {
  box-shadow: 0 14px 35px rgba(80, 0, 240, 0.3);
}

/* FAQ Section */

.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-color);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header .section-heading {
    color: var(--secondary-color);
    margin: 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 34px;
    padding: 50px 48px;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding-inline: 30px;
    margin-bottom: 20px;
}
.faq-item.is-open {
    border-color: #cbb3fb;
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    text-align: left;
    color: var(--secondary-color);
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 700;
}
.faq-question span {
    font-size: 18px;
    font-weight: 600;
}
.faq-icon {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--text-white-color);
    border-radius: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.is-open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Collapsible answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    display: block;
    transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 60px 24px 0;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    font-size: var(--fs-body);
    line-height: 1.7;
}

/* Hover */
.faq-question:hover {
    color: var(--primary-color);
}

/* Footer */

.site-footer {
    position: relative;
    background: var(--bg-color);
}

/* CTA */
.footer-cta {
    position: relative;
    z-index: 2;
    /* max-width: 900px; */
    margin: 0 auto -200px;
    padding: 100px 40px;
    border-radius: 36px;
    text-align: center;
    color: var(--text-white-color);
    background: var(--primary-color);
    box-shadow: 0 10px 15px rgba(80, 0, 240, 0.30);
    overflow: hidden;
}

.footer-cta .btn-primary {
    background: #6a2bff;
}

.footer-cta h2,
.footer-cta p,
.footer-cta-buttons {
    position: relative;
    z-index: 2;
}

.footer-cta h2 {
    margin: 0 0 22px;
    font-size: var(--fs-h2);
    line-height: 1.1;
    font-weight: 800;
    /* letter-spacing: -1px; */
}

.footer-cta p {
    max-width: 650px;
    margin: 0 auto 34px;
    font-size: var(--fs-body);
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
}

.footer-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: var(--border-100px-radius);
    background: var(--text-white-color);
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.btn-light:hover {
    background: var(--secondary-color);
    color: var(--text-white-color);
}

/* Footer Main */
.footer-main {
    background: var(--secondary-color);
    padding: 300px 0 34px;
    color: var(--text-white-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 1.25fr;
    gap: 70px;
    padding-bottom: 60px;
}

.footer-logo img {
    max-width: 130px;
    height: auto;
    display: block;
    margin-bottom: 28px;
}

.footer-brand p {
    max-width: 240px;
    margin: 0 0 26px;
    font-size: var(--fs-body);
    line-height: 1.65;
    color: rgba(255,255,255,0.62);
}

.footer-brand label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white-color);
}

.footer-select {
    width: 190px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.45);
    background: transparent;
    color: rgba(255,255,255,0.85);
    outline: none;
    font-size: 13px;
}

.footer-select option {
    color: var(--secondary-color);
}

.footer-column h4,
.footer-contact h4 {
    margin: 0 0 26px;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-white-color);
}

.footer-column ul,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul {
    display: grid;
    gap: 16px;
}

.footer-column a,
.contact-list a,
.contact-list span {
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    font-size: var(--fs-body);
    line-height: 1.5;
    transition: var(--transition);
}
.footer-cta .btn-primary.white {
    background: #fff;
    padding: 15px 30px
}
.footer-cta .btn-primary.white:hover span{
    color: #fff
}
.footer-cta .btn-primary.white span {
    color: var(--primary-color);
    transition: 0.3s all ease-in-out
}
.footer-column a:hover,
.contact-list a:hover {
    color: var(--text-white-color);
}

.contact-list {
    display: grid;
    gap: 18px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-list i {
    width: 16px;
    margin-top: 3px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--text-white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.42);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 34px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.42);
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--text-white-color);
}

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








/* About Page */
.inner-banner {
    position: relative;
    padding: 70px 0;
    background:
        url('../images/inner-banner.webp');
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;

}

.inner-banner-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.inner-banner-tag {
    display: inline-flex;
    padding: 8px 25px;
    margin-bottom: 18px;
    border-radius: var(--border-100px-radius);
    background: #361d7c;
    color: #9674f8;
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid #4419ac;
}
.inner-banner .section-heading{
  color: #fff;
  font-size: var(--fs-h1);
}

.banner-purple{
  color: var(--primary-color);
  font-size: var(--fs-h1);
  font-weight: 700;
}
.inner-banner-title span {
    color: var(--primary-color);
}

.inner-banner-text {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.62);
    font-size: 18px;
    line-height: 1.65;
}



/* About first Section */

.story-section {
    padding: var(--section-padding) 0;
    background: var(--bg-color);
}

/* Content */
.story-content .section-heading {
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.story-content .section-heading span {
    color: var(--primary-color);
}

.story-content .paragraph {
    max-width: 540px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Image */
.story-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-20px-radius);
    overflow: hidden;
    background: rgba(80, 0, 240, 0.08);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stats */
.stat-card {
    padding: 32px 20px;
    text-align: center;
    background: #fbf9ff;
    border: 1px solid rgba(80, 0, 240, 0.08);
    border-radius: var(--border-20px-radius);
    transition: var(--transition);
}

.stat-card h3 {
    margin: 0 0 8px;
    color: var(--primary-color);
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.stat-card p {
    margin: 0;
    color: var(--text-light);
    font-size: var(--fs-small);
}


.stat-card {
  position: relative;
  border-radius: var(--border-20px-radius);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  cursor: pointer;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-color), #6a18ff);
  opacity: 0;
  z-index: -2;
  transition: opacity 0.35s ease;
}

.stat-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  opacity: 0;
  transform: scale(0.6);
  z-index: -1;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.22);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.stat-card h3, .stat-card p{
  position: relative;
  transition: all 0.35s ease 
}
.stat-card:hover h3, .stat-card:hover p{
  color: #fff
}



/* About second section */

.values-section {
    padding: var(--section-padding) 0;
    background: var(--bg-color);
}

.section-heading .purple {
    font-size: var(--fs-h2);
}
.values-section .feature-card {
    text-align: center;
}
.values-section .section-subtext {
    max-width: 550px;
}


/* About Third Section */

.team-section {
    padding: var(--section-padding) 0;
    background: var(--bg-color);
}

.team-header {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.team-header .section-heading {
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.team-header .section-heading span {
    color: var(--primary-color);
}

.team-header .paragraph {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-light);
    line-height: 1.6;
}

.team-card {
    position: relative;
    height: 100%;
    padding: 34px 26px 30px;
    text-align: center;
    background: #fbf9ff;
    border: 1px solid rgba(80, 0, 240, 0.10);
    border-radius: var(--border-20px-radius);
    overflow: hidden;
    isolation: isolate;
    cursor: pointer;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* GRADIENT BACKGROUND */
.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), #6a18ff);
    opacity: 0;
    z-index: -2;
    transition: opacity 0.35s ease;
}

/* GLOW CIRCLE */
.team-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -80px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    opacity: 0;
    transform: scale(0.6);
    z-index: -1;

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

/* HOVER */
.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* TEXT TRANSITION */
.team-card h4,
.team-card .team-role,
.team-card .team-bio {
    position: relative;
    transition: all 0.35s ease;
}

.team-card:hover h4,
.team-card:hover .team-role,
.team-card:hover .team-bio {
    color: #fff;
}

.team-avatar {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #7b35ff);
    color: var(--text-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    transition: all 0.4s ease;
}

/* INNER GLOW LAYER */
.team-avatar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.4s ease;
    z-index: 0;
}

/* OUTER GLOW RING */
.team-avatar::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #6a18ff);
    opacity: 0;
    filter: blur(10px);
    z-index: -1;
    transition: opacity 0.4s ease;
}

/* TEXT */
.team-avatar span {
    position: relative;
    z-index: 1;
    font-size: 28px;
    font-weight: 800;
    transition: all 0.35s ease;
}
.team-card:hover .team-avatar::before {
    opacity: 1;
    transform: scale(1);
}

.team-card:hover .team-avatar {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.team-card:hover .team-avatar span {
    color: var(--primary-color);
    transform: scale(1.05);
}
.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Agar future mein image use karo to span hata dena ya display none kar dena */

.team-card h4 {
    margin: 0 0 4px;
    color: var(--secondary-color);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.team-role {
    margin: 0 0 16px;
    color: var(--primary-color);
    font-size: var(--fs-small);
    font-weight: 700;
    line-height: 1.3;
}

.team-bio {
    margin: 0 auto;
    max-width: 230px;
    color: var(--text-light);
    font-size: var(--fs-small);
    line-height: 1.65;
}





/* Services Page */

.inner-services-section {
    padding: var(--section-padding) 0;
    background: var(--bg-color);
}

.inner-services-section .features-header {
    max-width: 760px;
    margin: 0 auto 45px;
}

.inner-services-section .section-heading {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.inner-services-section .section-heading span {
    color: var(--primary-color);
}

/* Same class rakhi hai taake existing hover effect rahe */
.inner-services-section .feature-card {
    height: 100%;
    padding: 32px 28px;
}

/* Tag */
.service-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin-bottom: 18px;
    border-radius: var(--border-100px-radius);
    background: rgba(80, 0, 240, 0.08);
    color: var(--primary-color);
    font-size: var(--fs-small);
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Icon */
.service-feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 24px;
    border-radius: 12px;
    background: rgba(80, 0, 240, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.service-feature-icon img {
    width: 23px;
    height: 23px;
    object-fit: contain;
    display: block;
}

/* Text */
.inner-services-section .feature-card h4 {
    margin: 0 0 14px;
    color: var(--secondary-color);
    font-size: var(--fs-h5);
    line-height: 1.3;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.inner-services-section .feature-card p {
    margin: 0 0 22px;
    color: var(--text-light);
    font-size: var(--fs-body);
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

/* List */
.feature-list {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.feature-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-light);
    font-size: var(--fs-body);
    line-height: 1.45;
    transition: var(--transition);
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 800;
    transition: var(--transition);
}

/* Agar feature-card hover pe purple hota hai to list bhi white ho */
.inner-services-section .feature-card:hover h4,
.inner-services-section .feature-card:hover p,
.inner-services-section .feature-card:hover .feature-list li {
    color: var(--text-white-color);
}

.inner-services-section .feature-card:hover .feature-list li::before {
    color: var(--text-white-color);
}

.inner-services-section .feature-card:hover .service-tag {
    background: rgba(255, 255, 255, 0.18);
    color: var(--text-white-color);
}

.inner-services-section .feature-card:hover .service-feature-icon {
    background: var(--bg-color);
}


/* Service second section */

.process-section {
    padding: var(--section-padding) 0;
    background: #fafafa;
    overflow: hidden;
}

.process-header {
    margin-bottom: 45px;
}

.process-heading {
    font-size: 44px;
}

.process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 55px 1fr 55px 1fr 55px 1fr 55px 1fr;
    align-items: start;
    gap: 0;
}



.process-step {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 0 10px;
    cursor: pointer;
}

.process-wrapper .process-number {
    width: 44px;
    height: 44px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #6a18ff);
    color: var(--text-white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    position: relative;
    box-shadow: 0 14px 35px rgba(80, 0, 240, 0.3);
    transition: var(--transition);
}

.process-wrapper .process-number::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 1px solid rgba(80, 0, 240, 0.22);
    animation: processPulseRing 2.4s infinite ease-in-out;
}

.process-wrapper .process-number::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    background: rgba(80, 0, 240, 0.08);
    z-index: -1;
    transform: scale(0);
    transition: var(--transition);
}

.process-step h4 {
    font-size: var(--fs-h6);
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0 0 8px;
    transition: var(--transition);
}

.process-step p {
    font-size: var(--fs-small);
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 auto;
}

.process-arrow {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-color);
    font-size: 26px;
    line-height: 44px;
    animation: processArrowMove 1.8s infinite ease-in-out;
}

.process-step:hover .process-number {
    transform: translateY(-7px) scale(1.08);
    box-shadow: 0 18px 45px rgba(80, 0, 240, 0.45);
}

.process-step:hover .process-number::after {
    transform: scale(1);
}

.process-step:hover h4 {
    color: var(--primary-color);
}

@keyframes processPulseRing {
    0% {
        opacity: 0.8;
        transform: scale(0.9);
    }

    100% {
        opacity: 0;
        transform: scale(1.45);
    }
}

@keyframes processArrowMove {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateX(8px);
        opacity: 1;
    }
}

/* FAQ Page */
.faq-help-section .faq-wrapper {
    max-width: 100%;
    padding-inline: 0;
    padding-top: 10px;
}

h5.faq-category-title {
    font-size: var(--fs-h6);
    font-weight: 600;
}
h5.faq-category-title {
    font-size: var(--fs-h6);
    font-weight: 600;
}

.faq-help-card {
    padding: 30px;
    background: #f5f0ff;
    margin-top: 30px;
    border-radius: 10px;
}

.faq-help-card p, .faq-help-card h5,.faq-help-card-icon {
    margin-bottom: 20px;
}


a.btn-primary.faq-help-card-btn {
    width: 100%;
    text-align: center
}

/* Pricing Page */
.package-price-wrap {
    margin: 14px 0 22px;
}

.package-price {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.price-main {
    font-size: 44px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
}

.price-suffix {
    font-size: var(--fs-body);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.price-note {
    font-size: var(--fs-body);
    color: var(--text-light);
    margin-top: 6px;
}
.pricing .package-card h4 {
    margin: 0;
    text-align: center
}
.pricing .price-note, .pricing .package-subtitle, .pricing .package-card h3 {
    text-align: center !important;
    margin: 5px;
}
.pricing .package-price{
    justify-content: center
}
.feature-card:hover .purple {
    color: #fff !important;
}



/* Contact Page */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-color);
}

.contact-info-wrap {
    max-width: 360px;
}

.contact-info-card {
    background: var(--secondary-color);
    border-radius: var(--border-20px-radius);
    padding: 34px;
    color: var(--text-white-color);
}

.contact-info-card h3,
.contact-form-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-info-card > p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.68);
    margin-bottom: 28px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: rgba(80, 0, 240, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white-color);
    font-size: 14px;
}

.contact-info-item span {
    display: block;
    font-size: var(--fs-small);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 4px;
}
.contact-info-item a,
.contact-info-item p {
    font-size: 14px;
    color: var(--text-white-color);
    margin: 0;
    text-decoration: none;
}

.contact-socials {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.contact-socials a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(80, 0, 240, 0.65);
    color: var(--text-white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.contact-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.contact-response-card {
    margin-top: 22px;
    background: #f2eaff;
    border-radius: 14px;
    padding: 24px;
}

.response-icon {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-response-card h4 {
    font-size: Var(--fs-h6);
    font-weight: 800;
    color: var(
    --secondary-color);
    margin-bottom: 6px;
}

.contact-response-card p {
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.contact-form-card {
    background: #fff;
    border: 1px solid rgba(22, 18, 42, 0.1);
    border-radius: var(--border-20px-radius);
    padding: 42px;
}

.contact-form-card > p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(22, 18, 42, 0.14);
    border-radius: 10px;
    padding: 0 16px;
    font-size: 14px;
    color: var(--secondary-color);
    background: #fff;
    outline: none;
    transition: var(--transition);
}

.form-group textarea {
    height: 120px;
    padding-top: 14px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(80, 0, 240, 0.08);
}

.contact-submit-btn {
    width: 100%;
    min-height: 52px;
    border: none;
    font-weight: 800;
    cursor: pointer;
}

.contact-form-note {
    margin: 16px 0 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}


.map-section {
    padding: var(--section-padding) 0;
    background: var(--bg-color);
}

.map-header {
    margin-bottom: 28px;
}

.map-wrapper {
    border-radius: var(--border-20px-radius);
    overflow: hidden;
    background: #eae6f5;
    height: 520px;
    position: relative;
}

.map-embed {
    width: 100%;
    height: 100%;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ===== Blogs Page ===== */
.blog-section {
    padding: var(--section-padding) 0;
}

/* --- Tabs --- */
.nav-tabs-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    gap: 8px;
    scrollbar-width: none;
}

.nav-tabs-list::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    font-size: var(--fs-body);
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 30px;
    border: 2px solid transparent;
    color: #6b7280;
    white-space: nowrap;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #6b7280;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* --- Spinner --- */
.blog-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 60px 0;
}

.spinner {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(80, 0, 240, 0.15);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.no-posts {
    text-align: center;
    color: var(--text-light);
    padding: 40px 0;
    width: 100%;
}

/* --- Featured Post --- */
.featured-post-link {
    text-decoration: none;
    display: block;
    margin-bottom: 40px;
}

.featured-post {
    display: flex;
    gap: 32px;
    background-color: var(--secondary-color);
    padding: 60px 30px;
    border-radius: var(--border-20px-radius);
    color: #fff;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post-link:hover .featured-post {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.featured-post-image{
  width: 50%;
}
.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
}

.featured-post-content {
    flex: 1;
    width: 50%;
}

.featured-label {
    font-size: var(--fs-body);
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    display: block;
    margin-bottom: 12px;
}

.featured-post-content h2 {
    font-size: var(--fs-h2);
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
    line-height: 1.3;
}

.featured-post-content p {
    font-size: var(--fs-body);
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.8);
}


/* --- Blog Card --- */
.blog-card-link {
    text-decoration: none;
    display: block;
    margin-bottom: 30px;
}

.blog-card {
    border: 1px solid rgba(80, 0, 240, 0.1);
    border-radius: var(--border-20px-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 100%;
}

.blog-card-link:hover .blog-card {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(80, 0, 240, 0.13);
}

.blog-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.blog-cat-label {
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: var(--fs-h6);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.45;
}

.blog-excerpt {
    font-size: var(--fs-small);
    color: var(--text-light);
    line-height: 1.45;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* --- Author Row --- */
.blog-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 14px;
    margin-top: auto;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
}

.author-date {
    font-size: 12px;
    color: var(--text-light);
}
/* ===== Pagination ===== */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 10px;
    border: 2px solid rgba(80, 0, 240, 0.15);
    background: #fff;
    color: var(--secondary-color);
    font-size: var(--fs-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-btn:hover:not(.disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.page-btn.disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.prev-btn,
.next-btn {
    padding: 0 18px;
}

.page-dots {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    padding: 0 4px;
    line-height: 40px;
}




.main-nav {
    position: relative;
    background: #fff;
    z-index: 999;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

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

.desktop-menu li a {
    text-decoration: none;
}

/* Mobile default hidden */
.hamburger,
.mobile-menu {
    display: none;
}

/* 1024px se neeche */
@media (max-width: 1024px) {
    .desktop-menu {
        display: none !important;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        width: 30px;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: #000;
        border-radius: 5px;
    }

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        list-style: none;
        margin: 0;
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        z-index: 9999;
    }

    .mobile-menu.show {
        display: flex;
        box-shadow: 0px 0px 10px 0px #0000005c;
        padding: 40px 30px;
        align-items: flex-start;
    }

    .mobile-menu li a {
        text-decoration: none;
        display: block;
    }

    .mobile-menu .nav-btn {
        width: fit-content;
        margin-top: 5px;
    }
}

.newsletter-section {
    padding: 40px 0 var(--section-padding);
    background: var(--bg-color);
}

.newsletter-box {
    background: #f1eaff;
    border-radius: var(--border-20px-radius);
    padding: 70px 20px;
    text-align: center;
}

.newsletter-box .section-heading {
    margin-bottom: 16px;
}

.newsletter-box .paragraph {
    max-width: 560px;
    margin: 0 auto 30px;
    font-size: var(--fs-body);
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.newsletter-form input {
    width: 320px;
    height: 48px;
    border: 1px solid rgba(22, 18, 42, 0.12);
    border-radius: 50px;
    padding: 0 18px;
    font-size: var(--fs-body);
    color: var(--secondary-color);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(80, 0, 240, 0.08);
}

.newsletter-form .btn-primary {
    height: 48px;
    border: 0;
    padding: 0 30px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 575px) {
    .newsletter-box {
        padding: 45px 18px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn-primary {
        width: 100%;
    }
}

/* Blog Detail */

.blog-detail-section {
    padding: var(--section-padding) 0;
    background: var(--bg-color);
}

.blog-detail-header {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.blog-detail-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 0, 240, 0.1);
    color: var(--primary-color);
    border-radius: var(--border-100px-radius);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.blog-detail-header h1 {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.blog-detail-header p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 760px;
    margin: 0 auto 18px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-detail-image {
    max-width: 1050px;
    margin: 0 auto 50px;
    border-radius: var(--border-20px-radius);
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.blog-detail-content {
    max-width: 820px;
    margin: 0 auto;
    color: var(--secondary-color);
}

.blog-detail-content p {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 22px;
}

.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: var(--secondary-color);
    font-weight: 850;
    margin: 36px 0 16px;
}

.blog-detail-content h2 {
    font-size: 34px;
}

.blog-detail-content h3 {
    font-size: 26px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.blog-detail-content li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-20px-radius);
    margin: 24px 0;
}

.blog-detail-content a {
    color: var(--primary-color);
    font-weight: 700;
}

.blog-detail-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 18px 22px;
    background: #f7f2ff;
    border-radius: 14px;
    margin: 28px 0;
}

@media (max-width: 991px) {
    .blog-detail-header h1 {
        font-size: 40px;
    }

    .blog-detail-image img {
        height: 360px;
    }
}

@media (max-width: 575px) {
    .blog-detail-header h1 {
        font-size: 32px;
    }

    .blog-detail-header p {
        font-size: 16px;
    }

    .blog-detail-image img {
        height: 240px;
    }

    .blog-detail-content p,
    .blog-detail-content li {
        font-size: 16px;
    }
}