/* ultimate-css-ignore-file */
/* CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  --big: 6.4rem;
  --medium: 4.5rem;
  --small: 1.4rem;
  --text: 1.6rem;
  --text1: 1.8rem;
  --header: 3.6rem;
  --header1: 2.8rem;
  --header2: 2rem;
  --blue-50: #efeff9;
  --blue-100: #cccceb;
  --blue-200: #b4b4e2;
  --blue-300: #9291d5;
  --blue-400: #7d7ccd;
  --blue-500: #5c5bc0;
  --blue-600: #5453af;
  --blue-700: #414188;
  --blue-800: #33326a;
  --blue-900: #272651;
  --black: #101828;
  --gray-600: #52525b;
  --gray-900: #18181b;
  --gray: #646464;
  --gray-200: #667085;
  --purple-100: #5e6282;
  --lavender: #f9f5ff;
}
body {
  scroll-behavior: smooth;
}

ul {
  list-style: none;
}

.nav-items a {
  text-decoration: none !important;
  color: var(--blue-500) !important;
  font-weight: 700 !important;
}
a {
  text-decoration: none;
  color: var(--blue-500);
  font-weight: 700;
}

.flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
}
.justify-evenly {
  justify-content: space-evenly;
}

.align-center {
  align-items: center;
}
.text-blue-500 {
  color: var(--blue-500);
}

.container {
  max-width: 1440px !important;
  margin: 0 auto;
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}
/* nav-section */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
}

.nav-items {
  display: flex;
  gap: 50px;
  font-size: var(--text);
  color: var(--black);
}
.nav-items li:hover {
  cursor: pointer;
  text-decoration: underline;
}

.create-acc {
  padding: 16px 32px;
  color: #fff;
  background-color: #5c5bc0;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  letter-spacing: 0.5px;
}

/* Running light animation */
.create-acc::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: runningLight 1.5s infinite;
}

/* Glow background effect */
.create-acc::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  z-index: -1;
  background: #5c5bc0;
  border-radius: 12px;
  animation: pulseGlow 2s ease-in-out infinite alternate;
}

@keyframes runningLight {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.6), 0 0 20px rgba(0, 217, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.8), 0 0 30px rgba(0, 217, 255, 0.6);
  }
}

.create-acc:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(92, 91, 192, 0.3), 0 0 25px rgba(92, 91, 192, 0.5);
}

.create-acc:active {
  transform: translateY(1px);
}

/* nav-ends */

/* hero-section-start */
.hero-bg {
  background-image: linear-gradient(
      138.52deg,
      rgba(92, 91, 192, 0.1) 23.46%,
      rgba(239, 239, 249, 0.1) 134.33%
    ),
    url("./assests/Group\ 140118.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10rem 1rem;
  padding-bottom: 5rem;
}
.hero {
  margin-top: 43px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.hero-section-content {
  gap: 20px;
  flex-direction: column;
}
.hero-section-content h1 {
  font-size: var(--medium);
}
.hero-section-content p {
  font-size: var(--text);
  color: var(--gray);
}
.hero-buttons {
  margin-top: 15px;
  gap: 20px;
}
.hero-buttons button {
  padding: 16px 28px;
  border: 0;
  border-radius: 8px;
}
.start-btn {
  background: var(--blue-500);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: none;
  &:hover {
    background: var(--blue-600);
  }
}
.trial-btn {
  background: #f4ebff;
  color: var(--blue-500);
  font-weight: 600;
  cursor: pointer;
  &:hover {
    background: #e9d5ff;
  }
}
.hero-special {
  gap: 26px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.hero-special-contents {
  gap: 10px;
}
.hero-section-img img {
  max-width: 100%;
  height: auto;
}

/* hero-section-ends */

/* card-section-starts */
.teaching-section {
  margin: 70px 0px;
  padding-top: 9.6rem;
}
.teaching-head {
  text-align: center;
}
.teaching-head h1 {
  font-size: 4.8rem;
}
.teaching-head span {
  color: var(--blue-600);
}
.teaching-card-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 4.9rem;
}
.teaching-card {
  padding: 20px 20px 29px 20px;
  background: #fafafa;
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  color: #1f1f1f;
  transition: 0.3s;
}
.teaching-card:hover {
  background: var(--blue-500);
  color: white;
  cursor: pointer;
}
.teaching-card:hover .teaching-card-icon {
  background: white;
}
.teaching-card-icon {
  width: fit-content;
  padding: 13px;
  border-radius: 50%;
  border: 1px solid #e3e3e3;
}
.teaching-card-content {
  margin-top: 32px;
}
.teaching-card-content h3 {
  font-size: var(--text1);
}
.teaching-card-content p {
  font-size: var(--text);
  margin-top: 1.2rem;
  font-weight: 400;
}
/* card-section-end */
/* course */

.program {
  padding: 2.5rem 0;
}
.program h3 {
  font-size: var(--text);
  color: var(--blue-500);
}
.program h1 {
  font-size: var(--header);
  font-weight: 800;
  margin-top: 12px;
  span {
    color: var(--blue-600);
  }
}
.program p {
  font-size: var(--header2);
  color: var(--gray-200);
  margin: 20px auto;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 50px;
}

.swiper-outer {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
}
.swiper-wrapper {
  padding: 50px 0px;
}
.swiper-pagination-bullet-active {
  background: var(--blue-500) !important;
}

.card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--blue-500) !important;
}

.card-arrow::after {
  font-size: 18px;
}

.card {
  padding: 10px;
  margin: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
  width: 100%;
}

.card i {
  color: var(--blue-500);
}

.card-header {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ribbon-tag {
  display: inline-block;
  background: linear-gradient(
    to right,
    #fbd72b,
    #ff797b
  ); /* yellow to orangish */
  color: #0a2f35;
  font-weight: bold;
  font-size: 14px;
  padding: 4px 8px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  position: relative;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 50%,
    calc(100% - 10px) 100%,
    0 100%
  );
}

/* Add this to your existing CSS */
.card-img {
  height: 200px; /* Fixed height */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5; /* Fallback background */
  border-radius: 8px 8px 0 0; /* Match your card's border radius */
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the space while maintaining aspect ratio */
  object-position: center; /* Centers the image */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.card:hover .card-img img {
  transform: scale(1.05); /* Optional: slight zoom on hover */
}

.img-content {
  font-size: var(--text);
  padding: 10px 0;
}

.card-content {
  padding: 20px 0;
}

.card-content .course-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 42px;
}

.card-content h2 {
  font-size: var(--header2);
  padding: 3px 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-content div {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  margin: 0.5rem 0;
}
.card-footer h2 {
  font-size: 2.5rem;
  color: var(--blue-500);
}

.card-footer button {
  padding: 10px;
  color: #fff;
  background: var(--blue-500);
  border: none;
  border-radius: 5px;
  &:hover {
    background: var(--blue-600);
    cursor: pointer;
  }
}

/* trainer */

.result {
  background: #fff;
  padding: 30px 0;
}
.result-sec {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 2rem;
  padding-top: 9.6rem;
}
.result-img img {
  max-width: 100%;
  height: auto;
}
.result-content h1 {
  font-size: 42px;
  font-weight: 800;
  margin: 20px auto;
  span {
    color: var(--blue-600);
  }
}
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.result-card {
  gap: 10px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 14px;
}
.icon-round {
  background: #fff;
  padding: 10px 15px;
  border-radius: 50%;
}
.icon-round i {
  font-size: 35px;
  color: var(--blue-600);
}
.result-card-content div:nth-child(1) {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--blue-600);
}
.result-card-content div:nth-child(2) {
  font-size: 15px;
  font-weight: 400;
  color: #57575f;
}

/* testimonial-starts */

.testimonial-section {
  padding-top: 9.6rem;
}
.testimonial-section h1 {
  font-size: 4.2rem;
  text-align: center;
  margin-bottom: 1rem;
  span {
    color: var(--blue-600);
  }
}
.testimonial-container {
  background: #d7c9f9;
  padding: 4.5rem 0px;
}
.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1rem auto;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex-direction: column;
}

.stars {
  margin-bottom: 20px;
  gap: 4px;
}

.quote {
  font-size: var(--text);
  margin-bottom: 20px;
  color: var(--gray-900);
}

.author {
  font-weight: bold;
  font-size: var(--text);
  margin-bottom: 5px;
}

.role {
  color: var(--gray-600);
  font-size: var(--small);
  font-weight: bold;
}

.profile {
  gap: 12px;
  margin-top: auto;
}
.profile img {
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 50%;
}

/* Testimonial Swiper Styles */
.testimonial-swiper-container {
  position: relative;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-swiper {
  width: 100%;
  padding: 30px 10px 60px;
}

.testimonial-swiper .swiper-pagination {
  bottom: 20px;
}

.testimonial-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #fff;
  opacity: 0.6;
}

.testimonial-swiper .swiper-pagination-bullet-active {
  background-color: #2e7d32;
  opacity: 1;
}

.testimonial-swiper .swiper-button-next,
.testimonial-swiper .swiper-button-prev {
  color: #2e7d32;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-swiper .swiper-button-next:after,
.testimonial-swiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}
/* testimonial-ends */

/* newletter-starts */

.contact {
  background: var(--lavender);
}
.contact-section {
  display: flex;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  gap: 9rem;
  padding: 8rem 0rem;
  background: var(--lavender);
  flex-wrap: wrap;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 470px;
  flex: 1;
}
.contact-section-content {
  max-width: 50%;
}
.contact-section-content h1 {
  font-size: 4.2rem;
}
.contact-section-content h4 {
  font-size: 2.4rem;
  margin-top: 3.7rem;
  color: #454545;
}
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3.6rem;
}
.contact-info p {
  font-size: 2rem;
}
.contact-info p a {
  text-decoration: none !important;
  color: var(--blue-500) !important;
  font-weight: 700 !important;
}
.contact-form input {
  padding: 2.1rem 2rem;
  border: 1px solid #d8d8d8;
  border-radius: 0.8rem;
  color: #454545;
  font-size: 1.6rem;
  /* width: 470px; */
}
.contact-form textarea {
  height: 170px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  padding: 21px 20px;
  color: #454545;
  font-size: 1.6rem;
}
.contact-form button {
  padding: 22px;
  border-radius: 6px;
  border: none;
  background: linear-gradient(to bottom right, #6556ff, #7d7ccd);
  color: white;
  font-size: 16px;
  cursor: pointer;
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
/* newsletter-ends */

/* footer */
footer {
  background: #fff;
}
.footer {
  max-width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}
.logo-sec img {
  max-width: 100%;
  height: auto;
}
.logo-sec div:nth-child(2) {
  max-width: 80%;
  padding: 10px 0;
  font-size: 1.4rem;
  color: #777777;
  line-height: 1.6;
}

.footer-link {
  gap: 1rem;
}
.footer-link ul li {
  padding-bottom: 15px;
  font-size: 1.4rem;
  color: #777777;
  &:hover {
    text-decoration: underline;
    cursor: pointer;
  }
  a {
    color: #777777;
    text-decoration: none;
    font-weight: 400;
  }
}

.footer-link ul p {
  padding-bottom: 20px;
  font-weight: 400;
  font-size: 2.2rem;
  color: #1f1f1f;
}
.social-link {
  display: flex;
  gap: 16px;
}
.social-link img {
  padding: 8px;
  background: white;
  border-radius: 6px;
  width: 3.6rem;
  height: 3.6rem;
}

.download {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-link {
  margin: 0 auto;
}
.download-link h5 {
  font-weight: 400;
  font-size: 2.2rem;
  color: #1f1f1f;
}
.download-link div:nth-child(1) i {
  font-size: var(--text1);
  margin-right: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 5px 7px;
  border-radius: 50%;
}
.download-link div:nth-child(2) {
  padding: 10px 0;
  /* font-size: var(--text1); */
  /* color: #777777; */
  /* font-weight: 400; */
  /* cursor: pointer; */
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.download-link div:nth-child(3) img {
  width: 45%;
}
.bi-facebook {
  color: blue;
}
.bi-youtube {
  color: red;
}
.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.download-links a {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.download-links p {
  font-size: 1.4rem;
  color: #777;
  font-weight: 400;
}

/* Terms and Condition */

/* General Styles */

.terms-container {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem; /* 16px equivalent */
  line-height: 1.6;
  color: var(--black);
  margin: 0;
  padding: 0;
  background-color: var(--lavender);
}

.terms-container .container {
  width: 90%;
  max-width: 120rem; /* 1200px */
  margin: 14rem auto;
  padding: 0 1.5rem; /* 15px */
}

/* Header Styles */
.terms-header {
  background-color: var(--blue-900);
  color: white;
  padding: 3rem 0 2rem; /* 30px 0 20px */
  margin-bottom: 2rem; /* 20px */
  border-bottom: 0.4rem solid var(--blue-500); /* 4px */
}

.terms-header h1 {
  margin: 0;
  font-size: 2.5rem; /* 25px */
  font-weight: 700;
}

.last-updated {
  margin: 0.5rem 0 0; /* 5px */
  font-style: italic;
  opacity: 0.9;
  color: var(--blue-200);
  font-size: 1.4rem; /* 14px */
}

/* Main Content Styles */
.terms-container {
  padding: 1rem 0 3rem; /* 10px 0 30px */
}
.header {
  margin-bottom: 2rem;
  text-align: center;
}
.terms-section {
  margin-bottom: 2.5rem; /* 25px */
  background: white;
  padding: 2rem; /* 20px */
  border-radius: 0.8rem; /* 8px */
  box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.05); /* 0 2px 12px */
  border-left: 0.4rem solid var(--blue-500); /* 4px */
  margin: auto;
}
.terms-section h1 {
  text-align: center;
}

.terms-section h2 {
  color: var(--blue-700);
  margin-top: 0;
  padding-bottom: 0.75rem; /* 7.5px */
  border-bottom: 0.1rem solid var(--blue-50); /* 1px */
  font-weight: 600;
  font-size: 2rem; /* 20px */
  margin-bottom: 20px;
}

.terms-section p {
  margin: 1.25rem 0; /* 12.5px */
  color: var(--gray-600);
}

.terms-section ul {
  padding-left: 1.75rem; /* 17.5px */
  color: var(--gray-600);
}

.terms-section li {
  margin-bottom: 0.75rem; /* 7.5px */
  padding-left: 0.5rem; /* 5px */
}

.terms-section address {
  font-style: normal;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--blue-50);
  padding: 1.25rem; /* 12.5px */
  border-radius: 0.6rem; /* 6px */
  margin-top: 1rem; /* 10px */
  font-size: 1.4rem; /* 14px */
}

/* Footer Styles */
.terms-footer {
  background-color: var(--blue-900);
  color: white;
  padding: 2rem 0; /* 20px */
  text-align: center;
  font-size: 0.9rem; /* 9px */
  border-top: 0.1rem solid var(--blue-800); /* 1px */
}

.terms-footer p {
  margin: 0;
  color: var(--blue-200);
}

/* Interactive Elements */
.terms-section a {
  color: var(--blue-500);
  text-decoration: none;
  transition: color 0.2s;
  font-size: inherit;
}

.terms-section a:hover {
  color: var(--blue-700);
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 76.8rem) {
  /* 768px */
  .terms-header {
    padding: 2rem 0; /* 20px */
  }

  .terms-header h1 {
    font-size: 2rem; /* 20px */
  }

  .terms-section {
    padding: 1.5rem; /* 15px */
  }

  .terms-section h2 {
    font-size: 1.8rem; /* 18px */
  }
}

@media (max-width: 48rem) {
  /* 480px */
  .terms-section {
    padding: 1.25rem; /* 12.5px */
  }

  .terms-section h2 {
    font-size: 1.6rem; /* 16px */
  }

  .terms-container {
    font-size: 1.4rem; /* 14px */
  }
}

/* Modal styles  */
/* Modal Styles - Using your color palette */
.job-details-popup-close {
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.job-details-popup-close:hover {
  background: rgba(71, 98, 255, 0.15);
  transform: scale(1.08);
  border: 1px solid white;
}

.job-details-popup-close:active {
  transform: scale(0.95);
}

.modal-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 24, 40, 0.7); /* --black with opacity */
}

.modal-content {
  background-color: var(--lavender); /* #f9f5ff */
  margin: 15% auto;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: modalopen 0.4s;
  box-shadow: 0 4px 20px rgba(92, 91, 192, 0.2); /* --blue-500 with opacity */
  border: 1px solid var(--blue-200); /* #b4b4e2 */
}

@keyframes modalopen {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--blue-500); /* #5c5bc0 */
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--blue-600); /* #5453af */
}

.modal-content h2 {
  color: var(--blue-800); /* #33326a */
  margin-bottom: 20px;
  font-size: 24px;
}

.modal-content p {
  color: var(--purple-100); /* #5e6282 */
  margin-bottom: 15px;
  line-height: 1.5;
  font-size: 1.6rem;
}

/* Error state for form validation */
.contact-form input:invalid,
.contact-form textarea:invalid {
  border-color: var(--blue-500); /* #5c5bc0 */
}

.contact-form input:focus:invalid,
.contact-form textarea:focus:invalid {
  border-color: var(--blue-300); /* #9291d5 */
  box-shadow: 0 0 0 2px rgba(92, 91, 192, 0.2); /* --blue-500 with opacity */
}

/* CSS RESPONSIVE */

@media screen and (max-width: 1399px) {
  .newsletter-contents {
    padding: 5rem 10rem;
  }
}

@media screen and (max-width: 1199px) {
  .newsletter-contents::before {
    display: none;
  }
  .newsletter-section {
    max-width: 100%;
  }
  .newsletter-contents {
    border-radius: 20px;
    padding: 5rem;
    gap: 30px;
    text-align: center;
  }
  .newsletter-contents h1 {
    font-size: 3rem;
    line-height: normal;
  }
  .newsletter-contents p {
    font-size: 1.8rem;
    line-height: normal;
  }
  .newsletter-form button {
    border-radius: 10px;
  }
}

@media screen and (max-width: 1024px) {
  .hero-section-content h1 {
    font-size: var(--header1);
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
    margin-right: 10px;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-list,
  .nav-buttons {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
  }
  .nav-list,
  .nav-buttons {
    display: none;
  }

  .nav-list.active,
  .nav-buttons.active {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
    background: #fff;
  }

  .nav-list ul,
  .nav-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: self-start;
  }

  .custom-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    background: #f4ebff;
    border-bottom: 1px solid var(--blue-500);
  }

  .logo {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    width: 100%;
  }
  .hero-buttons button {
    padding: 16px 26px;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
  .teaching-card-section {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section {
    gap: 3rem;
  }
  .contact-section-content {
    max-width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .newsletter-form button {
    border-radius: 10px;
    padding: 20px 40px;
  }
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
  .grid-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-buttons {
    margin: 0 auto;
  }
  .hero-special {
    margin: 0 auto;

    justify-content: center;
  }
  .contact-section {
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
    padding: 8rem 0rem;
    background: var(--lavender);
    flex-wrap: wrap;
  }
  .contact-form {
    max-width: 100%;
  }
  .result-sec {
    grid-template-columns: 1fr;
  }
  .result-img {
    margin: auto;
  }
  .result-content h1 {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .hero-section-content {
    text-align: center;
  }
  .trainer-content {
    max-width: 85%;
    margin: auto;
  }
  .grid-3 {
    display: block;
  }
  .testimonial-cards {
    flex-direction: column;
  }
  .testimonial-swiper .swiper-button-next,
  .testimonial-swiper .swiper-button-prev {
    display: none;
  }
  .newsletter-section {
    max-width: 100%;
  }
  .newsletter-contents {
    border-radius: 20px;
    padding: 3rem;
    gap: 25px;
    text-align: left;
  }
  .newsletter-contents h1 {
    font-size: 2rem;
    line-height: normal;
  }
  .newsletter-contents p {
    font-size: 1.2rem;
    line-height: normal;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input {
    padding: 15px;
  }
  .newsletter-form button {
    width: 100%;
    border-radius: 10px;
    padding: 15px 30px;
  }
  .footer-link {
    justify-content: space-between !important;
    padding: 20px 0;
  }
  .download-link div:nth-child(3) img {
    width: unset;
  }
  .result-grid {
    grid-template-columns: 1fr;
  }
  .teaching-card-section {
    grid-template-columns: repeat(1, 1fr);
  }
  .teaching-head h1 {
    font-size: 3.8rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 650px) {
  .hero-special {
    flex-direction: column;
    gap: 15px;
    align-items: baseline;
    margin: auto;
  }
  .grid-4 {
    display: block;
  }
}

@media screen and (max-width: 475px) {
  .card {
    padding: 10px;
    margin: 3rem;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 30px !important;
  }
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .teaching-head h1 {
    font-size: 2.4rem;
  }
  .course h1 {
    font-size: 2.4rem;
  }
  .result-content h1 {
    font-size: 2.4rem;
  }
  .testimonial-section h1 {
    font-size: 2.4rem;
  }
  .testimonial {
    margin: 0 3rem;
    min-width: 0;
  }
  .contact-section-content h1 {
    font-size: 2.4rem;
  }
  .contact-section-content h4 {
    font-size: 1.4rem;
  }
  .contact-info p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 375px) {
  .footer-link {
    display: block;
  }
  .program h1 {
    font-size: 2.4rem;
  }
  .ribbon-tag {
    font-size: 12px;
  }
}

/* YT Start */

#youtube_video_cards * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#youtube_video_cards .container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

#youtube_video_cards .header {
  background: linear-gradient(to right, var(--blue-500), var(--blue-700));
  color: white;
  padding: 30px;
  text-align: center;
  border-radius: 1rem;
}

#youtube_video_cards .header h1 {
  font-size: 2.6rem;
  margin-bottom: 10px;
  font-weight: 700;
}

#youtube_video_cards .header p {
  font-size: 1.8rem;
  opacity: 0.9;
}

#youtube_video_cards .cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  padding: 30px;
}

#youtube_video_cards .card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--blue-100);
}

#youtube_video_cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(92, 91, 192, 0.15);
  border-color: var(--blue-300);
}

#youtube_video_cards .thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background-color: var(--blue-50);
}

#youtube_video_cards .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#youtube_video_cards .card:hover .thumbnail img {
  transform: scale(1.05);
}

#youtube_video_cards .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 0, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: all 0.3s ease;
  cursor: pointer;
}

#youtube_video_cards .play-button i {
  color: white;
  font-size: 24px;
  margin-left: 4px;
}

#youtube_video_cards .play-button:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 0, 0, 1);
}

#youtube_video_cards .card-content {
  padding: 20px;
}

#youtube_video_cards .card-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--black);
  font-weight: 600;
  line-height: 1.4;
}

#youtube_video_cards .card-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

#youtube_video_cards .card-meta {
  display: flex;
  justify-content: space-between;
  color: var(--purple-100);
  font-size: 1.4rem;
  border-top: 1px solid var(--blue-50);
  padding-top: 15px;
}

#youtube_video_cards .watch-now {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  padding: 10px 20px;
  background: var(--blue-500);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

#youtube_video_cards .watch-now i {
  margin-right: 8px;
  color: #fff;
  font-size: 1.4rem;
}

#youtube_video_cards .watch-now:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(92, 91, 192, 0.3);
}

#youtube_video_cards .footer {
  background: var(--blue-50);
  padding: 20px;
  text-align: center;
  color: var(--purple-100);
  font-size: 0.9rem;
}

.career-badge-wrapper {
  position: relative;
}

.career-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

/* Badge style */
.new-badge {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f37249, #ff8a65);
  color: #ffffff;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(243, 114, 73, 0.35);
  animation: pulseBadge 2s infinite;
}

/* Subtle pulse animation */
@keyframes pulseBadge {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(243, 114, 73, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(243, 114, 73, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(243, 114, 73, 0);
  }
}

/* ================= NO JOBS FOUND ================= */
.no-jobs-section {
  padding: 80px 0 100px;
}

.no-jobs-card {
  max-width: 620px;
  margin: auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.no-jobs-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.no-jobs-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.no-jobs-text {
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.no-jobs-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.no-jobs-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Responsive styles */
@media (max-width: 900px) {
  #youtube_video_cards .cards-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
  }

  #youtube_video_cards .header h1 {
    font-size: 2rem;
  }

  #youtube_video_cards .header p {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  #youtube_video_cards {
    padding: 20px 10px;
  }

  #youtube_video_cards .container {
    border-radius: 12px;
  }

  #youtube_video_cards .cards-container {
    grid-template-columns: 1fr;
  }

  #youtube_video_cards .header {
    padding: 20px;
  }

  #youtube_video_cards .header h1 {
    font-size: 2.4rem;
  }

  #youtube_video_cards .play-button {
    width: 60px;
    height: 60px;
  }

  #youtube_video_cards .card-content {
    padding: 16px;
  }
}
