/* ---------- GLASS HEADER ---------- */
.gsfpRespoHeader {
  position: sticky;
  top: 0;
  z-index: 999;

  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);

  padding: 14px 40px;
  transition: all 0.3s ease;
}

/* Logo */
.gsfpRespoLogo {
  height: 40px;
}

.gsfpRespoLogo111 {
  height: 50px;
}

/* Nav links */
.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #000 !important;
  position: relative;
}

/* Underline hover animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #0076be;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* CTA Button */
.gsfpRegisterBtn {
  background: linear-gradient(135deg, #ff0000, #c70000);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gsfpRegisterBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
  color: #fff;
}

/* Mobile menu */
@media (max-width: 991px) {
  .gsfpRespoHeader {
    padding: 12px 20px;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    margin-top: 12px;
  }

  .navbar-nav {
    gap: 14px;
  }

  .gsfpRegisterBtn {
    width: 100%;
    text-align: center;
    margin-top: 14px;
  }
}

/* ---------- HERO SECTION ---------- */
.gsfpHero {
  position: relative;
  padding: 80px 40px;
  background: url("./image/headerr.jpeg") center/cover no-repeat;
}

.gsfpHero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

.gsfpHero > .container-fluid {
  position: relative;
  z-index: 2;
}

/* ---------- HERO CONTENT ---------- */
.gsfpBadge {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  color: #000;
  background: #fff;
  border: 2px solid #000;
  overflow: hidden;
  animation: badgeGlow 2.5s ease-in-out infinite;
}

/* Glow pulse */
@keyframes badgeGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 212, 92, 0.4);
  }

  50% {
    box-shadow: 0 0 18px rgba(255, 212, 92, 0.9);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 212, 92, 0.4);
  }
}

/* Shining sweep */
.gsfpBadge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 212, 92, 0.8),
    transparent 70%
  );
  animation: shineMove 3.5s ease-in-out infinite;
}

@keyframes shineMove {
  0% {
    left: -120%;
  }

  50% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

.gsfpTittle {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: 54px;
}

.gsfpTittle1 {
  margin-bottom: 40px;
  position: relative;
  font-size: 54px;
  /* line-height: 92%; */
  color: #0b2b4b;
  /*#ff0000*/
  font-weight: 900;
  display: inline-block;
}

/* TM badge */
.gsfpTM {
  position: absolute;
  top: 8px;
  right: -18px;
  width: 26px;
  height: 26px;
  background: black;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .gsfpTittle1 {
    font-size: 42px;
    /*40px*/
  }

  .gsfpTM {
    width: 20px;
    height: 20px;
    font-size: 10px;
    top: -8px;
    right: -20px;
  }
}

.gsfpSubtitle_gold {
  font-size: 32px;
  margin: 15px 0 30px;
  font-weight: 600;
  font-style: italic;
  color: darkgoldenrod;
}

.gsfpHeroBtns {
  display: flex;
  gap: 15px;
}

/* ---------- BUTTONS ---------- */
.gsfpPrimaryBtn,
.gsfpOutlineBtn {
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.gsfpPrimaryBtn {
  color: #fff;
  background: linear-gradient(135deg, #ff0000, #c70000);
}

.gsfpPrimaryBtn:hover {
  background: #fff;
}

.gsfpOutlineBtn {
  color: #fff;
  background: black;
}

.gsfpOutlineBtn:hover {
  background: #f0f0f0;
}

/* ---------- COUNTDOWN ---------- */
.gsfpCountdownBox {
  margin-left: 50px;
  width: 80%;
  /* color: #fff; */
  font-family: "Poppins", sans-serif;
  background: goldenrod;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.gsfpCountdownBox h3 {
  color: #fff;
  text-align: center;
  font-size: 20px;
  /* 25-35 */
  font-weight: 700;
  margin-bottom: 20px;
}

.gsfpCountdown {
  display: flex;
  gap: 10px;
}

.gsfpCountdown div {
  background: #fff;
  padding: 0px;
  /* 12 */
  border-radius: 10px;
  text-align: center;
  width: 100%;
}

.gsfpCountdown span {
  font-size: 23px;
  /* 43 */
  font-weight: 700;
}

.gsfpCountdown small {
  font-size: 13px;
  /* 20 */
}

/* ---------- WHAT'S NEW ---------- */
.gsfpWhatsNewBox {
  margin-left: 50px;
  width: 90%;
  /*80%*/
  margin-top: 20px;
  background: linear-gradient(135deg, #ff0000ab, #230303a6);
  /* linear-gradient(135deg, #ff0000, #230303) #0b71c7; */
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
}

.gsfpWhatsNewBox h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Scroll area */
.gsfpWhatsNewScroll {
  max-height: 270px;
  /*270px*/
  overflow: hidden;
  position: relative;
}

/* News item */
.gsfpNewsItem {
  padding: 8px 0;
}

.gsfpNewsRow {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}

.gsfpNewsDate {
  white-space: nowrap;
  font-size: 13px;
}

.gsfpNewsTime {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 2px;
}

/* Divider */
.gsfpWhatsNewBox hr {
  border-top: 1px dashed rgba(255, 255, 255, 0.5);
  margin: 10px 0;
}

/* View all */
.gsfpViewAll {
  display: block;
  text-align: right;
  margin-top: 8px;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.gsfpViewAll:hover {
  text-decoration: underline;
}

/* Make whole row clickable */

.gsfpNewsLink {
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px dashed #eee;
}

.gsfpNewsText {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.gsfpNewsLink:hover {
  background: white;
  color: #000;
  border-radius: 6px;
}

.gsfpNewsText:hover {
  color: #000;
}

/* Cursor */
.gsfpNewsItem {
  cursor: pointer;
}

/* Responsive */
@media (max-width: 575px) {
  .gsfpNewsRow {
    flex-direction: column;
    gap: 2px;
  }

  .gsfpNewsDate {
    align-self: flex-start;
  }
}

/* end whats new */
.gsfpTextBlock p {
  text-align: justify !important;
  font-size: 20px !important;
}

/* needd */
@media (max-width: 1024px) {
  .gsfpCountdown div {
    width: 23%;
    padding: 8px !important;
  }

  .gsfpHero {
    padding: 60px 30px;
  }

  .gsfpTittle {
    font-size: 46px;
  }

  .gsfpTittle1 {
    font-size: 43px;
    /*50px*/
  }

  .gsfpSubtitle {
    font-size: 26px;
  }

  .gsfpHeroBtns {
    gap: 12px;
  }

  .gsfpPrimaryBtn,
  .gsfpOutlineBtn {
    font-size: 18px;
    padding: 10px 22px;
  }

  .gsfpCountdownBox h3 {
    font-size: 30px;
  }

  .gsfpCountdown span {
    font-size: 32px;
  }

  .gsfpCountdown small {
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .gsfpHero::before {
    background: rgba(255, 255, 255, 0.8) !important;
  }

  .gsfpTittle {
    font-size: 42px;
    text-align: center;
  }

  .gsfpTittle1 {
    font-size: 52px;
    /*72px*/
  }

  .gsfpSubtitle {
    font-size: 24px;
  }

  .gsfpHeroBtns {
    flex-direction: column;
  }

  .gsfpHeroBtns .btn {
    width: 100%;
  }

  .gsfpHeroRight {
    margin-top: 40px;
  }
}

/* needd */
@media (max-width: 575px) {
  .gsfpRespoLogo {
    height: 30px;
  }

  .gsfpRespoLogo111 {
    height: 35px;
  }

  .gsfpBadge {
    font-size: 14px;
    padding: 20px;
  }

  .gsfpTittle {
    font-size: 43px;
  }

  .gsfpTittle1 {
    font-size: 42px;
    /*54px*/
  }

  .gsfpSubtitle {
    font-size: 19px;
  }

  .gsfpCountdown {
    flex-wrap: nowrap;
  }

  .gsfpSubtitle_gold {
    font-size: 23px;
    margin: 15px 0 30px;
    font-weight: 600;
    font-style: italic;
    color: darkgoldenrod;
  }

  .bridgePara {
    line-height: 27px !important;
  }

  .gsfpCountdown div {
    width: 22%;
  }

  .gsfpHeroLeft {
    text-align: center;
  }

  .gsfpCountdown span {
    font-size: 22px;
  }

  .gsfpCountdown small {
    font-size: 10px;
  }

  .gsfpCountdownBox h3 {
    font-size: 24px;
  }

  .gsfpCountdownBox,
  .gsfpWhatsNewBox {
    margin-left: 0px !important;
    width: 100% !important;
  }
}

@media (max-width: 380px) {
  .gsfpHero {
    padding: 40px 16px;
  }

  .gsfpBadge {
    font-size: 14px;
    padding: 6px 14px;
  }

  .gsfpTittle {
    font-size: 42px;
  }

  .gsfpTittle1 {
    font-size: 36px;
    /*48px*/
  }

  .gsfpSubtitle {
    font-size: 18px;
  }

  .gsfpPrimaryBtn,
  .gsfpOutlineBtn {
    font-size: 16px;
    padding: 10px 18px;
  }

  .gsfpCountdown span {
    font-size: 26px;
  }

  .gsfpCountdown small {
    font-size: 10px;
  }
}

/* bridge section*/
.bridgesection {
  background: white;
  /*#d9d9d952*/
  padding: 60px 40px;
}

.bridgeHead {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 20px;
}

.bridgePara {
  line-height: 43px;
  font-size: 24px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: black;
}

@media (max-width: 768px) {
  .bridgeHead {
    font-size: 29px;
  }

  .bridgePara {
    font-size: 15px;
    line-height: 40px;
    text-align: center;
  }
}

@media (min-width: 320px) and (max-width: 450px) {
  .p0 {
    padding: 0px !important;
    margin-left: 10px !important;
  }
}

/* ---------- STAND APART SECTION ---------- */
.gsfpStandApart {
  background: #d9d9d952;
  color: #000;
  padding: 50px 30px;
  font-family: "Poppins", sans-serif;
}

.gsfpTitle {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 65px;
  color: red;
}

.gsfpTitleprime {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 25px;
  color: red;
}

.gsfpGoldBadge {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  background: goldenrod;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  margin: 0 auto 20px;
  font-size: 25px;

  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.gsfpGoldBadge69 {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  background: goldenrod;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  margin: 0 auto 20px;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
}

.gsfpIntro {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 40px;
}

.gsfpSubTitle {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0b2b4b;
}

/* Grid */
.gsfpGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
  align-items: center;
}

/* Text */
.gsfpTextBlock h4 {
  font-family: "Poppins", sans-serif;
  color: #0071bc;
  font-size: 33px;
  margin-bottom: 10px;
  font-weight: bold;
}

.gsfpTextBlock p {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 1.6;
}

/* Images */
.gsfpImageBlock img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255, 230, 0, 0.4);
}

/* Quote */
.gsfpQuote {
  background: #0071bc;
  color: white;
  padding: 16px 24px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin: 30px auto 0;
  max-width: 950px;
  font-size: 24px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .gsfpGrid {
    grid-template-columns: 1fr;
  }

  /* Awaken */
  .gsfpGrid > :nth-child(1) {
    order: 1;
  }

  /* Text */
  .gsfpGrid > :nth-child(2) {
    order: 2;
  }

  /* Image */

  /* Sacred Repetition */
  .gsfpGrid > :nth-child(3) {
    order: 4;
  }

  /* Image */
  .gsfpGrid > :nth-child(4) {
    order: 3;
  }

  /* Text */

  /* Battle Tested */
  .gsfpGrid > :nth-child(5) {
    order: 5;
  }

  /* Text */
  .gsfpGrid > :nth-child(6) {
    order: 6;
  }

  /* Image */
}

/* <= 768px */
@media (max-width: 768px) {
  .gsfpGrid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .gsfpTextBlock p {
    max-width: 500px;
    margin: 0 auto;
  }

  .gsfpSubTitle {
    font-size: 28px;
  }

  .gsfpQuote {
    font-size: 18px;
  }

  .gsfpTitle {
    font-size: 34px;
  }

  .gsfpTitleprime {
    font-size: 34px;
  }

  .gsfpGoldBadge {
    font-size: 18px;
  }

  .gsfpTextBlock h4 {
    font-size: 22px;
  }

  .gsfpTextBlock p {
    font-size: 18px;
  }

  .gsfpImageBlock img {
    width: 50%;
  }
}

/* <= 450px */
@media (max-width: 450px) {
  .gsfpTitle,
  .gsfpTitleprime {
    font-size: 28px;
  }

  .gsfpSubTitle {
    font-size: 24px;
  }

  .gsfpTextBlock h4 {
    font-size: 20px;
  }

  .gsfpGoldBadge {
    width: 80%;
    font-size: 18px;
  }

  .gsfpIntro {
    font-size: 15px;
  }

  .gsfpImageBlock img {
    width: 70%;
  }

  .gsfpQuote {
    font-size: 14px;
  }

  .gsfpTextBlock p {
    font-size: 14px !important;
  }
}

/* <= 320px */
@media (max-width: 320px) {
  .gsfpTitle,
  .gsfpTitleprime {
    font-size: 24px;
  }

  .gsfpSubTitle {
    font-size: 22px;
  }

  .gsfpQuote {
    font-size: 14px;
  }
}

/* ---------- SIMULATOR EXPERIENCE ---------- */
.gsfpSimulatorExperience {
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
  background: #fff;
  text-align: center;
}

.gsfpExpTitle {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: red;
  margin-bottom: 15px;
}

.gsfpExpTitle span {
  font-weight: 600;
  font-size: 28px;
  color: #0b2b4b;
}

.gsfpExpIntro {
  /* max-width: 900px;
  margin: 0 auto 50px; */
  font-size: 22px;
  color: #333;
  line-height: 1.6;
}

/* Pills layout */
.gsfpExpPills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 80px;
}

/* UPDATED PILLS DESIGN */
.gsfpExpPill {
  position: relative;
  background: #e0e0e0;
  border-radius: 50px;
  padding: 18px 30px 18px 70px;
  display: flex;
  align-items: center;
  max-width: 352px;
  min-height: 60px;
}

/* Icon circle */
.gsfpExpPill .icon {
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 0 4px #e0e0e0;
}

/* Text */
.gsfpExpPill p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-align: left;
  line-height: 1.4;
}

/* Schedule preview */
.gsfpNextTitle {
  font-size: 40px;
  font-weight: 700;
  color: red;
  margin-bottom: 10px;
}

.gsfpNextIntro {
  font-size: 23px;
  color: #333;
  /* max-width: 800px; */
  margin: 0 auto;
}

/* ---------- RESPONSIVE ---------- */

/* <= 991px */
@media (max-width: 991px) {
  .gsfpExpTitle {
    font-size: 36px;
  }

  .gsfpNextTitle {
    font-size: 34px;
  }
}

/* <= 768px */
@media (max-width: 768px) {
  .gsfpExpIntro,
  .gsfpNextIntro {
    font-size: 16px;
  }

  .gsfpExpPill {
    max-width: 332px;
  }
}

/* <= 450px */
@media (max-width: 450px) {
  .gsfpExpTitle {
    font-size: 27px;
  }

  .gsfpNextTitle {
    font-size: 28px;
  }

  .gsfpExpPill {
    padding: 14px 20px 14px 60px;
    min-height: 52px;
  }

  .gsfpExpPill p {
    font-size: 14px;
  }

  .gsfpExpPill .icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .gsfpExpTitle span {
    font-size: 21px;
  }
}

/* <= 320px */
@media (max-width: 320px) {
  .gsfpExpTitle {
    font-size: 26px;
  }

  .gsfpExpPill {
    gap: 8px;
  }

  .gsfpExpPill .icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

/* TABLE BASE */
.gsfpTable {
  border-collapse: collapse;
  width: 100%;
}

/* HEADER */
.gsfpTable thead th {
  font-size: 18px;
  background: #15253f;
  color: #fff;
  font-weight: 600;
  text-align: center;
  /* center header */
  border: 1px solid #dee2e6;
  /* vertical + horizontal lines */
  padding: 14px;
  white-space: nowrap;
}

/* BODY CELLS */
.gsfpTable tbody td {
  border: 1px solid #dee2e6;
  /* vertical lines restored */
  padding: 14px;
  vertical-align: middle;
  /* fixes offset */
  white-space: nowrap;
  text-align: center;
}

/* CENTER ALIGN ONLY REQUIRED COLUMNS */
.gsfpTable tbody td:nth-child(2),
.gsfpTable tbody td:nth-child(4) {
  text-align: center;
}

/* BUTTON */
.gsfpBtn {
  background: #1b2e4b;
  color: #fff;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 14px;
  border: none;
}

.gsfpBtn:hover {
  background: #1b2e4b;
  color: #fff;
}

/* PRICE */
.price {
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
}

/* TABLE WRAP */
.gsfpTableWrap {
  border-radius: 6px;
  overflow-x: auto;
}

/* MOBILE */
@media (max-width: 575px) {
  .gsfpTable thead th,
  .gsfpTable tbody td {
    padding: 10px;
    font-size: 13px;
  }

  .gsfpBtn {
    font-size: 12px;
    padding: 5px 14px;
  }
}

/* cities */
/* ---------- CENTERS SECTION ---------- */
.gsfpCenters {
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.gsfpCentersTitle {
  color: red;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.gsfpCentersSubtitle {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 35px;
  color: #333;
}

/* Grid */
.gsfpCentersGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 30px;
  margin-bottom: 30px;
}

/* City pill */
.gsfpCity {
  padding: 16px 10px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  font-size: 18px;
}

/* Colors */
/* .city-delhi {
  background: #f3d9a6;
}

.city-blr {
  background: #f4b2ae;
}

.city-mumbai {
  background: #cdee8f;
}

.city-pune {
  background: #a8e7ff;
} */
.city-delhi,
.city-blr,
.city-mumbai,
.city-pune {
  background: #0071bc;
  color: #fff;
}

/* Link */
.gsfpExploreLink {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  color: #0071bc;
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */

/* ≤ 991px (Tablet) */
@media (max-width: 991px) {
  .gsfpCentersGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gsfpCentersTitle {
    font-size: 32px;
  }
}

/* ≤ 450px (Mobile) */
@media (max-width: 450px) {
  .gsfpExploreLink {
    font-size: 18px;
  }

  .gsfpCentersGrid {
    grid-template-columns: 1fr;
  }

  .gsfpCentersTitle {
    font-size: 26px;
  }

  .gsfpCentersSubtitle {
    font-size: 15px;
  }

  .gsfpCity {
    font-size: 16px;
  }
}

/* ≤ 320px */
@media (max-width: 320px) {
  .gsfpCentersTitle {
    font-size: 22px;
  }

  .gsfpCentersSubtitle {
    font-size: 14px;
  }
}

/* ---------- MODES OF EXAM ---------- */
.gsfpModeSection {
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

/* Card */
.gsfpModeCard {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  height: 100%;
}

/* Online top bar */
.gsfpOnline .gsfpTopBar {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 100%;
  background: #1f3c88;
  border-radius: 16px 16px 0 0;
}

/* Titles */
.gsfpModeCard h3 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 20px;
}

.gsfpOnline h3 {
  color: #1f3c88;
}

.gsfpOffline h3 {
  color: #c89c4e;
}

.gsfpSubtitle101 {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 400;
}

/* List */
.gsfpModeList {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 360px;
  margin: 0 auto 30px;
}

.gsfpModeList li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
  font-size: 17px;
}

/* Check icon */
.gsfpModeList li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  background: #1f3c88;
}

.gsfpModeList.gold li::before {
  background: #c89c4e;
}

/* Buttons */
.gsfpBtn101 {
  display: inline-block;
  padding: 6px 65px;
  border-radius: 30px;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
}

.gsfpBtn101.primary {
  background: #1f3c88;
  color: #fff;
}

.gsfpBtn101.primary:hover {
  background: #162c66;
}

.gsfpBtn101.outline {
  border: 2px solid #c89c4e;
  color: #c89c4e;
}

.gsfpBtn101.outline:hover {
  background: #c89c4e;
  color: #fff;
}

/* Recommended badge */
.gsfpBadge101 {
  position: absolute;
  top: -14px;
  right: 20px;
  background: #e3b35b;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 17px;
  font-weight: 600;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .gsfpModeCard h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .gsfpModeCard {
    padding: 30px 20px;
  }

  .gsfpModeList li {
    font-size: 16px;
  }

  .gsfpBtn101 {
    width: 100%;
  }
}

@media (max-width: 770px) {
  .gsfpSubtitle101 {
    font-size: 18px;
  }

  .gsfpModeList li {
    font-size: 13px;
  }

  .gsfpBtn101 {
    font-size: 18px;
  }

  .gsfpBadge101 {
    font-size: 13px;
  }

  .gsfpModeSection {
    padding: 60px 20px 40px 20px;
  }
}

@media (max-width: 320px) {
  .gsfpModeCard h3 {
    font-size: 24px;
  }

  .gsfpSubtitle101 {
    font-size: 16px;
  }
}

/* ---------- TERMS & CONDITIONS ---------- */
.gsfpTerms {
  padding: 20px;
  font-family: "Poppins", sans-serif;
}

.gsfpTermsTitle {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 30px;
}

.gsfpTermsBox {
  background: #0071bc;
  color: #fff;
  border-radius: 12px;
  padding: 30px 40px;
}

.gsfpTermsBox ol {
  padding-left: 20px;
  margin: 0;
}

.gsfpTermsBox li {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 991px) {
  .gsfpTermsTitle {
    font-size: 30px;
  }

  .gsfpTermsBox {
    padding: 25px 30px;
  }

  .gsfpTermsBox li {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .gsfpTermsTitle {
    font-size: 26px;
  }

  .gsfpTermsBox {
    padding: 20px;
  }

  .gsfpTermsBox li {
    font-size: 15px;
  }
}

/* Small Mobile (320px) */
@media (max-width: 320px) {
  .gsfpTermsTitle {
    font-size: 22px;
  }

  .gsfpTermsBox li {
    font-size: 14px;
  }
}

/* Footer Base */
footer {
  background-color: #002b5b;
  color: white;
  padding: 20px 0;
}

footer a {
  text-decoration: none;
  transition:
    color 0.3s,
    transform 0.3s;
}

/* Footer Intro */
.footer_intro {
  color: #fff;
  font-size: 13px;
  text-align: left;
}

.footer_intro img {
  width: 200px;
  margin: auto 0 10px;
}

.footer_intro ul {
  list-style: none;
  display: inline-flex;
  gap: 10px;
  padding: 0;
  flex-wrap: wrap;
}

.footer_intro ul li a i {
  color: #fff;
  transition:
    color 0.3s,
    transform 0.3s;
}

.footer_intro ul li a:hover i {
  color: red;
  transform: scale(1.2);
}

/* Titles & Lists */
footer h4.title {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 20px;
}

ul.quick {
  list-style: none;
  padding: 0;
  column-count: 2;
}

ul.quick li a {
  color: #a2a2a2;
  /* Default grey */
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

ul.quick li a:hover {
  color: #007bff;
  /* Blue on hover */
  text-decoration: underline;
}

/* Contact info */
.adr_same,
.eml,
.phn {
  color: #6c757d;
  /* Grey text */
  margin-bottom: 15px;
  /* padding-left: 25px; */
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phn i {
  color: #007bff;
}

/* Phone icon blue */
.eml i {
  color: #ffcc00;
}

/* Email icon yellow */
.whatsapp i {
  color: #25d366;
}

/* Google Map Links */
.footer_lower_txt a {
  color: #007bff;
}

.footer_lower_txt a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Footer Layout */
.container101 {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer_lower_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.colorgsfp {
  color: white;
}

/* Bottom Bar */
.bottom_bar {
  padding: 15px 0;
  text-align: center;
  color: #fff;
  border-top: 1px solid #717171;
}

/* Responsive */
@media (max-width: 576px) {
  .trusted-logo {
    max-height: 35px;
    margin: 5px;
  }

  .flipkart-logo {
    max-height: 40px;
  }

  .footer_intro ul {
    justify-content: center;
  }

  .eklvayaRespoSection8 {
    flex-direction: column !important;
    gap: 20px !important;
    padding: 0px !important;
  }

  .featred-course-box {
    width: 93%;
    height: auto;
  }
}

/* Countdown Banner */
#countdown-banner {
  width: 100%;
  background-color: goldenrod;
  /* Golden yellow */
  color: white;
  text-align: center;
  padding: 6px 0 10px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 9999;
  letter-spacing: 0.3px;
  animation: fadeIn 1s ease-in;
}

#countdown-banner p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

#countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
  flex-wrap: wrap;
}

/* Time boxes */
.time-box {
  background-color: white;
  color: black;
  padding: 6px;
  border-radius: 6px;
  width: 68px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.time-box .label {
  display: block;
  font-size: 11px;
  opacity: 0.8;
}

.time-box .value {
  font-size: 18px;
  font-weight: bold;
  display: block;
  animation: slideIn 0.8s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    transform: translateY(5px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===============================
   OPTIONAL SUBJECTS GRID LAYOUT
================================ */

#GsSimulator .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Desktop: 3 per row */
  gap: 30px;
  margin-top: 40px;
}

/* Remove bootstrap side effects */
#GsSimulator .p0 {
  padding: 0;
  width: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  #GsSimulator .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  #GsSimulator .row {
    grid-template-columns: 1fr;
  }
}

.shadow101 {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.featred-course-box {
  max-width: 400px;
  max-height: 400px;
  width: 100%;
  background-color: #f9f9f9;
  border-bottom: 8px solid #0e50a2;
  border-right: 8px solid #0e50a2;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
}

/* ---------- HOVER EFFECT ---------- */
.featred-course-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.image-container {
  /* background-color: #ffeaea; */
  padding: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.image-container img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.course-title {
  font-size: 28px;
  font-weight: 900;
  color: #000000;
  line-height: 1.1;
  margin-bottom: 4px;
  font-family: "Poppins", sans-serif;
}

.course-subtitle {
  font-size: 26px;
  color: #333333;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.course-subtitle111 {
  font-size: 20px;
  color: #333333;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.register-btn {
  background-color: #0e50a2;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.register-btn a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
}

.register-btn:hover {
  background-color: #083474;
}

.register-btn:hover a {
  color: #ffffff;
  text-decoration: none;
}

/* ===== FORCE SLIDER TO RESERVE SPACE FOR ARROWS ===== */
.optional-slider {
  padding-bottom: 60px;
  /* space for arrows */
  position: relative;
}

/* ===== ARROWS BASE ===== */
.optional-slider .slick-prev,
.optional-slider .slick-next {
  position: absolute;
  bottom: 0;
  top: auto !important;

  width: auto;
  height: auto;

  background: transparent !important;
  /* remove circle */
  border-radius: 0;

  z-index: 20;

  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.slick-next {
  right: 687px !important;
}

/* POSITION CENTER */
.optional-slider .slick-prev {
  left: 50%;
  transform: translateX(-50px);
}

.optional-slider .slick-next {
  left: 50%;
  transform: translateX(20px);
}

/* ===== ARROW ICON ===== */
.optional-slider .slick-prev:before,
.optional-slider .slick-next:before {
  font-size: 45px;
  color: #0e50a2;
  /* blue arrow */
  opacity: 1 !important;
}

/* ===== DISABLE HOVER / DISABLE STATE ===== */
.optional-slider .slick-prev:hover,
.optional-slider .slick-next:hover,
.optional-slider .slick-prev:focus,
.optional-slider .slick-next:focus {
  background: transparent !important;
}

.optional-slider .slick-prev.slick-disabled:before,
.optional-slider .slick-next.slick-disabled:before {
  opacity: 1 !important;
  /* never fade */
  color: #0e50a2;
}

/* Space between cards */
.optional-slider .slick-slide {
  padding: 0 12px;
}

/* Prevent overflow cut */
.optional-slider .slick-list {
  margin: 0 -12px;
}

/* Space between cards */
.optional-slider .slick-slide {
  padding: 0 12px;
}

/* Prevent overflow cut */
.optional-slider .slick-list {
  margin: 0 -12px;
}

/* WRAPPER */
.layers-wrapper {
  /* background: #fffde8; */
  padding: 70px 20px 48px;
  position: relative;
  border: 2px solid #0a66b7;
}

/* TITLE */
.layers-title {
  background: #0a66b7;
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  padding: 15px 35px;
  width: fit-content;
  margin: -90px auto 0;
  position: relative;
  z-index: 2;
}

/* STEPS CONTAINER – ABSOLUTE OVER LINE 👇 */
.layers-steps {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  width: 95%;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  z-index: 3;
}

/* STEP */
.layer-step {
  flex: 1;
  min-width: 220px;
  background: #0a66b7;
  color: #fff;
  padding: 15px 18px 15px 29px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;

  /* SAME ARROW FOR ALL INCLUDING LAST 👇 */
  clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%, 6% 50%);
}

/* NUMBER CIRCLE */
.step-circle {
  background: #fff;
  color: #0a66b7;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .layers-steps {
    position: static;
    transform: none;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .layer-step {
    clip-path: none;
    width: 100%;
    /* justify-content: center; */
  }
}

/* SECTION */
.card-section {
  padding: 50px 20px;
  background: #ffffff;
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

/* CARD BASE */
.info-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 20px 24px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  /* SAME HEIGHT */
}

/* HEADER */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

/* TITLE */
.card-title {
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

/* BADGE */
.card-badge {
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
}

/* LIST */
.info-card ul {
  padding-left: 18px;
  margin: 0;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.info-card li {
  margin-bottom: 10px;
}

/* CARD COLORS */
.prime .card-header {
  background: linear-gradient(135deg, #e4592e, #002ec7);
  padding: 12px 14px;
  border-radius: 10px;
}

.balanced .card-header {
  background: linear-gradient(135deg, #1f3b5b, #c70000);
  padding: 12px 14px;
  border-radius: 10px;
}

.ats .card-header {
  background: linear-gradient(135deg, #e4592e, #0098c7);
  padding: 12px 14px;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* JOIN SECTION */
.join-section {
  margin-top: auto;
  /* pushes to bottom */
  padding-top: 14px;
  border-top: 1px solid #ddd;
}

.join-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #000;
}

.join-section p {
  text-align: justify;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #333;
}

/* EACH COLUMN */
.jd-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* PRICE */
.price-box {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.currency {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.amount {
  font-size: 34px;
  font-weight: 800;
  color: #000;
  line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .join-date {
    justify-content: space-between;
  }

  .amount {
    font-size: 28px;
  }

  .currency {
    font-size: 16px;
  }

  .day {
    font-size: 30px;
  }
}

/* JOIN DATE LAYOUT */
.join-date {
  margin-top: 30px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-evenly;
}

.start-tag {
  text-align: center;
  background: linear-gradient(135deg, #ff9000, #c70000);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  /* writing-mode: vertical-rl;
  transform: rotate(180deg); */
}

/* DATE BOX */
.date-box {
  display: flex;
  align-items: center;
  gap: 6px;
}

.day {
  font-size: 36px;
  font-weight: 800;
  color: #000;
  line-height: 1;
}

.month-year {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  line-height: 1;
}

.month {
  font-size: 20px;
}

.year {
  font-size: 15px;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .join-date {
    justify-content: space-evenly;
  }

  .day {
    font-size: 30px;
  }
}

.card-actions {
  display: flex;
  gap: 12px;
  margin-top: 40px;
}

/* Common button */
.card-actions .btn {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* ============================
   BUTTON COLORS PER CARD
============================ */

/* -------- PRIME (already orange, keep as-is) -------- */
.prime .btn-primary {
  background: #e4572e;
  border-color: #e4572e;
}

.prime .btn-outline {
  color: #e4572e;
  border-color: #e4572e;
}

.prime .btn-outline:hover {
  background: #e4572e;
  color: #fff;
}

/* -------- BALANCED (blue) -------- */
.balanced .btn-primary {
  background: #1f3b5b;
  border-color: #1f3b5b;
}

.balanced .btn-primary:hover {
  background: #172f49;
  border-color: #172f49;
}

.balanced .btn-outline {
  color: #1f3b5b;
  border-color: #1f3b5b;
}

.balanced .btn-outline:hover {
  background: #1f3b5b;
  color: #fff;
}

/* -------- ATS (black) -------- */
.ats .btn-primary {
  background: #111111;
  border-color: #111111;
}

.ats .btn-primary:hover {
  background: #000000;
  border-color: #000000;
}

.ats .btn-outline {
  color: #111111;
  border-color: #111111;
}

.ats .btn-outline:hover {
  background: #111111;
  color: #fff;
}

/* Tablet */
@media (max-width: 992px) {
  .card-actions .btn {
    font-size: 14px;
    padding: 10px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .card-actions {
    flex-direction: column;
  }

  .card-actions .btn {
    width: 100%;
  }
}

/* Title wrapper */
.title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Full form text */
.card-subtitle {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

/* learning journey */
.learning-journey-desktop {
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fffce3;
}

.learning-journey-desktop img {
  max-width: 100%;
  height: 600px;
  object-fit: contain;
}

/* hide on mobile */
@media (max-width: 767px) {
  .learning-journey-desktop {
    display: none;
  }
}

/* learning journey */
.learning-journey-desktop1 {
  width: 100%;
  /* padding: 60px 0; */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fffce3;

  /* REQUIRED for button positioning */
  position: relative;
}

.learning-journey-desktop1 img {
  max-width: 100%;
  height: 600px;
  object-fit: contain;
}

.lj-cta-btn {
  position: absolute;

  /* tweak these two for perfect placement */
  right: 12%;
  top: 48%;

  padding: 10px 22px;
  border-radius: 22px;

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;

  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #d47b3e, #b85a2b);

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: all 0.25s ease;
}

.lj-cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #c86b3c, #a9562f);
  color: #fff;
}

@media (max-width: 1024px) {
  .lj-cta-btn {
    right: 8%;
    top: 50%;
    padding: 9px 20px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .lj-cta-btn {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 20px;

    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 24px;
  }

  .learning-journey-desktop1 img {
    height: 484px !important;
  }
}
@media (max-width: 380px) {
  .lj-cta-btn {
    padding: 10px 12px !important;
    left: 54% !important;
    font-size: 10px !important;
  }
}

@media (max-width: 450px) {
  .learning-journey-desktop1 img {
    height: 360px !important;
  }
}

/* MOBILE ONLY */
.learning-journey-mobile {
  display: none;
  padding: 20px;
  background: #fffbea;
}

.mobile-title {
  color: red;
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}

/* STAIR CONTAINER */
.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* STEP CARD */
.step {
  background: #fff;
  padding: 16px;
  border-left: 6px solid #f6b100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  position: relative;
  width: 100%;
}

/* ICON */
.step .icon {
  font-size: 28px;
  display: inline-block;
  margin-bottom: 6px;
}

.step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step p {
  font-size: 14px;
  line-height: 1.4;
}

/* SHOW ONLY ON MOBILE */
@media (max-width: 767px) {
  .learning-journey-mobile {
    display: block;
  }
}

/* Arrow connector */
.step::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #f6b100;
}

.step-5::after {
  display: none;
}

.step {
  /* opacity: 0; */
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.step.show {
  opacity: 1;
  transform: translateY(0);
}

.trophy {
  animation: trophyBounce 2s infinite;
}

@keyframes trophyBounce {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15) rotate(5deg);
  }
}

/* CHOOSE PLAN – TEST SERIES */

.test-series-compare {
  background: white;
  padding: 80px 16px;
  font-family: Arial, sans-serif;
}

.test-series-compare .container {
  max-width: 1100px;
  margin: auto;
}

/* Headings */
.sub-heading {
  text-align: center;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 6px;
  color: #0b2b4b;
}

.main-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #0b2b4b;
}

.chart-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  overflow-x: auto;
}

/* Difficulty */
.difficulty-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

.difficulty-title {
  transform: rotate(-90deg);
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 800;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .difficulty-title {
    display: none !important;
  }
}

/* Difficulty labels */
.difficulty-labels {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 320px;
  padding-bottom: 30px;
}

.difficulty-labels span {
  position: relative;
  font-size: 14px;
  letter-spacing: 6px;
  font-weight: 600;
  color: #444;
}

/* Dotted lines */
.difficulty-labels span::after {
  content: "";
  position: absolute;
  left: 90px;
  top: 50%;
  border-bottom: 1px dashed #999;
  transform: translateY(-50%);
}

.difficulty-labels span:nth-child(1)::after {
  width: 450px;
}

.difficulty-labels span:nth-child(2)::after {
  width: 260px;
}

.difficulty-labels span:nth-child(3)::after {
  width: 160px;
}

/* Bars */
.bars {
  display: flex;
  gap: 40px;
  align-items: flex-end;
}

.bar {
  width: 160px;
  background: linear-gradient(180deg, #0f6780, #0a4c60);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.bar-oawfg {
  height: 240px;
}

.bar-prime {
  height: 330px;
}

.bar-ats {
  height: 360px;
  background: linear-gradient(180deg, #0f6780 55%, #cfe3ea 55%);
}

.bar-label {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.bar-ats .bar-label {
  position: absolute;
  top: 25%;
}

/* ================================
   TABLET (VERTICAL, SMALLER)
================================ */

@media (max-width: 991px) {
  .main-heading {
    font-size: 34px;
  }

  .chart-wrapper {
    gap: 24px;
  }

  .difficulty-wrapper {
    transform: scale(0.85);
  }

  .difficulty-labels span:nth-child(1)::after {
    width: 300px;
  }

  .difficulty-labels span:nth-child(2)::after {
    width: 200px;
  }

  .difficulty-labels span:nth-child(3)::after {
    width: 120px;
  }

  .bars {
    gap: 24px;
  }

  .bar {
    width: 100px;
  }

  .bar-oawfg {
    height: 180px;
  }

  .bar-prime {
    height: 240px;
  }

  .bar-ats {
    height: 270px;
  }

  .bar-label {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .main-heading {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .chart-wrapper {
    gap: 20px;
  }

  .difficulty-wrapper {
    transform: scale(0.75);
  }

  .difficulty-labels {
    height: 240px;
  }

  .difficulty-labels span {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .difficulty-labels span:nth-child(1)::after {
    width: 270px;
  }

  .difficulty-labels span:nth-child(2)::after {
    width: 140px;
  }

  .difficulty-labels span:nth-child(3)::after {
    width: 90px;
  }

  .bars {
    gap: 16px;
  }

  .bar {
    width: 70px;
  }

  .bar-oawfg {
    height: 140px;
  }

  .bar-prime {
    height: 210px;
  }

  .bar-ats {
    height: 220px;
  }

  .bar-label {
    font-size: 13px;
    margin-bottom: 12px;
  }
}

.faculty-recommend {
  padding: 50px 130px;
  background: #e4e2e252;
  font-family: Arial, sans-serif;
}

/* HEADER */
.faculty-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.fac_rec {
  margin: 0px;
  font-size: 30px;
  font-weight: 700;
  color: #003366;
}

.icon-circle {
  width: 44px;
  height: 44px;
  background: #e6e6e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.header-left h2 {
  font-size: 32px;
  letter-spacing: 1px;
}

/* FACULTY PROFILE */
.faculty-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.faculty-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.faculty-profile h4 {
  margin: 0;
  font-size: 16px;
}

.faculty-profile span {
  font-size: 14px;
  color: #777;
}

/* CONTENT */
.faculty-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.level-card {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
}

.level-title {
  font-size: 18px;
  text-align: center;
  width: 100%;
  background: #d9d9d9;
  font-weight: bold;
  padding: 8px 14px;
  margin-bottom: 15px;
  display: inline-block;
  letter-spacing: 1px;
}

/* TABLET */
@media (max-width: 992px) {
  .faculty-content {
    grid-template-columns: 1fr 1fr;
  }

  .faculty-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .faculty-content {
    grid-template-columns: 1fr;
  }

  .faculty-recommend {
    padding: 30px 20px;
  }

  .header-left h2 {
    font-size: 18px;
  }
}

/* psir section */
.psir-section {
  background: #e4e2e252;
  padding: 80px 20px;
}

.psir-container {
  max-width: 1080px;
  /*900px*/
  margin: auto;
  text-align: center;
}

/* Subtitle */
.psir-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #777;
  margin-bottom: 8px;
}

/* Title */
.psir-title {
  font-size: 42px;
  font-weight: 800;
  color: #003366;
  margin-bottom: 30px;
}

/* Paragraph */
.psir-text {
  text-align: justify;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

/* ---------- TABLET ---------- */
@media (max-width: 992px) {
  .psir-title {
    font-size: 34px;
  }

  .psir-text {
    font-size: 17px;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 576px) {
  .psir-section {
    padding: 60px 16px;
  }

  .psir-title {
    font-size: 28px;
  }

  .psir-text {
    text-align: justify !important;
    font-size: 16px;
    line-height: 1.7;
    text-align: left;
  }
}

/* =========================
   PAYMENT GATEWAY SECTION
========================= */

.pyment_method {
  /* margin-top: 30px; */
  padding: 30px 130px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Heading */
.pyment_method h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Card logos */
.pyment_method img.cards_logos {
  width: 230px;
  max-width: 100%;
  margin-bottom: 20px;
}

/* RESET OLD FLOAT SYSTEM */
.pyment_method ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 10px;
}

/* Each item */
.pyment_method ul li {
  width: auto;
  float: none;
  font-size: 16px;
  color: #333;
}

/* Label styling */
.pyment_method ul li b {
  color: #000;
  font-weight: 700;
}

/* Success / info tag (if used) */
.pyment_method h5 {
  background: #00ff7e21;
  display: inline-block;
  margin-top: 18px;
  border: 1px solid #05bd1c;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 15px;
  color: #00ad16;
}

.pyment_method h5 a {
  color: #00ad16;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 576px) {
  .pyment_method {
    padding: 18px;
  }

  .pyment_method h3 {
    font-size: 22px;
    text-align: center;
  }

  .pyment_method img.cards_logos {
    display: block;
    margin: 0 auto 20px;
  }

  /* Stack label + value */
  .pyment_method ul {
    grid-template-columns: 1fr;
  }

  .pyment_method ul li {
    font-size: 15px;
  }

  .pyment_method ul li b {
    display: block;
    margin-bottom: 2px;
  }
}
/* ===== Payment row layout ===== */
.pyment_method .row {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Left: bank details */
.pyment_method .col-md-10 {
  flex: 1;
}

/* Right: QR */
.pyment_method .col-md-4 {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
}

/* QR box */
.upi_option {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.upi_option img {
  width: 190px;
  max-width: 100%;
}
.paymentviaa {
  display: flex;
  gap: 20px;
  align-items: center;
}
/* ===== Payment row layout ===== */
.pyment_method .row {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Left: bank details */
.pyment_method .col-md-10 {
  flex: 1;
}

/* Right: QR */
.pyment_method .col-md-4 {
  flex: 0 0 220px;
  display: flex;
  justify-content: center;
}

/* QR box */
.upi_option {
  background: #f9f9f9;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.upi_option img {
  width: 190px;
  max-width: 100%;
}
/* demo video */
.psir-sectiondemo {
  padding: 60px 20px;
}

.psir-containerdemo {
  max-width: 750px;
  margin: auto;
  text-align: center;
}

.psir-titledemo {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
  color: #000;
}

/* Responsive YouTube container */
.video-wrapperdemo {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.video-wrapperdemo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Tablet */
@media (max-width: 992px) {
  .psir-titledemo {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .psir-sectiondemo {
    padding: 40px 15px;
  }

  .psir-titledemo {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 330px) {
  .paymentviaa {
    display: block;
  }
}
@media (max-width: 380px) {
  .col-md-4 {
    margin-top: 0px !important;
  }
}
.modal-body a.loginpop {
    display: inline-block;
    background: #0773c5;
    padding: 6px 22px;
    border-radius: 5px;
    color: #fff;
}

.modal-body a.loginpop.sgnup {
    background: #ff5200;
    margin-left: 7px;
}