/* ==========================
   Hero
========================== */

.hero {
  height: 90vh;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 0 80px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 30px;
}

.hero-content button {
  padding: 15px 35px;
  border: none;
  cursor: pointer;
  background: #0b2d5c;
  color: white;
}
/* ==========================
   Admission Ticker
========================== */

.ticker-wrapper {
  position: relative;
  width: 100%;
  height: 70px; /* taller wrapper to allow room for the tilt */
  overflow: hidden;
}

/* Orange Background — bigger than purple, fills whole wrapper */
.ticker-orange {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f89b12;
}

/* Purple Strip — rotated across the orange bar, low-left to high-right */
.admission-ticker {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%; /* wider than viewport so rotated ends don't show gaps */
  height: 56px; /* smaller than orange bar */
  background: #2d2d87;
  transform: translateY(-50%) rotate(-1deg);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  z-index: 2;
}

/* Marquee content — now tilts WITH the purple band, no counter-rotation */
.ticker-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: tickerMove 25s linear infinite;
  /* no transform here anymore — inherits the parent's rotate() naturally */
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  padding: 0 40px;
  white-space: nowrap;
  font-weight: 600;
}

.ticker-item svg {
  flex-shrink: 0;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== Mobile ===== */
@media (max-width: 767px) {
  .ticker-wrapper {
    height: 70px;
  }
  .admission-ticker {
    height: 38px;
  }
  .ticker-item {
    padding: 0 25px;
  }
  .ticker-orange {
    height: 70px;
  }
}
/* ==========================
   ABOUT
========================== */

.about-section {
  padding: 80px 0;
}

.about-heading {
  max-width: 900px;
  margin-bottom: 60px;
}

.about-tag {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #2d2d87;
  border-radius: 40px;
  color: #2d2d87;
  font-weight: 600;
  margin-bottom: 25px;
}

.about-heading h2 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-heading h2 span {
  color: #f7931e;
  font-style: italic;
  font-family: serif;
}

.about-heading p {
  line-height: 1.8;
}
.about-card {
  position: relative;
  height: 340px;
  overflow: hidden;
  cursor: pointer;
}
.card-front {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #fff;
  transition: 0.4s;
}
.blue-card {
  background: #2d2d87;
}

.orange-card {
  background: #f7931e;
}
.card-back {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.4s;
}

.card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-card:hover .card-front {
  opacity: 0;
}

.about-card:hover .card-back {
  opacity: 1;
}
.rotate-left {
  transform: rotate(-3deg);
}

.rotate-center {
  transform: rotate(2deg);
}

.rotate-right {
  transform: rotate(-3deg);
}
.about-card-shadow {
  position: relative;
  height: 350px;
  background: #ebe8ef;
}

@media (max-width: 768px) {
  .about-card,
  .about-card-shadow {
    height: 260px;
  }
}
/* Card Icon */

.card-front img {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
}

/* Underline */

.card-line {
  width: 160px;
  height: 2px;
  margin: 0px 0 25px;
  background: #f7931e;
}

/* Number */

.card-front h3 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f7931e;
}

/* Text */

.card-front p {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}
.orange-card .card-line {
  background: #fff;
}

.orange-card h3 {
  color: #fff;
}

.orange-card p {
  color: #fff;
}
/*=========================
TOPPERS
=========================*/
.toppers-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
}
.content-wrapper {
  position: relative;
  z-index: 5;
  background: #fff;
}
.toppers-section {
  position: sticky;
  top: 0;
  height: 100vh;

  background: #2d2d87;
  z-index: 1;

  display: flex;
  align-items: center;
}

.topper-tag {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 40px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 30px;
}

.topper-heading {
  color: #fff;

  font-weight: 700;
  margin-bottom: 70px;
}

.topper-heading span {
  color: #f7931e;
  font-family: serif;
  font-style: italic;
}

.topper-card {
  background: linear-gradient(#5755b4, #2d2d87);
  border-radius: 10px;
  height: 300px;
  position: relative;
  left: 120px;
  overflow: visible;
  width: 200px;
}

.topper-content {
  position: absolute;
  top: 40px;
  right: 25px;
  text-align: right;
  z-index: 5;
}

.topper-content h4 {
  color: #fff;

  line-height: 1.4;
}

.topper-content h3 {
  color: #fff;

  margin-top: 15px;
}

.topper-content h2 {
  color: #f7931e;

  font-weight: 700;
}

.topper-img {
  position: absolute;
  left: -100px;
  bottom: 0;
  width: 78%;
  height: auto;
  z-index: 3;
}
.topper-image {
  position: absolute;
  bottom: 0;
  left: -15px;
  width: 65%;
  height: 95%;
  z-index: 3;
}

.topper-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: #f7931e;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.topper-navigation {
  align-items: center;
  margin-bottom: 40px;
}
.topper-slider {
  position: relative;
}

.topper-prev,
.topper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;

  width: 65px;
  height: 65px;
  border: none;
  border-radius: 50%;

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

  cursor: pointer;
}

.topper-prev {
  /* left:-35px; */
  background: #fff;
  color: #111;
}

.topper-next {
  right: -10px;
  background: #f7931e;
  color: #fff;
}

@media (max-width: 991px) {
  .topper-card {
    height: 380px;
  }
}

@media (max-width: 767px) {
  .topper-card {
    height: 350px;
  }

  .topper-content {
    top: 25px;
    right: 20px;
  }

  .topper-img {
    width: 70%;
  }
}
/*=========================
OUR SCHOOLS
=========================*/

.schools-section {
  position: relative;
  min-height: 100vh;
  background: #fff;
  z-index: 5;
  margin-top: -120px;
}
.schools-tag {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #2d2d87;
  border-radius: 40px;
  color: #2d2d87;
  font-weight: 600;
  margin-bottom: 25px;
}

.schools-heading {
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.2;
}

.schools-heading span {
  color: #f7931e;
  font-family: serif;
  font-style: italic;
}

.school-card {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.school-image {
  object-fit: cover;
  transition: 0.5s;
}

.school-card:hover .school-image {
  transform: scale(1.08);
}

.school-overlay {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.15),
    transparent
  );
}

.school-overlay h3 {
  color: #fff;
  font-weight: 600;
  max-width: 75%;
}

.school-overlay button {
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: #f7931e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.school-overlay button:hover {
  background: #2d2d87;
}
.schools-slider {
  position: relative;
}

.schools-prev,
.schools-next {
  position: absolute;
  bottom: -90px;
  z-index: 20;

  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.schools-prev {
  right: 80px;
  background: #fff;
  color: #111;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.schools-next {
  right: 0;
  background: #f7931e;
  color: #fff;
}

.schools-prev:hover,
.schools-next:hover {
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .school-card {
    height: 420px;
  }
}

@media (max-width: 767px) {
  .school-card {
    height: 320px;
  }

  .school-overlay {
    padding: 20px;
  }

  .school-overlay h3 {
    max-width: 70%;
  }

  .school-overlay button {
    width: 55px;
    height: 55px;
  }
}
/*=========================
ACADEMICS
=========================*/
.academics-section {
  position: relative;
  overflow: hidden;
  background: #f3f3f3;
}

.academics-section:before {
  content: "";
  opacity: 1;
  /* opacity: .35; */
  z-index: 0;
  background: url(/images/academics/pattern.svg) center / 300px no-repeat;
  /* border: 2px solid red; */
  width: 900px;
  height: 864px;
  position: absolute;
  top: -195px;
  right: 184px;
}

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

.academics-tag {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #2d2d87;
  border-radius: 40px;
  color: #2d2d87;
  font-weight: 600;
  margin-bottom: 25px;
}

.academics-heading {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.academics-heading span {
  color: #f7931e;
  font-family: serif;
  font-style: italic;
}

.academics-text {
  line-height: 1.8;
  color: #666;
}

/*=========================
ACADEMIC SLIDER
=========================*/

.academic-slide {
  padding: 30px 0 70px;
}

.academics-section .swiper-slide {
  transition: 0.4s ease;
  opacity: 1 !important;
  transform: all 0.4s ease;
}

.academics-section .swiper-slide-active {
  opacity: 1;
  transform: scale(1.12);
  z-index: 10;
}

.academics-section .swiper-slide-prev,
.academics-section .swiper-slide-next {
  opacity: 0.8;
  transform: scale(0.88);
}
.academics-section .swiper {
  overflow: hidden;
}
/*=========================
ACADEMIC CARD
=========================*/

.academic-card {
  position: relative;
  height: 500px;
}

.academic-image {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 250px;
  height: auto;
}

.academic-level {
  position: absolute;
  left: -45px;
  top: 180px;
  transform: rotate(-90deg);
  color: rgb(247, 147, 30);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 2px;
}

/*=========================
BOTTOM CARD
=========================*/

.academic-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #273782;
  color: #fff;
  border-radius: 12px;
  padding: 25px;
  z-index: 5;
}

.academic-content h3 {
  margin-bottom: 8px;
  font-weight: 700;
}

.academic-content p {
  margin: 0;
  color: #ddd;
  line-height: 1.6;
}

.academic-btn {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #f7931e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.academic-btn:hover {
  background: #fff;
  color: #273782;
}

/*=========================
PAGINATION
=========================*/

.swiper-pagination {
  position: relative;
  margin-top: 25px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d0d0d0;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #f7931e;
}

/*=========================
TABLET
=========================*/

@media (max-width: 991px) {
  .academics-text {
    margin-top: 20px;
  }

  .academic-slide {
    width: 320px !important;
  }

  .academic-card {
    height: 500px;
  }

  .academic-image {
    width: 220px;
  }
}

/*=========================
MOBILE
=========================*/

@media (max-width: 767px) {
  .academics-heading {
    text-align: center;
  }

  .academics-tag {
    display: table;
    margin: 0 auto 25px;
  }

  .academics-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .academic-slide {
    width: 280px !important;
  }

  .academic-card {
    height: 440px;
  }

  .academic-image {
    width: 180px;
    bottom: 80px;
  }

  .academic-level {
    left: -35px;
  }

  .academic-content {
    padding: 18px;
  }

  .academic-btn {
    width: 45px;
    height: 45px;
  }
}
/*=========================
TESTIMONIAL
=========================*/

.testimonial-section {
  background: #f5f5f5;
}

.testimonial-wrapper {
  border-radius: 30px;
  overflow: hidden;
}

.testimonial-left {
  position: relative;
  background: #f7931e;
  color: #fff;
  padding: 90px 80px;
  height: 100%;
  overflow: hidden;
}

.testimonial-left h2 {
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-left h2 span {
  font-family: serif;
  font-style: italic;
  font-weight: 400;
}

.testimonial-left p {
  line-height: 1.8;
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.testimonial-line {
  position: absolute;
  right: -90px;
  top: 80px;
  width: 360px;
  height: auto;
  z-index: 1;
}

.testimonial-right {
  position: relative;
  background: #2d2d87;
  min-height: 323px;
  overflow: hidden;
  border-radius: 20px;
  left: -20px;
}

.testimonial-image {
  object-fit: contain;
  object-position: bottom center;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #2d2d87;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.play-btn:hover {
  background: #f7931e;
  color: #fff;
}

@media (max-width: 991px) {
  .testimonial-left {
    padding: 60px 40px;
  }

  .testimonial-line {
    width: 260px;
    right: -50px;
  }
}

@media (max-width: 767px) {
  .testimonial-left {
    padding: 40px 25px;
    text-align: center;
  }

  .testimonial-left p {
    max-width: 100%;
  }

  .testimonial-right {
    border-radius: revert-layer;
    min-height: 195px;
    left: 0;
  }
  .play-btn {
    width: 75px;
    height: 75px;
  }

  .testimonial-line {
    display: none;
  }
}

.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 15px;
  border-radius: 10px;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #2d2d87;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.play-btn:hover {
  background: #f7931e;
  color: #fff;
}
/*=========================
EXPERIENCE
=========================*/

.experience-section {
  background: #f5f5f5;
}

.experience-banner {
  min-height: 560px;

  padding: 0 50px 0 50px;

  background: url("/images/experience/classroom.png") center center/cover
    no-repeat;
}

.experience-card {
  width: 460px;

  background: #2d2d87;

  padding: 40px;

  color: #fff;
}

.experience-card h2 {
  font-weight: 700;

  line-height: 1.3;

  margin-bottom: 25px;
}

.experience-card span {
  color: #f7931e;

  font-family: serif;

  font-style: italic;
}

.experience-card p {
  color: #ddd;

  line-height: 1.8;

  margin-bottom: 35px;
}

.experience-btn {
  background: #fff;

  border: none;

  border-radius: 50px;

  padding: 8px 8px 8px 30px;

  display: inline-flex;

  align-items: center;

  gap: 25px;

  font-weight: 600;
}

.experience-btn div {
  width: 52px;

  height: 52px;

  border-radius: 50%;

  background: #f7931e;

  color: #111;

  display: flex;

  align-items: center;

  justify-content: center;
}

.experience-btn:hover {
  transform: translateY(-2px);
}

/*=========================
TABLET
=========================*/

@media (max-width: 991px) {
  .experience-banner {
    min-height: 620px;

    justify-content: center !important;

    padding: 30px;
  }

  .experience-card {
    width: 100%;

    max-width: 520px;
  }
}

/*=========================
MOBILE
=========================*/

@media (max-width: 767px) {
  .experience-banner {
    min-height: 520px;

    padding: 20px;

    align-items: flex-end;
  }

  .experience-card {
    padding: 25px;
  }

  .experience-btn {
    width: 100%;

    justify-content: space-between;
  }
}
/*=========================
EXPERIENCE + GALLERY STICKY
=========================*/

.experience-wrapper {
  position: relative;
  height: 200vh; /* adjust if needed */
}

.experience-section {
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1;
}

/*=========================
GALLERY
=========================*/

.gallery-section {
  position: relative;
  z-index: 5;
  margin-top: -100vh;
  background: #f7f7f7;
  /* Replace with your background image */
  background: url("/images/gallery/bg.png") center/cover no-repeat;

  padding: 20px 0;
  overflow: hidden;
}

/*=========================
Heading
=========================*/

.gallery-tag {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #2d2d87;
  border-radius: 40px;
  color: #2d2d87;
  font-weight: 600;
  margin-bottom: 25px;
}

.gallery-heading {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 70px;
}

.gallery-heading span {
  color: #f7931e;
  font-family: serif;
  font-style: italic;
}

.gallery-row {
  overflow: hidden;
  margin-bottom: 20px;
}

.gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: galleryScroll 30s linear infinite;
}

.gallery-row:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-item {
  width: 330px;
  height: 200px;
  flex-shrink: 0;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-card {
  width: 100%;
  height: 100%;
  background: #2d2d87;
  border-radius: 14px;
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-quote {
  color: #f7931e;
  font-size: 55px;
  line-height: 1;
  margin-bottom: 10px;
}

.gallery-card h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
  margin: 0;
}

@keyframes galleryScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .gallery-item {
    width: 240px;
    height: 150px;
  }

  .gallery-card {
    padding: 18px;
  }

  .gallery-card h3 {
    font-size: 18px;
  }
}
/*=========================
ACTIVITIES
=========================*/

.activities-wrapper {
  position: relative;
  height: 200vh;
}

/* Sticky */

.activities-section {
  position: sticky;
  top: 0;
  height: 100vh;

  z-index: 1;

  background: #fff;
  overflow: hidden;
}
.next-section {
  position: relative;
  z-index: 5;
  margin-top: -100vh;
  background: #fff;
}
.activities-tag {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #2d2d87;
  border-radius: 40px;
  color: #2d2d87;
  font-weight: 600;
  margin-bottom: 25px;
}

.activities-heading {
  font-weight: 700;
  margin-bottom: 70px;
}

.activities-heading span {
  color: #f7931e;
  font-family: serif;
  font-style: italic;
}

.activities-slider {
  overflow: hidden;
}

.activities-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: activitiesMove 28s linear infinite;
}

.activities-slider:hover .activities-track {
  animation-play-state: paused;
}

.activity-card {
  width: 300px;
  height: 400px;
  background: #f7931e;
  border-radius: 10px;
  padding: 32px;
  flex-shrink: 0;
  color: #fff;
}

.activity-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 35px;
}

.activity-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 28px;
}

.activity-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.activity-card p {
  line-height: 1.8;
  opacity: 0.95;
}

@keyframes activitiesMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .activity-card {
    width: 220px;
    height: 400px;
    padding: 22px;
  }

  .activity-icon {
    width: 70px;
    height: 70px;
  }
}
/*=========================
WHY NAVKIS
=========================*/

.why-section {
  background: #fff;
  padding: 100px 0;
}

.why-tag {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #2d2d87;
  border-radius: 40px;
  color: #2d2d87;
  font-weight: 600;
  margin-bottom: 25px;
}

.why-heading {
  font-weight: 700;
  margin-bottom: 60px;
}

.why-heading span {
  color: #f7931e;
  font-family: serif;
  font-style: italic;
}

/*=========================
STEAM
=========================*/

.steam-wrapper {
  display: flex;
  gap: 2px;
  height: 530px;
}

.steam-card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.45s ease;
}

.steam-card.active {
  flex: 5;
}

.steam-image {
  object-fit: cover;
}

.steam-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1));
}

.steam-letter {
  position: absolute;
  bottom: 55px;
  left: 35px;
  color: #f7931e;
  font-size: 42px;
  font-weight: 700;
  z-index: 2;
}

.steam-content {
  position: absolute;
  bottom: 40px;
  left: 80px;
  color: #fff;
  z-index: 2;
}

.steam-content h3 {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
}

.steam-content span {
  color: #f7931e;
}

.steam-mobile-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.steam-mobile-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.steam-mobile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}

.steam-mobile-content {
  position: absolute;
  left: 25px;
  bottom: 25px;
  color: #fff;
}

.steam-mobile-content span {
  color: #f7931e;
}

@media (max-width: 991px) {
  .why-section {
    padding: 70px 0;
  }

  .why-heading {
    margin-bottom: 30px;
  }
}
/*==========================
BLOGS
==========================*/

.blogs-section {
  background: #f8f8f8;
  padding: 100px 0;
}

.blogs-tag {
  display: inline-block;
  padding: 12px 34px;
  border: 2px solid #2d2d87;
  border-radius: 40px;
  color: #2d2d87;
  font-weight: 600;
  margin-bottom: 25px;
}

.blogs-heading {
  font-weight: 700;
  margin-bottom: 55px;
}

.blogs-heading span {
  color: #f7931e;
  font-style: italic;
  font-family: serif;
}

.blog-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-card h3 {
  margin: 22px 0 14px;
  font-weight: 700;
}

.blog-card h3 span {
  color: #f7931e;
  font-style: italic;
  font-family: serif;
  font-weight: 400;
}

.blog-card p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card a {
  color: #2d2d87;
  font-weight: 700;
  text-decoration: underline;
}

.blogs-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 55px;
}

.blogs-navigation button {
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.blogs-prev {
  background: #fff;
  color: #111;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.blogs-next {
  background: #f7931e;
  color: #fff;
}

.blogs-navigation button:hover {
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .blog-card img {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .blogs-section {
    padding: 70px 0;
  }

  .blogs-navigation {
    justify-content: center;
  }

  .blogs-navigation button {
    width: 52px;
    height: 52px;
  }
}
/*==================================
REVIEWS
==================================*/

.reviews-section {
  padding: 100px 0;
}

.review-tag {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid #2d2d87;
  border-radius: 40px;
  color: #2d2d87;
  font-weight: 600;
  margin-bottom: 25px;
}

.review-heading {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 55px;
}

.review-heading span {
  color: #f7931e;
  font-family: serif;
  font-style: italic;
}

/*==================================
SWIPER
==================================*/

.reviews-section .swiper {
  padding: 10px 5px 20px;
}

.reviews-section .swiper-wrapper {
  align-items: stretch;
}

.reviews-section .swiper-slide {
  height: auto;
  display: flex;
}

/*==================================
REVIEW CARD
==================================*/

.review-card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 35px 28px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-6px);
}

.review-user {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.review-card h3 {
  font-weight: 700;
  margin-bottom: 15px;
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  color: #fdb515;
  margin-bottom: 20px;
}

.review-stars svg {
  font-size: 18px;
}

.review-card p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/*==================================
NAVIGATION
==================================*/

.review-navigation {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.review-prev,
.review-next {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.review-prev {
  background: #fff;
  color: #2d2d87;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.review-next {
  background: #ffd24d;
  color: #2d2d87;
}

.review-prev:hover,
.review-next:hover {
  transform: scale(1.08);
}

/*==================================
FAQ
==================================*/

.faq-title {
  font-weight: 700;
  margin-bottom: 35px;
}

.accordion-item {
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.accordion-button {
  background: #fff;
  font-weight: 600;
  padding: 25px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: #222;
}

.accordion-body {
  color: #666;
  line-height: 1.8;
  padding: 0 25px 25px;
}

.accordion-button::after {
  display: none;
}

.accordion-button::before {
  content: "+";

  color: #2d2d87;
  margin-right: 18px;
  font-weight: 400;
}

.accordion-button:not(.collapsed)::before {
  content: "−";
}

/*==================================
TABLET
==================================*/

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

  .review-heading,
  .faq-title {
    margin-bottom: 35px;
  }

  .faq-title {
    margin-top: 30px;
  }
}

/*==================================
MOBILE
==================================*/

@media (max-width: 767px) {
  .review-tag {
    display: table;
    margin: 0 auto 20px;
  }

  .review-heading {
    text-align: center;
    margin-bottom: 30px;
  }

  .faq-title {
    text-align: center;
  }

  .review-card {
    padding: 28px 20px;
  }

  .review-navigation {
    margin-top: 30px;
  }

  .review-prev,
  .review-next {
    width: 50px;
    height: 50px;
  }

  .accordion-button {
    padding: 18px;
  }

  .accordion-body {
    padding: 0 18px 18px;
  }
}
.reviews-wrapper {
  position: relative;
  z-index: 10;
  background: #fff;
  /* Remove the fixed height - let content determine height */
  min-height: 100vh; /* Change from height: 200vh to min-height */
}

.reviews-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh; /* Change from height: 100vh to min-height */
  overflow: hidden;
  z-index: 10;
  padding-bottom: 50px; /* Add some bottom padding */
}
.cta-wrapper {
  position: relative;
  z-index: 20;
  background: #0b2d5c;
  /* Remove any negative margin */
  margin-top: 0;
  padding: 0; /* Ensure no extra padding */
}
/* ==========================
   CTA SECTION
=========================== */

.cta-section {
  position: relative;
  background: #2a2f7d; /* dark navy blue */

  color: #fff;
  overflow: hidden;

  display: flex;
  align-items: center;
}

.cta-content {
  max-width: 600px;
  padding-left: 40px;
}

.cta-content h2 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.cta-content h2 span {
  color: #f7931e;
  font-family: serif;
  font-style: italic;
  font-weight: 400;
}

.cta-content p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 500px;
}

/* Button */
.cta-btn {
  background: #f7931e;
  color: #fff;
  border: none;
  padding: 18px 40px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s ease;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
}

.cta-btn:hover {
  background: #fff;
  color: #0b2d5c;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(247, 147, 30, 0.5);
}

.cta-btn span {
  line-height: 1;
}

/* Image */
.cta-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  margin-left: 200px;
  margin-bottom: -50px;
}

/* ===== Responsive ===== */

@media (max-width: 991px) {
  .cta-content {
    padding-left: 20px;
    text-align: center;
    margin: 0 auto;
  }

  .cta-content p {
    margin: 0 auto 30px;
  }

  .cta-btn {
    margin: 0 auto;
  }

  .cta-section .text-end {
    text-align: center !important;
    margin-top: 40px;
  }

  .cta-image {
    max-width: 80%;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 60px 20px;
    min-height: auto;
  }

  .cta-btn {
    padding: 14px 28px;

    gap: 12px;
  }

  .cta-image {
    max-width: 100%;
    margin-left: 0px;
    margin-bottom: 0px;
  }
}
