@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --main-bg-color: #BE0B32;
  --main-text-color: #002768;
  --text-color: white;
  --light-bg-color: #f5f8fc;


}

body {
  color: var(--main-text-color);
  padding: var(--main-padding);
  padding-top: 78px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500 !important;
  font-style: normal;
}


.Icon_design {
  /* border: 1px solid black; */
  background-color: var(--main-bg-color);
  padding: 6px 8px;
  border-radius: 100%;
  color: white;
}

.Color_Red {
  background-color: var(--main-bg-color);
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  /* font-weight: 300; */
  font-style: normal;
}

.navbar {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.nav-link {
  color: var(--main-text-color) !important;
}

@media only screen and (max-width:767px) {
  .RESPOSIVE_TEXT {
    font-size: 10px;
  }

  .MAIN_RESPOSIVE {
    display: block;
  }
}


/* Navbar Styling */
.navbar {
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  color: #001f4d !important;
  padding: 8px 15px;
  transition: color 0.3s ease;
}

/* Hover underline */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #e0004d;
  transition: width 0.3s ease;

}

.dropdown-menu {
  display: none;
}

.dropdown-menu.show {
  display: block;
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* Active link */
.navbar-nav .nav-link.active {
  color: #e0004d !important;
}

.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* Login Button */
.login-btn {
  background: linear-gradient(135deg, #e0004d, #c8102e);
  color: #fff !important;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(224, 0, 77, 0.3);
  animation: pulse 2s infinite;
  display: inline-block;
  text-align: center;
}

.login-btn:hover {
  background: linear-gradient(135deg, #c8102e, #a10d25);
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(224, 0, 77, 0.4);
}

/* Keyframes for zoom-in zoom-out animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

/* scroll section  */

.scroll-section {
  width: 100%;
  /* background-color: #be0b32; */
  overflow: hidden;
  white-space: nowrap;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 0;
  box-sizing: border-box;
}

.BG_REMOVE {
  /* mix-blend-mode: multiply !important;  background-color: transparent !important; */
}


.scroll-content {
  display: inline-block;
  animation: scroll-left 20s linear infinite;
}

.scroll-item {
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px white;
}

/* Keyframes for continuous loop */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .scroll-section {
    font-size: 1rem;
  }
}

/* trasted  */
.Light_Bg {
  background-color: var(--light-bg-color);
}


/* button style  */



.rotating-container {
  position: relative;
  width: 300px;
  height: 300px;
}

.central-img {
  width: 200px;
  height: auto;
  border-radius: 100% !important;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  animation: rotate 20s linear infinite;
}

.orbit .flag {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Position 8 flags in circle */
.orbit .flag:nth-child(1) {
  top: 0%;
  left: 50%;
}

.orbit .flag:nth-child(2) {
  top: 20%;
  left: 85%;
}

.orbit .flag:nth-child(3) {
  top: 50%;
  left: 100%;
}

.orbit .flag:nth-child(4) {
  top: 80%;
  left: 85%;
}

.orbit .flag:nth-child(5) {
  top: 100%;
  left: 50%;
}

.orbit .flag:nth-child(6) {
  top: 80%;
  left: 15%;
}

.orbit .flag:nth-child(7) {
  top: 50%;
  left: 0%;
}

.orbit .flag:nth-child(8) {
  top: 20%;
  left: 15%;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .rotating-container {
    width: 220px;
    height: 200px;
  }

  .central-img {
    border-radius: 100%;
    width: 200px;
    height: 200px;
  }

  @media only screen and (max-width:767px) {
    .central-img {
      width: 100px;
      height: 100px;
    }
  }

  .orbit .flag {
    width: 30px;
    height: 30px;
  }

  .orbit .flag:nth-child(1) {
    top: 0%;
    left: 50%;
  }

  .orbit .flag:nth-child(2) {
    top: 15%;
    left: 85%;
  }

  .orbit .flag:nth-child(3) {
    top: 50%;
    left: 100%;
  }

  .orbit .flag:nth-child(4) {
    top: 85%;
    left: 85%;
  }

  .orbit .flag:nth-child(5) {
    top: 100%;
    left: 50%;
  }

  .orbit .flag:nth-child(6) {
    top: 85%;
    left: 15%;
  }

  .orbit .flag:nth-child(7) {
    top: 50%;
    left: 0%;
  }

  .orbit .flag:nth-child(8) {
    top: 15%;
    left: 15%;
  }
}

.BG_Gradient {
  background: linear-gradient(270deg, #ff6a00, #ee0979, #00c6ff, #0072ff);
  background-size: 800% 800%;
  /* animation ke liye zaroori */
  animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* who why stemnod  */
.highlight-section {
  padding: 60px 0;
}

.highlight-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d1b4c;
}

.highlight-section p {
  font-size: 16px;
  /* color: var(--light-bg-color); */
}

.highlight-section .checklist i {
  color: crimson;
  margin-right: 10px;
}

.highlight-section .badge-circle {
  position: absolute;
  left: 10px;
  bottom: 50px;
  background-color: #c8102e;
  color: white !important;
  border-radius: 100%;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  font-size: 22px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.POSITION_SET_MAIN {
  position: relative;
}

.POSITION_SET {
  position: absolute;
  width: 250px;
  border: 2px solid white;
  bottom: -95px;
  right: 30px;
}

@media only screen and (max-width: 767px) {
  .POSITION_SET_MAIN {
    /* position: relative; */
  }

  .POSITION_SET {
    /* position: absolute; */
    width: 150px;
    border: 2px solid white;
    top: 10px;
    right: 30px;
  }

  .highlight-section .badge-circle {
    bottom: 0px !important;
    width: 120px;
    height: 120px;
    /* padding: ; */
  }

  .DOTTED_CLASS {
    padding: 15px !important;
  }
}


.highlight-section .learn-btn {
  border: 1px solid #c8102e;
  color: #c8102e;
  padding: 8px 24px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.highlight-section .learn-btn:hover {
  background-color: #c8102e;
  color: white;
}

.img-group {
  position: relative;
}

.img-main {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  /* object-fit: cover; */
}

.img-overlay {
  position: absolute;
  bottom: -40px;
  left: 200px;
  width: 300px;
  border-radius: 10px;
  border: 5px solid #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {


  .img-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
  }
}

/* help center  */
.section-title {
  color: #002d62;
  font-weight: 700;
}

.subheading {
  color: #d0021b;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.visa-card {
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  height: 100%;
  border-radius: 10px;
  background-color: #fff;
  z-index: 1;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.visa-card::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #ba0c2f;
  bottom: -100%;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.visa-card:hover::before {
  bottom: 0;
}

.visa-card .content {
  position: relative;
  z-index: 1;
}

.icon_img {
  filter: brightness(0) invert(1);
}

.visa-icon {
  background-color: #ba0c2f;
  color: #fff;
  font-size: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}

.visa-card:hover .visa-icon {
  background-color: var(--light-bg-color);
  color: #ba0c2f;
  /* filter: brightness(1) invert(0); */
}

.visa-card h5,
.visa-card p,
.visa-card .read-more {
  transition: all 0.4s ease-in-out;
}

.visa-card:hover h5,
.visa-card:hover p,
.visa-card:hover .read-more {
  color: #fff !important;
}

.read-more {
  color: #ba0c2f;
  font-weight: bold;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.Main_text {
  color: var(--main-text-color);
}

/* tav nav  */
.tab-nav .nav-link {
  font-weight: 600;
  font-size: 13px;
  color: #b40020;
  border: 1px solid #b40020;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}

.tab-nav .nav-link.active {
  color: #00215E;
  border-bottom: 3px solid #b40020;
}

.feature-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.feature-list i {
  color: #b40020;
  margin-right: 10px;
}

.trusted-box {
  background-color: #b40020;
  color: #fff;
  border: 2px dashed white;
  padding: 15px 25px;
  position: absolute;
  top: 65%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 2;
}

.trusted-box img {
  width: 30px;
  border-radius: 50%;
  margin-left: 5px;
}

.custom-btn {
  border: 1px solid #b40020;
  color: #b40020;
  padding: 10px 20px;
  transition: 0.3s;
}

.custom-btn:hover {
  background-color: #b40020;
  color: #fff;
}

.img-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.img-grid>div:nth-child(1) {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .trusted-box {
    position: static;
    transform: none;
    margin-top: 15px;
  }
}


/* Individual stat item */
.custom-stat-item {
  flex: 1 1 200px;
  text-align: center;
  border-radius: 10px;
}

.custom-stat-item:hover .card {
  transform: translateY(-10px);
  transition-duration: 0.5s;
  box-shadow: 0px 0px 5px var(--main-bg-color);
}

/* Number styling */
.custom-stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
}

.custom-stat-item:hover .custom-stat-number {
  color: var(--main-bg-color);
}

.custom-stat-item:hover .custom-stat-label {
  color: var(--main-bg-color);
}

/* Label styling */
.custom-stat-label {
  font-size: 16px;
  color: #555;
  margin-top: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-stat-number {
    font-size: 28px;
  }

  .custom-stats-wrapper {
    gap: 20px;
  }
}


.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-weight: 700;
  color: #002f6c;
}

.section-header span {
  color: #d6023b;
  font-weight: 600;
  letter-spacing: 1px;
}

.info-text {
  color: #4d4d4d;
}

.card-box {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  border: none;
  border-radius: 0;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05); */
  background: none;
}

.card-box img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.card-box:hover img {
  transform: scale(1.05);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 50px;
  right: 0;
  padding: 10px 30px 10px 10px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.card-box:hover .card-content {
  background-color: #d6023b;
  color: white;
}

.card-content h5,
.card-content p {
  margin: 0;
}

.card-content .icon {
  width: 35px;
  height: 35px;
  border: 1px solid #d6023b;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

.card-box:hover .icon {
  background-color: white;
  color: #d6023b;
}

.card-overlay {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.card-box:hover .card-overlay {
  left: 0;
  right: 0;
}

.card-box .card-content {
  position: relative;
  z-index: 2;
  top: -77px;
}

/* footer  */
.Links {
  color: var(--main-bg-color);
}

.Links:hover {
  color: var(--main-text-color) !important;
  transition: 0.3s;
}

.Location {
  color: var(--main-bg-color);
}

footer h5 {
  font-weight: 600;
}

footer i {
  font-size: 1.2rem;
}

.Unique_text {
  text-shadow: 1px 2px 3px var(--main-bg-color);
  color: var(--main-text-color) !important;
}



/* learn section   */
.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  color: #0c1e35;
}

.highlight {
  color: #ff6600;
  font-weight: 700;
}

.feature-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon-box {
  /* width: 50px; */
  /* height: 50px; */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.robot-img {
  /* max-width: 100%; */
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .feature-box {
    display: flex;
    flex-direction: column;
    /* column में icon ऊपर, text नीचे */
    align-items: center;
    /* text-align: center; */
  }

  .feature-box ul {
    margin-top: 10px;
    padding-left: 0;
    /* list-style: none; optional: bullet हटाने के लिए */
  }

  .wave-section {
    padding: 40px 10px !important;
  }

}



.wave-section {
  position: relative;
  background: #f7931e;
  /* orange background */
  padding: 70px 10px;
  overflow: hidden;
}

.wave-section svg {
  position: absolute;
  left: 0;
  width: 100%;
  /* height: 80px; */
}

.wave-section svg.top {
  top: 0;
}

.wave-section svg.bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.resources-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #fff;
}

.resource-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.resource-card .card-body {
  color: #000;
  padding: 15px;
}

.resource-card .card-body p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

/* Custom Responsive Info Box */
.info-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  /* light background */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  color: #000;
  /* center width limit */
}

.info-text {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  margin: 0;
}

.info-box a,
.info-box span {
  color: #000000;
  /* White text */
  text-decoration: none;
  /* underline hatane ke liye */
}

.info-box a:hover {
  color: #00a6fb;
  /* Hover par blue ya koi bhi color */
}


@media (max-width: 576px) {
  .info-text {
    font-size: 12px;
    padding: 5px;
  }

  .lead {
    font-size: 12px !important;
  }

  .About_Font {
    font-size: 12px !important;
  }

  .Main_About {
    font-size: 18px !important;

  }
}

/* 🔹 Shapes absolute positioning inside background */
.shape {
  position: absolute;
  z-index: 2;
  animation: popUp 3s infinite ease-in-out alternate;
}

.shape.shape1 {
  top: 100px;
  right: px;
  width: 70px;
  animation-delay: 0s;
}

.shape.shape2 {
  bottom: 80px;
  left: 40px;
  width: 80px;
  animation-delay: 0.5s;
}

.shape.shape3 {
  top: 100px;
  right: 5%;
  transform: translateX(-50%);
  width: 70px;
  animation-delay: 1s;
}

.shape.shape4 {
  top: 505px;
  right: 230px;
  width: 70px;
  animation-delay: 1.5s;
}

.shape.shape5 {
  top: 90px;
  right: 25%;
  width: 70px;
  animation-delay: 1.5s;
}


/* 🔹 Bounce / Pop-up animation */
@keyframes popUp {
  0% {
    transform: scale(1) translateY(0);
  }

  50% {
    transform: scale(1.2) translateY(-10px);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

/* 🔹 Responsive Shape Adjustments */
@media(max-width: 768px) {
  .shape.shape1 {
    right: 80px;
    width: 50px;
    top: 170px;
  }

  .shape.shape2 {
    left: 20px;
    bottom: 160px;
    width: 60px;
  }

  .shape.shape3 {
    top: 300px;
    width: 50px;
    left: 30px;
  }

  .shape.shape4 {
    right: 20px;
    top: 500px;
    width: 50px;
  }

  .shape.shape5 {
    right: 20px;
    top: 300px;
    width: 5px;
  }

}


/* card  */


/* New unique card class */
.fancy-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  position: relative;
}

.fancy-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.fancy-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.fancy-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.3);
}

/* Card content with hover gradient effect */
.fancy-card-content {
  position: relative;
  padding: 25px 20px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.fancy-card-content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 95%;
  background: linear-gradient(135deg, #ee0979, #ff6a00, #ff4d4d, #ff9999);
  background-size: 300% 300%;
  animation: fancyGradientMove 6s ease infinite;
  transition: bottom 0.5s ease;
  z-index: -1;
}

.fancy-card:hover .fancy-card-content::before {
  bottom: 0;
}

@keyframes fancyGradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.fancy-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.fancy-card-text {
  font-size: 1rem;
  color: #555;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.fancy-card:hover .fancy-card-title,
.fancy-card:hover .fancy-card-text {
  color: #fff;
}

/* Gradient border effect */
.fancy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #ff6a00, #ee0979, #17ead9, #6078ea);
  background-size: 300% 300%;
  animation: fancyBorderGradient 6s ease infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.fancy-card:hover::before {
  opacity: 1;
}

@keyframes fancyBorderGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


/* sahil code  */
.BGCOLOR {
  position: relative;
  background-color: red;
  background-image: url(../img/background\ img\ \(1\).png);
  background-size: cover;
  background-repeat: no-repeat;
}

.btn-gradient {
  background: linear-gradient(90deg, rgb(159, 74, 88), blue);
  color: white !important;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  opacity: 0.9;
  color: white;
}

/* HERO RIGHT */
.MAINDIV {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 500px;
  margin: auto;
}

.circle-animate {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.ANIMATE1 {
  width: 80%;
  height: 80%;
  border: 2px solid red;
}

.ANIMATE2 {
  width: 70%;
  height: 70%;
  border: 2px solid blue;
}

.ANIMATE3 {
  width: 60%;
  height: 60%;
  border: 2px solid green;
}

.ANIMATE4IMG {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1000px;
}

.BGNEWIMG {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  filter: blur(3px);
  z-index: -2;
}

/* ICONS */
.icon-container {
  position: absolute;
  text-align: center;
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.icon-container img {
  width: 65px;
  height: auto;
  margin-bottom: -10px;
  z-index: 1;
}

.icon-name {
  font-size: 0.8rem;
  font-weight: 500;
  background: white;
  padding: 10px 10px 3px 10px;
  border-radius: 4px;
  margin-top: 2px;
}

.icon-container.top-left {
  top: 20%;
  left: 8%;
}

.icon-container.bottom-right {
  bottom: 30%;
  right: 5%;
}

.icon-container.top-right {
  top: 13%;
  right: 12%;
}

.icon-container.bottom-left {
  bottom: 30%;
  left: 1%;
}

/* TABS */
.nav-pills {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.nav-pills .nav-item {
  flex: 1;
  text-align: center;
}

.nav-pills .nav-link {
  border-radius: 0;
  color: white;
  padding: 1rem 0.5rem;
  font-weight: 600;
}

@media only screen and (max-width:767px) {
  .nav-pills .nav-link {
    padding: 5px;
    font-size: 12px;

  }

}

.SECOND_SECTION {
  margin-top: -33px;
}

.CONTACT_PAGE:hover {
  color: #4a2e6f !important;
}

.gradient-text {
  background: linear-gradient(90deg, #f42b35, #007bff);
  /* Change colors as needed */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* for Firefox */
}

/* RESPONSIVE */
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .icon-container {
    width: 60px;
  }

  .icon-container img {
    width: 42px;
  }

  .icon-name {
    font-size: 0.7rem;
    padding: 10px 10px 6px 10px;
  }

  .BGNEWIMG {
    display: none;
    /* hide bg image on mobile */
  }
}



/* contact page css  */


@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.contact-container {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ff006e;
  text-align: center;
  margin-bottom: 25px;
}

.form-control {
  border-radius: 12px;
  border: 2px solid #ccc;
  transition: 0.3s;
}

.form-control:focus {
  border-color: #ff006e;
  box-shadow: 0px 0px 8px rgba(255, 0, 110, 0.5);
}

.btn-custom {
  background: #ff006e;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 25px;
  transition: 0.3s;
}

.btn-custom:hover {
  background: #ffb703;
  color: #000;
  transform: scale(1.05);
}

.info-box {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.info-box:hover {
  background: #8ecae6;
  color: white;
  transform: translateY(-5px);
}

.info-box i {
  font-size: 1.5rem;
  color: #ff006e;
  margin-right: 10px;
}

.cta-section {
  position: relative;
  background: url("../img/7gg7_a0mw_210519.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 30, 0.7);
  /* dark overlay */
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  max-width: 800px;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
}

.cta-title span {
  color: #4cc9f0;
  /* accent color inspired from logo */
}

.cta-subtitle {
  font-size: 1.3rem;
  margin: 15px 0 30px;
  color: #d1e4ff;
}

.cta-buttons .btn {
  display: inline-block;
  margin: 8px;
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-apply {
  background: #4cc9f0;
  color: #0c0c0c;
}

.btn-apply:hover {
  background: #3a9ed1;
  color: #fff;
}

.btn-learn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-learn:hover {
  background: #fff;
  color: #0c0c0c;
}

.values-section {
  background: linear-gradient(rgba(20, 20, 50, 0.8), rgba(20, 20, 50, 0.9)),
    url('https://img.freepik.com/free-vector/stem-logo-with-education-learning-icon-elements_1308-165740.jpg?w=1800&t=st=1724941145~exp=1724944745~hmac=0a17f6f59a3c75a295b8c6dc21b3d44944b774b1cc6bb41d6f1e1d96e2b6a177') center/cover no-repeat fixed;
  color: white;
}

.value-box {
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.value-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.fun-activities {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  font-family: 'Poppins', sans-serif;
}

.activity-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.activity-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.drawing {
  background: #ffb6c1;
  color: #fff;
}

.quiz {
  background: #6a5acd;
  color: #fff;
}

.games {
  background: #ffa500;
  color: #fff;
}

.sports {
  background: #32cd32;
  color: #fff;
}

.activity-card .icon {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}



/* footer  */
.footer_wrapper {
  width: 100%;
  height: auto;
  background: linear-gradient(90deg, #fae7d6, #dcf9f3, #dcf9f3, #fae7d6);
 
}

@keyframes footerScroll {
  0% {
    background-position: 300% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.footer_link {
  color: black;
}

.footer_text {
  color: black;
}

.footer_location {
  color: black;
}

.logo-slider {
  background-color: #ffffff;
}

.Technologies {
  background-color: #ffffff;

}

.fq-set {
  background-color: #f0eef8 !important;

}

/* plan  */
.stemoid-plans-section {
  padding: 10px 0;
  background: #ffffff !important;

}

.stemoid-plan-card {
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
  min-height: 480px;
}

.stemoid-plan-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.stemoid-plan-header {
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.stemoid-robotics-bg {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.stemoid-coding-bg {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.stemoid-premium-bg {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

.stemoid-plan-title {
  font-size: 1.8rem;
  font-weight: 700;
}

.stemoid-plan-body {
  padding: 25px;
  font-size: 0.95rem;
}

.stemoid-plan-body ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.stemoid-read-more {
  display: none;
  margin-top: 10px;
}

.stemoid-read-btn {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
}

.stemoid-read-btn:hover {
  background: #b02a37;
}

.stemoid-best-for {
  font-weight: 600;
  margin-top: 12px;
  color: #333;
}

/* counter  */
.counter-badge {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 2px 2px;
  color: #fff;
  margin-bottom: 8px;
}

.counter-block {
  border-radius: 10px !important;
}

.counter-blue {
  background: #2592e9;
}

.counter-pink {
  background: #f15aab;
}

.counter-lightblue {
  background: #43c0fa;
}

.counter-green {
  background: #28a745;
}

.counter-label {
  font-size: 1rem;
  color: #5d6169;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
  padding-bottom: 6px;
}

@media only screen and (max-width:767px) {
  .counter-label {
    font-size: 13px;
  }
}

/* home page why  */

.table-container {
  font-family: 'Poppins', sans-serif;
  background: url('../pic/bgsetimg2.jpeg') ;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  padding: 60px 15px;
  color: #fff;
  /* white text for better contrast */
  position: relative;
  z-index: 1;

}

/* Overlay */
.table-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.45); ✅ light dark transparent layer */
  /* z-index: -1; */
}


.table-box {
  background: rgba(255, 255, 255, 0.9);
  /* ✅ lighter white transparency */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}


.table-box h1 {
  font-weight: 700;
  color: #111;
}

.table-box h3 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.table-box ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #000;
}

.table-box ul li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .table-box {
    padding: 20px;
  }

  .table-box h1 {
    font-size: 1.6rem;
  }

  .table-box h3 {
    font-size: 1.2rem;
  }
}



/* logos section css  */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Uniform logo box */
.logo-box {
  width: 160px;
  aspect-ratio: 3 / 2;
  /* 👈 fixed ratio (change if needed like 16/9, 4/3 etc.) */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  /* ensures logo stays inside box */
  transition: transform 0.5s ease;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* 👈 maintains aspect ratio of logos */
  transition: transform 0.5s ease;
}

/* school page  */


* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  background: var(--bg2);
  color: var(--text2);
  font-family: Poppins, system-ui, Segoe UI, Roboto, Arial, Helvetica, sans-serif
}

.wrap-container {
  max-width: 100%;
  background: var(--panel2);
}


.main-heading {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: .4px
}

.sub-heading {
  margin-top: 4px;
  font-size: clamp(13px, 1.8vw, 16px);
  color: var(--muted2)
}

.badge-pill {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px
}

/* Table */
.table-section {
  border: 1px solid var(--line2);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
  padding: 10px 10px;
}

.scroll-box {
  overflow: auto
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 760px
}

.compare-table thead th {
  background: #1b2035;
  color: #bfc8ea;
  font-weight: 600;
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line2);
  position: sticky;
  top: 0;
  z-index: 1
}

.compare-table thead th.sticky-col,
.compare-table tbody td.sticky-col {
  position: sticky;
  left: 0;
  background: #1b2035;
  z-index: 2
}

.compare-table tbody td.sticky-col {
  background: var(--panel2);
  font-weight: 600;
  color: #d7def7
}

.compare-table tbody td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--line2);
  color: white;
  vertical-align: middle;
  font-size: 13px
}

.compare-table tbody tr:nth-child(2n) td {
  background: rgba(255, 255, 255, 0.01)
}

.plan-title {
  font-weight: 700;
  color: #fff;
  font-size: 15px
}

.tick {
  color: var(--ok2);
  font-weight: 700
}

/* Footer note */
.info-note {
  font-size: 11px;
  color: var(--muted2);
  margin-top: 6px
}

.bottom-foot {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  color: var(--muted2);
  font-size: 11px
}

/* Mobile tweaks */
@media (max-width:900px) {

  .compare-table thead th.sticky-col,
  .compare-table tbody td.sticky-col {
    position: static
  }

  .compare-table {
    min-width: 680px
  }
}

@media (max-width:540px) {
  .top-header {
    padding: 20px 10px 8px
  }

  .main-heading {
    font-size: clamp(18px, 5.5vw, 26px)
  }

  .sub-heading {
    font-size: 13px
  }

  .badge-pill {
    padding: 3px 9px;
    font-size: 11px
  }

  .compare-table thead th {
    padding: 8px 10px
  }

  .compare-table tbody td {
    padding: 7px 10px
  }
}
.tbody-bg {
  background-color: #001f4d !important;
}

/* Unique classes for CTA */
.quote-cta {
  --q-grad: linear-gradient(90deg, #ff6a88 0%, #ff99cc 25%, #9ba6ff 60%, #87d7ff 100%);
  background: var(--q-grad);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .12) inset;
}

.quote-cta__wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}

.quote-cta__copy {
  max-width: 780px
}

.quote-cta__heading {
  margin: 0 0 6px 0;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.2;
  font-weight: 800;
  color: #0a1630;
  letter-spacing: .3px;
}

.quote-cta__sub {
  margin: 0;
  color: #0a1630;
  opacity: .85;
  font-size: clamp(12px, 1.5vw, 15px);
}

.quote-cta__action {
  display: inline-block;
  background: #ff6a3d;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .15), 0 8px 24px rgba(255, 106, 61, .35);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.quote-cta__action:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, .15), 0 10px 28px rgba(255, 106, 61, .45)
}

.quote-cta__action:active {
  transform: translateY(0)
}

@media (max-width:720px) {
  .quote-cta__wrap {
    flex-direction: column;
    align-items: flex-start
  }

  .quote-cta__action {
    align-self: flex-start;
    margin-top: 10px
  }
}



/* Section */
.enroll-hero {
  width: 100%;
  background: #111;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 40px 24px;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

.enroll-hero__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 22px;
}

/* Left */
.enroll-hero__title {
  margin: 0 0 8px 0;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: .2px;
}

.enroll-hero__tag {
  margin: 0 0 16px 0;
  color: var(--muted);
  font-size: clamp(12px, 1.6vw, 16px);
}

/* Bullet + line list */
.enroll-hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: grid;
  gap: 10px;
}

.enroll-hero__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.enroll-hero__row::before {
  content: "•";
  color: #fff;
  font-size: 20px;
  line-height: 1;
  margin-right: 6px;
}

.enroll-hero__label {
  white-space: nowrap;
}

.enroll-hero__line {
  flex: 1;
  height: 2px;
  background: var(--line);
  opacity: .9;
  transform: translateY(1px);
}

.enroll-hero__line--long {
  flex: 1.6;
}

/* Actions */
.enroll-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.enroll-hero__link {
  color: #eaeaea;
  text-decoration: none;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 2px;
}

.enroll-hero__link:hover {
  opacity: .9;
}

.enroll-hero__btn {
  display: inline-block;
  background: var(--btn);
  color: #0a0a0a;
  font-weight: 800;
  border: 2px solid var(--btn-border);
  border-radius: 6px;
  padding: 12px 20px;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .35);
}

.enroll-hero__btn:hover {
  transform: translateY(-1px);
}

.enroll-hero__btn:active {
  transform: translateY(0);
}

/* Right artwork */
.enroll-hero__art {
  text-align: right;
}

.enroll-hero__img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .4));
}

/* Responsive */
@media (max-width:900px) {
  .enroll-hero__wrap {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .enroll-hero__art {
    text-align: center;
  }

  .enroll-hero__actions {
    justify-content: flex-start;
  }
}

.showcase-wrapper {
  padding: 50px 15px;
}

.showcase-box {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  background: #fff;
  transform-style: preserve-3d;
}

.showcase-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.showcase-box:hover {
  transform: translateY(-10px) scale(1.05) rotateX(5deg) rotateY(5deg);
}

.showcase-box:hover img {
  transform: scale(1.1);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Adjust overlapping images */
.custom-back-img {
  width: 80%;
  /* Adjust size as needed */
  max-width: 400px;
  z-index: 1;
  position: relative;
}

.custom-front-img {
  width: 70%;
  /* Adjust size as needed */
  max-width: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Make responsive for smaller screens */
@media (max-width: 768px) {
  .custom-back-img {
    width: 100%;
    max-width: 300px;
  }

  .custom-front-img {
    width: 80%;
    max-width: 250px;
  }
}


.info-card {
  background: #ffffff;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.info-card img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.info-body {
  padding: 25px;
}

.info-body h3 {
  font-weight: 700;
  color: #111;
}

.info-body h4 {
  font-weight: 600;
  color: #1a237e;
}

.info-body ul {
  padding-left: 20px;
}




.hero-heading {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #0c0c0c;
  line-height: 1.15;
}

.hero-text {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  margin: 15px 0 24px;
  color: #333;
  max-width: 48ch;
}

.hero-link {
  background: #ff3b2e;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: .25s;
  display: inline-block;
}

.hero-link:hover {
  background: #e02a1e;
  color: #fff;
}

/* Right visuals */
.visuals-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main image wrapper */
.visuals-main {
  width: 100%;
  max-width: 520px;
  overflow: hidden;

}

.visuals-main img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Small image */
.visuals-mini {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 42%;

  padding: 5px;
}

.visuals-mini img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .visuals-box {
    margin-top: 28px;
  }

  .visuals-mini {
    bottom: -30px;
    left: -12px;
    width: 55%;
    padding: 4px;
  }

  .visuals-main {
    max-width: 100%;
  }
}

.info-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 50px 0 20px;
  min-height: 350px;
}

/* Headline */
.info-headline {
  font-size: 1.4rem;
  font-weight: 500;
  color: #212125;
  margin-bottom: 35px;
}

.info-headline strong {
  background: #f15a29;
  color: #fff;
  padding: 4px 16px;
  border-radius: 6px;
  font-weight: 700;
  margin-right: 8px;
  display: inline-block;
}



/* Logos */
.info-logos {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}

.info-logos img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* Abstract right image */
.info-img-box {
  position: absolute;
  bottom: -70px;
  right: 0;
  width: 500px;
  max-width: 50%;
}

.info-img-box img {
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .info-section {
    padding: 40px 15px;
    text-align: center;
  }

  .info-img-box {
    position: relative;
    margin: 30px auto 0;
    max-width: 60%;
  }

  .info-counters {
    justify-content: center;
  }

  .info-logos {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .info-headline {
    font-size: 1.1rem;
  }

  .counter-block {
    min-width: 100px;
  }
}



/* 2 */
.fin-section {
  background: rgba(255, 253, 253, 0.08);
  border-radius: 20px;
  margin: 30px auto;
  /* smaller margin */
  padding: 20px;
  /* reduced padding */
  max-width: 1150px;
  backdrop-filter: blur(8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fin-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* Illustration with 3D hover */
.fin-illustration img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.fin-illustration img:hover {
  transform: rotateY(15deg) rotateX(10deg) scale(1.05);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

/* Colorful Steps */
.fin-step {
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding: 16px 20px;
  /* reduced padding */
  color: #fff;
  position: relative;
  overflow: hidden;
  background-size: 200% 200%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform .4s ease, box-shadow .4s ease, background-position 1.2s ease;
  cursor: pointer;
  height: 100%;
}

.fin-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity .4s;
}

.fin-step:hover::before {
  opacity: 1;
}

.fin-step:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 255, 255, 0.2);
  background-position: right center;
}

.fin-icon-bg {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin-right: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform .4s ease, box-shadow .4s ease;
}

.fin-step:hover .fin-icon-bg {
  transform: rotate(-10deg) scale(1.15);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 0 15px #fff;
}

.fin-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  transition: color .3s ease;
}

.fin-step-desc {
  font-size: .9rem;
  opacity: .95;
  margin: 2px 0 0;
}

.fin-step:hover .fin-step-title {
  color: #ffe082;
}

/* Animated gradient backgrounds */
.step1 {
  background: linear-gradient(135deg, #6a11cb, #2575fc, #6a11cb);
}

.step2 {
  background: linear-gradient(135deg, #00b09b, #96c93d, #00b09b);
}

.step3 {
  background: linear-gradient(135deg, #ff512f, #dd2476, #ff512f);
}

.step4 {
  background: linear-gradient(135deg, #fc4a1a, #f7b733, #fc4a1a);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fin-section {
    padding: 15px;
    margin: 15px;
  }

  .fin-title {
    font-size: 1.3rem;
  }

  .fin-step {
    padding: 14px 16px;
  }

  .fin-icon-bg {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-right: 12px;
  }
}

.roadmap-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  padding: 60px 20px;
}

.roadmap-step {
  text-align: left;
  margin-bottom: 40px;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.step-heading {
  background: #004aad;
  color: #fff;
  font-weight: 600;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.step-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-points li {
  font-size: 0.95rem;
  color: #333;
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.step-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #004aad;
  font-weight: bold;
}

/* Center image + overlay */
.center-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-image {
  max-width: 250px;
  width: 100%;
}

.overlay-image {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: auto;
}

.center-img {
  position: relative;
  text-align: center;
}

.main-image {
  width: 100%;
  height: auto;
  max-width: 285px;
}

.overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 200px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }

  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .main-image {
    max-width: 300px;
  }

  .overlay-image {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .main-image {
    max-width: 220px;
  }

  .overlay-image {
    max-width: 120px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .roadmap-step {
    text-align: center;
  }

  .step-points li {
    text-align: left;
    display: inline-block;
  }

  .overlay-image {
    width: 150px;
    top: 55%;
    left: 50%;
  }


}

.bg-set-kit {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, #fae7d6, #dcf9f3, #ffa9f9, #dcf9f3, #fae7d6);
  background-size: 300% 100%;
  animation: footerScroll 15s linear infinite;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 40px 10px; */
}

.custom-card {
  background: linear-gradient(145deg, #ffffff, #f1f1f1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

.custom-card img {
  border-bottom: 5px solid #2575fc;
  transition: transform 0.4s ease;
  border-radius: 16px;
}

.custom-card:hover {
  transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.custom-card:hover img {
  transform: scale(1.08) rotate(-2deg);
}

.custom-card h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 20px 0 12px;
  color: #2575fc;
  text-transform: capitalize;
}

.custom-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 25px;
}

.btn-custom {
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 30px;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  font-size: 0.95rem;
  box-shadow: 0 6px 15px rgba(37, 117, 252, 0.3);
}

.btn-custom:hover {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(106, 17, 203, 0.4);
}

/* Animation on load */
.animate-fade {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.animate-fade:nth-child(1) {
  animation-delay: 0.3s;
}

.animate-fade:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* student button  */
/* CTA Section */
.cta-section {
  position: relative;
  background: url('https://img.freepik.com/free-vector/stem-logo-with-education-learning-icon-elements_1308-165740.jpg?w=1800&t=st=1724941145~exp=1724944745~hmac=0a17f6f59a3c75a295b8c6dc21b3d44944b774b1cc6bb41d6f1e1d96e2b6a177') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.8), rgba(0, 180, 219, 0.6));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 800px;
}

.cta-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.cta-title span {
  color: #4cc9f0;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin: 20px 0 35px;
  color: #d1e4ff;
}

.cta-buttons .btn {
  margin: 10px;
  padding: 14px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s ease;
}

.btn-apply {
  background: linear-gradient(135deg, #4cc9f0, #4361ee);
  color: #fff;
  border: none;
}

.btn-apply:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #4361ee, #4cc9f0);
}

.btn-learn {
  background: transparent;
  border: 2px solid #4cc9f0;
  color: #4cc9f0;
}

.btn-learn:hover {
  background: #4cc9f0;
  color: #fff;
}

/* Section */
.section-white {
  background: #fff;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #6c757d;
  margin-bottom: 40px;
}

/* Value Box Cards */
.value-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(76, 201, 240, 0.2);
}

.value-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 180, 219, 0.3);
  border-color: #4cc9f0;
}

.value-box i {
  font-size: 3rem;
  margin-bottom: 15px;
}

.value-box h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Modal iframe */
#videoFrame {
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2.2rem;
  }

  #videoFrame {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.8rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  #videoFrame {
    height: 220px;
  }
}

.gallery-section {
  background: linear-gradient(135deg, #facc15, #7275e6, #c119d1);
  color: #fff;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Login Button */
.login-btn {
  /* margin: 50px; */
  /* padding: 12px 25px; */
  /* background: #007bff; */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Login Form (Hidden by default) */
.login-form {
  display: none;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  width: 320px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  /* font-size: 20px; */
  color: #333;
  cursor: pointer;
}

.login-form h2 {
  text-align: center;
  margin-bottom: 15px;
}

.login-form input {
  width: 100%;
  padding: 10px 0px 10px 0px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}


.login-form button {
  width: 100%;
  padding: 10px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.login-form button:hover {
  background: #0056b3;
}

/* curriculum page   */
/* Optional gradient if you ever need it */
.gradient-bg {
  background: linear-gradient(135deg, #6b46c1, #5a40b3);
}

/* Card hover effect */
.chapter-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.chapter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
}

/* Locked overlay */
.locked-wrapper {
  position: relative;
}

.locked-overlay {
  position: absolute;
  inset: 0;
  background: rgba(243, 244, 246, 0.85);
  /* light gray */
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Locked buttons look disabled but clickable */
.btn-locked {
  background-color: #e9ecef;
  color: #6c757d;
  border: 1px solid #dee2e6;
  cursor: pointer;
  /* we do want clicks to open the form */
}

.btn-locked:hover {
  background-color: #e9ecef;
  color: #6c757d;
}

/* Round primary actions similar to Tailwind rounded-full */
.btn-pill {
  border-radius: 999px;
}

/* stem kit  */
/* Wrapper */
.client-carousel-left,
.client-carousel-right {
  padding: 15px 0;
  background: #f9f9f9;
}

/* Headings */
.client-heading {
  text-align: center;
}

.client-subheading {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  display: block;
  font-weight: 600;
  color: #2e9ca1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.client-heading h2 {
  font-size: 28px;
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 15px;
}

/* Testimonial box */
.client-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .03);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .08);
  transition: transform 0.3s ease;
  /* min-height: 260px; */
}

.client-testimonial:hover {
  transform: translateY(-8px);
}

/* Image */
.client-img {
  width: 90px !important;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  /* ✅ image crop होकर circle में fit होगी */
  margin: 0 auto 15px auto;
  display: block;
}

/* Name */
.client-name {
  font-size: 17px;
  font-weight: 600;
  margin: 5px 0;
}

/* Text */
.client-text {
  font-size: 15px;
  color: #555;
  margin: 10px 0;
  line-height: 1.5;
}

/* Position */
.client-position {
  color: #adadad;
  font-size: 14px;
}

/* Carousel item spacing */
.carousel-left .item,
.carousel-right-custom .item {
  padding: 15px;
}

/* Hide dots and nav */
.owl-dots,
.owl-nav {
  display: none !important;
}

.KITIMG {
  width: 100%;
}

/* about animation popup  */
/* 3D Modal Animation */
.modal-dialog {
  transform: perspective(1200px) rotateX(-20deg);
  opacity: 0;
  transition: all 0.5s ease;
}

.modal.show .modal-dialog {
  transform: perspective(1200px) rotateX(0deg);
  opacity: 1;
}

.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  border-bottom: none;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  border-radius: 20px 20px 0 0;
}

.modal-footer {
  border-top: none;
}

.btn-custom {
  background: #2575fc;
  color: #fff;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: #6a11cb;
  color: #fff;
  transform: scale(1.05);
}

/* Hero Section */


.hero h1 {
  font-weight: 700;
  font-size: 2.8rem;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
}

.btn-custom {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-custom:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Font for headings */
h1,
h2,
h3 {
  font-family: 'Glacial Indifference', sans-serif !important;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Features Cards (Upgraded) */
.features {
  background: #f9f9f9;
}

.features .card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.features .card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #6a11cb, #2575fc, #ff512f, #dd2476);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.features .card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.features .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.features .card:hover .icon {
  transform: rotate(10deg) scale(1.1);
}

.icon1 {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.icon2 {
  background: linear-gradient(135deg, #ff512f, #dd2476);
}

.icon3 {
  background: linear-gradient(135deg, #43cea2, #185a9d);
}

.icon4 {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

/* Social Proof Section */
.social-proof {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 70px 0;
}

.proof-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 30px 20px;
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #6a11cb, #2575fc, #ff512f, #dd2476);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.proof-card:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Icon circles upgrade */
.icon-circle,
.video-box img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 15px;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.proof-card:hover .icon-circle {
  transform: rotate(10deg) scale(1.1);
}

.video-box img {
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.proof-card:hover .video-box img {
  transform: scale(1.1) rotate(-5deg);
}

/* Text styling */
.proof-card h5 {
  font-weight: 700;
  color: #222;
  margin-top: 10px;
}

.proof-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Gradient backgrounds for icons */
.bg-gradient-pink {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.bg-gradient-blue {
  background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.bg-gradient-green {
  background: linear-gradient(135deg, #11998e, #38ef7d);
}

/* CTA Buttons */
.cta-btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  color: #fff !important;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.demo {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
}

.visit {
  background: linear-gradient(135deg, #ff512f, #dd2476);
}

.proposal {
  background: linear-gradient(135deg, #43cea2, #185a9d);
}

.join {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #000 !important;
}

@media (max-width: 991px) {
  .navbar-nav .nav-link::after {
    left: 0;
    transform: none;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 100%;
  }
}





.tab-nav {
  border-bottom: 2px solid #ddd;
}

.tab-nav .nav-link {
  color: #0c1a4b;
  font-weight: 600;
  padding: 10px 15px;
  position: relative;
  transition: color 0.3s, transform 0.2s;
  cursor: pointer;
}

/* Hover effect */
.tab-nav .nav-link:hover {
  color: #dc3545;
}

.tab-nav .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background-color: #dc3545;
}

/* Active effect */
.tab-nav .nav-link.active {
  color: #dc3545;
}

.tab-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background-color: #dc3545;
}

/* Image cards */
.card-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.card-box img {
  transition: transform 0.3s ease;
}

.card-box:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.card-box:hover .card-overlay {
  opacity: 1;
}

/* Tab content animation */
.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out;

}


.tab-pane p {

  font-weight: 400;
  padding: 0px 10px;

}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 30px;
  width: 60px;
  height: 60px;
  /* background: #25d366; */
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0px 4px 12px rgba(0,0,0,0.2); */
  z-index: 9999;
  animation: zoomInOut 1.5s infinite ease-in-out;
  transition: transform 0.3s;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Zoom In-Out Animation */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-float img {
    width: 28px;
    height: 28px;
  }
}

@media only screen and (max-width:767px) {

  .CONTACT_PAGE {
    font-size: 12px !important;
  }
}

.ABOUT_BTN {
  font-size: 10px;
  text-decoration: underline !important;
  padding: 0px !important;
}

.btn {
  margin: auto !important;
}

.button-29 {
  display: inline-block;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  background: linear-gradient(135deg, #5e17eb, #111);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  transition: all 0.3s ease;
}

.button-29:hover {
  transform: scale(1.07);
  background: linear-gradient(135deg, #111, #5e17eb);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
  color: #fff;
}

/* Responsive font scaling */
@media (max-width: 768px) {
  .button-29 {
    font-size: 16px;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .button-29 {
    font-size: 15px;
    padding: 10px 24px;
  }
}


/* Popup overlay */
.unique-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  animation: uniqueFadeIn 0.5s ease-in-out;
}

/* Popup box */
.unique-popup-box {
  position: relative;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 400px;
  text-align: center;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
}

/* Animation */
.unique-animate-popup {
  animation: uniqueZoomIn 0.5s ease;
}

@keyframes uniqueZoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes uniqueFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Close Button */
.unique-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

/* Heading */
.unique-popup-title {
  font-size: 22px;
  margin-bottom: 10px;
}

.unique-popup-title span {
  color: #ffdd57;
}

.unique-popup-subtitle {
  font-size: 14px;
  margin-bottom: 20px;
}

/* Input Styling */
.unique-popup-input {
  border-radius: 8px;
  border: none;
  padding: 12px;
}

/* Button */
.unique-btn-submit {
  background: #ffdd57 !important;
  color: #333;
  font-weight: bold;
  border-radius: 8px;
  padding: 12px;
  border: none;
  transition: 0.3s;
}

.unique-btn-submit:hover {
  background: #ffcc00;
  transform: scale(1.05);
}


.about-section {
  padding: 30px 0;
  background-color: #ffffff !important;
}

.about-heading {
  color: #7c3aed;
  font-weight: 700;
  font-size: 20px;
}

.about-title {
  font-weight: 700;
  font-size: 28px;
  margin-top: 10px;
}

.about-content {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 15px;
  font-weight: 400;
}

.read-more-btn {
  background: #dc3545;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
}

.read-more-btn:hover {
  background: #a71d2a;
  color: #fff;
}

#moreText {
  display: none;
  margin-top: 15px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Alumni Section */
.alumni-section {
  margin-top: 40px;
}

.alumni-heading {
  font-size: 22px;
  font-weight: 700;
}

.alumni-heading span {
  color: #7c3aed;
}

.alumni-quote {
  font-style: italic;
  color: #555;
  margin-bottom: 30px;
}

.alumni-card {
  border: none;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  color: #000000;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

  perspective: 1000px;
}

.alumni-card:hover {
  transform: rotateY(10deg) rotateX(10deg) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.alumni-card img {
  width: 100%;
  max-width: 220px;
  border-radius: 12px;
  margin-bottom: 15px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); */
}

.alumni-text {
  font-size: 15px;
}

@media (max-width: 991px) {
  .about-title {
    font-size: 24px;
  }
}

.counter-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 10px 10px 10px;
  background: #ffffff;
}

.counter-box {
  text-align: center;
  margin: 20px;
  flex: 1 1 200px;
}

.counter-icon {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
}

.counter-number {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

.counter-title {
  font-size: 16px;
  color: #666;
}

.tech-icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 50%;
  background: #f7f9fd;
  margin-bottom: 8px;
  box-shadow: 0 1px 7px #ebe5fc52;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.tech-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  color: #222;
  font-weight: 500;
  text-align: center;
}



/* Hover Effects */
.col {
  transition: transform 0.4s ease; /* Smooth hover animation */
}

.tech-icon {
  transition: transform 0.4s ease; /* Icon smooth scaling */
}

.col:hover {
  transform: translateY(-8px);
}

.col:hover .tech-icon {
  transform: scale(0.9);
}


.col:hover .tech-label {
  color: #6a11cb;
  /* nice highlight color */
}

.faq-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 1rem;
  border-radius: 1rem;
  flex-wrap: wrap;
}

.faq-col {
  flex: 1 1 360px;
  min-width: 260px;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: #583187;
  font-size: 1rem;
  background: #fff;
}

.faq-accordion .accordion-button .bi {
  color: #7d4bf9;
  font-size: 1.25rem;
}

.faq-accordion .accordion-body {
  font-size: 0.97rem;
}

.read-more-btn {
  margin-top: 24px;
  font-weight: 600;
  font-family: inherit;
  background: linear-gradient(90deg, #8552d9 0%, #583187 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
  font-size: 1.07rem;
  box-shadow: 0 2px 9px #c5b3ee33;
  transition: background 0.2s, box-shadow 0.2s;
}

.read-more-btn:hover {
  background: linear-gradient(90deg, #583187 0%, #8552d9 100%);
  color: #fff;
  box-shadow: 0 3px 16px #8552d933;
}

.faq-img-col {
  flex: 1 1 350px;
  min-width: 220px;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.faq-img-col img {
  width: 100%;
  max-width: 335px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media (max-width: 950px) {
  .faq-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .faq-col,
  .faq-img-col {
    max-width: 540px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .faq-row {
    padding: 1.5rem 2vw;
  }

  .faq-img-col img {
    max-width: 225px;
  }
}




/* school  avi */
.tools3d {
  padding: 50px 20px;
  text-align: center;
}

.tools3d__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #0d1730;
  margin-bottom: 8px;
}

.tools3d__sub {
  color: #63708f;
  margin-bottom: 32px;
}

.tcard {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  height: 100%;
  box-shadow:
    0 1px 0 #e9eef7 inset,
    0 10px 20px rgba(13, 23, 48, .06),
    0 6px 0 rgba(13, 23, 48, .04);
  border: 1px solid #edf2fb;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(13, 23, 48, .15);
}

.tcard__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .08));
}

.tcard__name {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #0d1730;
}

.tcard__desc {
  font-size: 13px;
  color: #6a768f;
  margin: 0;
}

.image-stack {
  position: relative;
  width: 380px;
  min-height: 250px;
  max-width: 100%;
}

.image-stack .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  border-radius: 28px;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(60, 0, 90, 0.10);
}

.image-stack .fg-img {
  position: relative;
  left: 54px;
  top: 38px;
  width: 90%;
  border-radius: 28px;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(60, 0, 90, 0.18);
}

@media (max-width: 576px) {
  .image-stack {
    width: 94vw;
    min-height: 120px;
  }

  .image-stack .bg-img {
    width: 64vw;
    border-radius: 15px;
  }

  .image-stack .fg-img {
    left: 16px;
    top: 12px;
    width: 77vw;
    border-radius: 15px;
  }
}

.edu-section {
  text-align: center;
  padding: 60px 0px;
  background-color: w;
}

.edu-title {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #222;
}

.edu-desc {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto 30px;
}

.edu-img-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: -60px;
  /* overlap with orange box */
}

.edu-img {
  width: 90%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 3px 22px #b8852d24;
  border: 12px solid #ff4d00;
  max-width: 100%;
}

.edu-orange {
  background-color: #ff4d00;
  width: 100%;
  padding: 80px 20px 30px;
  box-shadow: 0 3px 24px #fb9a3538;
  position: relative;
  z-index: 1;
}

.edu-orange .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.edu-subtitle {
  color: #fff !important;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 14px #f86222cc;
}

.edu-subdesc {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .edu-title {
    font-size: 1.3rem;
  }

  .edu-desc {
    font-size: 0.95rem;
  }

  .edu-subtitle {
    font-size: 1.1rem;
  }

  .edu-subdesc {
    font-size: 0.95rem;
  }

  .edu-orange {
    padding: 70px 15px 25px;
  }
  .edu-img {
    width: 100%;
  }
}





.service-section {
  padding: 70px 15px;
}

.service-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}



.service-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 20px;
  border-radius: 50%;
  /* padding: 15px; */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-icon img {
  width: 70%;
  height: auto;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.service-desc {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 12px;
}

.service-extra {
  display: none;
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
}



/* Responsive */
@media (max-width: 768px) {
  .service-box {
    margin-bottom: 25px;
  }
}


.footer_location a {
  color: #000;
  /* Black by default */
  text-decoration: none;
  /* underline hata diya */
  transition: color 0.3s ease;
  /* smooth hover */
}

.footer_location a:hover {
  color: #007bff;
  /* Bootstrap Blue */
}



/* stem grade 3-4  */
/* Top Banner */
.top-banner {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  perspective: 1200px;
}

.top-banner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
}

.top-banner p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.top-banner .cta-btn {
  background: #fff;
  color: #2575fc;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.top-banner .cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Section */
.content-section {
  padding: 80px 0;
}

.content-section:nth-child(even) {
  background: #f9f9f9;
}

.content-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  color: #222;
}

.content-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #2575fc;
  display: block;
  margin-top: 8px;
  border-radius: 2px;
}

.content-section p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.content-section ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-weight: 500;
}

.content-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2575fc;
  font-weight: 700;
}

/* Image 3D Hover Effect */
.content-section img {
  max-width: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transform-style: preserve-3d;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.content-section img:hover {
  transform: rotateY(10deg) rotateX(5deg) translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Glass-style Cards for Testimonials */
.review-section {
  background: linear-gradient(135deg, #2575fc 0%, #6a11cb 100%);
  color: #fff;
  padding: 100px 0;
}

.review-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.review-card h6 {
  color: #ffe97f;
  margin-top: 15px;
  font-weight: 600;
}


/* Responsive */
@media (max-width: 768px) {
  .top-banner h1 {
    font-size: 2.2rem;
  }

  .content-section h2 {
    font-size: 2rem;
  }
}


/* stem k 6-9 */
/* Top Banner for STEM Grades 6–9 */
.stem-grade-banner {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  perspective: 1200px;
}

.stem-grade-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.stem-grade-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.stem-grade-banner .cta-btn {
  background: #fff;
  color: #2575fc;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}


/* STEM Grade Sections */
.stem-grade-section {
  padding: 60px 0;
}

.stem-grade-section:nth-child(even) {
  background: #f9f9f9;
}

.stem-grade-section h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  color: #222;
}

.stem-grade-section h2::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #2575fc;
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}

.stem-grade-section p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.stem-grade-section ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
  font-weight: 500;
}

.stem-grade-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2575fc;
  font-weight: 700;
}

/* Image 3D Hover Effect */
.stem-grade-section img {
  max-width: 100%;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform-style: preserve-3d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* Responsive */
@media (max-width: 768px) {
  .stem-grade-banner h1 {
    font-size: 2rem;
  }

  .stem-grade-section h2 {
    font-size: 1.7rem;
  }
}


/* terms and condition  */
.bg-tc-set {
  background-color: white;
}

.page-wrap {
  max-width: 1100px;
  margin: 40px auto;
  padding: 28px;
}

/* Header */
.hero {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px
}

.hero-left h1 {
  font-size: 28px;
  margin: 0 0 6px;
  color: var(--accent);
  font-weight: 800
}

.hero-left p {
  margin: 0 0 8px;
  color: #334155
}

.hero-actions .btn {
  margin-left: 8px
}

/* 3D Card container */
.terms-3d {
  perspective: 1200px;
}

.card-3d {
  background: var(--card);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(14, 20, 30, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.2, .9, .3, 1), box-shadow .35s;
}

.card-3d:hover {
  transform: translateY(-10px) rotateX(4deg);
  box-shadow: 0 20px 50px rgba(14, 20, 30, 0.12)
}

/* Left nav / toc */
.toc {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  max-height: calc(100vh - 120px);
  overflow: auto;
  padding-right: 8px;
}

.toc a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #374151;
  text-decoration: none;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #fff, #fbfdff)
}

.toc a.active {
  background: linear-gradient(90deg, rgba(107, 33, 168, 0.08), rgba(239, 122, 26, 0.06));
  color: var(--accent);
  font-weight: 600
}

/* Clause cards */
.clause {
  margin-bottom: 18px
}

.clause .clause-head {
  display: flex;
  align-items: center;
  gap: 12px
}

.clause .clause-head h5 {
  margin: 0;
  font-weight: 700
}

.clause .clause-body {
  padding-top: 12px;
  color: #334155
}

/* Accordion style details */
.accordion-button {
  border-radius: 10px;
  box-shadow: none;
  background: transparent;
}

.accordion-item {
  border: none;
  background: transparent
}

/* small helpers */
.badge-accent {
  background: linear-gradient(90deg, var(--accent), #9f5ce6);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700
}

/* footer */
.terms-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px
}

/* responsive */
@media (max-width:991px) {
  .hero {
    flex-direction: column;
    align-items: flex-start
  }

  .toc {
    display: none
  }
}

/* subtle 3D ribbons */
.ribbon {
  position: relative;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 700;
  color: white;
}

.ribbon.purple {
  background: linear-gradient(90deg, var(--accent), #9f5ce6)
}

.ribbon.orange {
  background: linear-gradient(90deg, var(--accent-2), #ffb068)
}

/* print friendly */
@media print {
  body {
    background: white
  }

  .page-wrap {
    box-shadow: none
  }

  .toc,
  .hero-actions {
    display: none
  }
}




/* Privacy Policy */


.ppage-wrap {
  max-width: 1100px;
  margin: 40px auto;
  padding: 28px;
}

/* HERO */
.p-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px
}

.p-hero-left h1 {
  font-size: 28px;
  margin: 0 0 6px;
  color: var(--accent2);
  font-weight: 800
}

.p-hero-left p {
  margin: 0 0 8px;
  color: var(--muted2)
}

/* 3D Card container */
.p-3d {
  perspective: 1200px
}

.p-card {
  background: var(--card2);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(14, 20, 30, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border2);
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.2, .9, .3, 1), box-shadow .35s
}

.p-card:hover {
  transform: translateY(-10px) rotateX(4deg);
  box-shadow: 0 20px 50px rgba(14, 20, 30, 0.10)
}

.p-toc {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  max-height: calc(100vh - 120px);
  overflow: auto;
  padding-right: 8px
}

.p-toc a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: #374151;
  text-decoration: none;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #fff, #fbfdff)
}

.p-toc a.active {
  background: linear-gradient(90deg, rgba(107, 33, 168, 0.08), rgba(239, 122, 26, 0.06));
  color: var(--accent2);
  font-weight: 600
}

.p-clause {
  margin-bottom: 18px
}

.p-clause .p-head {
  display: flex;
  align-items: center;
  gap: 12px
}

.p-clause .p-head h5 {
  margin: 0;
  font-weight: 700
}

.p-clause .p-body {
  padding-top: 12px;
  color: #334155
}

.p-ribbon {
  position: relative;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 700;
  color: white
}

.p-ribbon.p-purple {
  background: linear-gradient(90deg, var(--accent2), #9f5ce6)
}

.p-ribbon.p-orange {
  background: linear-gradient(90deg, var(--accent-22), #ffb068)
}

.p-footer {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px
}

@media (max-width:991px) {
  .p-hero {
    flex-direction: column;
    align-items: flex-start
  }

  .p-toc {
    display: none
  }
}

@media print {
  body {
    background: white
  }

  .p-toc,
  .p-actions {
    display: none
  }
}

.bg-set-slide {
  background-color: white;
}


  .custom-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    /* Left Image */
    .left-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    /* Right content styles */
    .content-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 0;
      height: 100%;
    }

    .box {
      padding: 25px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      font-size: 16px;
    }

    /* Colors for each box */
    .explorer {
      background: #29c7d8;
    }

    .creator {
      background: #f59cb3;
    }

    .innovator {
      background: #8d4bff;
    }

    .pioneer {
      background: #f7b045;
    }

    .pro {
      background: #3b2b72;
    }

    .market-ready {
      background: #ffd737;
      color: #000;
      font-weight: bold;
    }

    .market-ready h4 {
      font-weight: 900;
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
      .custom-section {
        flex-direction: column;
      }

      .content-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
      }
    }

     .kit-img-box {
      background-color: #ff7724;
      display: flex;
      justify-content: center;
      align-items: center;
    }
     /* Image style */
    .iot-image {
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .iot-image:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    /* Modal overlay for image view */
    .img-popup {
      display: none;
      position: fixed;
      z-index: 9999;
      padding-top: 50px;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.9);
      text-align: center;
    }

    .img-popup img {
      margin-top: 40px;
      max-width: 90%;
      max-height: 80vh;
      border-radius: 10px;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 20px;
      right: 35px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: color 0.3s;
    }

    .close-btn:hover {
      color: #f4bc4f;
    }

    @media (max-width: 576px) {
      .img-popup img {
        max-width: 95%;
        max-height: 70vh;
      }
    }
    
    
    
  
    .feature-card-box {
    background: #ffffff;
    padding: 25px;
    
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feature-heading {
    font-weight: 700;
    margin-top: 15px;
}

.feature-subtitle {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.feature-points {
    list-style: disc;
    padding-left: 20px;
}

.feature-points li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.5;
}
    
    
    
    
     :root {
      --accent: #ff6b4a;
      --muted: #f8e9e7;
      --deep: #1f1f1f;
      --gold: #f4bc4f;
      --pill-blue: #5f78ff;
      --card-border: rgba(226, 78, 54, 0.06);
      --radius: 10px;
      --prime-tint: rgba(232, 92, 92, 0.06);
      --premier-tint: rgba(156, 79, 217, 0.06);
      --plus-tint: rgba(47, 149, 214, 0.06);
    }

    body {
      font-family: 'Poppins', system-ui, Segoe UI, Roboto, Arial;
      /* background: linear-gradient(90deg, var(--muted) 0%, #fff 60%);
      color: var(--deep);
      margin: 0; */
    }

    .site-wrap {
      max-width: 1150px;
      margin: 40px auto;
      padding: 20px;
    }

    /* HERO left text */
    .hero-title {
      font-size: 40px;
      font-weight: 700;
      line-height: 1.05;
      margin-bottom: 18px;
    }

    .hero-title mark {
      background: transparent;
      text-decoration: underline 6px rgba(0, 0, 0, 0.08);
      color: var(--deep);
    }

    .feature {
      color: #6b6b6b;
      margin-bottom: 12px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .phone-box {
      background: #fff;
      border-radius: 8px;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
      min-width: 220px;
    }

    .btn-primary-custom {
      background: var(--accent);
      color: #fff;
      border: 0;
      padding: 10px 18px;
      border-radius: 8px;
      font-weight: 600;
      box-shadow: 0 8px 18px rgba(255, 107, 74, 0.18);
    }

    .card-custom {
      border-radius: 16px;
      padding: 12px;
      background: #fff;
      box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
      border: 4px solid rgba(255, 120, 40, 0.06);
      position: relative;
    }

    .card-stroke {
      position: absolute;
      inset: -10px 30px auto auto;
      border-radius: 18px;
      border: 3px solid var(--accent);
      width: 96%;
      height: 30%;
      transform: translate(10px, -10px);
      z-index: -1;
    }

    .badge-custom {
      position: absolute;
      background: #fff;
      padding: 8px 10px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
      font-weight: 600;
      font-size: 12px;
      display: flex;
      gap: 8px;
      align-items: center;
      animation: floatUpDown 3s ease-in-out infinite;
    }

    @keyframes floatUpDown {
      0% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-10px)
      }

      100% {
        transform: translateY(0)
      }
    }

    .badge-top {
      top: -8px;
      right: 14px;
    }

    .badge-bl {
      left: 6px;
      bottom: -12px;
    }

    .badge-br {
      right: 6px;
      bottom: -12px;
    }

    /* Courses grid */
    .course-card {
      border-radius: var(--radius);
      border: 1px solid black;
      box-shadow: 0 12px 30px rgba(17, 24, 39, 0.03);
      overflow: hidden;
    }

    .course-media {
      height: 150px;
      object-fit: cover;
      width: 100%;
      display: block;
    }

    /* Pricing plans (bootstrap cards) */
    .plans-title {
      text-align: center;
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 18px;
    }

    .plan-card {
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(0, 0, 0, 0.06);
      background: #fff;
    }

    .plan-top {
      padding: 14px 12px;
      color: #fff;
      text-align: center;
      font-weight: 700;
      font-size: 18px;
      border-radius: 6px 6px 0 0;
    }

    .plan-top--prime {
      background: #e85c5c;
    }

    .plan-top--premier {
      background: #9c4fd9;
    }

    .plan-top--plus {
      background: #2f95d6;
    }

    .plan-body {
      padding: 16px;
      flex: 1;
    }

    .plan-body--prime {
      background: linear-gradient(180deg, var(--prime-tint), rgba(255, 255, 255, 0));
    }

    .plan-body--premier {
      background: linear-gradient(180deg, var(--premier-tint), rgba(255, 255, 255, 0));
    }

    .plan-body--plus {
      background: linear-gradient(180deg, var(--plus-tint), rgba(255, 255, 255, 0));
    }

    .price {
      font-size: 20px;
      font-weight: 800;
      color: #111;
    }

    .price small {
      font-weight: 600;
      color: #666;
      margin-left: 6px;
    }

    .old {
      font-size: 13px;
      color: #9b9b9b;
      text-decoration: line-through;
      margin-top: 6px;
    }

    .pill {
      display: inline-block;
      margin-top: 8px;
      background: #f6f6f6;
      padding: 6px 10px;
      border-radius: 16px;
      font-weight: 700;
      font-size: 12px;
    }

    .cta-plan {
      width: 100%;
      border-radius: 8px;
      border: 2px solid var(--accent);
      color: var(--accent);
      background: transparent;
      font-weight: 700;
      padding: 8px 12px;
    }

    .cta-plan:hover {
      background: var(--accent);
      color: #fff;
    }

    .plan-sub {
      display: block;
      margin: 10px 0;
      text-align: center;
      text-decoration: underline;
      color: #222;
      font-weight: 700;
    }

    .features-list {
      list-style: none;
      padding-left: 0;
      margin: 12px 0 0;
    }

    .features-list li {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      padding: 8px 0;
      border-bottom: 1px solid #f2f2f2;
      line-height: 1.25;
    }

    .features-list li:last-child {
      border-bottom: 0;
    }

    .ok {
      color: #16a34a;
      font-weight: 800;
      min-width: 18px;
      display: inline-block;
    }

    .no {
      color: #e11d48;
      font-weight: 800;
      min-width: 18px;
      display: inline-block;
    }

    /* Start Coding section (using bootstrap cols but small custom) */
    .sc-title {
      font-size: 28px;
      font-weight: 800;
      text-transform: uppercase;
      border-bottom: 4px solid #000;
      display: inline-block;
      padding-bottom: 6px;
      margin-bottom: 12px;
    }

    .sc-sub {
      font-size: 16px;
      font-weight: 800;
      text-transform: uppercase;
      margin-top: 10px;
      margin-bottom: 6px;
    }

    .sc-blue {
      color: #165cff;
    }

    .sc-coral {
      color: #ff2f43;
    }

    .sc-purple {
      color: #9836ff;
    }

    .sc-image {
      border-radius: 16px;
      max-width: 100%;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    /* small utilities */
    .muted-small {
      font-size: 13px;
      color: #6b6b6b;
    }

    /* responsive */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 28px;
      }
    }

    @media (max-width:576px) {
      .sc-title {
        font-size: 20px;
      }
    }

    .guidance-section {
      background: linear-gradient(90deg, #fff7d9 6%, #ffe6d9 30%, #ffdbe9 70%, #ffd6f0 100%);
      padding: 28px 0;
      border-radius: 8px;
      margin: 18px 0;
    }

    /* button hover/active using separate rules (no :root) */
    .guidance-btn:active {
      transform: translateY(1px);
    }

    .guidance-btn:hover {
      text-decoration: none;
      transform: translateY(-3px);
      box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
    }

    @media (max-width: 991px) {
      .guidance-title {
        font-size: 26px !important;
      }

      .guidance-desc {
        font-size: 14px !important;
      }

      .guidance-btn {
        font-size: 18px !important;
        padding: 14px 26px !important;
      }

      .guidance-section {
        padding: 20px 0 !important;
      }
    }

    @media (max-width: 576px) {
      .guidance-title {
        font-size: 20px !important;
        font-weight: 800 !important;
      }

      .guidance-desc {
        font-size: 13px !important;
      }

      .guidance-btn {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 18px !important;
        border-radius: 12px !important;
      }

      .guidance-section {
        padding: 18px 12px !important;
      }
    }

    /* Road Section */
    /* Road Section Wrapper */
    /* Mobile hero wrapper */
    .vs-mobile-hero {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    /* Overlay card */
    .vs-mobile-overlay {
      position: absolute;
      left: 28%;
      transform: translateX(-50%);
      top: 460px;
      /* move up from bottom — tweak as needed */
      width: 45%;
      /* width of the overlay box */
      max-width: 720px;
      padding: 18px 16px;
      background: rgba(255, 255, 255, 0.95);
      /* white translucent box like screenshot */
      border-radius: 14px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
      text-align: center;
      -webkit-backdrop-filter: blur(2px);
      backdrop-filter: blur(2px);
    }

    /* Title */
    .vs-mobile-title {
      font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      font-weight: 700;
      color: #0b1220;
      /* near-black for strong contrast */
      margin: 0 0 8px 0;
      font-size: 30px;
      letter-spacing: 2px;
    }

    /* Description paragraph */
    .vs-mobile-desc {
      font-family: 'Poppins', sans-serif;
      font-weight: 500;
      color: #222830;
      margin: 0;
      line-height: 1.45;
      font-size: 22.5px;
    }

    /* Smaller phones adjustments */
    @media (max-width: 420px) {
      .vs-mobile-overlay {
        padding: 14px 12px;
        width: 50%;
        top: 155px;
        left: 100px;
      }

      .vs-mobile-title {
        font-size: 18px;
        letter-spacing: 1.5px;
      }

      .vs-mobile-desc {
        font-size: 13px;
      }
    }

    /* Larger phones / small tablets (still mobile) */
    @media (min-width: 421px) and (max-width: 767.98px) {
      .vs-mobile-overlay {
        padding: 16px 14px;
        /* bottom: 6%; */
        width: 50%;
        top: 195px;
        left: 118px;
      }

      .vs-mobile-title {
        font-size: 20px;
      }

      .vs-mobile-desc {
        font-size: 15px;
      }
    }

    .sc-small p,
    .sc-small li {
      font-size: 13px !important;
      line-height: 1.5;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    