.no-overflow-x {
  overflow-x: hidden !important;


}

@media (min-width: 991.98px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (min-width: 991.98px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: scale(0.95);
  }
}

@media (min-width: 991.98px) {
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease-out;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 10px;
  }
}

.dropdown-item:hover {
  background-color: transparent !important;
  /*text-decoration: underline;*/
  color: rgb(55, 99, 244);
}

.dropdown-menu {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border: none;
  padding: 10px;
}

#home-page-component .card {
  border-radius: 50px !important;
  transition: transform 0.3s ease;

}

#home-page-component .card:hover {
  transform: scale(1.03);
}

#medical-landing-page .badge {
  font-size: 0.85rem;
  padding: 0.5em 1em;
  border-radius: 20px;
}

/* LMS Section Start */

.cube-container {
  perspective: 1000px;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 10s infinite linear;
}

.cube-face {
  position: absolute;
  /* width: 300px; */
  height: 300px;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cube-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Faces positioning */

.face1 {
  transform: rotateY(0deg) translateZ(150px);
}

.face2 {
  transform: rotateY(120deg) translateZ(150px);
}

.face3 {
  transform: rotateY(240deg) translateZ(150px);
}

/* Cube Rotation */

@keyframes rotateCube {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

/* LMS Section End */

/* MultiMedia Rich Start */

.icon-circle {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: white;
  margin-right: 0.75rem;
  padding: 1rem;
}

.icon-video {
  background: linear-gradient(135deg, #ff4e50, #f9d423);
}

.icon-book {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.feature-box {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

/* MultiMedia Rich End */

/* Assessment-Student-Page Start */

/* Rotating image start */

.flip-img {
  transition: transform 2.0s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.flip-img:hover {
  transform: rotateY(360deg);
}

/* Rotating image End */

.step-circle {
  width: 38px;
  height: 38px;
  background-color: #0d6efd;
  color: white;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  text-align: center;
  line-height: 38px;
  flex-shrink: 0;
}

@media (max-width: 576px) {
  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 13px;
    line-height: 32px;
  }
}

/* platform start */

.hero-image {
  background: url('../../assets/img/platform-head.png') no-repeat center center/cover;
  position: relative;
  z-index: 1;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* platform end */

/* continuing education start */

/* stack-style start */

.stack-wrapper {
  position: relative;
  max-width: 90%;
  margin: auto;
  height: 500px;
  cursor: pointer;
}

.stack-card {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

#card1 {
  z-index: 4;
  top: 0;
}

#card2 {
  z-index: 3;
  top: 15px;
}

#card3 {
  z-index: 2;
  top: 30px;
}

#card4 {
  z-index: 1;
  top: 45px;
}

.click-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
}

/* Animate out - fly down */

.stack-card.animate-out {
  transform: translateY(600px);
  opacity: 0;
}

/* Animate in for dispersed */

.dispersed-card {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 992px) {
  .stack-wrapper {
    height: 520px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .stack-wrapper {
    height: 680px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .stack-wrapper {
    height: 90vh;
  }
}

@media (min-width: 360px) and (max-width: 575px) {
  .stack-wrapper {
    height: 100vh;
  }
}

.stack-center-btn-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  pointer-events: auto;
}

/* stack-style end */

/* continuing education end */



/* start of chatbot */

/* --- Chat Button --- */
#chatToggle {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #007bff;
  color: white;
  border: none;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  z-index: 9999;
}

#chatToggle:hover {
  transform: scale(1.08);
  background: #005fcc;
}

/* --- Chat Window --- */
#chatbox {
  width: 450px;
  height: 600px;
  background: white;
  position: fixed;
  bottom: 100px;
  right: 30px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: none;
  flex-direction: column;
  animation: fadeIn 0.25s ease-out;
  z-index: 99999;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Header */
#chatHeader {
  background: #007bff;
  padding: 12px;
  color: white;
  cursor: move;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

#chatHeader button {
  border: none;
  background: transparent;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Messages */
#messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  background: #f2f2f2;
}

.msg {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  max-width: 98%;
  line-height: 1.4;
  animation: fadeMsg 0.2s ease-in;
}

@keyframes fadeMsg {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user {
  background: #cfe2ff;
  align-self: flex-end;
}

.bot {
  background: #e8e8e8;
  align-self: flex-start;
}

/* Input */
#inputArea {
  display: flex;
  padding: 8px;
  background: #fff;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

#inputBox {
  flex: 1;
  font-size: 16px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  outline: none;
}

#sendBtn {
  margin-left: 8px;
  background: #007bff;
  color: white;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
}

/* end of chatbot */





/* advisor card START */

.advisor-card {
  height: 350px;
  object-fit: contain;
  /* background: #000; */
}

.advisor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* advisor card END */


/* modules page video section START */

.video-wrapper {
  max-width: 950px;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* modules page video section END */




/* FAQ START     */

#ms-faqs .ms-tab {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: .2s transform ease, .2s background ease, .2s box-shadow ease;
  backdrop-filter: saturate(120%) blur(2px);
}

#ms-faqs .ms-tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

#ms-faqs .ms-tab.is-active {
  background: #ffffff;
  color: var(--ms-chip-text);
  border-color: #fff;
}

#ms-faqs .ms-panel {
  padding: 8px 10px 12px;
}

#ms-faqs .ms-qa {
  background: #fff;
  border-radius: 14px;
  margin: 10px;
  border: 1px solid rgba(16, 54, 90, .12);
  box-shadow: 0 8px 20px rgba(16, 54, 90, .06);
  overflow: hidden;
}

#ms-faqs .q {
  width: 100%;
  text-align: left;
  padding: 14px 46px 14px 14px;
  font-weight: 700;
  color: #102b4a;
  background: #fff;
  border: 0;
  cursor: pointer;
  border-left: 6px solid #f1b90f;
  position: relative;
  transition: .2s ease background;
}

#ms-faqs .q:hover {
  background: #f9fbff;
}

#ms-faqs .q::after {
  content: "▾";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: .2s transform ease;
  color: #3a5b7a;
  font-size: 18px;
}

#ms-faqs .q[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
}

#ms-faqs .a {
  display: none;
  padding: 0 16px 14px;
  color: #2b3a4f;
  border-left: 6px solid #f1b90f;
  border-top: 1px dashed rgba(16, 54, 90, .14);
  background: rgba(var(--bs-light-rgb), var(--bs-bg-opacity));
}

#ms-faqs .a.show {
  display: block;
}

#ms-faqs .ms-ghost {
  background: transparent;
  border: 1px solid rgba(16, 54, 90, .25);
  color: #10365a;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* small screens */
@media (max-width:700px) {
  #ms-faqs .q {
    padding: 12px 40px 12px 12px;
  }

  #ms-faqs .ms-qa {
    margin: 8px;
  }
}


/* FAQ END */











/* brochure buttons START */


.pdf-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.pdf-buttons button {
  padding: 10px 18px;
  background: #3763F4;
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  min-width: 140px;
}

@media(max-width:768px) {
  .pdf-buttons button {
    width: 45%;
  }
}

@media(max-width:480px) {
  .pdf-buttons button {
    width: 60%;
  }
}

/* brochure buttons END */






/* Social Media Icona START  */

/* =========================================
   PREMIUM SOCIAL ICONS
========================================= */

.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  align-items: center;
  /* gap: 12px; */
}

/* Icon Button */
.social-icons a {
  position: relative;

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

  width: 36px;
  height: 36px;

  border-radius: 50%;

  overflow: hidden;

  transition: all 0.35s ease;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* SVG */
.social-icons a svg {
  width: 18px;
  height: 18px;

  fill: #ffffff;

  position: relative;
  z-index: 2;

  transition: 0.3s ease;
}

/* Shine Effect */
.social-icons a::before {
  content: "";

  position: absolute;
  top: -50%;
  left: -60%;

  width: 60%;
  height: 200%;

  background: rgba(255, 255, 255, 0.25);

  transform: rotate(25deg);

  transition: 0.5s ease;
}

/* Hover Shine Animation */
.social-icons a:hover::before {
  left: 130%;
}

/* Hover Effect */
.social-icons a:hover {
  transform: translateY(-5px) scale(1.08);

  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(255, 255, 255, 0.15);
}

/* =========================================
   OFFICIAL BRAND COLORS
========================================= */

/* Facebook */
.social-icons a.facebook {
  background: #1877F2;
}

/* X / Twitter */
.social-icons a.x {
  background: #000000;
}

/* Instagram */
.social-icons a.instagram {
  background:
    radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%);
}

/* LinkedIn */
.social-icons a.linkedin {
  background: #0A66C2;
}

/* YouTube */
.social-icons a.youtube {
  background: #FF0000;
}

/* Active Click */
.social-icons a:active {
  transform: scale(0.95);
}

/* Mobile */
@media (max-width: 768px) {

  .social-icons {
    justify-content: center;
    gap: 10px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
  }

  .social-icons a svg {
    width: 16px;
    height: 16px;
  }
}

/* Social Media Icona END  */


/* Nested Dropdown Submenu for Product Demo inNavbar START*/

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  display: none !important;
  position: absolute;
}

.dropdown-submenu>.dropdown-menu.show {
  display: block !important;
}

@media (min-width: 992px) {
  .dropdown-submenu:hover>.dropdown-menu {
    display: block !important;
  }
}

@media (max-width: 991px) {
  .dropdown-submenu>.dropdown-menu {
    position: static;
    left: auto;
    margin-left: 1rem;
    box-shadow: none !important;
    border: none;
    margin-top: 0;
  }
}

.dropdown-submenu>a::after {
  content: "▶";
  float: right;
  border: none;
  font-size: 10px;
  margin-top: 5px;
}

/* Nested Dropdown Submenu for Product Demo inNavbar END*/






/*   TRICOLOR GLOW FOOTER START*/

:root {
  --tri-width: 50%;
  --tri-blur: 80px;
  --tri-opacity: 0.9;

  --tri-saffron: 255, 153, 51;
  --tri-green: 19, 136, 8;

  --footer-bg: #f5f8fc;
  --footer-text: #10365a;
  --footer-link: #0a3ea1;
}

/* Main Footer */
.footer-tricolor {
  position: relative;
  overflow: hidden;

  background: var(--footer-bg);
  color: var(--footer-text);

  z-index: 1;
}

/* Tricolor Glow */
.footer-tricolor::after {
  content: "";

  position: absolute;
  top: 0;
  right: -10%;
  bottom: 0;

  width: var(--tri-width);

  background: linear-gradient(135deg,
      rgba(var(--tri-saffron), 0.55) 0%,
      rgba(255, 255, 255, 0.65) 50%,
      rgba(var(--tri-green), 0.55) 100%);

  filter: blur(var(--tri-blur));
  opacity: var(--tri-opacity);

  pointer-events: none;
  z-index: 0;
}

/* Keep content above glow */
.footer-tricolor .container {
  position: relative;
  z-index: 2;
}

/* Headings */
.footer-tricolor h3 {
  color: var(--footer-text);
  font-weight: 700;
  margin-bottom: 12px;
}

/* Links */
.footer-tricolor a {
  color: var(--footer-link);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-tricolor a:hover {
  color: #062d77;
  text-decoration: underline;
}

/* Lists */
.footer-tricolor ul {
  padding-left: 0;
}

.footer-tricolor li {
  margin-bottom: 8px;
}

/* Divider */
.footer-tricolor hr {
  border-color: rgba(0, 0, 0, 0.1);
}

/* Copyright */
.footer-tricolor .copyright,
.footer-tricolor p {
  color: #5b6777 !important;
}

/* Social Icons */
.social-icons a {
  width: 42px;
  height: 42px;

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

  border-radius: 50%;

  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;
}

.social-icons a svg {
  width: 18px;
  height: 18px;
  /* fill: #10365a; */
}

.social-icons a:hover {
  transform: translateY(-3px);
  background: #0a3ea1;
}

.social-icons a:hover svg {
  fill: #ffffff;
}

/* Mobile */
@media (max-width: 768px) {

  .footer-tricolor::after {
    width: 100%;
    right: 0;
    opacity: 0.6;
  }

  .footer-tricolor {
    text-align: center;
  }
}

/* TRICOLOR GLOW FOOTER END*/


/* standard format Image START */

/* Preview Image */
.preview-image {
  max-width: 1000px;
  width: 100%;
  cursor: zoom-in;
  transition: 0.3s ease;
}

.preview-image:hover {
  transform: scale(1.02);
}

/* Fullscreen Image */
.fullscreen-image {
  max-width: 90%;
  max-height: 90vh;

  /* cursor: zoom-in; */

  transition: transform 0.3s ease;
}

/* Zoom Active */
.fullscreen-image.zoomed {
  transform: scale(2);
  cursor: zoom-out;
}

/* Close Button */
.custom-close {
  position: absolute;
  top: 20px;
  right: 20px;

  z-index: 9999;

  font-size: 1.2rem;
}

/* standard format Image END */






/* product-deployment svg's code START */

.deployment-svg-card {
  /* background: #f8f9fa; */
  border-radius: 20px;
  transition: 0.4s ease;
  width: 100%;
  max-width: 420px;
}

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

.deployment-svg-card svg {
  transition: 0.4s ease;
}

.deployment-svg-card:hover svg {
  transform: scale(1.08);
}


/* ONLINE */


/* OFFLINE */
.offline-card {
  /* background: #f6fffa; */
  /* box-shadow: 0 12px 30px rgba(25, 135, 84, 0.10); */
}

/* BLENDED */


/* product-deployment svg's code END */



/* Rich Learning Resources START */

.feature-card {
  border-radius: 18px;
  transition: all 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.icon-hover {
  transition: transform 0.3s ease;
}

.feature-card:hover .icon-hover {
  transform: scale(1.1);
}

/* Rich Learning Resources START */




#purposeText::after {
  content: "|";
  animation: blink 0.8s infinite;
  margin-left: 3px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}




















/* SECTION */
.deployment-section {
  overflow: hidden;
}

/* CARD */
.deployment-card {
  position: relative;
  transition: all 0.45s ease;
  overflow: hidden;
  background: #fff;
}

.deployment-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08) !important;
}

/* TOP ACCENT */
.card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

/* TITLE */
.small_title {
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 12px;
}

/* CARD HEADINGS */
.deployment-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

/* LIST */
.deployment-list {
  padding-left: 0;
  list-style: none;
}

.deployment-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #555;
  line-height: 1.6;
}

.deployment-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: #0d6efd;
}

/* IMAGE AREA */
.deployment-svg-card {
  border-radius: 20px;
  padding: 30px 20px;
  background: linear-gradient(to bottom right, #f8f9fa, #ffffff);

  /* ADD THESE */
  min-height: 320px;   /* same height for all */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* IMAGE */
.deployment-image {
  height: 170px;       /* fixed equal height */
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.deployment-card:hover .deployment-image {
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .deployment-card {
    padding: 35px 25px !important;
  }

  .deployment-card h3 {
    font-size: 22px;
  }
}






/* IMAGE */
.deployment-image {
  height: 170px;       /* fixed equal height */
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}













.deployment-partner-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}












.trusted-section {
  background: #fff;
  overflow: hidden;
}

/* TITLE */
.trusted-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
}

/* WRAPPER (CENTER + 50% WIDTH) */
.logo-marquee-wrapper {
  display: flex;
  justify-content: center;
}

/* MARQUEE BOX */
.logo-marquee {
  width: 68%;
  overflow: hidden;
}

/* TRACK */
.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

/* LOGOS */
.brand-logo {
  height: 85px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.4s ease;
}

.brand-logo:hover {
  transform: scale(1.08);
}

/* ANIMATION */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .logo-marquee {
    width: 90%;
  }

  .logo-track {
    gap: 40px;
    animation-duration: 18s;
  }

  .brand-logo {
    height: 60px;
  }
}









.trust-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #e8f0ff, #ffffff);
  border: 1px solid rgba(13, 110, 253, 0.25);
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.12);
  animation: fadePulse 2.5s ease-in-out infinite;
}

.trust-text {
  font-weight: 600;
  font-size: 15px;
  color: #0d6efd;
  letter-spacing: 0.3px;
}

/* subtle entrance + breathing effect */
@keyframes fadePulse {
  0% {
    transform: translateY(6px);
    opacity: 0.6;
    box-shadow: 0 5px 12px rgba(13, 110, 253, 0.08);
  }
  50% {
    transform: translateY(0px);
    opacity: 1;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.18);
  }
  100% {
    transform: translateY(6px);
    opacity: 0.6;
    box-shadow: 0 5px 12px rgba(13, 110, 253, 0.08);
  }
}