

.sec-padding {
  padding: 80px 0;
}

/* herosection bg animation  */

:root {
  --cell-border-color: rgb(212 212 216);
  /* neutral-300 */
  --cell-fill-color: rgb(245 245 245);
  /* neutral-100 */
  --cell-shadow-color: rgb(115 115 115);
  /* neutral-500 */
}

@media (prefers-color-scheme: dark) {
  :root {
    --cell-border-color: rgb(64 64 64);
    /* neutral-700 */
    --cell-fill-color: rgb(23 23 23);
    /* neutral-900 */
    --cell-shadow-color: rgb(38 38 38);
    /* neutral-800 */
  }
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-container {
  display: grid;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}

.cell {
  position: relative;
  border: 0.5px solid var(--cell-border-color);
  background-color: black;
  opacity: 0.3;
  transition: opacity 150ms;
  will-change: transform;
  cursor: pointer;
}

.cell:hover {
  opacity: 0.8;
  background-color: var(--primary-color);
  transition: all 0.2s;
}

@media (prefers-color-scheme: dark) {
  .cell {
    box-shadow: 0px 0px 40px 1px var(--cell-shadow-color) inset;
  }
}

body.dark .cell {
  box-shadow: 0px 0px 40px 1px var(--cell-shadow-color) inset;
}

@keyframes cellRipple {
  0% {
    transform: scale(1);
    opacity: 0.4;
    background-color: var(--cell-fill-color);
  }

  50% {
    transform: scale(1.1);
    opacity: 0.6;
    background-color: var(--primary-color);
    /* blue-500 with opacity */
  }

  100% {
    transform: scale(1);
    opacity: 0.4;
    background-color: var(--cell-fill-color);
  }
}

.cell.ripple {
  animation: cellRipple var(--duration, 200ms) var(--delay, 0ms) ease-out;
  animation-fill-mode: none;
}

.mask-radial {
  mask-image: radial-gradient(ellipse at top, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at top,
    black 20%,
    transparent 70%
  );
}

/* Dark mode toggle button */

/* end of herosection square bg animation  */

#orbitLines {
  width: 100%;
  height: 100%;
}

.orbit-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 2;
}

.orbit-beam {
  fill: none;
  stroke: #53a7fe;
  stroke-width: 4;
  filter: drop-shadow(0 0 6px #53a7fe);
  stroke-linecap: round;
  stroke-dasharray: 120 2000;
  /* gap updated dynamically to total length */
  animation: orbit-sweep 5.5s linear infinite;
}

@keyframes orbit-sweep {
  to {
    stroke-dashoffset: -3000;
  }
}

@media all and (max-width: 768px) {
  .sec-padding {
    padding: 40px 0;
  }
}

/* blob code  */
.mentorship-section .card .blob {
  --r: 520px;
  /* glow radius */
  --x: 50%;
  --y: 50%;
  --tint: 62, 125, 190;
  /* #4f46e5 */
  position: absolute;
  inset: -1px;
  /* cover to edges */
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
      calc(var(--r) * 0.6) circle at var(--x) var(--y),
      rgba(255, 255, 255, 0.14) 0%,
      rgba(255, 255, 255, 0.08) 35%,
      transparent 65%
    ),
    radial-gradient(
      var(--r) circle at var(--x) var(--y),
      rgba(var(--tint), 0.12) 0%,
      transparent 70%
    );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}

.mentorship-section .card:hover .blob {
  opacity: 1;
  z-index: -1;
}

/* optional: subtle tilt */
.mentorship-section .card {
  --rx: 0deg;
  --ry: 0deg;
  --tz: 0px;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry))
    translateZ(var(--tz));
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  transform-origin: center;
  backface-visibility: hidden;
  contain: paint;
  /* isolates repaints */
  will-change: transform;
}

.mentorship-section .card[data-tilt="1"] {
  --tz: 6px;
}

/* end of blob code  */

.section-title-h2 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 600;
}

.section-sub-heading {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
}

/* ---------------------------why choose new---------------- */

/* .why-gallery {
  display: flex;
  overflow: hidden;
}

.why-left {
  width: 50%;
} */

.why-detailsWrapper {
  margin: auto;
  width: 80%;
  margin-top: 460px;
}

.why-details1 {
  height: 400px !important;
}

.why-details {
  margin-bottom: 100px;
  display: flex;
  gap: 14px;
  flex-direction: column;
  justify-content: center;
}

.why-details h3 {
  margin-bottom: 10px;
}

.why-details .banner-button1 {
  width: auto;
}

/* .why-right {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.why-photos {
  width: 100%;
  height: 30vw;
  position: relative;
  border-radius: 0px;
}

.why-photo {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.why-photo img {
  height: 100%;
  width: 100%;
  border-radius: var(--border-rad);
  object-fit: cover;
  box-shadow: 0px 25px 40px -10px #00000024;
} */

.why_sec_title {
  /* font-size: 70px; */
  font-weight: 600;
  color: rgb(0, 0, 0);
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .why-detailsWrapper {
    margin: auto;
    width: 100%;
    margin-top: 30px;
  }

  .section-sub-heading {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
  }

  .why-details {
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  .hero-title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  .section-title-h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .section-title-h2 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
  }

  br {
    display: none;
  }
}

#orbit-beam {
  stroke-linecap: round;
}
@keyframes orbitAnim {
  to {
    stroke-dashoffset: -1000;
  }
}

.feedback_star i {
  color: #ffb400;
  font-size: 14px;
}
@media only screen and (min-width: 1024px) and (max-width: 1280px) {
  .section-title-h2{
    font-size: 44px !important;
  }
}
@media (max-width: 480px) {
  .floating-elements{
    height: 300px;
    top: 20px !important;
  }
}