/* ---------- HEADER ---------- */
.gsfpRespoHeader {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.gsfpRespoLogo {
  height: 38px;
}

/* Nav links */
.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 19px;
}
.navbar-light .navbar-nav .nav-link {
  color: black !important;
}
.navbar-light .navbar-nav .nav-link:hover {
  color: #0076be !important;
  text-decoration: underline !important;
}

/* Register Button */
.gsfpRegisterBtn {
  background: red;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
}

.gsfpRegisterBtn:hover {
  background: #222;
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
  }

  .gsfpRegisterBtn {
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }
}

/* ---------- HERO SECTION ---------- */
.gsfpHero {
  position: relative;
  padding: 80px 40px;
  background: url("./image/hand-with-pen-application-form 1.png") 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 {
  position: relative;
  font-size: 50px;
  line-height: 92%;
  color: #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: 54px;
  }

  .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: goldenrod;
}

.gsfpPrimaryBtn:hover {
  background: yellow;
}

.gsfpOutlineBtn {
  border: 2px solid #000;
}

.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: #0b2b4b; /* #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: 80px;
  }

  .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) {
  .gsfpTittle {
    font-size: 42px;
  }

  .gsfpTittle1 {
    font-size: 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;
  }
  .gsfpBadge {
    font-size: 14px;
    padding: 20px;
  }
  .gsfpTittle {
    font-size: 43px;
  }

  .gsfpTittle1 {
    font-size: 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: 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: #d9d9d952;
  padding: 60px 40px;
}
.bridgeHead {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #ff0000;
}
.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: 31px;
  }
  .bridgePara {
    font-size: 15px;
    line-height: 40px;
    text-align: center;
  }
}

/* ---------- WHY MOCK SECTION ---------- */
.gsfpWhyMock {
  padding: 30px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.gsfpWhyMock h2 {
  color: red;
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 40px;
  font-family: "Poppins", sans-serif;
}

/* Grid */
.gsfpFlipGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.gsfpFlipCard {
  perspective: 1000px;
}

.gsfpFlipInner {
  position: relative;
  width: 100%;
  height: 175px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

/* Hover & tap */
.gsfpFlipCard:hover .gsfpFlipInner,
.gsfpFlipCard:focus-within .gsfpFlipInner {
  transform: rotateY(180deg);
}

/* Front & Back */
.gsfpFlipFront,
.gsfpFlipBack {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  font-weight: 600;
  backface-visibility: hidden;
  font-size: 18px;
}

/* Front */
.gsfpFlipFront {
  background: #f2f2f2;
  color: #555;
}

/* Back */
.gsfpFlipBack {
  background: #0071bc;
  color: #fff;
  transform: rotateY(180deg);
}
/* Default: Desktop */
.text-mobile {
  display: none;
}

.text-desktop {
  display: inline;
}

/* Tablet & Mobile */
@media (max-width: 991px) {
  .text-desktop {
    display: none;
  }

  .text-mobile {
    display: inline;
  }
}

/* =============================
   TABLET & MOBILE CARD DESIGN
   ============================= */
@media (max-width: 991px) {
  /* Tablet: 2 cards per row */
  .gsfpFlipGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gsfpFlipCard {
    perspective: none;
    border: 2px solid black;
    border-radius: 15px;
  }

  /* Disable flip */
  .gsfpFlipInner {
    height: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: none !important;
    transition: none;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }

  .gsfpFlipCard:hover .gsfpFlipInner {
    transform: none;
  }

  /* Heading section */
  .gsfpFlipFront {
    text-decoration: underline;
    height: 100%;
    position: relative;
    transform: none;
    background: #0071bc;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 18px 16px;
    text-align: center;
    border-radius: 14px 14px 0 0;
  }

  /* Content section (tight spacing) */
  .gsfpFlipBack {
    position: relative;
    transform: none;
    background: #0071bc;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    padding: 14px 16px; /* 🔥 reduced padding */
    text-align: center;
    border-radius: 0 0 14px 14px;
    backface-visibility: visible;
  }
}

/* =============================
   MOBILE: 1 CARD PER ROW
   ============================= */
@media (max-width: 575px) {
  .gsfpFlipGrid {
    grid-template-columns: 1fr; /* ✅ single card */
    gap: 16px;
  }

  .gsfpFlipFront {
    font-size: 16px;
    padding: 16px 14px;
  }

  .gsfpFlipBack {
    font-size: 14px;
    padding: 14px 14px; /* tighter */
  }
}

/* ---------- PILLARS SECTION ---------- */
.gsfpPillars {
  padding: 60px 20px;
  font-family: "Poppins", sans-serif;
}

.gsfpPillarsTitle {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  text-align: center;
  color: red;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Tabs container full width */
.gsfpPillTabs {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: 40px;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
}

/* Make pills evenly distributed */
.gsfpPillTabs .nav-item {
  flex: 1;
}

/* Pills take full available space */
.gsfpPillTabs .nav-link {
  width: 100%;
  font-family: "Poppins", sans-serif;
  border-radius: 30px;
  color: #000;
  font-weight: 500;
  padding: 14px 10px;
  text-align: center;
}

/* Active */
.gsfpPillTabs .nav-link.active {
  background: #0071bc;
  color: #fff;
}

/* Content */
.gsfpPillarContent {
  margin-top: 40px;
}

.gsfpPillarContent h3 {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.gsfpPillarContent ul {
  padding-left: 18px;
}

.gsfpPillarContent li {
  margin-bottom: 10px;
}
.pilltabimage {
  width: 80%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .gsfpPillTabs {
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: hidden;
    padding: 6px;
  }

  .gsfpPillTabs .nav-item {
    flex: 1;
  }

  .gsfpPillTabs .nav-link {
    white-space: nowrap;
    padding: 10px 6px;
    font-size: 12px;
    line-height: 1.2;
  }
}

@media (max-width: 375px) {
  .gsfpPillTabs .nav-link {
    font-size: 11.5px;
    padding: 8px 4px;
  }
}

@media (max-width: 768px) {
  .gsfpPillTabs .nav-item {
    width: 100%;
  }

  .gsfpPillTabs .nav-link {
    border-radius: 20px;
  }
  .gsfpPillarContent h3 {
    font-size: 35px !important;
    padding: 6px;
  }
}
@media (max-width: 450px) {
  .gsfpPillarsTitle {
    font-size: 28px !important;
  }
  .gsfpWhyMock h2 {
    font-size: 29px !important;
  }
  .gsfpPillarContent h3 {
    font-size: 27px !important;
  }
  .gsfpPillarContent ul {
    font-size: 15px !important;
  }
  /* .gsfpPillTabs {
    padding: 0px !important;
  } */
  .bridgePara {
    text-align: justify !important;
  }
  .bridgeHead {
    font-size: 24px !important;
  }
  .colorgsfp {
    margin-top: 10px;
    font-size: 12px;
  }
}
/* ---------- STAND APART SECTION ---------- */
.gsfpStandApart {
  background: #d9d9d952;
  color: #000;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.gsfpTitle {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  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;
  }
  .gsfpGoldBadge {
    font-size: 18px;
  }
  .gsfpTextBlock h4 {
    font-size: 22px;
  }
  .gsfpTextBlock p {
    font-size: 18px;
  }
  .gsfpImageBlock img {
    width: 50%;
  }
}

/* <= 450px */
@media (max-width: 450px) {
  .gsfpTitle {
    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 {
    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: 20px;
}

.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;
  }
}

/* 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;
  }
}
