@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: white;
}



.sl-header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: linear-gradient(to right, #ffffff, #f8f4ff);
  box-shadow: 0 4px 20px rgba(192, 132, 252, 0.3);
  z-index: 100;
}

.sl-logo {
  height: 40px;
}

.sl-logo img {
  /* width: 170px;
  height: 80px; */
  position: relative;
  top: 0px;
  left: 20px;
}

.sl-nav-items {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.sl-nav-item {
  background: linear-gradient(90deg, #ff006a, #a100ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 10px 0;
  transition: all 0.3s ease;
  position: relative;
}

.sl-nav-item:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.sl-has-dropdown {
  position: relative;
  left: -35px;
  transition: all 0.6s ease;
}






.sl-mega-menu {
  position: absolute;
  top: 115%;
  left: -22px;
  width: 1000px;
  background: #ffffff;
  display: block;
  grid-template-columns: 1fr 3fr;
  box-shadow: 0 8px 24px rgba(160, 0, 255, 0.25);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e5d9ff;
  max-height: 0;
  visibility: hidden;
  transition: max-height 1s ease-out, visibility 0s 1s;
}


.sl-has-dropdown:hover .sl-mega-menu {
  max-height: 800px;
  visibility: visible;
  display: block;
  transition: max-height 1s ease-out, visibility 0s 0s;
}


.sl-categories {
  background: linear-gradient(to bottom, #faf5ff, #f3e8ff);
  padding: 2rem;
}


.sl-categories {
  background: linear-gradient(to bottom, #faf5ff, #f3e8ff);
  padding: 2rem;
}

.sl-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sl-category-item {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #4a0072;
}

.sl-category-item .sl-dot {
  width: 10px;
  height: 10px;
  background: #ff1f8f;
  border-radius: 50%;
  box-shadow: 0 0 6px #ff1f8f;
}

.sl-courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
}

.sl-course-card {
  padding: 1.5rem;
  border-radius: 10px;
  background: #f9f2ff;
  box-shadow: 0 4px 12px rgba(150, 0, 255, 0.1);
  transition: transform 0.3s ease;
}

.sl-course-card:hover {
  transform: translateY(-4px);
}

.sl-course-card h3 {
  margin-bottom: 8px;
  color: #2a005f;
}

.sl-course-card p {
  color: #5b3d78;
  font-size: 14px;
}





.sl-search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  color: #a100ff;
  font-size: 1.1rem;
}

/* Search Bar Container */
.sl-search-bar {
  display: flex;
  align-items: center;
  background: rgba(245, 230, 255, 0.5);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  width: 280px;
  border: 1px solid #d8c5ff;
  position: relative;
}

/* Search Input Field */
.sl-search-bar input {
  border: none;
  outline: none;
  width: 100%;
  padding: 6px;
  background: transparent;
  color: #4a0072;
  font-weight: 500;
  font-size: 0.95rem;
}

.sl-search-bar button:hover {
  background: #7c00c0;
}

/* Dropdown Container (Curtain Effect) */
.search-dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 400px;
  background: #fff9ff;
  border: 1px solid #e2ccff;
  border-radius: 16px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(161, 0, 255, 0.08);
  z-index: 99;
  padding: 0 1rem;
}

/* Active State for Dropdown (Reveal like Curtain) */
.search-dropdown.active {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 1rem;
}

/* Dropdown Heading */
.search-dropdown h4 {
  margin: 0 0 0.8rem 0;
  font-size: 1rem;
  color: #4a0072;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Trending Tags Container */
.trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Individual Trending Tag */
.trending-tags span {
  background: #f5e6ff;
  color: #4a0072;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.trending-tags span:hover {
  background: #e6caff;
  transform: translateY(-2px);
}

/* Optional: Responsive tweak */
@media (max-width: 400px) {
  .sl-search-bar {
    width: 100%;
  }

  .search-dropdown {
    width: 100%;
  }
}



.sl-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.sl-btn-login {
  background: transparent;
  color: #a100ff;
  border: 2px solid #a100ff;
  margin-right: 5px;
  text-decoration: none;
}

.sl-btn-login:hover {
  background: #b100f5;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(177, 0, 245, 0.4);
}

.sl-btn-signup {
  background: linear-gradient(90deg, #ff006a, #a100ff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 0, 106, 0.3);
  text-decoration: none;
}

.sl-btn-enrollnow {
  background: transparent;
  color: #b100f5;
  border: 2px solid #b100f5;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin-right: 5px;
}

.sl-btn-enrollnow:hover {
  background: #b100f5;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(177, 0, 245, 0.4);
}


.sl-btn-signup:hover {
  transform: scale(1.05);
}

.course-tab {
  position: relative;
  left: 10px;
  background: linear-gradient(90deg, #ff006a, #a100ff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 0, 106, 0.3);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.sl-has-dropdown:hover {
  transform: scale(1.1);
}

.auth-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.auth-section.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.auth-box {
  background: #f5edf8;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  z-index: 10000;
}

.auth-section.show .auth-box {
  transform: scale(1);
}

.auth-container {
  position: relative;
  width: 850px;
  height: 550px;
  background: #f5edf8;
  border-radius: 30px;
  box-shadow: 0 0 30px rgba(84, 2, 95, 0.2);
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.auth-container.hidden {
  display: none;
}

.auth-container h1 {
  font-size: 36px;
  margin: -10px 0;
  color: white;
}

.auth-container p {
  font-size: 14.5px;
  margin: 15px 0;
  color: white;
}

.auth-form-box {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #54025f;
  padding: 40px;
  z-index: 1;
  transition: 0.2s ease-in-out .2s, visibility 0s .2s;
}

.auth-form-box.register {
  visibility: hidden;
}

.auth-container.active .auth-form-box {
  right: 50%;
}

.auth-container.active .auth-form-box.register {
  visibility: visible;
}

.auth-form-box form {
  width: 100%;
}

.auth-input-group {
  position: relative;
  margin: 30px 0;
}

.auth-input-group input {
  width: 100%;
  padding: 13px 50px 13px 20px;
  background: #f5edf8;
  border-radius: 8px;
  border: 2px solid transparent;
  outline: none;
  font-size: 16px;
  color: #54025f;
  font-weight: 500;
  transition: border 0.3s ease;
}

.auth-input-group input:hover {
  border-image: linear-gradient(45deg, #ff0844, #6f0eff) 1;
}

.auth-input-group input::placeholder {
  color: #888;
  font-weight: 400;
}

.auth-input-group i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #54025f;
}

.auth-forgot-link {
  margin: -15px 0 15px;
}

.auth-forgot-link a {
  font-size: 14.5px;
  color: #54025f;
}

.auth-btn {
  width: 100%;
  height: 48px;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(84, 2, 95, 0.2);
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  transition: background 0.3s ease;
}

.auth-btn:hover {
  background: linear-gradient(45deg, #b3002e, #3c00b3);
  ;
}

.auth-social-icons {
  display: flex;
  justify-content: center;
}

.auth-social-icons a {
  display: inline-flex;
  padding: 10px;
  border: 2px solid #54025f;
  border-radius: 8px;
  font-size: 24px;
  color: #54025f;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.auth-social-icons a:hover {
  border-color: transparent;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  color: #fff;
}

.auth-toggle-section {
  position: absolute;
  width: 100%;
  height: 100%;
}

.auth-toggle-section::before {
  content: '';
  position: absolute;
  left: -250%;
  width: 300%;
  height: 100%;
  background: linear-gradient(to right, #54025f, #54025f);
  border-radius: 150px;
  z-index: 2;
  transition: 1.8s ease-in-out;
}

.auth-container.active .auth-toggle-section::before {
  left: 50%;
}

.auth-toggle-panel {
  position: absolute;
  width: 50%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: 0.2s ease-in-out;
}

.auth-toggle-panel.left {
  left: 0;
  transition-delay: .2s;
}

.auth-container.active .auth-toggle-panel.left {
  left: -50%;
  transition-delay: 0.2s;
}

.auth-toggle-panel.right {
  right: -50%;
  transition-delay: 0.2s;
}

.auth-container.active .auth-toggle-panel.right {
  right: 0;
  transition-delay: .2s;
}

.auth-toggle-panel p {
  margin-bottom: 20px;
}

.auth-toggle-panel .auth-btn {
  width: 160px;
  height: 46px;
  /* background: transparent; */
  border: 2px solid #fff;
  box-shadow: none;
  transition: background 0.3s ease, border 0.3s ease;
}

.auth-toggle-panel .auth-btn:hover {
  background: linear-gradient(45deg, #b3002e, #3c00b3);
  border-color: #fff;
}






.course-section {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background: #fff9fd;
  /* Lighter pink background */
}

.course-categories {
  width: 20%;
}

.course-categories h3 {
  padding-bottom: 5px;
  font-size: 20px;
  background: linear-gradient(90deg, #ff006a, #a100ff);
  background-clip: text;
  color: transparent;
}

.course-categories ul {
  list-style: none;
  padding: 0;
}

.tab-category-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-category-item:hover {
  background-color: rgba(255, 102, 179, 0.15);
  /* Lighter hover */
}

.tab-category-item.tab-active {
  background-color: rgba(255, 102, 179, 0.2);
  /* Lighter active */
  /* font-weight: bold; */
}

.dot-header {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

/* Updated category dot colors to lighter shades */
.dev {
  background-color: #ff0084;
}

/* Lighter pink */
.ds {
  background-color: #6200ff;
}

/* Lighter purple */
.dm {
  background-color: #ff0066;
}

/* Lighter bright pink */
.design {
  background-color: #6600ff;
}

/* Lighter deep purple */
.cloud {
  background-color: #b700ff;
}

/* Lighter vibrant purple */

.popular-courses {
  width: 50%;
}

.popular-courses h3 {
  background: linear-gradient(90deg, #ff006a, #a100ff);
  background-clip: text;
  color: transparent;
  padding-bottom: 15px;
  font-size: 21px;
}

.courses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.tab-course-panel {
  display: none;
}

.tab-course-panel.panel-active {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 15px;
  animation: fadeIn 0.5s ease-in-out;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.course-card {
  border-radius: 8px;
  transition: all 0.6s ease;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, .07);
  text-align: center;
  padding-top: 10px;
}

.course-card p {
  font-size: 14px;
  padding: 0 20px;
}

.course-card h4 {
  background: linear-gradient(90deg, #ff006a, #a100ff);
  color: #ffff;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 0;
  margin-top: 10px;
  border-radius: 0 0 10px 10px;
}

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


.featured-course {
  width: 20%;
}

.featured-course h3 {
  background: linear-gradient(90deg, #ff006a, #a100ff);
  background-clip: text;
  color: transparent;
  padding-bottom: 15px;
  font-size: 21px;
}

.tab-featured-panel {
  display: none;
}

.tab-featured-panel.panel-active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.featured-card {
  padding: 15px;
  border-radius: 8px;
  /* background: #DBFFCB; */
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
  height: 232px;
  transition: all 0.6s ease;
}

/* .featured-card h4{
  font-weight: 600;
} */

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

/* Lighter color variations for featured cards */


.featured-ds {
  background: linear-gradient(to bottom right, #d9b3ff, #a27eff, #8a48d8);
  /* Lighter gradient */
}

.featured-dm {
  background: linear-gradient(to bottom right, #ffb3d9, #ff66a7, #ff4d8b);
  /* Lighter gradient */
}

.featured-design {
  background: linear-gradient(to bottom right, #e6b3ff, #9f64d7, #7c45a2);
  /* Lighter gradient */
}

.featured-cloud {
  background: linear-gradient(to bottom right, #e6b3ff, #c49eff, #a680f2);
  /* Lighter gradient */
}


.duration {
  background: #ff99c2;
  /* Lighter bright pink */
  color: #8a00e6;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.start-date {
  color: #8a00e6;
  /* Lighter pink */
  margin-top: 10px;
}

.view-btn {
  background: linear-gradient(90deg, #ff80c2, #a279e0);
  /* Lighter gradient */
  color: white;
  width: 80%;
  margin-top: 10px;
  padding: 10px;
  border-radius: 15px;
  margin-left: 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.6s ease;
}

.view-btn:hover {
  background: linear-gradient(90deg, #ff99c2, #b586ff);
  /* Lighter hover gradient */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  /* Lighter box shadow */
  transform: scale(1.05);
}



.top-banner {
  background: linear-gradient(90deg, #ff4e84, #b266ff);
  color: white;
  text-align: center;
  padding: 12px;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 18px rgba(255, 105, 180, 0.25);
  font-size: 16px;
  letter-spacing: 0.4px;
}

/* Countdown Container */
.top-countdown-timer {
  display: inline-flex;
  justify-content: center;
  gap: 16px;
  margin-left: 48px;
}

/* Individual Timer Box */
.top-time-box {
  background: #ff3366;
  color: white;
  padding: 6px 10px;
  border-radius: 10px;
  min-width: 44px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 2px 12px rgba(255, 80, 120, 0.3);
  text-align: center;
}

/* Timer Label */
.top-time-label {
  font-size: 10px;
  opacity: 0.8;
  display: block;
  margin-top: 2px;
}


/* Responsive Styles */

/* Large screens (desktops) */
@media screen and (max-width: 1200px) {
  .sl-mega-menu {
    width: 90vw;
    left: -200px;
  }


}

/* Medium screens (tablets) */
@media screen and (max-width: 992px) {
  .sl-nav-items {
    gap: 0;
  }

  .sl-search-bar {
    width: 200px;
  }

  .sl-mega-menu {
    width: 95vw;
    left: -150px;
  }

  .auth-container {
    width: 90%;
    max-width: 700px;
  }
}

/* Small screens (landscape phones) */
@media screen and (max-width: 768px) {
  .sl-header {
    flex-direction: column;
    padding: 10px;
  }

  .sl-has-dropdown {
    top: 0;
    left: 0;
    margin: 10px;
  }

  .sl-logo {
    position: relative;
    left: -110px;
  }

  .sl-nav-items {
    flex-direction: column;
    width: 100%;
  }

  .sl-search-bar {
    width: 100%;
    margin: 1rem 0;
  }

  .sl-auth-buttons {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  .sl-mega-menu {
    position: static;
    width: 100%;
    display: none;
  }

  .sl-has-dropdown:hover .sl-mega-menu {
    display: block;
    margin-top: 10px;
    margin-bottom: 40px;
  }


  .auth-container {
    width: 95%;
    height: 85vh;
  }

  .auth-form-box {
    width: 100%;
    padding: 20px;
  }

  .auth-toggle-section::before {
    display: none;
  }

  .auth-toggle-panel {
    display: none;
  }

  .auth-container.active .auth-form-box {
    right: 0;
  }
}

/* Extra small screens (portrait phones) */
@media screen and (max-width: 576px) {
  .sl-btn {
    padding: 6px 12px;
    font-size: 14px;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .auth-container {
    height: auto;
    min-height: 500px;
  }

  .auth-input-group input {
    padding: 10px 40px 10px 15px;
    font-size: 14px;
  }

  .auth-btn {
    height: 40px;
    font-size: 14px;
  }

  .top-banner {
    flex-direction: column;
    padding: 10px;
  }

  .top-countdown-timer {
    margin-top: 10px;
  }

  .top-time-box {
    font-size: 14px;
    padding: 5px;
    width: 30px;
    height: 30px;
  }

  .top-time-label {
    font-size: 10px;
  }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: black;
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 50px;
  }

  .sl-nav-items {
    display: none;
  }

  .sl-nav-items.show {
    display: flex;
  }
}

/* Fix for the auth section on mobile */
@media screen and (max-width: 768px) {
  .auth-container {
    overflow: hidden;
  }

  .auth-form-box.register {
    visibility: visible;
    opacity: 0;
    position: absolute;
    transform: translateX(100%);
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  }

  .auth-container.active .auth-form-box.login {
    transform: translateX(-100%);
    opacity: 0;
  }

  .auth-container.active .auth-form-box.register {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Additional fix for featured course on mobile */
@media screen and (max-width: 768px) {
  .featured-card {
    height: auto;
  }

  .view-btn {
    margin-left: 0;
    width: 100%;
  }
}


@media (max-width: 480px) {

  .course-categories h3,
  .popular-courses h3,
  .featured-course h3 {
    font-size: 18px;
  }

  .tab-category-item {
    font-size: 14px;
    padding: 8px;
  }

  .course-card {
    font-size: 13px;
    padding: 8px;
  }

  .featured-card {
    font-size: 13px;
    padding: 8px;
  }
}


/* Responsive Breakpoints for Mobile */
@media (max-width: 768px) {
  .course-section {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .course-categories,
  .popular-courses,
  .featured-course {
    width: 100%;
    margin-bottom: 20px;
  }

  .course-categories h3,
  .popular-courses h3,
  .featured-course h3 {
    font-size: 18px;
  }

  /* Stack course cards in a single column */
  .courses-grid {
    grid-template-columns: 1fr;
  }

  .tab-category-item {
    font-size: 16px;
  }

  .featured-card,
  .course-card {
    width: 100%;
    margin-bottom: 15px;
  }

  /* Featured course styling for smaller screens */
  .featured-card {
    height: auto;
  }

  .view-btn {
    width: 100%;
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .course-section {
    padding: 10px;
  }

  .course-tab {
    left: 0;
  }

  .course-categories,
  .popular-courses,
  .featured-course {
    width: 100%;
    margin-bottom: 15px;
  }

  .course-categories h3,
  .popular-courses h3,
  .featured-course h3 {
    font-size: 16px;
  }

  /* Stack course cards in a single column */
  .courses-grid {
    grid-template-columns: 1fr;
  }

  .tab-category-item {
    font-size: 14px;
  }

  .view-btn {
    padding: 12px;
    font-size: 14px;
  }

  .search-dropdown {
    width: 380px;
  }
}




.tr-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.tr-section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.tr-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.tr-section-title h2::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 4px;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  bottom: -10px;
  left: 20%;
}

.tr-options-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.tr-option {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tr-option:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Classroom Training Styles */
.tr-classroom {
  background-color: #fff7f5;
  border: 1px solid #ffd8d2;
}

.tr-classroom .tr-header {
  background: linear-gradient(to right, #54025f, #54025f);
  color: #fff;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.tr-classroom .tr-header::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: url('/api/placeholder/150/150') no-repeat center;
  background-size: contain;
  opacity: 0.1;
  right: -30px;
  top: -30px;
  transform: rotate(30deg);
}

/* Online Training Styles */
.tr-online {
  background-color: #fdf5ff;
  border: 1px solid #f3d7ff;
}

.tr-online .tr-header {
  background: linear-gradient(to right, #54025f, #54025f);
  color: #fff;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.tr-online .tr-header::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: url('/api/placeholder/150/150') no-repeat center;
  background-size: contain;
  opacity: 0.1;
  right: -30px;
  top: -30px;
  transform: rotate(30deg);
}

.tr-header h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.tr-header p {
  margin: 0;
  font-size: 16px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.tr-content {
  padding: 25px;
}

.tr-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.tr-classroom .tr-features li {
  padding: 10px 0 10px 35px;
  position: relative;
  font-size: 15px;
  color: #e11f09;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tr-classroom .tr-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e11f09'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='M20 6H4a2 2 0 00-2 2v8a2 2 0 002 2h16a2 2 0 002-2V8a2 2 0 00-2-2zm0 10H4V8h16v8z'/%3E%3Cpath d='M17 7h1v1h-1zM14 7h1v1h-1zM17 10H7v1h10zM7 13h10v1H7z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.tr-online .tr-features li {
  padding: 10px 0 10px 35px;
  position: relative;
  font-size: 15px;
  color: #6f0eff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tr-online .tr-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236f0eff'%3E%3Cpath d='M20 3H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h3l-1 1v2h12v-2l-1-1h3c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 13H4V5h16v11z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.tr-testimonials {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  position: relative;
}

.tr-testimonials::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 50px;
  color: rgba(0, 0, 0, 0.1);
  font-family: Georgia, serif;
}

.tr-testimonial-text {
  font-style: italic;
  margin-bottom: 10px;
  font-size: 14px;
}

.tr-testimonial-author {
  display: flex;
  align-items: center;
}

.tr-testimonial-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #ddd;
  overflow: hidden;
}

.tr-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tr-testimonial-name {
  font-weight: 600;
  font-size: 14px;
}

.tr-classroom .tr-cta {
  display: block;
  text-align: center;
  background-color: #e11f09;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.tr-classroom .tr-cta:hover {
  background-color: #b30f06;
}

.tr-online .tr-cta {
  display: block;
  text-align: center;
  background-color: #6f0eff;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.tr-online .tr-cta:hover {
  background-color: #5600d1;
}

.tr-tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.tr-classroom .tr-tag {
  background-color: rgba(225, 31, 9, 0.2);
  color: #e11f09;
}

.tr-online .tr-tag {
  background-color: rgba(111, 14, 255, 0.2);
  color: #6f0eff;
}

.tr-schedule {
  margin-bottom: 20px;
}

.tr-schedule-title {
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.tr-schedule-title::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
}

.tr-classroom .tr-schedule-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e11f09'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm-1-13h2v5h-2zm0 6h2v2h-2z'/%3E%3C/svg%3E");
}

.tr-online .tr-schedule-title::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236f0eff'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8zm-1-13h2v5h-2zm0 6h2v2h-2z'/%3E%3C/svg%3E");
}

.tr-schedule-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.tr-progress {
  width: 100%;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  margin-top: 8px;
  overflow: hidden;
}

.tr-progress-bar {
  height: 100%;
  border-radius: 3px;
  width: 75%;
}

.tr-online .tr-progress-bar {
  background-color: #6f0eff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .tr-options-container {
    flex-direction: column;
  }

  .tr-section-title h2 {
    font-size: 25px;
  }

  .tr-option {
    max-width: 100%;
  }
}



.sfc-magic-success {
  background: #ffffff;
  padding: 80px 30px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.sfc-magic-title {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.sfc-magic-subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 50px;
}

.sfc-magic-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.sfc-magic-card {
  position: relative;
  width: 280px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  border: 2px solid #eaeaea;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.sfc-magic-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, #ff00cc, #3333ff, #ff00cc);
  animation: rotateAura 6s linear infinite;
  z-index: 0;
  opacity: 0.2;
}

.sfc-magic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 0, 200, 0.4);
}

@keyframes rotateAura {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.sfc-magic-card>* {
  position: relative;
  z-index: 2;
}

.sfc-magic-avatar img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid #ff00cc;
  box-shadow: 0 0 20px #ff00cc55;
  margin-bottom: 15px;
}

.sfc-magic-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: #111;
}

.sfc-role {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.sfc-quote {
  font-size: 0.95rem;
  color: #222;
  font-style: italic;
  padding: 10px 0;
  background: linear-gradient(90deg, #ff00cc20, #3333ff20);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}



.testimonial {
  font-style: italic;
  color: #666;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
}

.testimonial:before {
  content: '"';
  font-size: 40px;
  color: rgba(31, 1, 89, 0.1);
  position: absolute;
  top: -10px;
  left: -8px;
}

.testimonial:after {
  content: '"';
  font-size: 40px;
  color: rgba(31, 1, 89, 0.1);
  position: absolute;
  bottom: -30px;
  right: -8px;
}

@media (max-width: 480px) {


  .sfc-magic-title {
    font-size: 1.5rem;

  }

  .sfc-magic-subtitle {
    font-size: 17px;
  }
}









.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(31, 1, 89, 0.3) 0%,
      rgba(31, 1, 89, 0) 50%,
      rgba(227, 30, 112, 0) 50%,
      rgba(227, 30, 112, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card-header:hover .slider-overlay {
  opacity: 1;
}


.partner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partner-section {
  padding: 60px 20px 0 20px;
  margin-bottom: 20px;
}

.partner-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.partner-section-title {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.partner-section-title:after {
  content: '';
  position: absolute;
  width: 70%;
  height: 4px;
  background: linear-gradient(135deg, #1f0159, #e31e70);
  bottom: -10px;
  left: 15%;
  border-radius: 2px;
}

.partner-section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Partner Brands Section */
.partner-brands {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.partners-container {
  position: relative;
}

.partners-carousel {
  display: flex;
  gap: 30px;
  overflow-x: hidden;
  padding: 20px 0;
  position: relative;
}

@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 4));
  }
}

.automatic-scroll {
  display: flex;
  gap: 30px;
  animation: scrollBrands 30s linear infinite;
}

.partner-logo {
  min-width: 200px;
  height: 100px;
  background-color: #f9f9f9;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  transition: all 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.partner-logo-text {
  font-weight: 600;
  font-size: 20px;
  color: #333;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.carousel-control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-control:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.carousel-control svg {
  width: 20px;
  height: 20px;
  fill: #1f0159;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #1f0159, #e31e70);
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(227, 30, 112, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 30px;
}

.cta-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, #e31e70, #1f0159);
  transition: width 0.4s ease;
  z-index: -1;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(227, 30, 112, 0.5);
}

.cta-button:hover:before {
  width: 100%;
}

.cta-container {
  text-align: center;

}


@media (max-width: 768px) {

  .partners-carousel {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .partner-logo {
    min-width: 150px;
    height: 80px;
  }

  .partner-logo-text {
    font-size: 16px;
  }

  .cta-button {
    padding: 10px 25px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {


  .partners-carousel {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .partner-logo {
    min-width: 120px;
    height: 60px;
  }

  .partner-logo-text {
    font-size: 14px;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 12px;
  }
}



/* Finance Partners Section */
.finance-partners {
  margin-top: 20px;
}

.finance-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}



.finance-partners-list {
  flex: 1 1 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.finance-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.finance-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.finance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.finance-logo {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  padding: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.finance-logo-text {
  font-weight: 600;
  font-size: 18px;
}

.finance-details {
  flex: 1;
}

.finance-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1f0159;
}

.finance-offer {
  font-size: 16px;
  color: #e31e70;
  font-weight: 500;
  margin-bottom: 8px;
}

.finance-description {
  font-size: 14px;
  color: #666;
}

.eligibility-form {
  flex: 1 1 400px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}

.form-title {
  font-size: 24px;
  font-weight: 600;
  color: #1f0159;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 16px;
  color: #666;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #1f0159;
  box-shadow: 0 0 0 2px rgba(31, 1, 89, 0.1);
  outline: none;
}

.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(227, 30, 112, 0.1);
  color: #e31e70;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-left: 10px;
}

.shape-decorator {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(31, 1, 89, 0.05), rgba(227, 30, 112, 0.05));
  z-index: 0;
}

.shape-top-right {
  top: -100px;
  right: -100px;
}

.shape-bottom-left {
  bottom: -100px;
  left: -100px;
}

.partners-grid {
  display: none;
}

.partners-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-gap: 20px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .finance-section {
    flex-direction: column;
  }

  .eligibility-form {
    flex: 0;
  }

  .carousel-controls {
    gap: 10px;
  }

  .partner-logo {
    min-width: 160px;
  }

  .partner-section-title {
    font-size: 26px;
  }

  .partner-section-subtitle {
    font-size: 16px;
  }
}



.pot {
  background: linear-gradient(to right, #f3e9f5, #f3e9f5);
  color: #000;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow-x: hidden;
}

.pot-container {
  max-width: 1200px;
  width: 100%;
}

.pot-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(-20px);
  animation: pot-fadeInDown 0.8s forwards 0.2s;
}

.pot-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.pot-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.pot-subtitle {
  color: #000;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto;
}

.pot-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pot-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
}

.pot-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modified this part to create the curtain effect */
.pot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #5e35b1, #7c4dff);
  transition: height 0.6s ease;
  z-index: 0;
  opacity: 0.2;
}

/* This creates the curtain effect on hover */
.pot-card:hover::before {
  height: 100%;
}

.pot-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.pot-icon i {
  font-size: 1.8rem;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pot-title-small {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.pot-desc {
  color: #000;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.pot-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(160 58 255 / 30%);
  border-radius: 50%;
  z-index: 1;
  animation: pot-pulse 2s infinite;
}

.pot-cta-container {
  text-align: center;
  margin-top: 2rem;
  opacity: 0;
  animation: pot-fadeIn 1s forwards 1.2s;
}

.pot-btn {
  display: inline-block;
  padding: 15px 25px;
  font-size: 18px;
  background: linear-gradient(135deg, #1f0159, #e31e70);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(227, 30, 112, 0.3);
  position: relative;
  overflow: hidden;
}

.pot-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(227, 30, 112, 0.5);
}

.pot-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.pot-btn:hover::after {
  left: 100%;
}

/* Make sure cards are visible initially */
#card1,
#card2,
#card3,
#card4,
#card5 {
  animation: pot-reveal 0.6s forwards ease-out;
  animation-delay: calc(0.2s * var(--order));
}

#card1 {
  --order: 1;
}

#card2 {
  --order: 2;
}

#card3 {
  --order: 3;
}

#card4 {
  --order: 4;
}

#card5 {
  --order: 5;
}

@keyframes pot-pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

@keyframes pot-fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pot-fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pot-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .pot-title {
    font-size: 2rem;
  }

  .pot-features {
    grid-template-columns: 1fr;
  }
}



/* Responsive container */
.testimonial-container {
  max-width: 1400px;
  width: 100%;
  margin: 5rem auto;
  padding: 0 110px;
  box-sizing: border-box;
}

/* Responsive section header */
.testimonial-section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding: 0 20px;
}

.testimonial-section-header h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  letter-spacing: -0.5px;
}

.testimonial-section-header p {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: black;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive testimonials container */
.testimonials-container {
  display: flex;
  gap: 2rem;
  position: relative;
  flex-direction: row;
}

/* Main testimonial area */
.testimonial-main {
  flex: 1;
  position: relative;
  min-height: 500px;
}

.testimonial-card {
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Testimonial header */
.testimonial-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  position: relative;
  gap: 1rem;
}

.testimonial-image {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box, #a33de2 border-box;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease;
}

.testimonial-image:hover {
  transform: scale(1.1);
}

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

.testimonial-info {
  flex: 1;
  min-width: 200px;
}

.testimonial-info h3 {
  font-size: clamp(1.2rem, 4vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testimonial-course {
  font-size: clamp(0.9rem, 3vw, 1rem);
  color: #8d99ae;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.testimonial-outcome {
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(105, 48, 195, 0.2);
  transition: all 0.6s ease;
}

.testimonial-outcome:hover {
  transform: scale(1.1);
}

.testimonial-rating {
  position: relative;
  color: #FFA500;
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-top: 0.5rem;
  transition: all 0.6s ease;
}

.testimonial-rating:hover {
  transform: scale(1.1);
}

/* Testimonial content */
.testimonial-content {
  margin-bottom: 2rem;
  position: relative;
  font-size: clamp(1rem, 3vw, 1.15rem);
  line-height: 1.8;
  color: #2b2d42;
}

/* Testimonial list */
.testimonial-list {
  width: 350px;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #5e60ce rgba(0, 0, 0, 0.05);
}

.testimonial-list::-webkit-scrollbar {
  width: 6px;
}

.testimonial-list::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.testimonial-list::-webkit-scrollbar-thumb {
  background: #5e60ce;
  border-radius: 10px;
}

.testimonial-list-item {
  padding: 1.2rem;
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-left: 4px solid transparent;
  display: flex;
  align-items: center;
  position: relative;
}

.testimonial-list-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.testimonial-list-item.active {
  border-left: 4px solid #a33de2;
  background: linear-gradient(to right, rgba(94, 96, 206, 0.05), transparent);
}

.list-item-image {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, #a33de2 border-box;
}

.list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-item-info {
  flex: 1;
}

.list-item-info h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
  color: #2b2d42;
}

.list-item-course {
  font-size: 0.85rem;
  color: #8d99ae;
  margin-bottom: 0.2rem;
}

.list-item-rating {
  color: #FFA500;
  font-size: 0.8rem;
}

/* Navigation dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 10px;
  display: none;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(105, 48, 195, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-dot.active {
  background-color: #a33de2;
  transform: scale(1.2);
}

/* Navigation buttons */
.testimonial-nav {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 10px;
  z-index: 10;
  display: none;
}

.testimonial-nav-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-nav-button:hover {
  background: #a33de2;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(105, 48, 195, 0.3);
}

/* Mobile Tabs (Hidden by default) */
.mobile-tabs-container {
  display: none;
  width: 100%;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  position: relative;
  top: 700px;
}

.mobile-tabs-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.mobile-tabs {
  display: flex;
  min-width: max-content;
  gap: 0.5rem;
}

.mobile-tab {
  padding: 0.8rem 1.2rem;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid transparent;
}

.mobile-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-tab.active {
  border-color: #a33de2;
  background-color: rgba(163, 61, 226, 0.05);
}

.mobile-tab-image {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, #a33de2 border-box;
}

.mobile-tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-tab-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2b2d42;
}

/* Animation styles */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fade-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.fade-in {
  animation: fade-in 0.5s forwards;
}

.fade-out {
  animation: fade-out 0.3s forwards;
}

/* Media queries */
@media screen and (max-width: 1200px) {
  .testimonial-container {
    padding: 0 4%;
  }
}

@media screen and (max-width: 992px) {

  /* Show mobile tabs */
  .mobile-tabs-container {
    display: block;
    order: 1;
    padding-left: 70px;
  }

  .testimonials-container {
    flex-direction: column;
  }

  .testimonial-list {
    display: none;
    /* Hide the sidebar list on mobile */
  }

  .testimonial-main {
    order: 2;
    margin-bottom: 2rem;
  }

  .testimonial-card {
    position: absolute;
    height: auto;
    min-height: auto;
  }

  .testimonial-header {
    flex-wrap: wrap;
  }

  .testimonial-rating {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .testimonial-container {
    padding: 0 20px 60px 20px;
    margin: 2rem auto;
  }

  .testimonial-section-header::after {
    width: 60px;
  }

  .testimonial-main {
    min-height: 450px;
  }

  .testimonial-header {
    margin-bottom: 1.5rem;
  }

  .testimonial-info {
    flex: 100%;
    margin-top: 0.5rem;
  }

  .mobile-tabs {
    gap: 0.4rem;
  }

  .mobile-tab {
    padding: 0.7rem 1rem;
  }
}

@media screen and (max-width: 576px) {
  .testimonial-section-header h2 {
    font-size: 1.794rem;
  }

  .testimonial-section-header p {
    font-size: 0.9rem;
  }

  .testimonial-image {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }

  .testimonial-card {
    padding: 1.2rem;
  }

  .testimonial-main {
    min-height: auto;
  }

  .testimonial-nav {
    bottom: -50px;
    right: 50%;
    transform: translateX(50%);
  }

  .mobile-tab {
    padding: 0.6rem 0.8rem;
  }

  .mobile-tab-image {
    width: 25px;
    height: 25px;
    min-width: 25px;
  }

  .mobile-tab-name {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-image {
    margin: 0 auto 1rem auto;
  }

  .testimonial-header {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-info {
    text-align: center;
  }

  .testimonial-course {
    justify-content: center;
  }

  .testimonial-rating {
    margin: 1rem auto 0 auto;
  }

  .mobile-tab-name {
    display: none;
    /* Hide names on very small screens, just show images */
  }

  .mobile-tab {
    padding: 0.5rem;
  }

  .mobile-tab-image {
    margin: 0;
    border-width: 2px;
  }
}




:root {
  --primary-color: #6366f1;
  /* Indigo */
  --primary-light: #818cf8;
  --primary-dark: #4f46e5;
  --secondary-color: #06b6d4;
  /* Cyan */
  --secondary-light: #22d3ee;
  --accent-color: #f97316;
  /* Orange */
  --accent-light: #fb923c;
  --text-color: #1e293b;
  /* Slate 800 */
  --text-light: #64748b;
  /* Slate 500 */
  --light-color: #f8fafc;
  /* Slate 50 */
  --dark-color: #0f172a;
  /* Slate 900 */
  --success-color: #10b981;
  /* Emerald 500 */
  --error-color: #ef4444;
  /* Red 500 */
  --gradient-1: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-2: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  --gradient-3: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-full: 9999px;
}




.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.support-section {
  padding: 20px 0;
  background: radial-gradient(ellipse at top left, #f0f4ff, transparent),
    radial-gradient(ellipse at bottom right, #e0fdff, transparent),
    linear-gradient(to bottom right, var(--light-color), #e0e7ff);
  position: relative;
  overflow: hidden;
}

/* Floating shapes animation */
.support-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 58% 42% 38% 62% / 42% 55% 45% 58%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  opacity: 0.08;
  z-index: 0;
  animation: float 15s infinite alternate ease-in-out;
}

.support-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  opacity: 0.08;
  z-index: 0;
  animation: float 20s infinite alternate-reverse ease-in-out;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 58% 42% 38% 62% / 42% 55% 45% 58%;
  }

  50% {
    transform: translate(5px, 10px) rotate(5deg);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }

  100% {
    transform: translate(-5px, -10px) rotate(-5deg);
    border-radius: 65% 35% 45% 55% / 40% 60% 40% 60%;
  }
}

.section-header {
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 3.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: var(--gradient-1);
  border-radius: var(--border-radius-full);
  box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 50px;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  animation: cardFadeIn 1s ease-in-out forwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

.support-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  isolation: isolate;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.support-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* 3D card flip effect on hover */
.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  backdrop-filter: blur(10px);
  z-index: -1;
  transition: transform 0.6s ease;
  transform-origin: center;
}

.support-card:hover::before {
  transform: rotateX(10deg) rotateY(10deg);
}

.card-icon {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.support-card:nth-child(2) .card-icon {
  background: var(--gradient-2);
}

.support-card:nth-child(3) .card-icon {
  background: var(--gradient-3);
}

.card-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  z-index: 1;
}

.card-icon svg {
  width: 70px;
  height: 70px;
  fill: white;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  z-index: 2;
  transition: all 0.5s ease;
}

.support-card:hover .card-icon svg {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

/* Pulse animation for card icons */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.support-card:hover .card-icon svg {
  animation: pulse 2s infinite ease-in-out;
}

.card-content {
  padding: 35px;
  position: relative;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.support-card:hover .card-title {
  transform: translateX(8px);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-card:nth-child(2):hover .card-title {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-card:nth-child(3):hover .card-title {
  background: var(--gradient-3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-description {
  margin-bottom: 25px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.1rem;
  transform: translateZ(20px);
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  padding: 10px 20px;
  border-radius: var(--border-radius-full);
  background-color: rgba(99, 102, 241, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.support-card:nth-child(2) .card-link {
  color: var(--secondary-color);
  background-color: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.support-card:nth-child(3) .card-link {
  color: var(--accent-color);
  background-color: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.card-link:hover {
  color: white;
  transform: translateY(-3px);
}

.support-card:nth-child(1) .card-link:hover {
  background-color: var(--primary-color);
  box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5);
  color: white;
}

.support-card:nth-child(2) .card-link:hover {
  background-color: var(--secondary-color);
  box-shadow: 0 10px 20px -10px rgba(6, 182, 212, 0.5);
  color: white;
}

.support-card:nth-child(3) .card-link:hover {
  background-color: var(--accent-color);
  box-shadow: 0 10px 20px -10px rgba(249, 115, 22, 0.5);
  color: white;
}

.card-link svg {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  transition: transform 0.4s ease;
}

.card-link:hover svg {
  transform: translateX(5px);
  fill: white;
}

/* Decorative elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.2;
  filter: blur(10px);
}

.circle-1 {
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  top: 15%;
  right: 10%;
  animation: float 25s infinite alternate ease-in-out;
}

.circle-2 {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  bottom: 20%;
  left: 15%;
  animation: float 18s infinite alternate-reverse ease-in-out;
}

.circle-3 {
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  bottom: 30%;
  right: 25%;
  animation: float 15s infinite alternate ease-in-out;
}

/* Interactive particles background */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .section-title {
    font-size: 2.8rem;
  }

  .support-options {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .support-options {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .support-section {
    padding: 70px 0;
  }

  .card-content {
    padding: 25px;
  }

  .card-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .card-icon {
    height: 120px;
  }

  .card-icon svg {
    width: 50px;
    height: 50px;
  }
}







/* Stats Comparison */
.ct-stats-comparison {
  display: flex;
  gap: 30px;
  margin-bottom: 80px;
  padding-top: 100px;
  padding-left: 120px;
  padding-right: 120px;
}

.ct-stats-column {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ct-stats-title {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  transition: 0.6s ease;
}

.ct-stats-title:hover {
  transform: scale(1.1);
}

.ct-stats-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
}

.ct-stats-before .ct-stats-title {
  color: #7f8c8d;
}

.ct-stats-before .ct-stats-title::after {
  background: #7f8c8d;
}

.ct-stats-after .ct-stats-title {
  color: #27ae60;
}

.ct-stats-after .ct-stats-title::after {
  background: #27ae60;
}

.ct-stat-bar {
  margin-bottom: 25px;
  transition: 0.6s ease;
}

.ct-stat-bar:hover {
  transform: scale(1.1);
}

.ct-stat-bar-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ct-stat-bar-name {
  font-size: 14px;
  font-weight: 600;
}

.ct-stats-before .ct-stat-bar-name {
  color: #7f8c8d;
}

.ct-stats-after .ct-stat-bar-name {
  color: #27ae60;
}

.ct-stat-bar-value {
  font-size: 14px;
  font-weight: 700;
}

.ct-stat-bar-track {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.ct-stat-bar-progress {
  height: 100%;
  border-radius: 4px;
}

.ct-stats-before .ct-stat-bar-progress {
  background: #7f8c8d;
}

.ct-stats-after .ct-stat-bar-progress {
  background: #27ae60;
}


/* Responsive: Stats Comparison */
@media (max-width: 768px) {
  .ct-stats-comparison {
    flex-direction: column;
    padding: 50px 20px;
    gap: 40px;
    margin-bottom: 50px;
  }

  .ct-stats-column {
    padding: 25px 20px;
  }

  .ct-stats-title {
    font-size: 20px;
  }

  .ct-stat-bar-label {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .ct-stat-bar-name,
  .ct-stat-bar-value {
    font-size: 13px;
  }

  .ct-stat-bar {
    margin-bottom: 20px;
  }
}







.ltp_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px 50px 20px;
  color: #333;
}

.ltp_header {
  text-align: center;
  margin-bottom: 40px;
}

.ltp_header_title {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.ltp_header_title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #5D26C1, #a17fe0);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.ltp_header_subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Category filters */
.ltp_category_filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.ltp_filter_btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  color: #495057;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ltp_filter_btn:hover {
  border-color: #5D26C1;
  color: #5D26C1;
}

.ltp_filter_btn.ltp_active {
  background: linear-gradient(135deg, #1f0159, #e31e70);
  color: white;
  border-color: transparent;
}

/* Project grid */
.ltp_project_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Project card */
.ltp_project_card {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: ltp_fadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.ltp_project_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.ltp_project_card:nth-child(1) {
  animation-delay: 0.1s;
}

.ltp_project_card:nth-child(2) {
  animation-delay: 0.2s;
}

.ltp_project_card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Hidden cards initially */
.ltp_project_card.ltp_hidden {
  display: none;
}

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

.ltp_project_image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.ltp_project_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ltp_project_card:hover .ltp_project_image img {
  transform: scale(1.1);
}

.ltp_difficulty_badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  color: white;
}

.ltp_beginner {
  background: linear-gradient(45deg, #2ecc71, #1abc9c);
}

.ltp_intermediate {
  background: linear-gradient(45deg, #3498db, #2980b9);
}

.ltp_advanced {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
}

.ltp_project_content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ltp_project_title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.ltp_project_card:hover .ltp_project_title {
  color: #5D26C1;
}

.ltp_project_description {
  color: #7f8c8d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.ltp_meta_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #95a5a6;
  font-size: 0.85rem;
}

.ltp_duration {
  display: flex;
  align-items: center;
}

.ltp_duration_icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  fill: currentColor;
}

.ltp_students {
  display: flex;
  align-items: center;
}

.ltp_students_icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  fill: currentColor;
}

.ltp_tag_container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ltp_tag {
  font-size: 0.75rem;
  padding: 4px 10px;
  background-color: #f8f9fa;
  border-radius: 30px;
  color: #6c757d;
}

.ltp_progress_container {
  height: 6px;
  background-color: #f1f3f5;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
}

.ltp_progress_bar {
  height: 100%;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  border-radius: 3px;
  width: 0;
  transition: width 0.6s ease;
}

.ltp_project_card:hover .ltp_progress_bar {
  width: var(--progress, 0%);
}

.ltp_action_btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1f0159, #e31e70);
  color: white;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(93, 38, 193, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ltp_action_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #140140, #b91a5d);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ltp_action_btn:hover::before {
  opacity: 1;
}

.ltp_action_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(93, 38, 193, 0.4);
}

/* Show more button */
.ltp_show_more_container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.ltp_show_more_btn {
  padding: 14px 32px;
  border-radius: 50px;
  background: white;
  border: 2px solid #5D26C1;
  color: #5D26C1;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ltp_show_more_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1f0159, #e31e70);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ltp_show_more_btn:hover {
  color: white;
  border-color: transparent;
}

.ltp_show_more_btn:hover::before {
  opacity: 1;
}

/* Responsive styles */
@media (max-width: 992px) {
  .ltp_project_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ltp_project_grid {
    grid-template-columns: 1fr;
  }

  .ltp_header_title {
    font-size: 2rem;
  }
}




.success-stats-section {

  color: white;
  padding-bottom: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}


.success-stats-wrapper {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.success-stat-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 10px;
  min-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
}

.success-stat-box:hover {
  transform: scale(1.05);
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1), transparent 70%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(96, 165, 250, 0.3);
  border-color: #e11f09;
}

.success-stat-box:hover .success-stat-number {
  transform: scale(1.2);
}

.success-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: transform 0.4s ease;
}

.success-stat-label {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-bottom: 0.3rem;
  transition: 2s ease;
}

.success-stat-box:hover .success-stat-label::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #1f0159, #e31e70);
  transition: all 0.3s ease;
}



.success-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.success-stat-label {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
}




/* Section Header */

.course-flip-container {
  padding: 0 120px;

}

.course-flip-section-header {
  text-align: center;
}

.course-flip-section-subtitle {
  display: inline-block;
  padding: 8px 20px;
  background-color: rgba(94, 96, 206, 0.1);
  color: #b100f5;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  margin-right: 12px;
  margin-bottom: 15px;
  transition: all 0.6s ease;
  position: relative;
  top: -7px;
}

.course-flip-section-subtitle:hover {
  transform: scale(1.1);
}

.course-flip-section-title {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  display: inline-block;
}

.course-flip-section-description {
  max-width: 700px;
  margin: 0 auto 20px;
  color: #6c757d;
  font-size: 18px;
  line-height: 1.7;
}

/* Tabs */
.course-flip-tabs-wrapper {
  margin-bottom: 40px;
}

.course-flip-tabs-container {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  overflow-x: auto;
}

.course-flip-tabs {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0 10px;
}

.course-flip-tab {
  padding: 15px 25px;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.course-flip-tab.course-flip-active {
  background: linear-gradient(135deg, #1f0159, #e31e70);
  color: white;
  box-shadow: 0 10px 20px rgba(94, 96, 206, 0.3);
}

.course-flip-tab:not(.course-flip-active):hover {
  background-color: rgba(94, 96, 206, 0.08);
  color: #b100f5;
}

.course-flip-tab-icon {
  font-size: 18px;
}

/* Courses Container */
.course-flip-courses-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.course-flip-course-category {
  display: none;
}

.course-flip-course-category.course-flip-active {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* NEW FLIPPING CARD STYLES */
.course-flip-card-container {
  perspective: 1000px;
  /* height: 450px; */
  margin-bottom: 20px;
}

.course-flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 2s;
  transform-style: preserve-3d;
  cursor: pointer;
}

/* .course-flip-card-container:hover .course-flip-card {
      transform: rotateY(180deg);
    } */

.course-flip-card-front,
.course-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-flip-card-container:hover .course-flip-card .course-flip-card-back {
  backface-visibility: hidden;
}

.course-flip-card-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.course-flip-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  background: linear-gradient(135deg, #80ffdb, #64dfdf, #48bfe3);
  color: #2b2d42;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(72, 191, 227, 0.3);
  z-index: 2;
}

.course-flip-badge.course-flip-hot {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
}

.course-flip-card-header {
  padding: 25px 20px 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.course-flip-icon-wrapper {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.course-flip-course-icon {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 10px 20px rgba(94, 96, 206, 0.3);
}

.course-flip-course-title {
  font-size: 20px;
  font-weight: 700;
  color: #2b2d42;
  margin-bottom: 5px;
}

.course-flip-course-subtitle {
  color: #6c757d;
  font-size: 14px;
}

.course-flip-card-body {
  padding: 5px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-flip-course-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.course-flip-features-list {
  list-style-type: none;
  margin-bottom: 20px;
  padding-left: 0;
  flex-grow: 1;
}

.course-flip-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #6c757d;
}

.course-flip-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(94, 96, 206, 0.1);
  border-radius: 50%;
  margin-right: 12px;
  color: #5e60ce;
  font-size: 12px;
  flex-shrink: 0;
}

.course-flip-card-footer {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
}

.course-flip-price-container {
  display: flex;
  flex-direction: column;
}

.course-flip-price-label {
  font-size: 12px;
  color: #6c757d;
  margin-bottom: 5px;
}

.course-flip-price {
  font-weight: 700;
  color: #2b2d42;
  font-size: 18px;
}

.course-flip-view-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #1f0159, #e31e70);
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(94, 96, 206, 0.3);
}

.course-flip-view-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(94, 96, 206, 0.3);
}

/* Back card specific styles */
.course-flip-back-header {
  text-align: center;
  margin-bottom: 20px;
}

.course-flip-back-title {
  font-size: 22px;
  font-weight: 700;
  color: #2b2d42;
  margin-bottom: 10px;
}

.course-flip-instructor {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.course-flip-instructor-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5e60ce, #6930c3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-right: 15px;
}

.course-flip-instructor-details {
  flex-grow: 1;
}

.course-flip-instructor-name {
  font-weight: 600;
  color: #2b2d42;
  margin-bottom: 3px;
}

.course-flip-instructor-title {
  font-size: 13px;
  color: #6c757d;
}

.course-flip-course-details {
  margin-bottom: 20px;
}

.course-flip-course-detail {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.course-flip-detail-icon {
  width: 30px;
  height: 30px;
  background: rgba(94, 96, 206, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #5e60ce;
}

.course-flip-detail-text {
  color: #6c757d;
  font-size: 14px;
}

/* Add this to your existing CSS */
.course-flip-show-more-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.course-flip-show-more-btn {
  padding: 15px 25px;
  background: linear-gradient(135deg, #1f0159, #e31e70);
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.6s ease;
  box-shadow: 0 5px 15px rgba(94, 96, 206, 0.3);
}



.course-flip-show-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(227, 30, 112, 0.5);

}



/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .course-flip-container {
    padding: 0 20px;
  }

  .course-flip-section-title {
    font-size: 28px;
  }

  .course-flip-section-description {
    font-size: 16px;
    line-height: 1.6;
  }

  .course-flip-tabs {
    gap: 8px;
  }

  .course-flip-tab {
    padding: 10px 18px;
    font-size: 14px;
  }

  .course-flip-card {
    height: 105%;
  }

  .course-flip-courses-container,
  .course-flip-course-category.course-flip-active {
    grid-template-columns: 1fr;
  }

  .course-flip-card-container {
    height: 420px;
  }

  .course-flip-view-btn {
    padding: 10px 18px;
    font-size: 14px;
  }

  .course-flip-show-more-btn {
    padding: 12px 22px;
    font-size: 14px;
  }
}

/* Tablets (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .course-flip-container {
    padding: 0 50px;
  }

  .course-flip-section-title {
    font-size: 34px;
  }

  .course-flip-courses-container,
  .course-flip-course-category.course-flip-active {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
  }

  .course-flip-card-container {
    height: 440px;
  }
}

/* Large Screens (1440px+) */
@media (min-width: 1440px) {

  .course-flip-courses-container,
  .course-flip-course-category.course-flip-active {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }

  .course-flip-card-container {
    height: 350px;
  }
}



.pop-course-section {
  text-align: center;
}


.pop-courses-container {
  display: flex;
  justify-content: space-between;
  padding: 20px 120px;
}

.pop-course-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  color: transparent;
  font-weight: 700;
  padding-top: 50px;
}

.pop-course-section-para {
  max-width: 700px;
  margin: 0 auto 20px;
  color: #6c757d;
  font-size: 18px;
  line-height: 1.7;
}

.pop-course-card {
  width: 32%;
  height: 450px;
  perspective: 1000px;
  border-radius: 15px;
  transition: transform 2s;
  transform-style: preserve-3d;
}

.pop-course-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 2s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.pop-course-card:hover .pop-course-inner {
  transform: rotateY(180deg);
}

.pop-course-front,
.pop-course-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 25px;
  box-sizing: border-box;
}

.pop-course-front {
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.pop-course-back {
  background-color: #f8f9fa;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pop-course-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.pop-course-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #4ecca3;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.pop-course-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.pop-course-subtitle {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pop-course-description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

.pop-course-features {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pop-course-feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #495057;
  font-size: 0.95rem;
}

.pop-course-check {
  color: #6a2bff;
  margin-right: 10px;
  font-size: 1.1rem;
}

.pop-course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

.pop-course-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}

.pop-course-button {
  text-decoration: none;
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #1f0159, #e31e70);
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(94, 96, 206, 0.3);

}

.pop-course-button:hover {
  background-color: #5a1ee6;
}

.pop-course-details-list {
  margin-bottom: 20px;
}

.pop-course-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.pop-course-detail-icon {
  margin-right: 12px;
  color: #6a2bff;
}

.pop-course-instructor {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.pop-course-instructor-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #6a2bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: bold;
}

/* Colors from image */
.digital-icon {
  background: linear-gradient(135deg, #d941a6, #6a2bff);
}

.web-icon {
  background: linear-gradient(135deg, #6c63ff, #4834d4);
}

.finance-icon {
  background: linear-gradient(135deg, #ff4d94, #b91d73);
}

/* Tag color updates */
.pop-course-tag {
  background-color: #4ecca3;
}

/* Enroll Now button */


.enroll-button:hover {
  border: 2px solid purple;
  color: black;
  background: white;
}

/* View Course button */


.view-button:hover {
  border: 2px solid purple;
  color: black;
  background: white;
}

/* Responsive Styles */

@media (max-width: 1200px) {
  .pop-courses-container {
    padding: 20px 60px;
  }
}

@media (max-width: 992px) {
  .pop-courses-container {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 40px;
  }

  .pop-course-card {
    width: 48%;
    height: 420px;
  }
}

@media (max-width: 768px) {
  .pop-course-section-title {
    font-size: 2rem;
  }

  .pop-course-section-para {
    font-size: 16px;
    line-height: 1.6;
  }

  .pop-courses-container {
    padding: 20px 20px;
  }

  .pop-course-card {
    width: 100%;
    height: 420px;
  }

  .pop-course-front,
  .pop-course-back {
    padding: 20px;
  }

  .pop-course-title {
    font-size: 1.3rem;
  }

  .pop-course-description {
    font-size: 0.9rem;
  }

  .pop-course-price {
    font-size: 1.2rem;
  }

  .pop-course-button {
    font-size: 14px;
    padding: 8px 18px;
  }
}

@media (max-width: 480px) {
  .pop-course-section-title {
    font-size: 1.8rem;
  }

  .pop-course-section-para {
    font-size: 15px;
  }

  .pop-course-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .pop-course-title {
    font-size: 1.2rem;
  }

  .pop-course-feature {
    font-size: 0.85rem;
  }

  .pop-course-detail {
    font-size: 0.85rem;
  }

  .pop-course-price {
    font-size: 1.1rem;
  }

  .pop-course-button {
    font-size: 13px;
    padding: 8px 16px;
  }
}



.corner-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  width: 280px;
  z-index: 99;
  border-left: 5px solid #e11f09;
}

.corner-popup h3 {
  margin-top: 0;
  color: #54025f;
}

.corner-popup p {
  margin-bottom: 15px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
}

.grab-deal-btn {
  padding: 10px;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  color: white;
  border-radius: 50px;
  border: none;
  transition: all 0.6s ease;
}

.grab-deal-btn:hover {
  background-color: linear-gradient(135deg, #1f0159, #e31e70);
  box-shadow: 0 8px 20px rgba(93, 38, 193, 0.4);
  transform: translateY(-3px);
}




.countdown-banner {
  background: linear-gradient(to right, #54025f, #54025f);
  color: white;
  padding: 20px;
  text-align: center;
  margin: 30px 0;
  border-radius: 5px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.time-box {
  background-color: #e11f09;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  min-width: 40px;
  font-weight: bold;
  font-size: 20px;
}

.time-label {
  font-size: 12px;
  opacity: 0.8;
}




.hero-container {
  padding: 3rem 2rem;
  background: linear-gradient(to right, #e9d8ec, #e9d8ec);
  color: black;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
  animation: pulse 15s infinite;
  z-index: 1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.2;
  }

  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

.main-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #e11f09;
  border-radius: 2px;
}

.highlight {
  color: #e11f09;
  font-style: italic;
  position: relative;
}

.subheading {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  line-height: 1.6;
}

.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-box {
  background: linear-gradient(135deg, #9862ff, #ff87b9);
  border-radius: 1rem;
  padding: 1.5rem;
  min-width: 200px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #9862ff, #ff87b9);
  background-clip: text;
  color: transparent;
  position: relative;
}

.counter {
  display: inline-block;
}

.stat-label {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}




.cta-primary {
  background: linear-gradient(135deg, #1f0159, #e31e70);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(225, 31, 9, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(225, 31, 9, 0.6);
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-secondary {
  background: transparent;
  color: black;
  border: 2px solid black;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.6s ease;
  margin-left: 1rem;
}

.cta-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #6f0eff, #ff0844);
  transition: all 0.4s;
  z-index: -1;
}

.cta-secondary:hover::before {
  width: 100%;
}

.cta-secondary:hover {
  color: white;
  transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
  .main-title {
    font-size: 1.1rem;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
  }

  .company-logos {
    gap: 1rem;
  }

  .logo-box {
    width: 80px;
    height: 40px;
    font-size: 0.75rem;
  }

  .cta-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .cta-secondary {
    margin-left: 0;
  }
}




.ws-main-section {
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.ws-container {
  max-width: 1100px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: row;
  margin: 2rem;
  position: relative;
}

.ws-content {
  flex: 1;
  padding: 4rem 3rem;
  position: relative;
  z-index: 1;
}

.ws-visual {
  flex: 1;
  background: linear-gradient(to right, #f5dcff, #f1cfff);
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
}

.ws-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ws-highlight {
  color: #e11f09;
}

.ws-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.ws-features {
  margin-bottom: 2.5rem;
}

.ws-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #444;
}

.ws-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.ws-icon::before {
  content: "✓";
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
}

.ws-button {
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px -5px rgba(225, 31, 9, 0.4);
  position: relative;
  overflow: hidden;
}

.ws-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: ws-shine 3s infinite;
}

@keyframes ws-shine {
  0% {
    left: -100%;
  }

  20% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.ws-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px -5px rgba(225, 31, 9, 0.5);
}

.ws-badge {
  position: absolute;
  top: 20px;
  right: 40px;
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  z-index: 2;
  transition: all 0.6s ease;
}

.ws-badge:hover {
  transform: scale(1.1);
}

.ws-calendar {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ws-calendar-header {
  width: 100%;
  height: 30%;
  background: #e11f09;
  border-radius: 3px 3px 0 0;
}

.ws-calendar-body {
  width: 100%;
  height: 70%;
  background: white;
  border: 2px solid #e11f09;
  border-top: none;
  border-radius: 0 0 3px 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ws-calendar-date {
  font-size: 0.7rem;
  font-weight: bold;
  color: #e11f09;
}

.ws-time {
  font-weight: 600;
  color: #54025f;
}

/* Video selector circles */
.ws-video-selector {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  z-index: 2;
}

.ws-video-circle {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.ws-video-text {
  position: relative;
  top: 10px;
}

.ws-video-circle:hover {
  transform: scale(1.2);
}

.ws-video-circle.ws-active {
  background: white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.ws-preview {
  width: 85%;
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.6s ease;
}

.ws-preview:hover {
  transform: scale(1.1);
}

.ws-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.ws-video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.ws-video-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}



.ws-video-slide.ws-active {
  opacity: 1;
  pointer-events: all;
}

.ws-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #e11f09;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.ws-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid white;
  margin-left: 5px;
}

.ws-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.ws-partners {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ws-partner-logo {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.7rem;
  color: #54025f;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ws-circles {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -200px;
  right: -150px;
}

.ws-circles::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -150px;
  left: -100px;
}

@media (max-width: 768px) {
  .ws-main-section {
    padding: 0;
    margin-top: 750px;

  }

  .ws-container {
    flex-direction: column;
    margin: 1rem;
  }

  .ws-content,
  .ws-visual {
    padding: 2rem;
  }

  .ws-visual {
    min-height: 350px;
  }

  .ws-heading {
    font-size: 2rem;
  }

  .ws-badge {
    top: 20px;
    right: 20px;
  }

  .ws-video-selector {

    margin-top: 60px;
  }
}



.trans {
  background-color: #f5f5f5;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  padding: 50px 50px;
}

.trans h2 {
  font-size: 40px;
  text-align: center;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  color: transparent;
}

.trans-container {
  max-width: 1200px;
  display: flex;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  overflow: hidden;
  margin: 50px 50px;
}

.trans-before,
.trans-after {
  flex: 1;
  padding: 0;
  position: relative;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.trans-before {
  background-color: #f0f0f0;
}

.trans-after {
  background-color: #f8f8f8;
}

.trans-img-box {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.trans-img-before,
.trans-img-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.trans-img-before {
  filter: grayscale(70%) brightness(0.8);
}

.trans-before:hover .trans-img-before {
  filter: grayscale(40%) brightness(0.9);
  transform: scale(1.03);
}

.trans-after:hover .trans-img-after {
  transform: scale(1.03);
}

.trans-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.trans-caption-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.trans-caption-before {
  color: #d0d0d0;
}

.trans-caption-after {
  color: #ffffff;
}

.trans-story {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 90%;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.trans-story-before {
  color: #c0c0c0;
}

.trans-story-after {
  color: #ffffff;
}

.trans-cta-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

.trans-divider {
  position: absolute;
  top: 5%;
  left: 50%;
  height: 90%;
  width: 4px;
  background: linear-gradient(to bottom, rgba(84, 2, 95, 0.3), #54025f, rgba(84, 2, 95, 0.3));
  transform: translateX(-50%);
  z-index: 5;
}

.trans-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #e11f09;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(225, 31, 9, 0.6);
  animation: trans-pulse 2s infinite;
  z-index: 6;
}

.trans-arrow::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid white;
  margin-left: 3px;
}

@keyframes trans-pulse {
  0% {
    box-shadow: 0 0 20px rgba(225, 31, 9, 0.6);
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    box-shadow: 0 0 40px rgba(225, 31, 9, 0.8);
    transform: translate(-50%, -50%) scale(1.1);
  }

  100% {
    box-shadow: 0 0 20px rgba(225, 31, 9, 0.6);
    transform: translate(-50%, -50%) scale(1);
  }
}

.trans-cta-box {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(50px);
  position: relative;
  top: -65px;

}

.trans-cta-heading {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.2;
}

.trans-highlight {
  color: #e11f09;
}

.trans-btn {
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(84, 2, 95, 0.3);
  position: relative;
  overflow: hidden;
}

.trans-btn::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.trans-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.trans-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(84, 2, 95, 0.4);
}

.trans-btn:hover::after {
  transform: translateX(5px);
}

.trans-btn:hover::before {
  left: 100%;
}

.trans-subtext {
  font-size: 0.9rem;
  color: #e11f09;
  font-weight: 600;
}


@media (max-width: 1024px) {
  .trans-container {
    flex-direction: column;
    margin: 30px 20px;
  }

  .trans-before,
  .trans-after {
    min-height: 400px;
  }

  .trans-cta-center {
    position: static;
    transform: none;
    width: 100%;
    margin-top: -40px;
    z-index: 5;
  }

  .trans-cta-box {
    top: 0;
    transform: none;
    margin: 0 auto;
  }

  .trans-divider,
  .trans-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .trans {
    padding: 0;
  }

  .trans h2 {
    font-size: 28px;
  }

  .trans-caption-title {
    font-size: 1.2rem;
  }

  .trans-story {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .trans-cta-heading {
    font-size: 1.3rem;
  }

  .trans-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .trans-subtext {
    font-size: 0.8rem;
  }

  .trans-img-before,
  .trans-img-after {
    height: 300px;
    object-fit: cover;
  }

  .trans-before,
  .trans-after {
    min-height: 350px;
  }

  .trans-cta-box {
    padding: 1.5rem;
  }
}







.custom-about-section {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin: 50px 0;
}

.custom-about-content {
  flex: 1;
  padding: 50px;
  background: linear-gradient(to right, #f3e9f5, #f3e9f5);
  color: black;
  padding-left: 120px;
}

.custom-about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 20px;
  padding-right: 120px;
}

.custom-about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.custom-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.custom-section-subtitle {
  font-size: 1.1rem;
  margin-bottom: 25px;
  font-weight: 400;
  opacity: 0.9;
}

.custom-about-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

.custom-stats-container {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.custom-stat-item {
  text-align: center;
}

.custom-stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e11f09;
  margin-bottom: 5px;
}

.custom-stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.custom-cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1f0159, #e31e70);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.custom-cta-button:hover {
  background-color: #c41a07;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(225, 31, 9, 0.3);
}

.custom-trust-badge {
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Responsive CSS */
@media (max-width: 1024px) {
  .custom-about-content {
    padding: 40px;
    padding-left: 60px;
  }

  .custom-about-image {
    padding: 20px;
    padding-right: 60px;
  }

  .custom-stats-container {
    gap: 20px;
    flex-wrap: wrap;
  }

  .custom-stat-item {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .custom-about-section {
    flex-direction: column;
  }

  .custom-about-content {
    padding: 30px 20px;
    padding-left: 20px;
  }

  .custom-about-image {
    padding: 20px;
    padding-right: 20px;
  }

  .custom-section-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .custom-section-subtitle {
    font-size: 1rem;
    text-align: center;
  }

  .custom-stats-container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .custom-stat-item {
    flex: 1 1 45%;
    margin-bottom: 20px;
  }

  .custom-stat-number {
    font-size: 1.6rem;
  }

  .custom-cta-button {
    font-size: 0.95rem;
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .custom-section-title {
    font-size: 1.6rem;
  }

  .custom-section-subtitle {
    font-size: 0.95rem;
  }

  .custom-about-paragraph {
    font-size: 0.95rem;
  }

  .custom-stat-number {
    font-size: 1.4rem;
  }

  .custom-stat-label {
    font-size: 0.8rem;
  }

  .custom-cta-button {
    font-size: 0.9rem;
    padding: 10px 24px;
  }

  .custom-trust-badge {
    font-size: 0.75rem;
  }
}



.footer-section {
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Main Footer Container */
.ys-footer-wrapper {
  position: relative;
  background: linear-gradient(to right, #54025f, #54025f);
  color: #ffffff;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  padding: 3rem 2rem 1rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* Background World Map Dots */
.ys-footer-world-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3Ccircle cx='30' cy='10' r='1'/%3E%3Ccircle cx='50' cy='10' r='1'/%3E%3Ccircle cx='70' cy='10' r='1'/%3E%3Ccircle cx='90' cy='10' r='1'/%3E%3Ccircle cx='10' cy='30' r='1'/%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3Ccircle cx='50' cy='30' r='1'/%3E%3Ccircle cx='70' cy='30' r='1'/%3E%3Ccircle cx='90' cy='30' r='1'/%3E%3Ccircle cx='10' cy='50' r='1'/%3E%3Ccircle cx='30' cy='50' r='1'/%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3Ccircle cx='70' cy='50' r='1'/%3E%3Ccircle cx='90' cy='50' r='1'/%3E%3Ccircle cx='10' cy='70' r='1'/%3E%3Ccircle cx='30' cy='70' r='1'/%3E%3Ccircle cx='50' cy='70' r='1'/%3E%3Ccircle cx='70' cy='70' r='1'/%3E%3Ccircle cx='90' cy='70' r='1'/%3E%3Ccircle cx='10' cy='90' r='1'/%3E%3Ccircle cx='30' cy='90' r='1'/%3E%3Ccircle cx='50' cy='90' r='1'/%3E%3Ccircle cx='70' cy='90' r='1'/%3E%3Ccircle cx='90' cy='90' r='1'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: -1;
}

/* Main Footer Content Grid */
.ys-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Glassmorphic Section Styling */
.ys-footer-section {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ys-footer-section ul li {
  list-style: none;
}

.ys-footer-section ul li a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  line-height: 30px;
}

.ys-footer-section:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Headings with Glowing Underline */
.ys-footer-heading {
  font-size: 1.46rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.ys-footer-heading::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 80%;
  height: 2px;
  background: #e11f09;
  box-shadow: 0 0 10px 1px #e11f09;
  animation: ys-glow-line 2s infinite;
}

@keyframes ys-glow-line {
  0% {
    box-shadow: 0 0 10px 1px #e11f09;
  }

  50% {
    box-shadow: 0 0 15px 2px #e11f09;
  }

  100% {
    box-shadow: 0 0 10px 1px #e11f09;
  }
}

/* Contact Form Section */
.ys-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.ys-form-bg-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(225, 31, 9, 0.05) 0%, rgba(84, 2, 95, 0.1) 100%);
  z-index: -1;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ys-contact-form:focus-within .ys-form-bg-wave {
  opacity: 1;
  animation: ys-wave-animation 5s linear infinite;
}

@keyframes ys-wave-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.ys-form-input {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  transition: all 0.3s ease;
}

.ys-form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.ys-form-input:focus {
  outline: none;
  border-color: rgba(225, 31, 9, 0.5);
  box-shadow: 0 0 0 2px rgba(225, 31, 9, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.ys-form-textarea {
  min-height: 100px;
  resize: vertical;
}

.ys-send-btn {
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(225, 31, 9, 0.3);
}

.ys-send-btn:hover {
  background: #f12a15;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225, 31, 9, 0.4);
}

.ys-send-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.ys-send-btn:hover .ys-send-icon {
  transform: translateX(5px);
}

/* Center Locations Section */
.ys-locations-wrapper {
  max-height: 395px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e11f09 rgba(255, 255, 255, 0.1);
}

.ys-locations-wrapper::-webkit-scrollbar {
  width: 6px;
}

.ys-locations-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.ys-locations-wrapper::-webkit-scrollbar-thumb {
  background-color: #e11f09;
  border-radius: 10px;
}

.ys-location-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.ys-location-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ys-location-pin {
  color: #e11f09;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ys-location-item:hover .ys-location-pin {
  transform: scale(1.2);
  text-shadow: 0 0 10px #e11f09;
}

.ys-location-details {
  flex: 1;
}

.ys-location-city {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.ys-location-address {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.4;
}

.ys-view-map {
  color: #e11f09;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.ys-view-map:hover {
  color: #f12a15;
  text-decoration: underline;
}

/* Support Ticket Section */
.ys-ticket-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ys-ticket-image {
  width: 160px;
  height: 160px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.ys-ticket-text {
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.ys-ticket-btn {
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(225, 31, 9, 0.3);
  position: relative;
  overflow: hidden;
  animation: ys-pulse 2s infinite;
}

@keyframes ys-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(225, 31, 9, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(225, 31, 9, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(225, 31, 9, 0);
  }
}

.ys-ticket-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(225, 31, 9, 0.4);
}

.ys-ticket-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.ys-ticket-btn:hover::before {
  left: 100%;
}

.ys-rocket-icon {
  display: none;
  margin-left: 0.5rem;
}

.ys-ticket-btn:hover .ys-rocket-icon {
  display: inline-block;
  animation: ys-float-up 1s ease;
}

@keyframes ys-float-up {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(-10px);
  }
}

/* Footer Bottom */
.ys-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.ys-copyright {
  font-size: 0.9rem;
  opacity: 0.7;
}

.ys-copyright a {
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  color: transparent;
}

.ys-footer-links {
  display: flex;
  gap: 1.5rem;
}

.ys-footer-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.ys-footer-link:hover {
  opacity: 1;
  color: #e11f09;
}

.social-icons {
  margin: 40px -24px;
}

.social-icons .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.6s ease;
}

.social-icons .icon:hover {
  background: #ff4d4d;
  transform: scale(1.1);
}


@media (max-width: 1024px) {
  .ys-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ys-footer-section {
    padding: 20px;
  }

  .ys-footer-heading {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .ys-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }

  .ys-footer-links {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .ys-footer-grid {
    grid-template-columns: 1fr;
  }

  .ys-footer {
    padding: 40px 20px;
  }

  .ys-footer-section {
    padding: 16px;
  }

  .ys-footer-heading {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .ys-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ys-footer-links {
    justify-content: center;
    gap: 12px;
  }

  .ys-location-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .ys-location-pin {
    margin-bottom: 8px;
  }

  .ys-location-city {
    font-size: 16px;
  }

  .ys-location-address {
    font-size: 14px;
  }

  .ys-view-map {
    font-size: 13px;
  }

  .social-icons {
    margin: 20px 8px;
  }
}


































































































.bcg_container {
  padding: 20px 120px 50px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.bcg_heading {
  text-align: center;
  margin-bottom: 40px;
}

.bcg_title {
  font-size: 2.5rem;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  padding-top: 50px;
}

.bcg_subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
}

/* Tab Navigation */
.bcg_tabs_wrapper {
  margin-bottom: 30px;
}

.bcg_tabs_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}

.bcg_tab_item {
  padding: 12px 24px;
  background-color: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.bcg_tab_item:hover {
  border-color: #55025f;
  color: #55025f;
}

.bcg_tab_item.bcg_active {
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  color: white;
}

/* Blog Grid */
.bcg_posts_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bcg_post_card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: bcg_fadeIn 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.bcg_post_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.bcg_post_image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.bcg_post_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bcg_post_card:hover .bcg_post_image img {
  transform: scale(1.1);
}

.bcg_post_category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
  color: white;
}

.bcg_category_all {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.bcg_category_career {
  background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
}

.bcg_category_assignment {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
}

.bcg_category_abroad {
  background: linear-gradient(135deg, #16a085 0%, #2ecc71 100%);
}

.bcg_category_tips {
  background: linear-gradient(135deg, #834d9b 0%, #d04ed6 100%);
}

.bcg_post_content {
  padding: 20px;
}

.bcg_post_title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.bcg_post_title:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #55025f;
  transition: width 0.3s ease;
}

.bcg_post_card:hover .bcg_post_title:after {
  width: 100%;
}

.bcg_post_excerpt {
  color: #7f8c8d;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.bcg_readmore {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  border-radius: 20px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bcg_readmore:hover {
  background-color: #55025f;
  color: white;
}

.bcg_hidden {
  display: none;
}

/* Show More Button */
.bcg_show_more_btn {
  display: block;
  margin: 40px auto 0;
  padding: 15px 25px;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bcg_show_more_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Animation */
@keyframes bcg_fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media screen and (max-width: 992px) {
  .bcg_posts_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .bcg_container {
    padding: 20px;
    margin-bottom: 50px;
  }

  .bcg_posts_grid {
    grid-template-columns: 1fr;
  }
}





































.features-heading h2 {
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  color: transparent;
  text-align: center;
  padding: 20px 20px 0 20px;
}

.features-heading p {
  font-size: 18px;
  text-align: center;
  padding: 10px 220px 20px 220px;
}




.dev-services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 120px 60px 120px;
  text-align: center;

}



.dev-service-card {
  position: relative;
  width: 23%;
  min-width: 280px;
  margin-bottom: 20px;
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  overflow: hidden;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.dev-service-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background-color: #f8a4c9;
  border-radius: 0 0 0 100%;
  transition: all 0.5s ease;
  z-index: 1;
}

.dev-service-card:hover .dev-service-circle {
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0.2;
  background-color: #e41e70;
}

.dev-service-icon {
  background-color: #e83e8c;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.dev-service-icon img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}

.dev-service-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  position: relative;
  z-index: 2;
}

.dev-service-description {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.dev-service-link {
  color: #e83e8c;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.dev-service-link:hover {
  text-decoration: underline;
}

/* Responsive CSS */
@media (max-width: 1200px) {
  .features-heading p {
    padding: 10px 120px 20px 120px;
  }

  .dev-services-container {
    padding: 10px 60px 50px 60px;
  }

  .dev-service-card {
    width: 48%;
  }
}

@media (max-width: 768px) {
  .features-heading h2 {
    font-size: 32px;
  }

  .features-heading p {
    font-size: 16px;
    padding: 10px 40px 20px 40px;
  }

  .dev-services-container {
    padding: 10px 30px 40px 30px;
    justify-content: center;
  }

  .dev-service-card {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .features-heading h2 {
    font-size: 28px;
    padding: 15px 15px 0 15px;
  }

  .features-heading p {
    padding: 10px 20px 20px 20px;
  }

  .dev-service-card {
    padding: 15px;
  }

  .dev-service-title {
    font-size: 18px;
  }

  .dev-service-description {
    font-size: 13px;
  }

  .dev-service-icon {
    width: 50px;
    height: 50px;
  }

  .dev-service-icon svg {
    width: 24px;
    height: 24px;
  }
}


































.unique-faq-container {

  padding: 20px 120px;
  position: relative;
}

/* Header Styles */
.unique-faq-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.unique-faq-header h2 {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.unique-faq-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ff3e89;
  border-radius: 2px;
}

.unique-faq-header p {
  margin-top: 20px;
  font-size: 18px;
  color: #718096;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Tab Navigation Styles */
.unique-faq-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.unique-faq-tab {
  padding: 14px 25px;
  background-color: rgba(255, 62, 137, 0.08);
  color: #2d3748;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.unique-faq-tab:hover {
  background-color: rgba(255, 62, 137, 0.15);
  transform: translateY(-2px);
}

.unique-faq-tab.active {
  background: linear-gradient(135deg, #ff3e89, #a239ca);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 62, 137, 0.3);
}

.unique-faq-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.unique-faq-tab:hover::before {
  transform: translateX(100%);
}

/* Tab Content Styles */
.unique-faq-tab-content {
  display: none;
}

.unique-faq-tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Split Layout - Made more balanced */
.unique-faq-split {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left Column - FAQ Items - Made slightly narrower for balance */
.unique-faq-left {
  flex: 1.1;
}

.unique-faq-item {
  margin-bottom: 20px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.unique-faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ff3e89;
  transition: transform 0.3s ease;
  transform: scaleY(0);
  transform-origin: bottom;
}

.unique-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.unique-faq-item.active::before {
  transform: scaleY(1);
}

.unique-faq-question {
  padding: 24px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  transition: all 0.3s ease;
}

.unique-faq-question:hover {
  color: #ff3e89;
}

.unique-faq-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.unique-faq-toggle span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ff3e89;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.unique-faq-toggle span:last-child {
  transform: translateY(-50%) rotate(90deg);
}

.unique-faq-item.active .unique-faq-toggle span:last-child {
  transform: translateY(-50%) rotate(0);
  opacity: 0;
}

.unique-faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.unique-faq-item.active .unique-faq-answer {
  padding-bottom: 24px;
  max-height: 1000px;
}

.unique-faq-answer p {
  color: #718096;
  line-height: 1.8;
}

/* Right Column - Interactive Element - Made slightly wider for balance */
.unique-faq-right {
  flex: 0.9;
  position: sticky;
  top: 50px;
}

.unique-faq-visual {
  background: linear-gradient(135deg, #ff3e89, #a239ca);
  border-radius: 20px;
  padding: 40px;
  color: white;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(255, 62, 137, 0.3);
}

.unique-faq-visual::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.unique-faq-visual::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

.unique-faq-visual h3 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.unique-faq-visual p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.unique-faq-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.unique-faq-stat {
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  min-width: 120px;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Added hover effect for stats */
.unique-faq-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Added counter animation for stats on hover */
.unique-faq-stat h4 {
  font-size: 36px;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

.unique-faq-stat:hover h4 .number {
  animation: countUp 1.5s forwards;
}

@keyframes countUp {
  from {
    content: "0";
  }

  to {
    content: attr(data-value);
  }
}

.unique-faq-stat p {
  font-size: 13px;
  margin: 0;
  opacity: 0.8;
}

.unique-faq-btn {
  display: inline-block;
  background: white;
  color: #ff3e89;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.unique-faq-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

/* Floating elements for visual interest */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 8s infinite ease-in-out;
}

.circle-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 40px;
  height: 40px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}


/* Tablet View */
@media (max-width: 1024px) {
  .unique-faq-container {
    padding: 20px 40px;
  }

  .unique-faq-header h2 {
    font-size: 36px;
  }

  .unique-faq-header p {
    font-size: 16px;
  }

  .unique-faq-tabs {
    gap: 8px;
  }

  .unique-faq-tab {
    padding: 12px 20px;
    font-size: 14px;
  }

  .unique-faq-split {
    flex-direction: column;
    gap: 30px;
  }

  .unique-faq-left,
  .unique-faq-right {
    flex: 1 1 100%;
  }

  .unique-faq-visual {
    height: auto;
    padding: 30px;
  }

  .unique-faq-visual h3 {
    font-size: 28px;
  }

  .unique-faq-visual p {
    font-size: 16px;
  }

  .unique-faq-stat h4 {
    font-size: 30px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .unique-faq-container {
    padding: 20px;
  }

  .unique-faq-header h2 {
    font-size: 30px;
  }

  .unique-faq-header p {
    font-size: 15px;
  }

  .unique-faq-tabs {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
  }

  .unique-faq-tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .unique-faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .unique-faq-toggle {
    width: 24px;
    height: 24px;
  }

  .unique-faq-answer {
    padding: 0 20px;
  }

  .unique-faq-item.active .unique-faq-answer {
    padding-bottom: 20px;
  }

  .unique-faq-visual {
    padding: 24px;
    height: auto;
  }

  .unique-faq-visual h3 {
    font-size: 24px;
  }

  .unique-faq-visual p {
    font-size: 15px;
  }

  .unique-faq-stat {
    padding: 16px;
    min-width: 100px;
  }

  .unique-faq-stat h4 {
    font-size: 26px;
  }

  .unique-faq-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Small Mobile View */
@media (max-width: 480px) {
  .unique-faq-header h2 {
    font-size: 26px;
  }

  .unique-faq-tabs {
    margin-left: 30px;
    gap: 25px;

  }

  .unique-faq-tab {
    padding: 8px 12px;
    font-size: 12px;
  }

  .unique-faq-question {
    font-size: 15px;
    padding: 16px;
  }

  .unique-faq-toggle {
    width: 22px;
    height: 22px;
  }

  .unique-faq-answer {
    padding: 0 16px;
  }

  .unique-faq-item.active .unique-faq-answer {
    padding-bottom: 16px;
  }

  .unique-faq-visual h3 {
    font-size: 22px;
  }

  .unique-faq-visual p {
    font-size: 14px;
  }

  .unique-faq-stat h4 {
    font-size: 22px;
  }

  .unique-faq-stat {
    padding: 14px;
  }

  .unique-faq-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* hero sectio  css  */
.ai-edu-platform {
  overflow: hidden;
  background-color: white;
  color: #f8f5ff;
}

.ai-edu-hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  position: relative;
}

.ai-edu-neon-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, rgba(255, 8, 68, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(111, 14, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
  top: 50%;
  opacity: 0.7;
}

.ai-edu-hero-container {
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  padding: 1rem;
}

.ai-edu-hero-text {
  width: 100%;
  padding: 1rem 0;
  position: relative;
}

.ai-edu-hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
  position: relative;
  min-height: 3rem;
  /* Ensures consistent height during animation */
}

.ai-edu-hero-title::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 60px;
  background: linear-gradient(90deg, #ff0844, #6f0eff);
  bottom: -10px;
  border-radius: 4px;
}

/* Typing cursor animation */
.ai-edu-hero-title::after {
  content: '|';
  position: absolute;
  color: #ff0844;
  animation: ai-edu-cursor 0.8s infinite;
  margin-left: 5px;
}

.ai-edu-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  background: linear-gradient(to right, #54025f, #54025f);
  background-clip: text;
  color: transparent;
}

.ai-edu-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ai-edu-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ai-edu-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #6f0eff, #ff0844);
  transition: all 0.4s;
  z-index: -1;
}

.ai-edu-btn-primary {
  background: linear-gradient(90deg, #ff0844, #6f0eff);
  color: white;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 8, 68, 0.4);
}

.ai-edu-btn-secondary {
  background: linear-gradient(to right, #54025f, #54025f);
  background-clip: text;
  color: transparent;
  border: 2px solid #ff0844;
}

.ai-edu-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 8, 68, 0.6);
}

.ai-edu-btn-secondary:hover {
  color: #54025f;
  transform: translateY(-3px);
}

.ai-edu-btn-secondary:hover::before {
  width: 100%;
}

.ai-edu-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  position: relative;
}

.ai-edu-stats::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff0844, transparent);
}

.ai-edu-stat-item {
  flex: 1;
  min-width: 120px;
  position: relative;
}

.ai-edu-stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ai-edu-stat-label {
  font-size: 0.9rem;
  color: #54025f;
}

.ai-edu-hero-image {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
}

.ai-edu-hero-image:hover {
  transform: scale(1.1);
}

.ai-edu-image-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  padding: 10px;
  background: rgba(22, 0, 40, 0.5);
  box-shadow: 0 0 30px rgba(111, 14, 255, 0.3);
  animation: ai-edu-float 6s ease-in-out infinite;
}

.ai-edu-image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 10px;
  background: linear-gradient(45deg, #ff0844, #6f0eff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.ai-edu-main-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.ai-edu-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.ai-edu-glitch-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 400"><rect width="600" height="400" fill="%23160028"/><path d="M300,100 Q450,150 300,250 T300,350 Q150,300 300,200 T300,50" fill="none" stroke="%23ff0844" stroke-width="3"/><path d="M300,100 Q450,150 300,250 T300,350 Q150,300 300,200 T300,50" fill="none" stroke="%236f0eff" stroke-width="3" transform="rotate(180 300 200)"/><circle cx="150" cy="100" r="50" fill="%236f0eff" opacity="0.5"/><circle cx="450" cy="300" r="50" fill="%23ff0844" opacity="0.5"/><path d="M100,100 L150,50 L200,100 L150,150 Z" fill="%23ff0844" opacity="0.3"/><rect x="400" y="100" width="100" height="100" fill="%236f0eff" opacity="0.3"/><text x="300" y="220" font-family="Arial" font-size="24" fill="%23f8f5ff" text-anchor="middle">AI EDUCATION</text><text x="300" y="250" font-family="Arial" font-size="18" fill="%23f8f5ff" text-anchor="middle">FUTURE OF LEARNING</text></svg>');
  background-size: cover;
  border-radius: 8px;
  opacity: 0;
  filter: hue-rotate(90deg) saturate(200%);
}

.ai-edu-hexagon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 8, 68, 0.4) 10%, transparent 30%),
    radial-gradient(circle at 100% 0%, rgba(111, 14, 255, 0.4) 10%, transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(255, 8, 68, 0.4) 10%, transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(111, 14, 255, 0.4) 10%, transparent 30%);
}

.ai-edu-tech-badge {
  position: absolute;
  padding: 0.5rem 1rem;
  background: rgba(22, 0, 40, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
  border: 1px solid rgba(111, 14, 255, 0.3);
  font-weight: bold;
}

.ai-edu-badge-icon {
  color: #ff0844;
  font-size: 1.2rem;
}

.ai-edu-tech-1 {
  top: -15px;
  left: 10%;
  animation: ai-edu-badgeFloat 8s ease-in-out infinite;
}

.ai-edu-tech-2 {
  bottom: -15px;
  left: 20%;
  animation: ai-edu-badgeFloat 7s ease-in-out infinite 1s;
}

.ai-edu-tech-3 {
  top: 20%;
  right: -15px;
  animation: ai-edu-badgeFloat 9s ease-in-out infinite 0.5s;
}

.ai-edu-tech-4 {
  bottom: 20%;
  right: 10%;
  animation: ai-edu-badgeFloat 7s ease-in-out infinite 1.5s;
}

.ai-edu-neuron {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: #ff0844;
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 10px 2px #ff0844;
  opacity: 0.7;
}

.ai-edu-line {
  position: absolute;
  background: linear-gradient(90deg, #ff0844, #6f0eff);
  height: 1px;
  transform-origin: left center;
  opacity: 0.3;
}

/* Animation keyframes */
@keyframes ai-edu-cursor {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@keyframes ai-edu-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes ai-edu-badgeFloat {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(5px, -8px);
  }

  50% {
    transform: translate(10px, 0);
  }

  75% {
    transform: translate(5px, 8px);
  }
}

@keyframes ai-edu-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

@keyframes ai-edu-glitch {
  0% {
    opacity: 0;
    transform: translate(0);
  }

  2% {
    opacity: 0.8;
    transform: translate(-5px, 5px);
  }

  4% {
    opacity: 0;
    transform: translate(0);
  }

  20% {
    opacity: 0;
    transform: translate(0);
  }

  22% {
    opacity: 0.4;
    transform: translate(5px, -5px);
  }

  24% {
    opacity: 0;
    transform: translate(0);
  }

  80% {
    opacity: 0;
    transform: translate(0);
  }

  82% {
    opacity: 0.7;
    transform: translate(-3px, 3px);
  }

  84% {
    opacity: 0;
    transform: translate(0);
  }

  100% {
    opacity: 0;
  }
}

/* Media queries for responsiveness */
@media (min-width: 768px) {
  .ai-edu-hero-title {
    font-size: 3.5rem;
  }

  .ai-edu-hero-subtitle {
    font-size: 1.3rem;
  }

  .ai-edu-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
  }

  .ai-edu-stat-number {
    font-size: 2.2rem;
  }

  .ai-edu-stat-label {
    font-size: 1rem;
  }

  .ai-edu-tech-badge {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
  }

  .ai-edu-badge-icon {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ai-edu-hero-container {
    flex-direction: row;
    align-items: center;
  }

  .ai-edu-hero-text {
    width: 51%;
    padding-right: 2rem;
  }

  .ai-edu-hero-image {
    width: 50%;
  }

  .ai-edu-hero-title {
    font-size: 4rem;
  }

  .ai-edu-image-container {
    max-width: 500px;
  }

  .ai-edu-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
  }
}

@media (max-width: 480px) {
  .ai-edu-hero {
    margin-top: 30px;
  }
}

.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

img.course-image {
  width: 100%;
}

.course-rating {
  margin-bottom: 20px;
}

.midCta {
  background: linear-gradient(to right, #54025f, #54025f);
  padding: 40px 0;
}
.bg_img{
  min-height: 80px;
}
.bg_img h3{
  color:#fff;
}



/* video */
.video-gallery {
  height: 700px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background-color: #f8f9fa;
  padding: 50px 20px;
}

.video-card {
  position: relative;
  width: 300px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  cursor: pointer;
}

.video-card.active {
  width: 400px;
  height: 550px;
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.video-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  width: 100%;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  border-radius: 0 0 12px 12px;
}

.company-badge {
  background-color: #0d6efd;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 5px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .video-gallery{
    height: auto;
  }
  
}
@media (max-width: 768px) {
  .video-gallery{
    height: auto;
  }
  
}