@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

body {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  color: #fff !important;
  text-decoration: none !important;
}

p {
  margin-bottom: 0px !important;
}

ul {
  margin-bottom: 0px !important;
}

h1 {
  margin-bottom: 0px !important;
}

/* Navbar */
.nav {
  width: 60rem;
  padding: 0.5rem;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #191714dc;
  color: #ffffff;
  border-radius: 50px;
  position: fixed;
  top: 2%;
  left: 50%; /* Start from the middle horizontally */
  transform: translateX(-50%);
  z-index: 99;
  backdrop-filter: blur(15px);
  /* border: 1px solid #ffffffc7; */
}
ul {
  list-style: none;
  display: flex;
}

ul li a {
  padding: 0.5rem;
  margin: 0 0.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  border-radius: 50px;
}
ul li a:hover {
  background-color: #ffffffea;
  border-radius: 50px;
  color: #191714 !important;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

ul li a.active {
  background-color: #ffffffea;
  border-radius: 50px;
  color: #191714;
}
.logo {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 2rem;
}
.logo span {
  color: #dd8500;
}

.nav .cta {
  font-size: 0.9rem;
  background-color: #fff;
  border-radius: 50px;
  color: #191714;
  padding: 0.8rem 1rem;
  font-weight: 600;
}

.cta {
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.cta:hover {
  cursor: pointer;
  scale: 1.08;
}

.main {
  max-width: 1800px;
  margin: 0 auto;
}

/* Hero CSS */
.hero-section {
  width: 96%;
  height: 100vh;
  margin: 1vw auto;
  padding-top: 5rem;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  border-radius: 2rem;
  background: linear-gradient(
    233deg,
    #f2f2f21c 24.8%,
    #fddbcb 50.95%,
    #ffa629 77.41%,
    #dd8500 100.41%,
    #f4c8e9 107.01%,
    #e1eff0 108.86%
  );
  position: relative;
  overflow: hidden;
}

.hero-section img {
  width: 70%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.hero-section h1 {
  width: 100%;
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 600;
}
.hero-section p {
  color: #2f2f2f;
  font-size: 1.1rem;
  font-weight: 500;
  width: 50%;
  line-height: 1.2;
}
.hero-section .cta {
  color: #191714;
  background-color: #fff;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  box-shadow: 0 4px 25px #00000022;
  cursor: pointer;
}

/* About */
.about-section {
  width: 86%;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.ab-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.ab-wrapper .left {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.expi {
  width: 12rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 0.5rem 1rem;
  background: #dadada80;
  backdrop-filter: blur(5px);
  border-radius: 12px;
  border: 1px solid #fff;
  position: relative;
}
.expi p {
  width: 70%;
  font-size: 01rem !important;
  line-height: 1.1;
  font-weight: 500;
}
.left p {
  font-size: 1.4rem;
  line-height: 1.2;
}
.ab-wrapper img {
  width: 40%;
  height: 400px;
  object-fit: cover;
  border-radius: 2rem;
}
.ab-wrapper .cta {
  width: fit-content;
  padding: 0.5rem 1rem;
  color: #fff;
  background: #dd8500;
  border-radius: 50px;
  box-shadow: 0 10px 25px #dd850076;
}

/* Title */
.title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Number */
.numbers {
  width: 60%;
  margin: 2rem auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dd8500c7;
  border-radius: 1rem;
  color: #fff;
  flex-wrap: wrap;
  backdrop-filter: blur(10px);
  border: 1px solid #fff;
}
.num {
  min-width: 24%;
  max-width: 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.num h2 {
  font-size: 2rem;
  font-weight: 500;
}
.num p {
  line-height: 1;
}

/* Webinar */
.webinar-section {
  width: 86%;
  margin: 5rem auto;
}
.web-top {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.web-top .title {
  font-size: 3rem;
  width: 50% !important;
}
.title-para {
  width: 40%;
  line-height: 1.3;
}

.webinar-item{
  min-width: 32%;
  max-width: 32%;
  position: relative;
}
.webinar-item img{
  width: 100%;
}
.webinar-item a{
  position: absolute;
  bottom: 10%;
  right: 5%;
  transition: all 0.8s ease-in-out !important;
}

.webinar-item a:hover svg{
  fill: #ffffff1a;
  scale: 1.1;
}


.webinar-wrapper {
  width: 100%;
  margin: 4rem 0;
  display: flex;
  justify-content: space-between;
}

.webinar-card {
  min-width: 32%;
  max-width: 32%;
  height: 30rem;
  padding: 1rem;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease-in-out !important;
  cursor: pointer !important;
}
.webinar-card h3 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  /* margin-top: 1rem; */
  margin-left: 0rem;
}
.webinar-card img {
  width: 100%;
}

.webinar-card:hover {
  scale: 1.08;
}

.webinar-section .cta {
  width: fit-content;
  padding: 0.8rem 2rem;
  margin: 1rem auto;
  color: #fff;
  font-size: 1.2rem;
  background: #dd8500;
  border-radius: 50px;
  box-shadow: 0 10px 25px #dd850076;
}

/* Course */
.course-section {
  width: 96%;
  padding: 3rem;
  margin: 5rem auto;
  background: url('./img/bg-shape.svg') no-repeat center/100%, #e2dcfcaf;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
}

.course-section .title {
  text-align: center;
}

.course-wrapper {
  width: 100%;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.course-card {
  width: 32%;
  height: 32rem;
  padding: 1rem;
  background: #fff;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.course-card img {
  width: 100%;
  min-height: 60%;
  max-height: 60% !important;
  object-fit: cover;
  border-radius: 22px;
  background-color: #000;
}
.course-card h4 {
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 600;
}
.course-card .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-card .cta {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid #000;
  font-weight: 600;
}

.course-section > .cta {
  padding: 0.8rem 2rem;
  margin-top: 2rem;
  background-color: #fff;
  border-radius: 50px;
  color: #5b5773;
  font-weight: 600;
  font-size: 1.2rem;
  border: 2px solid #d3d3d3;
}

.course-section > .cta a {
  color: #5b5773 !important;
}

.partner-section {
  width: 90%;
  margin: 8rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 2rem 0;
}

.partner-logo img {
  max-width: 30%;
  /* filter: grayscale(1); */
}

/* Benefit */
.benefit-section {
  width: 86%;
  margin: 4rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.bene-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.bene-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bene-left .title {
  font-size: 4rem;
  line-height: 1;
  width: 90%;
}

.bene-left .title-para {
  width: 100%;
}

.title-para svg{
  margin-bottom: 15px;
}

.bene-left img{
    margin-top: 2rem;
  }

.bene-right {
  width: 50%;
  padding-left: 5rem !important;
  padding: 0 2rem;
  padding-top: 3.5rem !important;
  border-left: 1px solid #000000bd;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.bene {
  min-width: 48%;
  max-width: 48%;
}

.bene-icon {
  min-width: 3rem;
  max-width: 3rem;
  height: 3rem;
  background-color: #fea189;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.32rem;
  border-radius: 8px;
}
.bene h3 {
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 600;
  margin: 1rem 0;
}
.bene p {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
}

.benefit-section .cta {
  margin: 2rem auto;
  padding: 0.8rem 2rem;
  background: #fea189;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px #fea189;
}

/* Marquee */
.marquee-container {
  width: 110%;
  margin-bottom: 0rem;
  margin-left: -2rem;
  overflow: hidden;
  background: #e1f05f;
  padding: 10px 0;
  transform: rotate(-2deg);
}

.marquee {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll 10s linear infinite;
}

.marquee-container2 {
  width: 200%;
  margin-left: -100%;
  overflow: hidden;
  background: #033929;
  padding: 10px 0;
  transform: rotate(2deg);
  position: relative;
  z-index: -1;
}
.marquee2 {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll2 10s linear infinite;
}
.marquee2 span {
  display: inline-block;
  padding: 0 20px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}

.marquee span {
  display: inline-block;
  padding: 0 20px;
  color: #033929;
  font-size: 2.5rem;
  font-weight: 600;
}
.marquee div {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scroll2 {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(50%);
  }

  
}

/* Team Container */
.team-section {
  width: 86%;
  margin: 4rem auto;
}

.teams {
  width: 100%;
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card {
  min-width: 25%;
  max-width: 25%;
  height: 300px;
  margin-bottom: 2rem;
  object-fit: contain;
}

.team-section .cta {
  width: fit-content;
  margin: 2rem auto;
  background: #fe3002;
  padding: 0.8rem 2rem;
  color: #fff;
  font-weight: 500;
  border-radius: 50px;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px #fe3002c1;
}

/* Testimonial  */
.testi-bg{
  
  background: url(./img/testimonial-bg.svg);
  background-size: cover;
  padding-bottom: 5rem;
}
.testi-section {
  width: 86%;
  margin: 10rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2 !important;
}

.testi-wrapper {
  width: 100%;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 30px;
  position: relative;
  overflow-x: scroll;
}

.testi-card {
  min-width: 28%;
  width: 29% !important;
  min-height: 380px;
  max-height: 390px !important;
  padding: 2rem;
  margin: 0 6px;
  background: #e2dcfc;
  display: flex;
  align-items: center;
  gap: 1rem;
  /* justify-content: space-between; */
  flex-direction: column;
  border-radius: 25px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.testi-card:hover{
  scale: 1.05;
}

.testi-card img {
  width: 80px;
  height: 80px;
  /* background: #fff; */
  border-radius: 100px;
  object-fit: cover;
}
.testi-card h4 {
  width: 100%;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}
.testi-card h4 > p {
  font-size: 0.8rem;
}
.testi-card p {
  font-size: 1rem;
  text-align: center;
  line-height: 1.2;
}
.testi-card svg {
  width: 100px;
}

/* Slide-up fade-in animation */
.slide-up-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.slide-up-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Prevent animation on testimonial section */
/* .testi-section, .testi-section *, .carousel, .carousel-inner, .carousel-item, .testi-card {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
} */

.testi-section .cta {
  padding: 0.8rem 2rem;
  color: #fff;
  border-radius: 50px;
  background-color: #896ef8;
  box-shadow: 0 10px 25px #896ef8;
}

.carousel-inner {
  margin: 2rem 0;
}

.carousel-item .row {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA */
.cta-section {
  width: 100%;
  height: 610px;
  background: url("./img/cta.png");
}

/* Footer CSS */
.footer {
  width: 96%;
  margin: 1rem auto;
  padding-top: 1rem;
  background-color: #191714;
  border-radius: 25px;
}

.footer-inner {
  width: 80%;
  padding: 2rem 0;
  margin: 1rem auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.footer-inner .column:nth-child(1) {
  width: 30%;
}
.footer-inner .column:nth-child(1) img {
  width: 90%;
}
.footer-inner .column:nth-child(2) {
  width: 12%;
}
.footer-inner .column:nth-child(3) {
  width: 30%;
}
.footer-inner .column:nth-child(4) {
  width: 22%;
}

.footer-inner b {
  margin-bottom: 2rem !important;
}

.footer-inner b,
.footer-inner p,
.footer-inner a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}
.footer-inner p {
  margin-top: 10px;
  font-weight: 300;
}
.footer-inner a {
  font-weight: 300;
}

.footer-inner a:hover {
  color: #dd8500;
}

.location {
  display: flex;
  gap: 0.5rem;
}

.location p {
  margin: 0px;
  padding: 0px;
}

.footer-inner .p-bor-bottom {
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
}
.footer-inner .p-bottom {
  padding-bottom: 2rem;
  margin-bottom: 1rem;
}
.footer-inner i {
  color: #dd8500;
  font-size: 20px;
}
.social-icon {
  display: flex;
  gap: 0.5rem;
}
.social-icon i {
  font-size: 15px;
  margin-top: 1rem;
  border-radius: 100px;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  min-width: 2rem;
  max-width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon i:hover {
  color: #ba9027;
  border-color: #ba9027;
}

.footer-copy {
  padding: 1rem;
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.footer-copy p {
  font-size: 12px;
  color: #fff;
}
.footer-copy a,
.footer-copy p:nth-child(2) {
  color: #fff;
  font-size: 12px;
}
.footer-copy a {
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .footer-inner {
    width: 90%;
    flex-direction: column;
    text-align: left !important;
    padding: 1rem !important;
  }
  .column {
    width: 100% !important;
  }
  .footer-copy {
    width: 90%;
    padding-bottom: 2rem;
  }
  .footer-inner b,
  .footer-inner p,
  .footer-inner a {
    font-size: 20px;
  }
}

/* Header */
.header {
  width: 96%;
  height: 15rem;
  padding: 2rem;
  margin: 1rem auto;
  border-radius: 25px;
  display: flex;
  align-items: end;
}

.header h1 {
  font-size: 3rem;
  color: #fff;
}

/* Overview Section */
.overview-section {
  width: 96%;
  margin: 4rem auto;
  display: flex;
  gap: 4rem;
}

.overview-left {
  width: 65%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #f3f3f3;
  border-radius: 25px;
}

.overview-left h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.overview-left p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #2f2f2f;
}

.certification h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.certification ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: disc;
  padding-left: 1.5rem;
}

.certification ul li {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #2f2f2f;
}

.overview-right {
  width: 45%;
  background: #e1f05f;
  border-radius: 25px;
  padding: 2rem;
}

.overview-right h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.enroll-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.enroll-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
}

.enroll-card p {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
  .overview-section {
    flex-direction: column;
    gap: 2rem;
  }

  .overview-left,
  .overview-right {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .enroll-grid {
    grid-template-columns: 1fr;
  }

  .overview-left h2,
  .certification h2,
  .overview-right h2 {
    font-size: 2rem;
  }

  .overview-left p,
  .certification ul li,
  .enroll-card p {
    font-size: 1rem;
  }
}

@media screen and (max-width: 480px) {
  .overview-section {
    width: 92%;
  }

  .overview-left h2,
  .certification h2,
  .overview-right h2 {
    font-size: 1.8rem;
  }
}

/* Media Queries */
@media (min-height: 721px) {
  .hero-section {
    height: 720px;
    margin-bottom: 2rem;
  }

  .webinar-card {
    height: 32rem;
  }
  .course-card {
    height: 32rem;
  }
}

@media screen and (max-width: 1200px) {
  .nav {
    width: 90%;
  }

  .hero-section {
    margin: 1rem auto;
  }

  .hero-section img {
    width: 70%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    z-index: -1;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section p {
    width: 70%;
  }

  .about-section,
  .webinar-section,
  .course-section,
  .team-section {
    width: 90%;
  }

  .numbers {
    width: 80%;
  }

  .footer-inner {
    width: 90%;
  }
}

.webinar-card p {
  line-height: 1.08;
}

@media screen and (max-width: 768px) {
  /* Navigation */
  .nav {
    width: 95%;
    padding: 0.9rem;
    margin: 0;
    position: fixed;
    top: 2%;
    align-items: center;
  }

  .nav ul {
    display: none; /* You'll need to add a mobile menu */
  }

  .ri-menu-line {
    font-size: 1.5rem;
    padding: 0.3rem;
    border-radius: 25px;
  }

  .nav .cta {
    display: none;
    font-weight: 800;
  }

  .cta {
    padding: 0.8rem 2rem;
    font-size: 1.3rem;
  }
  /* Hero Section */
  .hero-section {
    height: auto;
    padding: 6rem 1rem;
    margin: 0 auto;
    margin-top: 0.5rem;
    border-radius: 25px;
    background: linear-gradient(
      213deg,
      #f2f2f23b 24.8%,
      #fddbcbda 50.95%,
      #ffa629 80.41%,
      #dd8500c2 110.41%,
      #f4c8e9 107.01%,
      #e1eff0 108.86%
    );
  }

  .hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
    z-index: -1;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    width: 90%;
    font-size: 1rem;
  }

  /* About Section */
  .ab-wrapper {
    flex-direction: column;
  }

  .ab-wrapper .left {
    width: 100%;
  }

  .ab-wrapper img {
    width: 100%;
    height: 300px;
    margin-top: 1rem;
  }

  /* Numbers Section */
  .numbers {
    width: 100%;
    padding: 1rem;
    flex-wrap: wrap;
  }

  .num {
    min-width: 48%;
    max-width: 48%;
    margin-bottom: 1rem;
  }

  /* Webinar Section */
  .webinar-section {
    width: 100% !important;
    margin-top: 5rem;
  }

  .web-top {
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    margin: 0 auto;
  }

  .webinar-item{
    margin-left: 20px;
  }

  .web-top .title,
  .title-para {
    width: 100% !important;
  }

  .webinar-wrapper {
    overflow-x: scroll;
    /* gap: 10px; */
  }

  .webinar-card {
    min-width: 50%;
    max-width: 100%;
    height: auto;
    margin-right: 0.5rem;
  }
  .webinar-card p {
    margin: 0.8rem 0;
    line-height: 1;
    font-weight: 400;
    font-size: 20px;
  }

  /* Course Section */
  .course-section {
    width: 98%;
    padding: 2rem 0rem;
    margin-top: 6rem;
  }
  .course-wrapper {
    overflow-x: scroll;
    overflow-y: auto;
  }

  .course-card {
    min-width: 50%;
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    /* height: 450px; */
  }

  /* Team Section */
  .teams {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .team-card {
    min-width: 100%;
  }

  /* Overview Section */
  .overview-section {
    flex-direction: column;
    gap: 2rem;
  }

  .overview-left,
  .overview-right {
    width: 100%;
  }

  .enroll-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-inner .column {
    width: 100% !important;
    margin-bottom: 2rem;
  }

  .social-icon {
    justify-content: center;
  }

  .footer-copy {
    flex-direction: column;
    gap: 1rem;
  }
}

@media screen and (max-width: 480px) {
  /* Header */
  body {
    max-width: 100% !important;
    overflow-x: hidden;
  }

  .header {
    height: 12rem;
  }

  .header h1 {
    font-size: 2rem;
  }

  /* Title */
  .title {
    font-size: 2rem;
  }

  /* Numbers */
  .num {
    min-width: 50%;
    max-width: 50%;
  }

  .webinar-item{
    min-width: 80% ;
  }

  .webinar-list {
    margin: 1rem auto !important;
  }
  .webinar-card {
    min-width: 100%;
  }

  .course-section {
    width: 95%;
  }
  .course-section .title {
    width: 90%;
  }

  .course-card {
    min-width: 75%;
  }

  .benefit-section {
    width: 90% !important;
    margin: 6rem auto !important;
  }

  

  .bene-right {
    padding: 0 !important;
    border-left: none;
    display: flex !important;
    flex-wrap: wrap;
  }
  .bene {
    padding: 0px !important;
    min-width: 100%;
  }

  /* Teams */

  .teams {
    overflow-x: scroll;
  }
  .team-card {
    height: auto !important;
    margin-bottom: 0;
  }

  /* Marquee */
  .marquee span,
  .marquee2 span {
    font-size: 1.5rem;
  }

  /* CTA */
  .cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .testi-section .title {
    text-align: center;
  }
  .testi-wrapper {
    overflow-x: scroll;
  }
  .testi-card {
    min-width: 100%;
  }

  /* Footer */
  .footer {
    width: 100%;
    border-radius: 0;
  }

  .footer-inner,
  .footer-copy {
    width: 92%;
  }

  .footer-inner b,
  .footer-inner p,
  .footer-inner a {
    font-size: 0.9rem;
  }
}

/* Add Mobile Menu Styles */
.mobile-menu-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    cursor: pointer;
  }
  

  .nav ul.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #191714;
    padding: 1rem;
    border-radius: 25px 25px;
    backdrop-filter: blur(10px)
  }

  .nav ul.active li {
    margin: 0.5rem 0;
  }
}

/* Add these media queries for the benefit section */
@media screen and (max-width: 1024px) {
  .benefit-section {
    width: 90%;
    margin: 4rem auto;
  }

  .bene-wrapper {
    flex-direction: column;
    gap: 3rem;
  }

  .bene-left {
    width: 100%;
  }

  .bene-left img {
    width: 100%;
    height: auto;
    margin-top: 2rem;
  }

  .bene-right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .bene {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .benefit-section {
    width: 92%;
    margin: 3rem auto;
  }

  .bene-right {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .bene {
    padding: 1.5rem;
  }

  .bene h3 {
    font-size: 1.2rem;
  }

  .bene p {
    font-size: 0.95rem;
  }

  .bene-icon {
    width: 3rem;
    height: 3rem;
  }

  .bene-icon h3 {
    font-size: 1.2rem;
  }

  .title-para {
    flex-direction: column;
    gap: 1rem;
  }

  .title-para svg {
    width: 30px;
    height: 30px;
  }
  .webinar-list {
    width: 90% !important;
  }
  .web-item {
    flex-direction: column;
  }
  .web-item img {
    width: 100% !important;
  }
  .web-detail {
    width: 100% !important;
  }
  .web-item .flex-rev {
    flex-direction: column-reverse !important;
  }
}

@media screen and (max-width: 480px) {
  .benefit-section {
    width: 94%;
    margin: 2rem auto;
  }

  .bene-left .title {
    font-size: 1.8rem;
  }

  .bene-left p {
    font-size: 0.9rem;
  }

  .bene {
    padding: 1.2rem;
  }

  .bene h3 {
    font-size: 1.1rem;
  }

  .bene p {
    font-size: 0.9rem;
  }

  .bene-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .bene-icon h3 {
    font-size: 1rem;
  }

  .benefit-section .cta {
    margin-top: 2rem;
  }
  .webinar-list {
    width: 90% !important;
  }
  .web-item {
    flex-direction: column;
  }
  .web-item img {
    width: 100% !important;
  }
  .web-detail {
    width: 100% !important;
  }
  .flex-rev {
    flex-direction: column !important;
  }
  .instructor img {
    width: 101% !important;
  }
}

.webinar-list {
  width: 86%;
  margin: 3rem auto;
}
.web-item {
  width: 100%;
  /* margin: 6rem 0; */
  padding: 7rem 0;
  /* padding-top: 14rem; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* flex-direction: row-reverse; */
}
.webinar-list img {
  width: 40%;
  height: 100%;
  border-radius: 25px;
  background: #ccc;
}
.web-detail {
  width: 55%;
}
.web-detail h2 {
  font-size: 2rem;
}
.web-detail ul {
  flex-direction: column;
  padding: 1rem;
  margin: 1rem 0 !important;
  background: #f2f2f2;
  border-radius: 15px;
  /* width: max-content; */
}
.web-detail ul li {
  padding: 8px 0;
  border-bottom: 1px solid #dadada;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.web-detail li i {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background: #fff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-detail b {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1rem;
}

.web-detail li b {
  font-size: 1rem;
  font-weight: 500;
}
.flex-rev {
  flex-direction: row-reverse;
}
.web-detail .cta {
  width: fit-content;
  padding: 0.5rem 1rem;
  color: #fff;
  background: #dd8500;
  border-radius: 50px;
  box-shadow: 0 10px 25px #dd850076;
}

/* Form */
.modal {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff !important;
  padding: 20px !important;
  padding-top: 40px !important;
  border-radius: 8px !important;
  width: 350px !important;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ba9027;
  border-radius: 30px;
  z-index: 1;
  color: #fff;
}

input,
select,
button {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

button {
  background-color: #dd8500;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

#enrollmentForm {
  text-align: left;
  margin-top: 10px;
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  background-color: #18b3a0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  position: fixed;
  bottom: 5%;
  right: 3%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 8px 20px #21e0cae0;
  z-index: 99999;
}
.whatsapp-icon:hover {
  scale: 1.2;
  /* bottom: 6%; */
}
.whatsapp-icon i {
  font-size: 28px;
  color: #fff;
}

/* Contact */
.contact-section {
  width: 70%;
  padding: 1rem;
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
}

.con-detail {
  width: 35%;
}

.con-detail h4 {
  font-weight: 700;
}

.con-detail p {
  font-size: 14px;
}

.con-detail a i {
  font-size: 25px;
  border-radius: 15px;
  margin-top: 5px;
  color: #896ef8;
}

.con-form {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.input {
  width: 48%;
  padding: 10px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.input input {
  width: 98%;
  border: none;
  padding: 10px;
  background-color: #fff !important;
}

.textarea {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

textarea {
  width: 100% !important;
  display: flex;
  gap: 10px;
  background-color: #fff !important;
}

.textarea textarea {
  width: 100%;
  border: none;
}

.con-form button {
  margin-top: 10px;
  padding: 10px 20px;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  background: #896ef8;
}

.con-form button:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px #5c03d178;
}

@media screen and (max-width: 768px) {
  .contact-section {
    width: 95%;
    flex-direction: column;
    gap: 20px;
  }

  .con-detail,
  .con-form {
    width: 100%;
  }

  .carousel-item .row{
    width: 100%;
    margin: 0 auto;
  }

  .carousel-item .testi-card {
    /* display: flex !important;
    flex-direction: row !important; */
    margin: 1rem 0;
    width: 98%;
  }

}

.instructor img {
  width: auto;
}

.terms-top {
  width: 100%;
}

.terms-list {
  width: 96%;
  padding: 0 2rem;
}

.terms-list .web-detail {
  width: 100%;
  /* padding: 1rem 0; */
  margin: 0 auto;
}

.terms-list .web-item {
  border-bottom: 1px solid #c0c0c0;
  /* background-color: #000; */
  margin: 0 auto;
  padding: 2rem 0;
}

.terms-list .web-detail ul {
  list-style-type: disc;
  margin-left: 2rem;
}

.terms-list .web-detail ul li {
  border-bottom: none;
}

.circle {
  position: absolute;
  width: 462px;
  height: 462px;
  left: -402px;
  top: 15%;

  background: #dd8500;
  filter: blur(135px);
  z-index: -5;
}

@media (max-width: 768px) {
  .slide-up-fade,
  .slide-up-fade.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
