/* QuizCard.css */
.quiz-card {
  transition: all 0.3s ease-in-out;
  height: 100%;
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.tgmobile__menu.open {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.quiz-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.quiz-card__image {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.quiz-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 200px);
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quiz-card {
  animation: cardEntrance 0.6s ease-out forwards;
}

/* Background Classes */
.techquiz-primary-bg {
  background-image: url('/images/ui/quiez/quiez-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.techquiz-correct-bg {
  background-color: #28a745;
}

.techquiz-wrong-bg {
  background-color: #dc3545;
}


.techquiz-progress {
  font-size: 1.35rem;
  background: #FFF;
  color: black;
  padding: 5px 35px;
  border-radius: 12px;
  border: 3px solid #91812d;
  box-shadow: rgb(253, 207, 27) 0px 5px 15px;
}


.techquiz-option-btn {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  border: 4px solid transparent;
  transition: all 0.3s ease;
}

.techquiz-option-btn:hover {
  border-color: #6f42c1;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}


.techquiz-start-btn {
  position: relative;
  top: 0;
  cursor: pointer;
  text-decoration: none !important;
  outline: none !important;
  font-family: inherit'Carter One', sans-serif;
  font-size: 26px;
  line-height: 1.5em;
  letter-spacing: .1em;
  text-shadow: 0px 2px 1px #ecb612, -2px 2px 1px #0066a2, 2px -2px 1px #0066a2, -2px -2px 1px #0066a2, 0px 2px 1px #0066a2, 0px -2px 1px #0066a2, 0px 4px 1px #004a87, 2px 4px 1px #004a87, -2px 4px 1px #004a87;
  border: none;
  border-top-width: medium;
  border-top-style: none;
  border-top-color: currentcolor;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-top-width: medium;
  border-top-style: none;
  border-top-color: currentcolor;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  margin: 15px 15px 30px;
  background: repeating-linear-gradient(45deg, #eee116, #f2cf12 5px, #e4c62a 5px, #f4d945 10px);
  border-bottom: 3px solid rgba(228, 216, 36, 0.5);
  border-top: 3px solid rgba(255, 255, 255, .3);
  color: #fff !important;
  border-radius: 8px;
  padding: 13px 27px 10px;
  box-shadow: 0 6px 0 #918a26, 0 8px 1px 1px rgba(0, 0, 0, .3), 0 10px 0 5px #bfbd19, 0 12px 0 5px #9a861a, 0 15px 0 5px #5e4d0c, 0 15px 1px 6px rgba(0, 0, 0, .3);
}

.techquiz-start-btn:hover {
  top: 2px;
  box-shadow: 0 6px 0 #918a26, 0 8px 1px 1px rgba(0, 0, 0, .3), 0 10px 0 5px #bfbd19, 0 12px 0 5px #9a861a, 0 15px 0 5px #5e4d0c, 0 15px 1px 6px rgba(0, 0, 0, .3);
}

.techquiz-start-btn::before {
  content: '';
  height: 10%;
  position: absolute;
  width: 40%;
  background: #fff;
  right: 13%;
  top: -3%;
  border-radius: 99px;
}

.techquiz-start-btn::after {
  content: '';
  height: 10%;
  position: absolute;
  width: 5%;
  background: #fff;
  right: 5%;
  top: -3%;
  border-radius: 99px;
}

.techquiz-option-number {
  display: inline-block;
  background-color: #2628a6;
  color: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.courses_item_quiz_title {
  height: 65px;
  display: flex;
  align-items: center;
}

.courses_mini_titile {
  line-height: 24px !important;
}

.courses__item_point {
  padding: 12px 10px;
  border: 2px solid gainsboro;
  border-radius: 5px;
  text-align: center;
}

.feature__icon {
  padding: 8px;
  font-size: 18px;
}

@media (max-width: 460px) {
  .techquiz-option-btn {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border: 4px solid transparent;
    transition: all 0.3s ease;
  }
}



@media (max-width: 992px) {


  .pe-lg-5 {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
}

.event__thumb-four img {
  width: 100%;
  height: 375px !important;
  object-fit: cover;
  border-radius: 15px;
}

.step_count {
  height: 25px;
  width: 24px;
  background: #fff;
  color: #004aad;
  border-radius: 49%;
  display: flex;
  justify-content: center;
  align-items: center;

}

.roadmap-icone {
  border: 2px solid gray;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.roadmap-box li {
  border: 2px solid gray;
  border-radius: 10px;
  padding: 4px 8px;
  margin: 9px 12px;

}

.icone-fs {
  font-size: 40px;
}

.h-280 {
  height: 200px;
  overflow: auto;
}

.robotic-hero-section {
  background-image: url('/images/ui/robotic-lab/choose-background-left.png');
  padding: 10vh 0vh 0vh 0vh;
}

.robotic_shape {
  position: absolute;
  top: 2%;
  left: 5%;
}

.robotic_shape2 {
  position: absolute;
  top: -5%;
  right: 1%;
}

.h-20v {
  height: 20vh;
}

@keyframes slideLeftRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-90px);
    /* Move left */
  }
}

.animate-slide-left-right {
  animation: slideLeftRight 3s ease-in-out infinite;
}

.robotic-icone {
  height: 85px;
  width: 100%;
  border: 4px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.robotic_why_chose_section {
  background-image: url('/images/ui/robotic-lab/choose-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 70vh;
}

.program-details-section {
  background-image: url('/images/ui/robotic-lab/choose-background.png');
  color: #fff;
}

.robotic_faq_accordion .accordion-button {
  border-radius: 12px !important;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: none;
  position: relative;
}

.robotic_faq_accordion .accordion-button::after {
  content: '+';
  font-size: 24px;
  color: white;
  background: linear-gradient(45deg, #03b5ff, #0e69d0);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  position: absolute;
  right: 20px;
  top: 10px;
  transition: transform 0.3s ease;
}

.robotic_faq_accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
  /* turns + into x */
}

.program-details-mini-card {
  background: #ffffff57;
}

.programe-content {
  padding-right: 35%;
  color: gainsboro;
}

@media (max-width: 640px) {
  .programe-content {
    padding-right: 0;
  }

  .program-details-mini-card {
    background: #ffffff57;
    font-size: 12px;
  }
}

.kids-hero-section {
  background-color: #f8fcff;
  background-image: radial-gradient(#e0e0e0 3px, transparent 3px);
  background-size: 44px 45px;
  position: sticky;
}

.text-kids-pink {
  color: #f05ca2;
}



.kids-hero-heading {
  color: #2c3e50;
}

.kids-hero-left-img {
  height: 500px;
  width: 100%;

}

.kids-hero-circle-wrapper {
  border: 10px solid #35495e;
  border-radius: 50%;
  width: 450px;
  height: 450px;
  overflow: hidden;
}

.img-kids {
  border-radius: var(--wdtRadius_Full);
  overflow: hidden;
  border: 15px solid rgb(185, 97, 147);
  animation: shadow 3s infinite linear;
}

.kids-curriculum-section {
  background-color: #f4d7d4;
  position: relative;
}

.kids-curriculum-image {
  border-radius: 50%;
  border: 10px solid transparent;
  padding: 10px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px dashed black;
}

.bg-purple {
  background-color: #a855f7 !important;
}

.bg-pink {
  background-color: #f472b6 !important;
}

.bg-blue {
  background-color: #3b82f6 !important;
}

.btn-kids-gradient {
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  color: #fff;
  border: none;
}

.btn-kids-gradient:hover {
  background: linear-gradient(90deg, #9333ea, #2563eb);
  color: #fff;
}

.kids-learning-bottom-img {
  -webkit-mask-image: url(https://dtthemes.kinsta.cloud/a-for-apple/wp-content/uploads/sites/2/2024/01/Footer-cloud-img.png );
  -webkit-mask-size: cover;
  -webkit-mask-position: center center;
}

.mb-22 {
  margin-bottom: 10vh;
}

.kids-hero-bottom-img {
  -webkit-mask-image: url(https://dtthemes.kinsta.cloud/a-for-apple/wp-content/uploads/sites/2/2024/02/mask-filler-wave.svg );
  -webkit-mask-size: cover;
  -webkit-mask-position: bottom center;
}

.toys-section {
  background-color: #fffaf3;
  overflow: hidden;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  position: relative;
}

.btn-shop {
  background-color: #ff5733;
  color: white;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 3px 3px 0 #000;
  transition: all 0.2s ease-in-out;
}

.btn-shop:hover {
  background-color: #e14e2d;
  transform: translateY(-2px);
}

.main-kid-img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

/* Decorative Images */
.decor-img {
  position: absolute;
  z-index: 1;
}

.giraffe {
  left: -50px;
  bottom: 0;
  width: 130px;
}

.leopard {
  right: 40px;
  bottom: 30%;
  width: 180px;
}



.orange {
  top: -20px;
  left: 0;
  width: 40%;
}


.kids-join-section {
  background-color: #ffb800;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: white;
  font-family: sans-serif;
}

.kids-join-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.kids-join-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.kids-join-image {
  flex: 1;
  text-align: center;
}

.kids-join-img-fluid {
  max-width: 100%;
  height: auto;
}

.kids-join-content {
  flex: 2;
  text-align: center;
}

.kids-join-label {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.8;
  font-weight: bold;
}

.kids-join-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 15px 0 50px;
  color: #fff;
}

.kids-join-steps {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 2rem;
  padding-bottom: 10px;
  scroll-padding: 1rem;
}

.kids-join-steps::-webkit-scrollbar {
  display: none;
}

.kids-join-step {
  flex: 0 0 200px;
  scroll-snap-align: center;
}

.kids-join-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kids-join-icon img {
  width: 100%;
  height: 40px;
}

.kids-join-orange {
  background-color: #ffd88b;
}

.kids-join-red {
  background-color: #f96855;
}

.kids-join-step-title {
  font-weight: bold;
  margin-bottom: 8px;
  color: white;
  font-size: 16px;
}

.kids-join-step-text {
  font-size: 14px;
  color: #fffefc;
}

.kids-join-rocket {
  position: absolute;
  top: 5%;
  right: 50px;
  width: 200px;
}

/* Smooth, white circular background with black arrow */

.swiper-button-next,
.swiper-button-prev {
  color: black;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 40% !important;
  /* vertically center */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Change arrow color to black */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
  color: black;
  text-shadow: none;
}

/* Adjust size on small screens */
@media (max-width: 576px) {

  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
  }
}

/* Sidebar container with smooth width transition */
.admin-sidebar {
  width: 250px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
  background-color: #fff;
  transition: width 0.3s ease;
}

.admin-sidebar.collapsed {
  width: 70px;
  /* collapsed width showing only icons */
}

/* Inner sidebar - full height flex container */
.admin-sidebar-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Logo */
.admin-sidebar-logo {
  flex-shrink: 0;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.admin-sidebar-logo img {
  max-height: 40px;
  transition: opacity 0.3s ease;
}

.admin-sidebar.collapsed .admin-sidebar-logo img {
  opacity: 0;
}

/* Scrollable menu */
.admin-sidebar-menu {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem;
}

/* Navigation Buttons */
.admin-nav-btn {
  background-color: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 5px 12px;
  font-weight: 500;
  color: #504f4f;
  transition: all 0.3s ease;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;

}

.admin-nav-btn:hover {
  background-color: #f5f5f5;
}

.admin-nav-btn-active {
  background-color: #174aff;
  color: #fff !important;
  border-color: #1d3694;
}

.admin-nav-btn-active:hover {
  background-color: #174aff;
  color: #fff !important;
}

.admin-nav-btn-active .admin-nav-icon,
.admin-nav-btn-active .admin-nav-arrow {
  color: #fff !important;
}

/* Submenu */
.admin-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.admin-submenu.open {
  max-height: 500px;
}

/* Hide submenu text when collapsed */
.admin-sidebar.collapsed .admin-submenu,
.admin-sidebar.collapsed .admin-submenu-link {
  display: none;
}

/* Hide button text when collapsed */
.admin-sidebar.collapsed .admin-nav-btn> :not(.admin-nav-icon) {
  display: none;
}

/* Icons */
.admin-nav-icon {
  font-size: 1rem;
  color: #555;
  min-width: 20px;
  text-align: center;
}

/* Arrow icon on button */
.admin-nav-arrow {
  font-size: 0.9rem;
  color: #999;
  transition: transform 0.3s ease;
}

/* Sidebar toggle button under navbar */
.sidebar-toggle-btn {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 8px;
  font-size: 1.25rem;
  color: #174aff;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  margin: 8px auto;
  user-select: none;
}

.sidebar-toggle-btn:hover {
  background-color: #e6f0ff;
}

/* Rotate arrow when collapsed */
.sidebar-toggle-btn.collapsed {
  transform: rotate(180deg);
}

.fullscreen-btn {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 8px;
  font-size: 1.25rem;
  color: #174aff;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  user-select: none;
}

.fullscreen-btn:hover {
  background-color: #e6f0ff;
  transform: scale(1.05);
}

.fullscreen-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(23, 74, 255, 0.5);
}

/* --- Mobile Sidebar Slide-in Animation --- */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.animate-slide-in {
  animation: slideInLeft 0.3s ease-out forwards;
}

/* --- Mobile Sidebar Styles --- */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  /* adjust width as needed */
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  overflow-y: auto;
}

/* --- Blurred Background Overlay --- */
.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  cursor: pointer;
}



/* --- Mobile Sidebar Close Button --- */


/* --- Utility z-index helpers --- */
.z-1050 {
  z-index: 1050 !important;
}

.mobile-toggle-btn {
  background-color: #007bff;
  /* Your primary color */
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  user-select: none;
}

.mobile-toggle-btn:hover {
  background-color: #0056b3;
  /* Darker shade on hover */
}

.mobile-toggle-btn:focus {
  outline: 2px solid #0056b3;
  outline-offset: 2px;
}

.sys-list-table__action {
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.sys-list-table__action:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.sys-list-table__action.view {
  background-color: #e8f0fe;
  color: #1a73e8;
}

.sys-list-table__action.view:hover {
  background-color: #d2e3fc;
}

.sys-list-table__action.edit {
  background-color: #fff4e5;
  color: #ff9800;
}

.sys-list-table__action.edit:hover {
  background-color: #ffe0b2;
}

.sys-list-table__action.delete {
  background-color: #fdecea;
  color: #f44336;
}

.sys-list-table__action.delete:hover {
  background-color: #fbb8ac;
}

/* Avatar Hover Effect */
.sys-list-table__row img {
  transition: all 0.3s ease;
}

.sys-list-table__row:hover img {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Row Hover Animation */
.sys-list-table__row {
  transition: background-color 0.3s ease;
}

.sys-list-table__row:hover {
  background-color: #f9f9f9;
}

/* Responsive Table Scroll */
@media screen and (max-width: 768px) {
  .sys-list-table__content {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}



.heroui-slider-container {
  height: 75vh;
  background: linear-gradient(45deg, #e3f2fd 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: background 1s ease-in-out;
}

.heroui-slider-container .heroui-slider-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1350px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
  /* Ensure content is above moving circles */
}

.heroui-slider-container .heroui-slider-content[data-transitioning="true"] {
  opacity: 0;
}

.heroui-slider-container .heroui-slider-text {
  max-width: 50%;
}

.heroui-slider-container .heroui-slider-content[data-transitioning="false"] .heroui-slider-text {
  animation: heroui-slider-text-slide 0.8s ease-in-out;
}

.heroui-slider-container .heroui-slider-content[data-transitioning="true"] .heroui-slider-text {
  animation: heroui-slider-text-slide-out 0.8s ease-in-out;
}

@keyframes heroui-slider-text-slide {
  0% {
    opacity: 0;
    transform: translateX(var(--translate-start));
  }

  60% {
    opacity: 0.8;
    transform: translateX(var(--translate-mid));
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroui-slider-text-slide-out {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(var(--translate-end));
  }
}

.heroui-slider-container .heroui-slider-content[data-direction="right"] {
  --translate-start: -100px;
  --translate-mid: 10px;
  --translate-end: 100px;
}

.heroui-slider-container .heroui-slider-content[data-direction="left"] {
  --translate-start: 100px;
  --translate-mid: -10px;
  --translate-end: -100px;
}

.heroui-slider-container .heroui-slider-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #1a237e;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.heroui-slider-container .heroui-slider-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.heroui-slider-container .heroui-slider-button {
  background-color: #1a237e;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.heroui-slider-container .heroui-slider-button:hover {
  background-color: #283593;
}

.heroui-slider-container .heroui-slider-subtext {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
}

.heroui-slider-container .heroui-slider-stats {
  position: absolute;
  right: 10%;
  top: 10%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.heroui-slider-container .heroui-slider-content[data-transitioning="false"] .heroui-slider-stats {
  animation: heroui-slider-stats-slide 0.8s ease-in-out 0.2s;
}

.heroui-slider-container .heroui-slider-content[data-transitioning="true"] .heroui-slider-stats {
  animation: heroui-slider-stats-slide-out 0.8s ease-in-out 0.2s;
}

@keyframes heroui-slider-stats-slide {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }

  60% {
    opacity: 0.8;
    transform: translateX(-10px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroui-slider-stats-slide-out {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-100px);
  }
}

.heroui-slider-container .heroui-slider-stat-card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.heroui-slider-container .heroui-slider-stat-value {
  font-weight: bold;
  color: #1a237e;
}

.heroui-slider-container .heroui-slider-image {
  max-width: 48%;
  border-radius: 10px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  z-index: 2;
  /* Ensure image is above moving circles */
}

.heroui-slider-container .heroui-slider-content[data-transitioning="true"] .heroui-slider-image {
  opacity: 0;
}

.heroui-slider-container .heroui-slider-circle-top-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: #1e88e5;
  border-bottom-right-radius: 100px;
  opacity: 0.3;
  z-index: 1;
}

.heroui-slider-container .heroui-slider-circle-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: #1e88e5;
  border-top-left-radius: 100px;
  opacity: 0.3;
  z-index: 1;
}

.heroui-slider-container .heroui-slider-moving-circle {
  position: absolute;
  background: rgba(30, 136, 229, 0.2);
  border-radius: 50%;
  z-index: 1;
  /* Behind content but part of background */
}

.heroui-slider-container .heroui-slider-circle-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
  animation: move-circle-1 20s linear infinite;
}

.heroui-slider-container .heroui-slider-circle-2 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 70%;
  animation: move-circle-2 25s linear infinite;
}

.heroui-slider-container .heroui-slider-circle-3 {
  width: 120px;
  height: 120px;
  top: 80%;
  left: 30%;
  animation: move-circle-3 30s linear infinite;
}

@keyframes move-circle-1 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(50vw, 20vh);
  }

  50% {
    transform: translate(80vw, 60vh);
  }

  75% {
    transform: translate(20vw, 40vh);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes move-circle-2 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-40vw, -30vh);
  }

  50% {
    transform: translate(-60vw, 50vh);
  }

  75% {
    transform: translate(-20vw, -10vh);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes move-circle-3 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(30vw, -50vh);
  }

  50% {
    transform: translate(70vw, -20vh);
  }

  75% {
    transform: translate(10vw, 30vh);
  }

  100% {
    transform: translate(0, 0);
  }
}

.heroui-slider-container .heroui-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1e88e5;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  z-index: 3;
  /* Above moving circles */
}

.heroui-slider-container .heroui-slider-arrow:hover {
  background-color: #1565c0;
  transform: translateY(-50%) scale(1.1);
}

.heroui-slider-container .heroui-slider-arrow-left {
  left: 20px;
}

.heroui-slider-container .heroui-slider-arrow-right {
  right: 20px;
}



/* Responsive adjustments for tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .heroui-slider-container {
    height: 60vh;
    /* Reduce height for tablets */
    padding: 0.3rem;
  }

  .heroui-slider-container .heroui-slider-title {
    font-size: 2.5rem;
    /* Smaller title text */
    margin-bottom: 0.8rem;
  }

  .heroui-slider-container .heroui-slider-description {
    font-size: 1rem;
    /* Smaller description text */
    margin-bottom: 1.5rem;
  }

  .heroui-slider-container .heroui-slider-button {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    /* Smaller button text */
  }

  .heroui-slider-container .heroui-slider-subtext {
    font-size: 0.8rem;
    /* Smaller subtext */
  }

  .heroui-slider-container .heroui-slider-image {
    max-width: 45%;
    /* Slightly smaller image */
  }

  .heroui-slider-container .heroui-slider-stats {
    right: 5%;
    /* Adjust stats position */
    gap: 0.8rem;
  }

  .heroui-slider-container .heroui-slider-stat-card {
    padding: 0.8rem;
  }

  .heroui-slider-container .heroui-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .heroui-slider-container .heroui-slider-arrow-left {
    left: 15px;
  }

  .heroui-slider-container .heroui-slider-arrow-right {
    right: 15px;
  }
}

/* Responsive adjustments for mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .heroui-slider-container {
    height: 60vh;
    /* Adjust height for mobile */
    flex-direction: column;
    /* Stack content vertically */
    padding: 0.2rem;
  }

  .heroui-slider-container .heroui-slider-content {
    flex-direction: column;
    /* Stack text and image vertically */
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 90%;
    /* Reduce max-width for mobile */
  }

  .heroui-slider-container .heroui-slider-text {
    max-width: 100%;
    /* Full width for text */
    margin-bottom: 1rem;
  }

  .heroui-slider-container .heroui-slider-title {
    font-size: 1.8rem;
    /* Smaller title for mobile */
    margin-bottom: 0.6rem;
  }

  .heroui-slider-container .heroui-slider-description {
    font-size: 0.9rem;
    /* Smaller description for mobile */
    margin-bottom: 1rem;
  }

  .heroui-slider-container .heroui-slider-button {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    /* Smaller button text */
  }

  .heroui-slider-container .heroui-slider-subtext {
    font-size: 0.7rem;
    /* Smaller subtext */
  }

  .heroui-slider-container .heroui-slider-image {
    max-width: 80%;
    /* Larger image relative to container */
    margin-top: 1rem;
  }

  .heroui-slider-container .heroui-slider-stats {
    position: static;
    /* Remove absolute positioning */
    flex-direction: row;
    /* Align stats horizontally */
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .heroui-slider-container .heroui-slider-stat-card {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .heroui-slider-container .heroui-slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .heroui-slider-container .heroui-slider-arrow-left {
    left: 10px;
  }

  .heroui-slider-container .heroui-slider-arrow-right {
    right: 10px;
  }

  /* Adjust moving circles for smaller screens */
  .heroui-slider-container .heroui-slider-circle-1 {
    width: 100px;
    height: 100px;
    top: 5%;
    left: 5%;
  }

  .heroui-slider-container .heroui-slider-circle-2 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 60%;
  }

  .heroui-slider-container .heroui-slider-circle-3 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 20%;
  }
}

/* Extra small devices (max-width: 480px) */
@media (max-width: 480px) {
  .heroui-slider-container .heroui-slider-title {
    font-size: 1.5rem;
    /* Even smaller title */
  }

  .heroui-slider-container .heroui-slider-description {
    font-size: 0.8rem;
    /* Even smaller description */
  }

  .heroui-slider-container .heroui-slider-button {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
  }

  .heroui-slider-container .heroui-slider-subtext {
    font-size: 0.65rem;
  }

  .heroui-slider-container .heroui-slider-image {
    max-width: 90%;
    /* Full width image for very small screens */
  }

  .heroui-slider-container .heroui-slider-stats {
    flex-direction: column;
    /* Stack stats vertically for very small screens */
    align-items: center;
  }

  .heroui-slider-container .heroui-slider-stat-card {
    font-size: 0.7rem;
    padding: 0.4rem;
  }

  .heroui-slider-container .heroui-slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}


.sec-icon {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 auto;
}

.sec-icon::before {
  content: "";
  position: absolute;
  height: 1px;
  left: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333333;
  width: 50px;
}

.sec-icon::after {
  content: "";
  position: absolute;
  height: 1px;
  right: -70px;
  margin-top: -5.5px;
  top: 60%;
  background: #333;
  width: 50px;
}

.advertisers-service-sec {
  background-color: #f5f5f5;
}

.advertisers-service-sec span {
  color: #004aad;
}

.advertisers-service-sec .col {
  padding: 0 1em 1em 1em;
  text-align: center;
}

.advertisers-service-sec .service-card {
  width: 100%;
  height: 100%;
  padding: 2em 1.5em;
  border-radius: 5px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
}

.advertisers-service-sec .service-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(#5dd9f2, #004aad);
  position: absolute;
  left: 0%;
  top: -98%;
  z-index: -2;
  transition: all 0.4s cubic-bezier(0.77, -0.04, 0, 0.99);
}

.advertisers-service-sec h3 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  color: #1f194c;
  margin: 1em 0;
  z-index: 3;
}

.advertisers-service-sec p {
  color: #575a7b;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  z-index: 3;
}

.advertisers-service-sec .icon-wrapper {
  background-color: #2c7bfe;
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.5s;
  z-index: 3;
}

.advertisers-service-sec .service-card:hover:after {
  top: 0%;
}

.service-card .icon-wrapper {
  background-color: #ffffff;
  color: #004aad;
}

.advertisers-service-sec .service-card:hover .icon-wrapper {
  color: #0dcaf0;
}

.advertisers-service-sec .service-card:hover h3 {
  color: #ffffff;
}

.advertisers-service-sec .service-card:hover p {
  color: #f0f0f0;
}

/* ADVERTISERS SERVICE CARD ENDED */
.home-service-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #fff;
  transition: color 0.4s ease;
  z-index: 1;
}

.home-service-card::before {
  content: "";
  position: absolute;
  background: #c5dbfc;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* smoother */
  z-index: 0;
  transform: scale(0);
  width: 200%;
  height: 200%;
}


.service-text {
  position: relative;
  z-index: 10;
  transition: color 0.4s ease;
}


/* .home-service-card:hover,
.home-service-card:hover .service-text,
.home-service-card:hover .service-text h5,
.home-service-card:hover .service-text p {
  color: #fff;
} */
/* Existing CSS (unchanged) */
.anim-bottom-right .service-text,
.anim-top-right .service-text {
  padding-right: 220px;
}

.anim-bottom-left .service-text,
.anim-top-left .service-text {
  padding-left: 220px;
}

.circle-image {
  position: absolute;
  width: 200px;
  height: 150px;
  object-fit: cover;
  z-index: 2;
}

.image-bottom-left {
  bottom: 0;
  left: 0;
  border-top-right-radius: 100px;
}

.image-bottom-right {
  bottom: 0;
  right: 0;
  border-top-left-radius: 100px;
}

.image-top-right {
  top: 0;
  right: 0;
  border-bottom-left-radius: 100px;
}

.image-top-left {
  top: 0;
  left: 0;
  border-bottom-right-radius: 100px;
}

.anim-bottom-right::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
  z-index: -1;
}

.anim-bottom-right:hover::before {
  transform: scale(1);
}

.anim-bottom-left::before {
  width: 200%;
  height: 200%;
  bottom: 0;
  left: 0;
  transform-origin: bottom left;
}

.anim-bottom-left:hover::before {
  transform: scale(1);
}

.anim-top-right::before {
  width: 200%;
  height: 200%;
  top: 0;
  right: 0;
  transform-origin: top right;
}

.anim-top-right:hover::before {
  transform: scale(1);
}

.anim-top-left::before {
  width: 200%;
  height: 200%;
  top: 0;
  left: 0;
  transform-origin: top left;
}

.anim-top-left:hover::before {
  transform: scale(1);
}

/* New Responsive CSS */
@media (max-width: 767px) {

  /* Ensure card is a flex container with column direction */
  .home-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 350px;
    /* Adjusted for content and image */
    margin-bottom: 20px;
    /* Spacing between stacked cards */
  }

  /* Image styles for responsive screens */
  .circle-image {
    position: static;
    /* Remove absolute positioning */
    width: 100%;
    /* Full width for better responsiveness */
    max-width: 300px;
    /* Limit max width */
    height: 150px;
    /* Fixed height for consistency */
    border-radius: 5px;
    /* Uniform border-radius */
    object-fit: cover;
    z-index: 2;
    margin-bottom: 15px;
    /* Space between image and content */
  }

  /* Reset individual image positioning classes */
  .image-bottom-left,
  .image-bottom-right,
  .image-top-right,
  .image-top-left {
    border-radius: 5px;
    /* Ensure uniform border-radius */
  }

  /* Content styling */
  .service-text {
    padding: 15px;
    /* Uniform padding */
    text-align: center;
    /* Center text for better appearance */
    width: 100%;
    /* Ensure content takes full width */
  }

  /* Disable hover animations for mobile */
  .anim-bottom-right::before,
  .anim-bottom-left::before,
  .anim-top-right::before,
  .anim-top-left::before {
    display: none;
    /* Disable pseudo-element animations */
  }

  .anim-bottom-right .service-text,
  .anim-top-right .service-text {
    padding-right: 0px;
  }

  .anim-bottom-left .service-text,
  .anim-top-left .service-text {
    padding-left: 0px;
  }
}

.val-message{
  color: rgb(236, 47, 47);
}

.Toastify__toast--success {
  background-color: #1f1f1f !important;
  color: #00ff88;
}

.Toastify__toast--error {
  background-color: #1f1f1f !important;
  color: #ff4c4c;
}

.Toastify__toast--info {
  background-color: #1f1f1f !important;
  color: #4cbaff;
}

.Toastify__toast--warning {
  background-color: #1f1f1f !important;
  color: #ffc107;
}





