* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* Navbar styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span {
  font-family: "Pacifico", cursive;
  font-size: 1.5rem;
}

.login-btn-mobile {
  display: none;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: 150px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.corporate-btn,
.login-btn {
  position: relative;
  perspective: 1000px;
  overflow: hidden;
}

.corporate-btn span,
.login-btn span {
  display: inline-block;
  transform-origin: 50% 50%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.corporate-btn:hover span,
.login-btn:hover span {
  transform: rotateX(360deg);
}

/* Add animation delay for each letter */
.corporate-btn span:nth-child(1) {
  transition-delay: 0.02s;
}
.corporate-btn span:nth-child(2) {
  transition-delay: 0.04s;
}
.corporate-btn span:nth-child(3) {
  transition-delay: 0.06s;
}
.corporate-btn span:nth-child(4) {
  transition-delay: 0.08s;
}
.corporate-btn span:nth-child(5) {
  transition-delay: 0.1s;
}
.corporate-btn span:nth-child(6) {
  transition-delay: 0.12s;
}
.corporate-btn span:nth-child(7) {
  transition-delay: 0.14s;
}
.corporate-btn span:nth-child(8) {
  transition-delay: 0.16s;
}
.corporate-btn span:nth-child(9) {
  transition-delay: 0.18s;
}
.corporate-btn span:nth-child(10) {
  transition-delay: 0.2s;
}
.corporate-btn span:nth-child(11) {
  transition-delay: 0.22s;
}
.corporate-btn span:nth-child(12) {
  transition-delay: 0.24s;
}
.corporate-btn span:nth-child(13) {
  transition-delay: 0.26s;
}
.corporate-btn span:nth-child(14) {
  transition-delay: 0.28s;
}
.corporate-btn span:nth-child(15) {
  transition-delay: 0.3s;
}
.corporate-btn span:nth-child(16) {
  transition-delay: 0.32s;
}

.login-btn span:nth-child(1) {
  transition-delay: 0.02s;
}
.login-btn span:nth-child(2) {
  transition-delay: 0.04s;
}
.login-btn span:nth-child(3) {
  transition-delay: 0.06s;
}
.login-btn span:nth-child(4) {
  transition-delay: 0.08s;
}
.login-btn span:nth-child(5) {
  transition-delay: 0.1s;
}

.corporate-btn {
  text-decoration: none;
  color: #333;
  padding: 0.5rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
}

.login-btn {
  text-decoration: none;
  color: white;
  background: #8a2be2;
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
}

/* Responsive styles */
@media (max-width: 968px) {
  .nav-links {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
    z-index: 2;
  }

  .nav-links,
  .nav-buttons {
    position: fixed;
    width: 100%;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    opacity: 0;
    transform: translate(0px, -500px);
    transition: opacity 0.3s ease, transform 0.6s ease;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 70px;
    margin-left: 0;
    display: flex;
  }

  .nav-buttons {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0;
    display: flex;
  }

  .nav-toggle:checked ~ .nav-buttons,
  .nav-toggle:checked ~ .nav-links {
    opacity: 1;
    transform: translate(0, 0);
  }

  .nav-toggle:checked ~ .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .login-btn-hamburger {
    display: none;
  }

  .login-btn-mobile {
    display: block;
  }

  .login-btn {
    text-align: center;
    width: 100%;
    order: 2;
    font-size: 12px;
    width: 100px;
    margin-right: -70px;
    padding: 10px 20px;
  }

  .logo {
    order: 1;
  }
  .nav-toggle-label {
    order: 3;
  }

  .nav-logo img {
    width: 100px;
  }

  .nav-links a {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #333;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .navbar {
    padding: 1rem 20px;
  }

  .student-info h3 {
    font-size: 14px;
  }

  .student-info p {
    font-size: 14px;
  }

  .play-btn {
    width: 32px;
    height: 32px;
  }

  .slider-nav {
    margin-top: 16px;
  }

  .slider-prev,
  .slider-next {
    width: 44px;
    height: 32px;
  }
}

#semicircle {
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all ease-out 0.2s;
  width: 1.2vw;
  height: 1.2vw;
  border-radius: 50%;
  background-color: #fff;
  background: transparent;
  z-index: 99999999999999999 !important;
}

.our-course-line{
  position: absolute;
  top: 80%;
  width: 100%;
  height: 1px;
  left: 0;
  background-color:transparent;
}

/* Watch Section Styles */
.watch-section {
  position: relative;
  width: 100%;
  padding: 0px 0% 80px 5%;
  background-color: #fff;
  overflow: hidden;
}

.watch-title {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 100;
}

.watch-title span {
  font-weight: 700;
}

.courses-header h2 {
  font-weight: 200;
}

.title-bold {
  font-weight: 700;
}

.testimonials-slider {
  position: relative;
  padding: 20px 0;
}

.testimonial-card {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  background-color: #f5f5f5;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: all 0.3s ease;
  will-change: transform;
}

/* Add a subtle shadow to improve the 3D effect */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* Configure the image for 3D tilt */
.testimonial-img {
  margin-top: 60px;
  transform-style: preserve-3d;
  transform: translateZ(0);
  transition: transform 0.3s ease;
  will-change: transform;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Make the info background pop out in 3D space */
.student-info-bg {
  background-color: #fff;
  width: 85%;
  height: 65px;
  position: absolute;
  bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(15px);
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Student info text and play button stay relative to their background */
.student-info {
  position: absolute;
  left: 20px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.student-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #000;
}

.student-info p {
  font-size: 16px;
  color: #717171;
}

.play-btn {
  position: absolute;
  right: 20px;
  background: #8a2be2;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
  transition: transform 0.3s ease;
}

.slider-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.slider-nav button:hover {
  background: #000;
  color: white;
}

.slider-prev:hover svg path {
  fill: white;
}

.slider-next:hover svg path {
  fill: white;
}

.slider-prev,
.slider-next {
  width: 54.74px;
  height: 37.49px;
  border-radius: 30.5px;
  border: 1px solid #e0e0e0;
  background: #e8e8e8;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active slide styles */
.swiper-slide:hover .testimonial-card {
  background: rgba(147, 51, 234, 0.31);
}

@media (min-width: 768px) {
  .watch-section {
    padding: 60px 5%;
  }

  .watch-title {
    font-size: 40px;
    margin-bottom: 24px;
  }

  /* .testimonial-card {
    width: 300px;
    height: 340px;
  } */
}

@media (min-width: 1024px) {
  .watch-section {
    padding: 80px 0% 80px 5%;
  }

  .watch-title {
    font-size: 48px;
    margin-bottom: 24px;
  }

  /* .testimonial-card {
    width: 322px;
    height: 366px;
  } */
}

/* Add tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .nav-links {
    gap: 1.5rem;
  }

  .nav-buttons {
    gap: 0.8rem;
  }

  .corporate-btn,
  .login-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Courses Section Styles */
.courses-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0px 0% 80px 5%;
  background-color: #fff;
}

.courses-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-right: 7%;
}

.courses-header h2 {
  font-size: 48px;
}

.view-all {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.course-card {
  background: #fff;
  overflow: hidden;
}

.course-img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.course-content {
  padding: 24px 0;
}

.course-content h3 {
  font-size: 24px;
  margin-bottom: 24px;
  line-height: 1.3;
}

.course-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #717171;
}

.feature span {
  color: #000;
}

.read-more {
  display: inline-block;
  padding: 21px 40px;
  background: #8a2be2;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 500;
}

.courses-prev:hover svg path {
  fill: white;
}

.courses-next:hover svg path {
  fill: white;
}

.courses-prev,
.courses-next {
  width: 54.74px;
  height: 37.49px;
  border-radius: 30.5px;
  border: 1px solid #e0e0e0;
  background: #e8e8e8;
  cursor: pointer;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .courses-header h2 {
    font-size: 32px;
  }

  .course-content h3 {
    font-size: 20px;
  }
  .view-all {
    width: 100px;
  }
}

/* Upcoming 1:1 Batches Section */
.upcoming-section {
  width: 100%;
  position: relative;
  padding: 0px 5% 80px 5%;
  background-color: #fff;
}
.title-bold {
  font-weight: 700;
}
.upcoming-title {
  font-size: 48px;
  margin-bottom: 24px;
  z-index: 1;
}
.title-semi {
  font-weight: 200;
}

.batch-cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.batch-card {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  z-index: 1;
}

.batch-card.weekday {
  background-color: #eaf2b1;
}
.batch-card .read-more {
  display: inline-block;
  padding: 21px 40px;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  margin-top: 20px;
}

.batch-card.weekend {
  background-color: #bcf9f0;
}

.batch-card h3 {
  font-size: 16px;
  color: #000000;
  font-weight: 800;
}

.batch-card h2 {
  font-size: 27.5px;
  font-weight: 700;
}

.batch-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.batch-info dotlottie-wc {
  width: 120px;
  height: 120px;
}

.hourglass-icon {
  width: 48px;
  height: 48px;
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule h3 {
  font-size: 47.5px;
  font-weight: 800;
}

.schedule p {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
}

.detail-date {
  margin-top: 30px;
}

.detail {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail img {
  width: 24px;
  height: 24px;
}

.detail p {
  color: #000;
  font-weight: 800;
  font-size: 18px;
}

.rightcourse {
  position: absolute;
  width: 350px;
  right: 0px;
  top: -200px;
  z-index: 0;
}

.rightcourse svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .upcoming-section {
    padding: 0px 0px 40px 20px;
    padding-bottom: 80px;
  }

  .upcoming-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .batch-card {
    min-width: 85%;
    padding: 24px;
    gap: 16px;
  }

  .batch-card h3 {
    font-size: 14px;
    margin-bottom: 0;
  }

  .batch-card h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .schedule {
    gap: 8px;
  }

  .schedule h3 {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .schedule p {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .detail {
    gap: 8px;
  }

  .detail img {
    width: 20px;
    height: 20px;
  }

  .read-more {
    padding: 16px 32px;
    font-size: 14px;
    background: #000;
    width: fit-content;
    margin-top: 16px;
  }

  /* Adjust spacing between date and time */
  .detail-date {
    margin-top: 16px;
  }

  /* Make cards stack vertically with gap */
  .batch-cards {
    flex-wrap: nowrap;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .batch-cards::-webkit-scrollbar {
    display: none;
  }

  .rightcourse {
    display: none;
  }

  /* Update batch info layout */
  .batch-info {
    flex-direction: column;
    /* gap: 16px; */
    align-items: flex-start;
  }

  /* Schedule section adjustments */
  .schedule {
    width: 100%;
    gap: 8px;
  }

  .schedule h3 {
    font-size: 50px;
    font-weight: 700;
    margin: 0;
  }

  .schedule p {
    font-size: 20px;
    margin: 0;
    font-weight: 800;
    margin-bottom: 16px;
  }

  /* Details section adjustments */
  .detail {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .detail img {
    width: 40px;
    height: 40px;
  }

  .detail p {
    font-size: 16px;
    margin: 0;
  }

  .detail-date {
    margin-top: 16px;
  }

  /* Card overall adjustments */
  .batch-card {
    padding: 24px;
    gap: 16px;
  }
  .batch-card .read-more {
    font-size: 20px;
  }
}

/* UI/UX Design Evolution Section */
.evolution-container {
  width: 100%;
  overflow: hidden;
  padding: 0px 0px 80px 0px;
  background-color: #fff;
}

.evolution-main-title {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: -100px;
  font-weight: 100;
  padding: 0px 5% 0px 5%;
}

.evolution-main-title span {
  font-weight: 700;
}

.evolution-section {
  padding: 40px;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-svg-back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  animation: flow-svg-back 50s linear infinite;
}

@keyframes flow-svg-back {
  0% {
    transform: translateY(25%) translateX(20%);
  }
  50% {
    transform: translateY(15%) translateX(60%);
  }
  100% {
    transform: translateY(25%) translateX(20%);
  }
}

.evolution-parent {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 75%;
  height: 430px;
  /* background-color: red; */
}

.evolution-content {
  position: relative;
  position: absolute;
  width: 95%;
  height: 430px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 10%;
  gap: 200px;
  z-index: 1;
  background-image: url(./Assets/Images/Evolution\ Section/Map.png);
  background-repeat: no-repeat;
  background-position: -50% 0%;
  background-size: 120%;
  background-color: #f5f5f5;
  border-radius: 50px;
  color: #000;
  border: 1px solid #c4c4c4;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  margin-right: 60px;
  margin-top: 100px;
  width: 25%;
  padding-right: 5%;
  color: #000;
}

.timeline-line {
  position: absolute;
  top: 0;
  right: 0px;
  height: 100%;
  z-index: 1;
  width: 100%;
}

.timeline-line .path-bg {
  stroke: rgb(141, 141, 141);
  stroke-width: 2;
  fill: none;
  opacity: 0.2; /* Low opacity for the background path */
  stroke-linecap: round; /* Rounded ends for smoother look */
  stroke-linejoin: round; /* Rounded joins for smoother look */
}

.timeline-line .path-draw {
  stroke: url(#timeline-gradient);
  stroke-width: 2.5; /* Slightly thicker than the background for better visibility */
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  stroke-linecap: round; /* Rounded ends for smoother look */
  stroke-linejoin: round; /* Rounded joins for smoother look */
  /* Will be animated with JavaScript on scroll */
}

.timeline-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  opacity: 1;
  position: relative;
}

.timeline-item .year {
  color: #424242;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.5;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  position: relative;
  opacity: 0.5;
  transform: scale(0.5);
  z-index: 2;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.timeline-item.active .timeline-dot {
  background: linear-gradient(135deg, #ff23d7, #1d2beb);
  transform: scale(1.5);
  transition: all 0.3s ease;
  opacity: 1;
}

.timeline-item.active .year {
  transform: translateY(0);
  opacity: 1;
  color: #000;
}

.evolution-info {
  opacity: 1;
  transform: translateX(0);
}

.job-count-cover {
  background: transparent;
  overflow: hidden;
  width: 500px;
  height: 130px;
  position: relative;
}

.evolution-info .job-count {
  font-size: 130px;
  font-weight: 700;
  background: linear-gradient(45deg, #ff23d7 0%, #ff7237 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  font-family: "Anonymous Pro", monospace;
  position: absolute;
  left: 0;
  opacity: 1;
  transform: translateY(150px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.evolution-info .job-count.active {
  opacity: 1;
  transform: translateY(0);
}

.evolution-info h3 {
  color: #717171;
  font-size: 28px;
  margin-bottom: 8px;
}

.evolution-info h2 {
  font-size: 28px;
  margin-bottom: 24px;
  font-weight: 300;
}

.evolution-info p {
  font-size: 28px;
  letter-spacing: 0.2em;
  letter-spacing: 0.5em;
  font-weight: 300;
}

/* Responsive styles for evolution section */
@media (max-width: 1200px) {
  .evolution-main-title {
    font-size: clamp(28px, 4vw, 42px);
  }

  .evolution-info .job-count {
    font-size: 100px;
  }

  .evolution-content {
    gap: 100px;
  }
}

@media (max-width: 992px) {
  .evolution-section {
    background-position: center right -200px;
    padding: 0px;
  }

  .evolution-content {
    gap: 50px;
    padding-left: 5%;
  }

  .timeline {
    gap: 40px;
  }

  .evolution-info h3,
  .evolution-info h2 {
    font-size: 24px;
  }

  .evolution-info .job-count {
    font-size: 80px;
  }

  .evolution-info p {
    font-size: 24px;
  }

  .job-count-cover {
    width: 400px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .evolution-container {
    padding: 0px 0px 60px 0px;
  }

  .evolution-main-title {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .evolution-parent {
    width: 100%;
    align-items: center;
  }

  .evolution-content {
    flex-direction: column;
    height: 100%;
    gap: 30px;
    padding-left: 0;
    width: 90%;
    align-items: flex-start;
  }

  .timeline {
    flex-direction: row;
    width: 100%;
    gap: 10px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
    justify-content: space-between;
  }

  .timeline-item {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }

  .timeline-item .year {
    font-size: 12px;
  }

  .evolution-info {
    width: 100%;
    padding: 0 25px;
  }

  .evolution-info h3,
  .evolution-info h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .evolution-info .job-count {
    font-size: 70px;
  }

  .evolution-info p {
    font-size: 20px;
    letter-spacing: 0.2em;
  }

  .job-count-cover {
    width: 300px;
  }

  .timeline-line {
    position: absolute;
    top: -30%; /* Center it vertically along the timeline */
    left: 0;
    width: 100%;
    height: 2px; /* Only height needed for horizontal line */
    transform: translateY(-50%);
    z-index: 1;
  }

  .timeline-line .path-bg,
  .timeline-line .path-draw {
    stroke-width: 2px;
  }
}

@media (max-width: 480px) {
  .evolution-section {
    height: 430px;
    flex-direction: column;
    gap: 75px;
  }
  .evolution-main-title {
    font-size: 28px;
  }

  .timeline {
    width: 100%;
    gap: 10px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .timeline-item .year {
    font-size: 12px;
  }

  .evolution-info .job-count {
    font-size: 70px;
  }

  .evolution-info p {
    font-size: 20px;
    letter-spacing: 0.2em;
  }

  .evolution-info h3,
  .evolution-info h2 {
    font-size: 20px;
  }
  .evolution-info h3 {
    margin-top: 50px;
  }

  .job-count-cover {
    width: 300px;
  }
}

/* Contact Us Section */
.contact-section {
  width: 100%;
  padding: 0px 5% 80px 5%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.contact-content {
  display: flex;
  gap: 80px;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.contact-text {
  flex: 1;
  position: relative;
}

.gradient-contact{
  position: absolute;
  height: 300px;
  z-index: -2;
  width: 80%;
  right: 0;
}

.contact-text h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 200;
  position: relative;
  z-index: 2;
}

.mouse-illustration {
  position: absolute;
  right: 80px;
  top: 70%;
  width: 400px;
  height: auto;
}

.contact-form {
  flex: 1;
  max-width: 600px;
}

.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  background: #f1f4f9;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  padding-left: 45px;
  position: relative;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  padding-left: 20px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #717171;
}

.button-group {
  display: flex;
  gap: 16px;
  width: 100%;
}

.button-group button {
  flex: 1;
  max-width: 50%; /* Ensures equal width */
}

.submit-btn,
.reset-btn {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn {
  background: #8a2be2;
  color: white;
  border: none;
}

.reset-btn {
  background: #ffffff;
  color: #000000;
  border: 1px solid #e0e0e0;
}

.submit-btn:hover {
  background: #7424bd;
}

.reset-btn:hover {
  background: #f5f5f5;
}

/* Update mobile styles to keep buttons side by side */
@media (max-width: 768px) {
  #gradient-contact{
    display: none;
  }

  .contact-section {
    padding: 40px 20px;
  }

  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .contact-text h2 {
    font-size: 32px;
    margin-bottom: 0px;
  }

  .mouse-illustration {
    display: none;
  }

  .contact-form {
    width: 100%;
  }

  .contact-text::before {
    width: 600px;
    height: 600px;
    left: -150px;
    top: -150px;
    filter: blur(80px);
    background-image: none;
  }
  .leftsvgcontact {
    display: none;
  }

  .button-group {
    flex-direction: row; /* Keep buttons in row */
    gap: 12px; /* Slightly reduce gap on mobile */
  }

  .submit-btn,
  .reset-btn {
    padding: 14px; /* Slightly reduce padding on mobile */
    font-size: 14px; /* Slightly reduce font size on mobile */
  }
}

/* Best Courses Section */
.best-courses-section {
  width: 100%;
  overflow: hidden;
  padding: 80px 5% 80px 5%;
  background-color: #fff;
  padding-bottom: 150px;
}

.section-title {
  font-size: 42px;
  font-weight: 200;
  text-align: left;
  margin-bottom: 0px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

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

.feature-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #717171;
  margin: 0;
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .best-courses-section {
    padding: 40px 20px;
    padding-bottom: 120px;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 0px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card h3 {
    font-size: 20px;
  }
}

/* Certificate Section */
.certificate-section {
  width: 100%;
  overflow: hidden;
  background: #000000;
  padding: 80px 5%;
  color: white;
  border-radius: 100px 100px 0 0;
  /* margin: 0 5%; */
}

.certificate-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.certificate-text {
  flex: 1;
  max-width: 600px;
}

.certificate-text h3 {
  font-size: 42px;
  color: #717171;
  margin-bottom: 8px;
  font-weight: 800;
}

.certificate-text h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 48px;
  font-weight: 200;
}

.certificate-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cert-feature h4 {
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
  font-weight: 600;
}

.cert-feature p {
  width: 60%;
  font-size: 16px;
  line-height: 1.5;
  color: #717171;
}

.certificate-preview {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 2000px;
}

.certificate-frame {
  position: relative;
  transform-style: preserve-3d;
  border-radius: 8px;
  padding: 2px;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.certificate-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.2)
  );
  border-radius: 10px;
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.certificate-frame:hover::before {
  opacity: 1;
}

.certificate-frame img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  transform: translateZ(0);
}

@media (max-width: 1200px) {
  .certificate-text h2,
  .certificate-text h3 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .certificate-content {
    flex-direction: column;
    gap: 60px;
  }

  .certificate-text {
    text-align: left;
    max-width: 100%;
  }

  .certificate-features {
    align-items: center;
    text-align: left;
  }

  .certificate-preview {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .certificate-section {
    padding: 40px 20px;
    /* margin: 0 20px; */
    border-radius: 50px 50px 0 0;
  }

  .certificate-text h2,
  .certificate-text h3 {
    font-size: 32px;
  }

  .cert-feature h4 {
    font-size: 20px;
  }

  .certificate-frame {
    transform: none !important;
  }
  .certificate-frame::before {
    display: none;
  }
}

/* Scroll Text Section */
.scoll-text-container-p {
  background-color: #000;
}
.scroll-text-container {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 40px 0;
  border-radius: 100px 100px 0 0;
}

.scroll-text {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  transform: translateX(0);
}

.scroll-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 16px;
  animation: none;
  flex-shrink: 0;
}

.scroll-content span {
  color: #000;
  font-size: 239.65px;
  font-weight: 600;
}

.scroll-star {
  width: 70px;
  height: 70px;
}

@media (max-width: 768px) {
  .scroll-text-container {
    border-radius: 50px 50px 0 0;
  }
  .scroll-content span {
    font-size: 100px;
  }

  .scroll-star {
    width: 50px;
    height: 50px;
  }

  .scroll-content {
    gap: 16px;
  }
}

/* FAQ Section */
.faq-section {
  width: 100%;
  overflow: hidden;
  padding: 80px 5%;
  background: #fff;
}

.faq-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 40px;
}

.faq-header {
  margin-bottom: 60px;
  width: 45%;
  min-width: 300px;
}

.faq-header h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.faq-header .title-light {
  font-weight: 200;
}

.faq-contact h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.faq-contact p {
  font-size: 22px;
  color: #717171;
}

.line-faq {
  width: 10%;
  height: 1px;
  background-color: #000;
  margin-bottom: 40px;
}

.faq-content {
  display: flex;
  width: 50%;
  min-width: 300px;
  flex-grow: 1;
  align-items: flex-start;
}

.faq-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 500px;
  height: 400px;
}

.faq-image img {
  align-self: center;
  width: 30%;
  height: auto;
}

.gradient-img-faq {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  z-index: -1;
  transform: translateY(250px) translateX(-100px);
}

.right-img-faq {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transform: translateY(250px) translateX(70px);
}

.faq-questions {
  flex: 1;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.accordion-item.active {
  background: #f7f7f7;
}

.accordion-button {
  width: 100%;
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  flex-direction: row-reverse;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

.accordion-button span {
  flex: 1;
  padding-left: 24px;
}

.toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 28px;
  transition: background 0.3s ease;
  background: #eee;
  border-radius: 100px;
  padding: 6px;
  font-weight: 200;
}

.accordion-item.active .toggle-icon {
  background: #000;
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 82px;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-bottom: 32px;
}

.accordion-content p {
  color: #717171;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-header,
  .faq-content {
    width: 100%;
  }

  .faq-header {
    margin-bottom: 40px;
    background-position-x: center;
  }

  .faq-image {
    margin-top: 40px;
  }

  .faq-image img {
    width: 40%;
  }
  .right-img-faq {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }

  .faq-header h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .faq-contact h3 {
    font-size: 20px;
  }

  .faq-contact p {
    font-size: 16px;
  }

  .accordion-button {
    padding: 20px;
    font-size: 16px;
  }

  .accordion-button span {
    padding-left: 16px;
  }

  .toggle-icon {
    width: 28px;
    height: 24px;
  }

  .accordion-content {
    padding: 0 20px;
  }

  .accordion-item.active .accordion-content {
    padding-bottom: 20px;
  }

  .faq-image {
    display: none;
  }
  .right-img-faq {
    display: none;
  }
  .gradient-img-faq {
    display: none;
  }
}

@media (max-width: 480px) {
  .faq-header {
    background-position-y: 150px;
  }

  .accordion-button {
    padding: 16px;
  }

  .accordion-button span {
    padding-left: 12px;
  }

  .toggle-icon {
    width: 24px;
    height: 20px;
  }

  .accordion-content {
    padding: 0 16px;
  }

  .accordion-item.active .accordion-content {
    padding-bottom: 16px;
  }

  .faq-image {
    display: none;
  }
}

/* Footer Section */
.footer {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #000;
  padding: 80px 5%;
  color: #fff;
  border-radius: 100px 100px 0 0;
  z-index: 1;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.social-card img {
  width: 35px;
  height: 35px;
}

.social-info {
  color: #fff;
}

.follower-count {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
}

.platform {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.1em;
}

@media (max-width: 1200px) {
  .social-links {
    gap: 20px;
  }

  .social-card {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .footer {
    border-radius: 50px 50px 0 0;
    padding: 60px 20px;
  }

  .social-links {
    gap: 16px;
  }

  .social-card {
    min-width: 40%;
    padding: 20px;
  }

  .follower-count,
  .platform {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 20px;
  }

  .social-card {
    min-width: 40%;
  }

  .footer-content {
    gap: 40px;
  }
}

/* Hero Section */
.hero-section {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 80px 5% 0 5%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background-image: url(./Assets/Images/Hero/background.png);
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin-bottom: 80px;
}

.hero-text h1 {
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 200;
  font-family: "Pacifico", cursive;
  letter-spacing: -0.02em;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(90deg, #c02be2 0%, #2f00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.hero-text p {
  font-size: 22px;
  color: #111;
  margin: 20px 0;
  max-width: 400px;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  text-align: center;
}

.explore-btn {
  display: inline-block;
  padding: 21px 40px;
  background: #000;
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  transition: background-color 0.3s ease;
  font-size: 16px;
}

.explore-btn:hover {
  background: #7424bd;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: #fff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
}

.stat-number {
  font-family: "Anonymous Pro", monospace;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #c02be2 0%, #2f00ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-info span {
  font-size: 14px;
  color: #717171;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
}

.stat-info span:last-child {
  color: #000;
  font-weight: 700;
}

.hero-tools {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  /* left: 0; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.lft-hero-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.lft-hero-svg #lft-svg-draw {
  width: 100%;
}

.rght-hero-svg {
  position: absolute;
  top: 0;
  right: 0;
}

.rght-hero-svg #rght-svg-draw {
  width: 100%;
}

.tool-tag {
  position: absolute;
  padding: 12px 24px;
  background: #198cff;
  border-radius: 11.5px 0px 11.5px 11.5px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
  color: white;
  z-index: 10;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  top: 22.5%;
  left: 15%;
  pointer-events: none; /* Prevents the tag from interfering with mouse events */
}

.arrow-left-hero {
  position: absolute;
  top: -12px;
  right: -12px;
}

.arrow-right-hero {
  position: absolute;
  top: -12px;
  left: -12px;
}

.highlight {
  position: absolute;
  padding: 12px 24px;
  border-radius: 0px 11.5px 11.5px 11.5px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
  color: white;
  background: #8a2be2;
  z-index: 10;
  top: 20%;
  right: 10%;
  pointer-events: none; /* Prevents the tag from interfering with mouse events */
}

.object-svg {
  position: absolute;
  top: 86px;
  left: 256px;
}

.figmaLayout {
  position: absolute;
  top: 35%;
  right: 80px;
}

.adobeLogo {
  position: absolute;
  top: 50%;
  left: 200px;
  animation: floatLogo 6s ease-in-out infinite;
}

.figmaLogo {
  position: absolute;
  top: 48%;
  right: 200px;
  animation: floatLogo 6s ease-in-out infinite reverse;
}

@keyframes floatLogo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Ensure the animations work well with the mouse movement */
.adobeLogo,
.figmaLogo {
  will-change: transform;
  transition: transform 0.3s ease-out;
}

/* Add hover effect */
.adobeLogo:hover,
.figmaLogo:hover {
  animation-play-state: paused;
  transform: scale(1.1);
}

/* Update media queries for hero section */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 56px;
  }

  .tool-tag {
    left: 10%;
  }
}

@media (max-width: 992px) {
  .hero-section {
    padding: 60px 5%;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-card {
    min-width: 200px !important;
  }

  .tool-tag {
    left: 5%;
    top: 20%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
    height: 800px;
    align-items: end;
    background-size: 150%;
  }

  .hero-text {
    margin-bottom: 40px;
  }

  .hero-text h1 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .hero-text p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-stats {
    margin-bottom: 0;
    gap: 0;
  }

  .explore-btn {
    padding: 16px 32px;
    font-size: 14px;
    margin-bottom: 40px;
  }

  .stat-card {
    padding: 16px 24px;
    min-width: 100%;
    margin-bottom: 24px;
    justify-content: center;
  }

  .stat-number {
    font-size: 40px;
  }

  .tool-tag {
    top: 7%;
  }
  .highlight {
    display: none;
  }

  .lft-hero-svg #lft-svg-draw {
    display: none;
  }

  .rght-hero-svg #rght-svg-draw {
    display: none;
  }
  .figmaLayout {
    display: none;
  }
  .adobeLogo {
    top: 3%;
    left: 280px;
  }
  .adobeLogo img {
    width: 150px;
  }
  .figmaLogo {
    top: 38%;
    right: 260px;
  }
  .figmaLogo img {
    width: 150px;
  }
  #semicircle {
    display: none;
  }
  .object-svg {
    top: 0px;
    left: 150px;
  }
  .hero-text p {
    margin: 0;
    margin-bottom: 30px;
  }
}

.lft-hero-svg path {
  stroke-width: 0.7;
  fill: black;
  vector-effect: non-scaling-stroke;
}

/* LOad Animation */
.reveal-nav,
.reveal-nav-item,
.reveal-fade,
.reveal-fade-delay,
.reveal-fade-delay-2,
.tool-tag,
.highlight,
.figmaLayout,
.adobeLogo,
.figmaLogo {
  opacity: 0;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.textarea-icon {
  top: 25px;
  transform: none;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 960px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.close-modal {
  position: absolute;
  right: -40px;
  top: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
  }

  .close-modal {
    right: 0;
    top: -40px;
  }
}
