* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* Hide the scrollbar */
body::-webkit-scrollbar {
  width: 5px;/
}

/* Track */
body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
body::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 5px;
}

/* Handle on hover */
body::-webkit-scrollbar-thumb:hover {
  background: #555;
}


:root {
  --primary-color: #e67417;
  /* --primary-color: #ff8e32; */
  --second-color: #152e6e;
  --third-color: #ef9d43;
  --fourth-color: #151515;
  --background-color: #cfcfcf;

  --default-color: black;
  --mild-color: rgb(71, 71, 71);

}

:root {
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: #f8f9fb;
}

/* Navbar Styles */
nav {
  /* box-shadow: 0px 0px 4px black; */
  background-color: white;
}

.navbar-con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 88%;
  margin: auto;
  padding: 10px;
  height: 8vh;
}


.navbar-brand-mobile {
  display: none;
}

.navbar-brand img {
  width: 170px;
  height: auto;
}

@media (max-width:528px){
  .navbar-brand img {
  width: 700px;
  height: auto;
}

}

.nav-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.nav-outer-div {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 50%;
}

.nav-outer-con1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 20vw;
}

.nav-con2 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.nav-con2 a {
  text-decoration: none;
  color: var(--second-color);
  font-size: 18px;
  font-weight: 500;
}

.nav-con2 a:hover {
  color: var(--primary-color);
}


.nav-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content:space-between;
}

.nav-login-btn {
  padding: 6px 20px;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  font-weight: bold;
  font-size: 18px;
  background-color: transparent;
  color: var(--default-color);
  text-decoration: none;
}

.nav-register-btn {
  padding: 6px 20px;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 18px;
  background-color: var(--primary-color);
  color: white;
}

.nav-for-mobile {
  display: none;
}

/* Tablet Styles */
@media screen and (max-width: 1050px) {
  .nav-con2 {
    width: 70%;
  }

  .nav-con2 a {
    font-size: 18px;
  }

  .navbar-con {
    width: 100%;
  }
}

@media (max-width: 950px) {
  .nav-outer-div {
    width: 80%;
  }

  .nav-outer-div a {
    font-size: 16px;
  }

  .navbar-outer-con1 {
    /* border: 1px solid gray; */
    display: flex;
    align-items: center;
    justify-items: center;
  }


  .nav-outer-div .nav-con2 {
    width: 100%;
  }

  .nav-outer-div .nav-con2 a {
    margin: 0px 10px;
  }

 
}


/* Mobile Styles */
@media (max-width: 768px) {
  .nav-toggle-btn {
    display: block;
    font-size: 22px;
    /* margin-bottom: -5px; */
  }

 

 
  .nav-outer-div {
    width: 100%;
  }

  

  .nav-con2 {
    display: none;
  }

  .nav-con2 a {
    font-size: 18px;
    padding: 10px 0;
    text-align: center;
  }

  .nav-buttons {
    flex-direction: row;
    align-items: center;
    width: 100%;
    /* gap: 10px; */
    justify-content: flex-end;

  }

  .nav-outer-div {
    width: 100%;
    justify-content: flex-end;
  }


  .nav-register-btn {
    font-size: 10px;
    padding: 10px 10px;
    width: 60%;
    text-align: center;
    font-weight: 500;
  }

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

  .nav-for-mobile {
    display: flex;
    flex-direction: column;
    width: 75vw;
    background-color: #ececec;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    transition: transform 0.3s linear;
    transform: translateX(-100%);
    z-index: 10;
  }

  .nav-for-mobile.active {
    display: flex;
    transform: translateX(0);
  }

  .nav-mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vh;
    padding: 0px 25px 0px 15px;
  }

  .nav-mobile-top img {
    height: auto;
    width: 170px;
  }

  .nav-mobile-top i {
    font-size: 20px;
    font-weight: bold;
  }

  .nav-for-mobile-links {
    padding: 10px 25px;
    display:flex;
    flex-direction: column;
    gap:10px
  }

  .nav-for-mobile-links a {
    text-decoration: none;
    color: black;
    margin-top: 10px;
  }
}












/* Hero */
.hero {
  width: 100vw;
  height: 90vh;
  background: linear-gradient(transparent, #f0f0f0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;

}

.hero-text-con {
  height: 60%;
  width: 55%;
  padding: 25px 0px;
  padding-left: 8vw;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  text-align: left;
}

.hero-text-con h5 {
  font-size: 48px;
  font-family: Poor Richard;
  font-weight: 400;
}

.hero-text-con h4 span {
  font-size: 48px;
  color: var(--primary-color);
  font-weight: 600;
}

.hero-text-con h4 {
  font-size: 48px;
  color: var(--second-color);
  font-weight: 600;
}

.hero-text-mobile-money {
  font-size: 26px;
  font-weight: 600;
}

.hero-text-mobile-money span {
  font-size: 26px;
  font-weight: 600;
  color: #32cd32;
}

.hero-text-mobile-days {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero-img-con {
  width: 45%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-img-con img {
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.hero-img-con2 {
  width: 45%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: flex-end;
}

.hero-img-con2 img {
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 10px;
}

.hero-enroll-btn {
  padding: 12px 30px;
  color: white;
  background-color: #ff8e32;
  border: none;
  font-weight: 500;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 10px;
}

.explore-btn {
  padding: 8px 20px;
  color: white;
  background-color: #ff8e32;
  border: none;
  font-weight: 500;
  border-radius: 5px;
}

.hero-free-btn {
  padding: 8px 20px;
  color: black;
  background-color: transparent;
  border: none;
  font-weight: 500;
  border-radius: 5px;
  font-size: 18px;
}



@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    height: auto;
  }

  .hero-text-con {
    width: 90%;
    padding-left: 5vw;
    height: auto;
  }


  .hero-img-con{
    /* display: none; */
  }

  .hero-img-con2 {
    width: 70%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
  }

 

  .hero-text-con h5,
  .hero-text-con h4 span,
  .hero-text-con h4 {
    font-size: 36px;
  }

  .hero-text-con p {
    font-size: 14px;
    width: 100%;
  }

  .hero-buttons {
    flex-direction: row;
    width: 50%;
    gap: 5px;
  }

  .hero-enroll-btn,
  .hero-free-btn,
  .explore-btn {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-text-con {
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero {
    padding: 0px 20px;
  }

  .hero-img-con {
    width: 90%;
    position: relative;
    display: none;
  }



  .hero-text-mobile-money {
    display: block;
    font-size: 20px;
  }

  .hero-text-con h5 {
    font-family: Poor Richard;
  }

  .hero-text-con h5,
  .hero-text-con h4 span,
  .hero-text-con h4 {
    font-size: 24px;
  }

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

  .hero-buttons {
    flex-direction: column;
    gap: 5px;
    width: 25%;
  }

  .hero-enroll-btn,
  .hero-free-btn,
  .explore-btn {
    width: 100%;
    font-size: 14px;
  }

  .hero-text-mobile-money {
    font-size: 16px;
    font-weight: 600;
  }

  .hero-text-mobile-money span {
    color: #32cd32;
    font-size: 16px;
    font-weight: 700;
  }

  .hero-text-mobile-days {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
  }
}


@media (max-width: 768px) {
  
  .hero-text-con {
    padding-left: 0vw;
    padding-right: 3vw;
  }

  .hero-text-mobile-money {
    font-size: 12px;
    font-weight: 600;
  }

  .hero-text-mobile-money span {
    color: #32cd32;
    font-size: 12px;
    font-weight: 700;
  }

  .hero-text-mobile-days {
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 20px;
  }

  .hero-text-con h5,
  .hero-text-con h4 span,
  .hero-text-con h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
  }

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

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    /* gap: 5px; */
  }

  .hero-enroll-btn,
  .explore-btn {
    font-size: 10px;
    padding: 2px 5px;
    height: 28px;
    width: 100%;
  }

  .hero-free-btn {
    height: 28px;
    width: 95px;
    padding: 2px 5px;
    font-size: 10px;
  }

  .hero-text-con h5 {
    font-family: Poor Richard;
  }

  .hero {
    height: 42vh;
  }

  .hero-enroll-btn{ 
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    padding:6px 12px;
    width: fit-content;
    height: fit-content;
  }
   

  .hero-img-con {
    width: 70%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .hero-img-con2 {
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}














/* About SectionP */
/* About Section */

.about {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fb;
  padding: 20px 0;
  flex-wrap: wrap;
}

.about-mobile {
  display: none;
}

.about-img-con {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.about-img-con img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.about-text-con {
  width: 55%;
  padding: 0 6vw 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-text-con h4 {
  font-size: 34px;
  font-weight: 700;
  width: 75%;
}

.about-text-con h4 span {
  font-size: 34px;
  color: var(--primary-color);
  font-weight: 700;
}

.about-text-con p {
  font-size: 16px;
  font-weight: 500;
}

.about-text-sub-con {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin-top: 15px;
}

.about-text-icon-con1,
.about-text-icon-con2,
.about-text-icon-con3 {
  color: white;
  padding: 8px;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
}

.about-text-icon-con1 {
  background-color: #1e90ff;
}

.about-text-icon-con2 {
  background-color: #f6a901db;
}

.about-text-icon-con3 {
  background-color: #32cd32;
}

.about-text-sub-con div h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  padding: 0;
  margin: 0;
}

.about-text-sub-con div p {
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  padding: 0;
  margin: 0;
}

@media (max-width: 1024px) {
  .about {
    display: none;
  }

  .about-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 8vw 20px 8vw;
  }

  .about-mobile h4 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }

  .about-mobile h4 span {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
  }

  .about-img-con-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .about-img-con-mobile img {
    width: 35%;
    height: auto;
  }

  .about-img-con-mobile p {
    font-size: 22px;
    font-weight: 500;
    line-height: 40px;
    margin-left: 40px;
    margin-top: 8px;
  }

  .about-text-con-mobile {
    padding: 10px 0px;
  }

  .about-text-sub-con-mobile {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .about-text-icon-con1-mobile,
  .about-text-icon-con2-mobile,
  .about-text-icon-con3-mobile {
    color: white;
    padding: 8px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
  }

  .about-text-icon-con1-mobile {
    width: 38px;
  }

  .about-text-icon-con1-mobile i,
  .about-text-icon-con2-mobile i,
  .about-text-icon-con3-mobile i {
    font-size: 14px;
  }

  .about-text-icon-con1-mobile {
    background-color: #1e90ff;
  }

  .about-text-icon-con2-mobile {
    background-color: #f6a901db;
  }

  .about-text-icon-con3-mobile {
    background-color: #32cd32;
  }

  .about-text-sub-con-mobile div h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    padding: 0;
    margin: 10px 0px;
    text-align: left;
  }

  .about-text-sub-con-mobile div p {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    width: 90%;
    padding: 0;
    margin: 0;
  }


}

@media (max-width: 768px) {
  .about {
    display: none;
  }

  .about-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 8vw 20px 8vw;
  }

  .about-mobile h4 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
  }

  .about-mobile h4 span {
    /* font-size: 28px; */
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
  }

  .about-img-con-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .about-img-con-mobile img {
    width: 35%;
    height: auto;
  }

  .about-img-con-mobile p {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-left: 20px;
    margin-top: 8px;
  }

  .about-text-con-mobile {
    padding: 10px 0px;
  }

  .about-text-sub-con-mobile {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .about-text-icon-con1-mobile,
  .about-text-icon-con2-mobile,
  .about-text-icon-con3-mobile {
    color: white;
    padding: 8px;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
  }

  .about-text-icon-con1-mobile {
    width: 35px;
  }

  .about-text-icon-con1-mobile i,
  .about-text-icon-con2-mobile i,
  .about-text-icon-con3-mobile i {
    font-size: 14px;
  }

  .about-text-icon-con1-mobile {
    background-color: #1e90ff;
  }

  .about-text-icon-con2-mobile {
    background-color: #f6a901db;
  }

  .about-text-icon-con3-mobile {
    background-color: #32cd32;
  }

  .about-text-sub-con-mobile div h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 34px;
    padding: 0;
    margin: 5px 0px;
    text-align: left;
  }

  .about-text-sub-con-mobile div p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    width: 90%;
    padding: 0;
    margin: 0;
  }


}


@media (max-width: 650px) {
  .about-img-con-mobile p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-left: 20px;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .about {
    display: none;
  }

  .about-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 8vw;
  }

  .about-mobile h4 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
  }

  .about-mobile h4 span {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
  }

  .about-img-con-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .about-img-con-mobile img {
    width: 35%;
    height: auto;
  }

  .about-img-con-mobile p {
    font-size: 13px;
    /* font-weight: 00; */
    line-height: 20px;
    margin-left: 10px;
    margin-top: 8px;
  }

  .about-text-con-mobile {
    padding: 10px 0px;
  }

  .about-text-sub-con-mobile {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }

  .about-text-icon-con1-mobile,
  .about-text-icon-con2-mobile,
  .about-text-icon-con3-mobile {
    color: white;
    padding: 8px;
    height: 30px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
  }

  .about-text-icon-con1-mobile {
    width: 33px;
  }

  .about-text-icon-con1-mobile i,
  .about-text-icon-con2-mobile i,
  .about-text-icon-con3-mobile i {
    font-size: 12px;
  }

  .about-text-icon-con1-mobile {
    background-color: #1e90ff;
  }

  .about-text-icon-con2-mobile {
    background-color: #f6a901db;
  }

  .about-text-icon-con3-mobile {
    background-color: #32cd32;
  }

  .about-text-sub-con-mobile div h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    padding: 0;
    margin: 0;
    text-align: left;
  }

  .about-text-sub-con-mobile div p {
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    width: 90%;
    padding: 0;
    margin: 0;
  }


}


/* Courses Section */
.courses {
  padding: 40px 20px;
  text-align: center;
  background-color: #f8f9fb;
  min-height: 80vh;
  overflow-x: hidden;
}

.course-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
  color: #333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Category Tabs */
.course-select-category {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px auto;
  position: relative;
}

.course-select-category::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e0e0e0;
}

.category-btn {
  cursor: pointer;
  padding: 12px 30px;
  font-size: 20px;
  font-weight: 500;
  color: #555;
  position: relative;
  transition: all 0.3s ease;
  margin: 0 15px;
  border-bottom: 3px solid transparent;
}

.category-btn:hover {
  color: var(--primary-color);
}

.category-btn.active {
  font-weight: 600;
  color: #333;
  border-bottom: 3px solid var(--primary-color);
}

@media (max-width: 768px) {
  .course-select-category {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
  }

  .category-btn {
    padding: 10px 20px;
    font-size: 16px;
    margin: 5px 10px;
  }
}

@media (max-width: 480px) {
  .course-select-category {
    flex-direction: column;
    align-items: center;
  }

  .category-btn.active {
    font-weight: 600;
    color: #333;
    background-color: #03143b2c;
    border-bottom: 3px solid var(--primary-color);
  }

  .category-btn {
    width: 100%;
    text-align: center;
    margin: 8px 0;
    font-size: 16px;
  }
}


/* Language Selection */
.language-select {
  display: flex;
  justify-content: center;
  margin: 20px auto 40px auto;
  gap: 10px;
}

.language-btn {
  cursor: pointer;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  background-color: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.language-btn:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 118, 104, 0.15);
}

.language-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(3, 118, 104, 0.25);
}

.language-btn.active::before {
  content: '✓';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.language-btn.active {
  padding-left: 25px;
}

/* Category Content */
.category-content {
  display: none;
}

.category-content.active {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Course Cards */
.row.r {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin: 0;
}

.card {
  border: none;
  border-radius: 20px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

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

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.free-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.card-body {
  padding: 20px;
  height: calc(100% - 220px);
}

.card-body h1.h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-body .card-text {
  color: #555;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.enroll-btn {
  background-color: #e67417;
  color: white;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
  align-self: flex-end;
  margin-top: auto;
}

.enroll-btn:hover {
  background-color: #e67417;
  color: white;
  box-shadow: 0px 2px 6px #026157;
}

/* See More Button */
.btn.mt-4 {
  transition: all 0.2s ease;
}

.btn.mt-4:hover {
  background-color: #d56810 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 116, 23, 0.25);
}

/* No Courses Message */
.no-courses-message {
  color: #666;
  font-size: 18px;
  padding: 30px;
  background-color: #f0f0f0;
  border-radius: 10px;
  max-width: 600px;
  margin: 20px auto;
}

/* Language Filter Animation */
.language-filter-transition {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.language-filter-transition.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .course-title {
    font-size: 28px;
  }

  .card {
    width: 18rem !important;
  }
}

@media (max-width: 768px) {
  .course-title {
    font-size: 24px;
  }

  .course-search-outer-con {
    flex-direction: column;
    align-items: stretch;
  }

  .course-search-outer-con input {
    width: 100%;
    margin-bottom: 15px;
  }

  .course-search-outer-con button {
    margin-left: 0;
    width: 100%;
  }

  .category-btn {
    font-size: 18px;
    padding: 10px 15px;
  }

  .language-select {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .language-btn {
    width: 120px;
  }

  .card {
    width: 100% !important;
  }
}

@media (max-width: 576px) {
  .courses {
    padding: 30px 15px;
  }

  .course-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .category-btn {
    font-size: 16px;
    padding: 8px 12px;
    margin: 0 8px;
  }

  .course-select-category {
    margin-bottom: 15px;
  }

  .language-btn {
    font-size: 14px;
    padding: 6px 15px;
  }
}




.banner-mobile {
  display: none;
}

/* Banner */
@media (max-width: 480px) {
  .banner {
    display: none;
  }

  .banner-mobile {
    display: block;
  }
}













/* About SectionP */
.benefits {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background-color: white;
  flex-wrap: wrap;

  margin: 0 auto;
}

.benefits-img-con {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefits-img-con img {
  width: 70%;
  height: auto;
  border-radius: 8px;
}

.benefits-text-con {
  width: 55%;
  padding: 20px;
}

.benefits-text-con h6 {
  font-size: 24px;
  font-weight: 600;

}

.benefits-text-con h4 {
  font-size: 34px;
  font-weight: 600;
  width: 90%;
  margin-bottom: 5px;
  line-height: 1.3;
}

.benefits-text-con h4 span {
  font-size: 34px;
  color: var(--primary-color);
  font-weight: 700;
}

.benefits-sub-con-outer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.benefits-sub-con {
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid #f1f5f9;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefits-sub-con:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.benefits-sub-con h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--second-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.benefits-sub-con h6 i {
  color: var(--primary-color);
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.benefits-sub-con p {
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}

@media (max-width: 1020px) {
  .benefits-img-con {
    display: none;
  }

  .benefits {
    padding: 40px 4vw;
  }

  .benefits-text-con {
    width: 100%;
    padding: 20px 0px;
  }

  .benefits-text-con h6 {
    font-size: 22px;
    margin-left: 0;
  }

  .benefits-text-con h4,
  .benefits-text-con h4 span {
    font-size: 28px;
    width: 100%;
    margin-left: 0;
  }

  .benefits-sub-con-outer {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0px;
  }

  .benefits-sub-con {
    padding: 20px 16px;
    min-height: 120px;
  }

  .benefits-sub-con h6 {
    font-size: 16px;
  }

  .benefits-sub-con p {
    font-size: 13px;
  }
}

@media (max-width: 650px) {
  .benefits {
    padding: 30px 4vw;
  }

  .benefits-text-con h6 {
    font-size: 20px;
  }

  .benefits-text-con h4,
  .benefits-text-con h4 span {
    font-size: 24px;
  }

  .benefits-sub-con {
    padding: 18px 14px;
    min-height: 110px;
  }

  .benefits-sub-con h6 {
    font-size: 15px;
  }

  .benefits-sub-con p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .benefits {
    padding: 20px 4vw;
  }

  .benefits-text-con h6 {
    font-size: 18px;
  }

  .benefits-text-con h4,
  .benefits-text-con h4 span {
    font-size: 22px;
  }

  .benefits-sub-con-outer {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefits-sub-con {
    padding: 16px 12px;
    min-height: 100px;
  }

  .benefits-sub-con h6 {
    font-size: 14px;
  }

  .benefits-sub-con p {
    font-size: 11px;
  }
}











/* Top Course Section */
.top-course {
  padding-top: 30px;
  width: 100vw;
  min-height: 80vh;
  text-align: center;
  background-color: #f8f9fb;
}

.top-course h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
}

.top-course h3 span {
  color: var(--primary-color);
  font-weight: 700;
}

.top-course-outer-div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  width: 85%;
  min-height: 40vh;
  margin: auto;

}

.top-course-single-div {
  display: flex;
  min-height: 120px;
  /* height: auto; */
  width: 360px;
  border-radius: 10px;
  box-shadow: 0px 1px 20px #cfcfcf;
  text-align: left;
  background-color: white;
  margin: 10px;
}

.top-course-single-div img {
  width: 140px;
  /* height: 100%; */
  height: auto;
  object-fit: cover;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
}

.top-course-single-text-div {
  display: flex;
  width: 65%;
  height: 100%;
  padding: 10px;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-grow: 1;
}

.top-course-single-text-div i {
  color: var(--primary-color);
  font-size: 16px;
}

.top-course-single-text-div h4 {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.top-course-single-text-div p {
  font-size: 12px;
  margin: 0;
  padding: 0;
}

.top-course-single-text-div .view-more {
  color: var(--primary-color);
  cursor: pointer;

}

.top-view-more {
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid var(--primary-color);
  margin: 30px 0px;
  background-color: transparent;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.top-view-more:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Media Queries for Responsiveness */

@media (max-width: 1020px) {
  .top-course h3 {
    font-size: 28px;
    line-height: 42px;
  }

  .top-course-single-div {
    width: 45%;
    height: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-course-single-div img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }

  .top-course-single-text-div {
    width: 100%;
    align-items: center;
    padding: 10px;
  }

  .top-course-single-text-div h4,
  .top-course-single-text-div p,
  .top-course-single-text-div .view-more {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .top-course h3 {
    font-size: 28px;
    line-height: 42px;
  }

  .top-course-single-div {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .top-course-single-div img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }

  .top-course-single-text-div {
    width: 100%;
    align-items: center;
    padding: 10px;
  }

  .top-course-single-text-div h4 {
    font-size: 22px;
  }

  .top-course-single-text-div p,
  .top-course-single-text-div .view-more {
    text-align: center;
    font-size: 16px;
  }
}

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

  .top-course h3 {
    font-size: 20px;
    line-height: 36px;
  }

  .top-course h3 span {
    font-size: 20px;
    line-height: 36px;
  }

  .top-course-outer-div {
    width: 95%;
  }

  .top-course-single-div {
    width: 100%;
    min-height: 250px;
  }

  .top-course-single-text-div h4 {
    font-size: 16px;
  }

  .top-course-single-text-div p {
    font-size: 11px;
  }

  .top-view-more {
    font-size: 12px;
  }
}









/* ===== Mentors Section ===== */
.testimonial {
  padding: 80px 10%;
  background-color: white;
}

.testimonial h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
}

.mentors-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;

  margin: 0 auto;
}

.mentors-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  width: 100%;
  margin-top: 30px;
}

.mentor-card {
  display: flex;
  flex-direction: column;
  align-items: center;

  background-color: white;
  border-radius: 20px;
  position: relative;
  padding-top: 100px;
  transition: all var(--transition-speed) ease;

}

.mentor-card-c {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  background-color: white;
  border-radius: 20px;
  position: relative;
  padding-top: 100px;
  transition: all var(--transition-speed) ease;

}

.mentor-card:hover {
  transform: translateY(-10px) !important;

}

.mentor-card-c:hover {
  transform: translateY(-10px) !important;

}

.mentor-card {

  z-index: 1;
}

.mentor-image-container {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  z-index: 10;
}

.mentor-image-bg {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 160px;
  height: 130px;
  border-radius: 40px 40px 40px 0px;
  z-index: 1;
}

.mentor-details {
  width: 100%;
  padding: 100px 100px 20px;
  text-align: center;
  border: 1px solid #767676;
  border-radius: 60px;
  background: white;
  position: relative;
}


.mentor-image-container-c {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 260px;
  z-index: 10;
}

.mentor-image-bg-c {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 190px;
  height: 150px;
  border-radius: 40px 40px 40px 0px;
  z-index: 1;
}

.mentor-details-c {
  width: 100%;
  padding: 150px 150px 20px;
  text-align: center;
  border: 1px solid #767676;
  border-radius: 60px;
  background: white;
  position: relative;
}

.mentor-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px 40px 0px 40px;
  border: 1px solid #010d2a2a;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}



.mentor-name {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mentor-title {
  color: #555;
  font-size: 16px;
  font-weight: 600;
}

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

  .testimonial h2 {
    font-size: 28px;
  }

  .mentors-container {
    flex-wrap: wrap;
    gap: 60px;
  }

  .mentor-card.center {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .testimonial {
    padding: 50px 5%;
  }

  .testimonial h2 {
    font-size: 24px;
  }

  .mentors-section {
    padding: 20px 0;
  }

  .mentor-card {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .mentors-section {
    padding: 20px 0;
  }

  .mentors-container {
    flex-direction: column;
    gap: 200px;
    margin-top: 20px;
  }

  .mentor-card,
  .mentor-card-c {
    padding-top: 60px;
  }

  .mentor-image-container {
    width: 120px;
    height: 120px;
    top: -20px;
  }

  .mentor-image-bg {
    width: 100px;
    height: 100px;
    top: -15px;
    left: -15px;
    border-radius: 30px 30px 30px 0;
  }

  .mentor-image-container-c {
    width: 160px;
    height: 160px;
    top: -20px;
  }

  .mentor-image-bg-c {
    width: 140px;
    height: 140px;
    top: -15px;
    left: -15px;
    border-radius: 30px 30px 30px 0;
  }

  .mentor-details {
    padding: 60px 30px 20px;
  }

  .mentor-details-c {
    padding: 80px 40px 20px;
  }

  .mentor-image {
    border-radius: 30px 30px 0 30px;
    border-width: 1px;
  }

  .mentor-name {
    font-size: 18px;
  }

  .mentor-title {
    font-size: 14px;
  }
}








/* General styles */
.stories {
  /* width: 100vw; */
  /* min-height: 55vh; */
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* padding: 5vw 8vw 0px 8vw; */
  padding:10rem;
}

.stories-text-con {
  width: 45%;
  color: #ffffff;

  padding: 55px 0;
  height: 70%;
}

.stories-text-con-mobile {
  display: none;

}

.stories-text-con h3 {
  font-size: 48px;
  font-weight: 600;
}

.stories-text-con p {
  font-size: 16px;
  font-weight: 400;
  width: 80%;
  /* margin-top: 20px; */
}

.stories-carousel {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stories-item {
  height:240px;
 
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px #cfcfcf;
  padding: 20px 25px 30px;
  display:flex;
  
  
 

}

.stories-item i {
  font-size: 50px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.stories-item p {
  font-size: 16px;
}

.stories-item-sub-div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 20px 0 0;
}

.stories-item-sub1 {
  width: 55%;
  height: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.stories-item-sub1 img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.stories-item-sub-starts-con {
  /* margin: 10px 10px; */
  padding-top:40px;
}

.stories-item-sub-starts-con h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.stories-item-sub-starts i {
  color: var(--primary-color);
  font-size: 14px;
}

.stories-item-sub2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.stories-item-sub2 i {
  font-size: 30px;
  color: #0A66C2;
  margin: 0 10px;
}

.stories-item-sub2 p {
  font-size: 16px;
  color: #0A66C2;
  margin: 0;
}

@media screen and (max-width : 1100px) {
  .stories {
    padding: 40px 2vw;
    min-height: 38vh;
    width: 100%;
    flex-direction: column;
  }

  .stories-text-con {
    display: none;
    padding: 0 2vw;
  }

  .stories-item i {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .stories-text-con-mobile {
    display: block;
    color: #ffffff;

    width: 100%;
    text-align: center;
  }

  .stories-text-con-mobile h3 {
    display: block;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
  }

  .stories-text-con-mobile p {
    font-size: 26px;
    text-align: center;
    font-weight: 600;
  }

  .stories-carousel {
    width: 90%;
    margin: auto;
  }

  .stories-item p {
    font-size: 16px;
    line-height: 20px;
  }

  .stories-item-sub-div {
    padding: 0px;
    align-items: center;
    margin: 30px 0px 10px 0px;
  }

  .stories-item-sub1 {
    width: 65%;
    height: 45px;
    margin: 0;
    padding: 0;
  }

  .stories-item-sub1 img {
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
  }

  .stories-item-sub-starts-con h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }

  .stories-item-sub-starts-con {
    margin: 0px 8px;
    height: 80%;
  }

  .stories-item-sub-starts {
    padding: 0;
    margin: -2px 0px 0px 0px;
  }

  .stories-item-sub-starts i {
    font-size: 14px;
  }

  .stories-item-sub2 i {
    font-size: 22px;
    margin: 5px;
  }

  .stories-item-sub2 p {
    font-size: 18px;
  }

}

@media screen and (max-width: 650px) {
  .stories {
    height: 65vh;
  }
}




@media screen and (max-width : 480px) {
  .stories {
    padding: 20px 2vw;
    height: 50vh;
    width: 100%;
    flex-direction: column;
  }

  .stories-text-con {
    display: none;
    padding: 0 2vw;
  }

  .stories-item i {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .stories-item{
    height: 250px;
  }


  .stories-text-con-mobile {
    display: block;
    width: 100%;
    text-align: center;
    padding-top:0px;
  }

  .stories-text-con-mobile h3 {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
  }

  .stories-text-con-mobile p {
    font-size: 18px;
    text-align: center;
    font-weight: 600;
  }

  .stories-carousel {
    width: 90%;
    margin: auto;
  }

  .stories-item p {
    font-size: 10px;
    /* line-height: 16px; */
  }

  .stories-item-sub-div {
    padding: 0px;
    align-items: center;
  }

  .stories-item-sub1 {
    width: 65%;
    /* height: 30px; */
    margin: 0;
    padding: 0;
  }

  .stories-item-sub1 img {
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
  }

  .stories-item-sub-starts-con h3 {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    padding: 0;
  }

  .stories-item-sub-starts-con {
    margin: 0px 8px;
    height: 80%;
  }

  .stories-item-sub-starts {
    padding: 0;
    margin: -10px 0px 0px 0px;
  }

  .stories-item-sub-starts i {
    font-size: 8px;
  }

  .stories-item-sub2 i {
    font-size: 12px;
    margin: 5px;
  }

  .stories-item-sub2 p {
    font-size: 10px;
  }

}











/* Deals Section */

.deals {
  width: 100vw;
  min-height: 45vh;
  background-color: #EF9D43A8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.deals-container {
  background-color: #2A2A2A;
  width: 75%;
  max-width: 1100px;
  height: auto;
  border-radius: 15px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.deals-container img {
  width: 30%;
  max-height: 100%;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.deals-text-div {
  padding: 20px 40px 20px 50px;
  flex-grow: 1;
}

.deals-text-div h6 {
  color: white;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.deals-text-div p {
  color: white;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.deals-btn-con {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.deals-btn-con input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px;
}

.deals-btn-con button {
  padding: 10px 20px;
  border: none;
  background-color: var(--primary-color);
  border-radius: 3px;
  color: white;
  font-weight: 600;
  margin-left: 10px;
  cursor: pointer;
}

/* Media Queries for Responsiveness */

@media (max-width: 1200px) {
  .deals-container {
    width: 90%;
  }
}

@media (max-width: 1024px) {
  .deals-container {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .deals-container img {
    width: 100%;
    max-height: 50vh;
    border-radius: 15px 15px 0 0;
  }

  .deals-text-div {
    width: 90%;
    padding: 20px 0;
  }

  .deals-btn-con {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .deals-btn-con input {
    width: 70%;
    flex: 0.9;
  }

  .deals-btn-con button {
    margin-left: 0;
    /* margin-top: 10px; */
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .deals-text-div h6 {
    font-size: 18px;
    line-height: 28px;
  }

  .deals-text-div p {
    font-size: 14px;
    line-height: 22px;
  }

  .deals-btn-con button {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .deals-container img {
    width: 100%;
    max-height: 80%;
    height: 80%;
  }

  .deals-text-div h6 {
    font-size: 14px;
    line-height: 20px;
  }

  .deals-text-div p {
    font-size: 10px;
    line-height: 16px;
  }

  .deals-btn-con {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
  }

  .deals-btn-con input {
    padding: 8px;
    font-size: 10px;
    width: 50%;
    flex: 0.9;
  }

  .deals-btn-con button {
    font-size: 10px;
    margin-top: 0px;
  }
}



/* Hero Banner Responsive Improvements */
.webinar-hero-banner {
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  width: 100%;
}

.webinar-carousel {
  position: relative;
  width: 100%;
  height: 50vw;
  /* Responsive height based on viewport width */
  max-height: 500px;
  /* Maximum height */
  min-height: 200px;
  /* Minimum height */
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none;
  background-color:white;
}

.carousel-slide.active {
  opacity: 1;
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
 .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain
}
}

/* .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
} */

.carousel-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.webinar-slider-nav {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  position: absolute;
  bottom: 20px;
  width: 100%;

}

.webinar-slider-dot {
  height: 12px;
  width: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.webinar-slider-dot.active {
  background-color: #FFA500;
  transform: scale(1.2);
}

.webinar-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Projects Section Responsive Improvements */

/* Search Container */
/* Projects Section Responsive Improvements */
/* Search Container */
.project-search-outer-con {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* allow wrapping on small screens */
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
  /* spacing between input and button when stacked */
}

.input-wrapper {
  position: relative;
  flex-grow: 1;
  width: 100%;
}

.input-wrapper i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #555;
  z-index: 1;
}

.input-wrapper input {
  padding: 12px 15px 12px 40px;
  width: 100%;
  font-size: 16px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 10px;
}

.input-wrapper input:focus {
  outline: none;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.15);
}

.project-search-outer-con button {
  border: none;
  padding: 12px 30px;
  background-color: var(--primary-color);
  border-radius: 8px;
  color: white;
  font-weight: 500;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  white-space: nowrap;
  display: flex;
}

.project-search-outer-con button:hover {
  background-color: #026157;
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}


.showcase-section-label {
  text-align: center;
  margin: 0px 0px 20px 0px;
  color: #888;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.showcase-main-heading {
  font-size: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: 30px;
  padding: 0 15px;
}

.projects-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 20px;
  padding: 0 10px;
  margin-bottom: 30px;
}

.explore-more-card {
  border: 2px dashed #ccc;
  padding: 20px;
  transition: transform 0.2s;
  background-color: #f9f9f9;
}

.explore-more-card:hover {
  transform: scale(1.02);
  background-color: #f1f1f1;
}


.project-showcase-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.project-thumbnail-wrapper {
  height: 0;
  padding-bottom: 66.67%;
  /* Maintains aspect ratio 3:2 */
  position: relative;
  overflow: hidden;
}

.project-thumbnail-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card-body {
  padding: 15px;
}

.project-card-title {
  font-size: clamp(1rem, 3vw, 1.2rem);
  margin-bottom: 10px;
}

.project-card-summary {
  color: #666;
  margin-bottom: 15px;
  font-size: clamp(0.8rem, 2vw, 0.9rem);
}

.project-card-link {
  color: #FFA500;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.project-card-link i {
  margin-left: 5px;
}

.project-tag {
  display: inline-block;
  background-color: #f0f0f0;
  color: #555;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-right: 5px;
  margin-bottom: 10px;
}

.project-price {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.project-original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 0.85rem;
  margin-left: 5px;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: #666;
}

.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  grid-column: 1 / -1;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: var(--primary-color);
  animation: spin 1s linear infinite;
}

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

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

/* Media Queries for different screen sizes */
@media (max-width: 992px) {
  .projects-showcase-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

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

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-dots {
    height: 8px;
    width: 8px;
    margin: 0 5px;
  }

  .showcase-section-label {
    font-size: 0.8rem;
    margin: 30px 0 15px;
  }

  .showcase-main-heading br {
    display: none;
  }

  .project-search-outer-con {
    flex-direction: column;
  }

  .project-search-outer-con button {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .projects-showcase-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 30px;
  }

  .project-card-body {
    padding: 12px;
  }

  .showcase-main-heading {
    margin-bottom: 20px;
  }
}


#promo_xyz_8294_unique_banner {
  display: none;
}



.placement-section {
  background-color: #f0e6ff;
  padding: 40px 0;
}

.placement-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.placement-companies-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.company-logo-box {
  background-color: white;
  padding: 15px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo-box img {
  height: 50px;
  max-width: 400px;
  object-fit: contain;
}












.footer {
  width: 100vw;
  background-color: #010D2A;
  padding: 20px 8vw;
  color: white;
  height: fit-content;
}

.footer-mobile {
  display: none;
}

.footer-con {
  /* border: 1px solid white; */
  width: 100%;
}

.footer-con2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40vh;
}

.footer-logo-img {
  width: 270px;
  height: 50px;
  margin: 20px 0px;
}

.footer-con2 .footer-con2-links-div h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-con2 .footer-con2-links-div h4 i {
  font-size: 16px;
  color: white;
}

.footer-con2 .footer-con2-links-div p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer-con-email {
  background-color: #F6F6F9;
  width: 30vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  height: auto;
  color: black;
  padding: 20px 20px; 
}

.footer-con-email ::-webkit-scrollbar{
  width: 10px;
  display: none;
}

.footer-con-email div {
  display: flex;
  flex-direction: column;
  width: 90%;
  align-items: flex-start;
}

.footer-con-email h5 {
  font-size: 22px;
  font-weight: 600;
  color: black;
  text-align: left;
}

.footer-con-email p {
  font-size: 14px;
  font-weight: 400;
  width: 80%;
  text-align: center;
  text-align: left;
}

.footer-con-email div input {
  font-size: 14px;
  border: none;
  width: 100%;
  background-color: white;
  padding: 10px 10px;
  margin: 7px 0px;
  border-radius: 6px;
  margin-right: 10px;
}



.footer-con-email textarea {
  font-size: 14px;
  border: none;
  width: 100%;
  background-color: white;
  padding: 10px 10px;
  margin: 7px 0px;
  border-radius: 6px;
  margin-right: 10px;
}

.footer-con-email div button {
  font-size: 14px;
  border: none;
  background-color: var(--primary-color);
  padding: 10px 20px;
  color: white;
  border-radius: 6px;
  margin: 5px 0px 0px 0px;
}

.footer-hr {
  color: white;
  width: 100%;
  margin: 10px 0px;
  height: 4px;
  margin-top: 80px;

}

.footer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 30%;

}

.footer-footer div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 25%;
  height: 100%;
}

.footer-footer p {
  margin: 0;
}

.footer-footer p span {
  color: var(--primary-color);
}


@media screen and (max-width : 1100px) {
  .footer {
    display: none;
  }

  .footer-mobile {
    display: block;
    min-height: 38vh;
    background-color: #010D2A;
    padding: 10px 6vw;
    width: 100%;
    color: white;
  }

  .footer-logo-img-mobile {
    width: 170px;
    height: 35px;
    margin: 20px 0px 5px 0px;
  }

  .footer-con-email-mobile {
    margin: 10px 0px 20px 0px;
  }

  .footer-con-email-mobile p {
    font-size: 18px;
  }

  .footer-con-email-mobile div {
    display: flex;
    justify-content: flex-start;

    width: 100%;
  }

  .footer-con-email-mobile div input {
    width: 75%;
    border: none;
    border-radius: 5px;
    padding: 6px 8px;
    font-size: 16px;
    margin-right: 12px;
  }

  .footer-con-email-mobile div button {
    border: none;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 16px;
    background-color: var(--primary-color);
    color: white;
  }

  .footer-con-email-mobile div input:focus {
    outline: none;
  }

  .footer-con2-mobile {
    display: flex;
    justify-content: flex-start;

    width: 100%;
  }

  .footer-con2-links-div-mobile {
    margin: 0px 30px 0px 0px;
  }

  .footer-con2-links-div-mobile h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
  }

  .footer-con2-links-div-mobile p {
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0px;
  }

  .footer-footer-mobile {
    display: flex;
    justify-content: space-evenly;
   
    width: 30%;
    font-size: 20px;
  }
}

@media screen and (max-width : 650px) {
  .footer {
    display: none;
  }

  .footer-mobile {
    display: block;
    min-height: 65vh;
    background-color: #010D2A;
    padding: 10px 6vw;
    width: 100%;
    color: white;
  }

  .footer-logo-img-mobile {
    width: 170px;
    height: 35px;
    margin: 20px 0px 5px 0px;
  }

  .footer-con-email-mobile {
    margin: 10px 0px 20px 0px;
  }

  .footer-con-email-mobile p {
    font-size: 16px;
  }

  .footer-con-email-mobile div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .footer-con-email-mobile div input {
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 6px 8px;
    font-size: 16px;
    margin-right: 12px;
  }

  .footer-con-email-mobile div button {
    border: none;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 16px;
    background-color: var(--primary-color);
    color: white;
  }

  .footer-con-email-mobile div input:focus {
    outline: none;
  }

  .footer-con2-mobile {
    display: flex;
    justify-content: flex-start;

    width: 100%;
  }

  .footer-con2-links-div-mobile {
    margin: 0px 30px 0px 0px;
  }

  .footer-con2-links-div-mobile h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 16px;
  }

  .footer-con2-links-div-mobile p {
    font-size: 14px;
    font-weight: 400;
    margin: 8px 0px;
  }

  .footer-footer-mobile {
    display: flex;
    /* justify-content: space-evenly; */
    gap: 10px;
    
    /* width: 20%; */
    font-size: 15px;
  }
}

@media screen and (max-width : 480px) {
  .footer {
    display: none;
  }

  .footer-mobile {
    display: flex;
    flex-direction: column;
    min-height: 55vh;
    background-color: #010D2A;
    padding: 10px 6vw;
    width: 100%;
    color: white;
    gap:20px;
  
  }

  .footer-logo-img-mobile {
    width: 170px;
    height: 35px;
    margin: 20px 0px 5px 0px;
  }

  .footer-con-email-mobile {
    margin: 10px 0px 20px 0px;
  }

  .footer-con-email-mobile p {
    font-size: 12px;
  }

  .footer-con-email-mobile div {
    display: flex;
    justify-content: flex-start;

    width: 100%;
  }

  .footer-con-email-mobile div input {
    width: 100%;
    border: none;
    border-radius: 5px;
    padding: 5px 8px;
    font-size: 12px;
    margin-right: 12px;
  }

  .footer-con-email-mobile div button {
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 12px;
    background-color: var(--primary-color);
    color: white;
  }

  .footer-con-email-mobile div input:focus {
    outline: none;
  }

  .footer-con2-mobile {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;

    width: 100%;
  }

  .footer-con2-links-div-mobile {
    margin: 0px 30px 0px 0px;
  }

  .footer-con2-links-div-mobile h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 14px;
  }

  .footer-con2-links-div-mobile p {
    font-size: 12px;
    font-weight: 400;
    margin: 8px 0px;
  }

  .footer-footer-mobile {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 40%;
  }
}


.pro-view-more {
  padding: 6px 20px;
  border-radius: 8px;
  border: 2px solid #E7771A;
  margin: 10px auto;
  background-color: white;
  font-weight: 700;
  text-align: center;
  display: inline-block;
}


/* Newsletter Banner Styles */
.newsletter-banner {
  display: flex;
  background-color: #2d2d2d;
  border-radius: 10px;
  overflow: hidden;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto;
  width: calc(100% - 40px);
  /* Responsive width with margin */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.banner-image {
  width: 30%;
  min-height: 250px;
  background-image: url('./assets/img/course2.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-content {
  width: 70%;
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-content h2 {
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.banner-content p {
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 20px;
  opacity: 0.9;
  max-width: 500px;
}

.banner-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;

}

.banner-form {
  display: flex;

  gap: 10px;
  width: 100%;

}

.banner-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  /* min-width: 0; */
  color:black;
  /* Prevents input from overflowing */
  width: 60%;
}

.banner-form button {
  background-color: #e67e22;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
  max-width: 30%;
}

.banner-form button:hover {
  background-color: #d35400;
}

/* FAQ Section Styles */
.faq-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 40px;
  color: #333;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
}

.faq-item {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 74px;
  /* Set default height for all items */
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-item.active {
  height: auto;
  /* Allow active item to expand */
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  font-size: clamp(14px, 2vw, 16px);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-left: 10px;
  transition: background-color 0.3s ease;
}

.faq-toggle.minus {
  background-color: #e67e22;
  color: white;
}

.faq-toggle.plus {
  background-color: #f0f0f0;
  color: #666;
}

.faq-answer {
  margin-top: 15px;
  font-size: clamp(13px, 1.8vw, 14px);
  line-height: 1.5;
  color: #666;
  padding-right: 20px;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Medium screens (tablets) */
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter-banner {
    margin: 40px auto;
  }
}

/* Small screens (mobile) */
@media (max-width: 768px) {
  .newsletter-banner {
    flex-direction: column;
    margin: 30px auto;
  }

  .banner-image {
    width: 100%;
    height: 180px;
  }

  .banner-content {
    width: 100%;
    padding: 25px 20px;
  }

  .banner-form {
    flex-direction: column;
  }

  .banner-form button {
    width: 100%;
    padding: 14px;
    color:white;
  }

  .faq-section {
    margin: 50px auto;
  }

  .faq-item {
    padding: 15px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .newsletter-banner {
    border-radius: 8px;
    margin: 20px auto;
  }

  .banner-image {
    height: 150px;
  }

  .banner-content {
    padding: 20px 15px;
  }

  .banner-content h2 {
    font-size: 18px;
  }

  .banner-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .faq-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .faq-question {
    font-size: 14px;
  }
}

.promo_xyz_8294_banner_container {
  position: relative;
  width: 100%;
  background-color: #b20bce;
  color: white;
  padding: 15px 0;
  text-align: center;
  z-index: 1000;
  font-family: Arial, sans-serif;
}

.promo_xyz_8294_content_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 10px;
}

.promo_xyz_8294_special_tag_element {
  background-color: #ffeb3b;
  color: black;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.promo_xyz_8294_offer_text_block {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1rem;
  white-space: nowrap;
}

.promo_xyz_8294_offer_text_block span {
  margin: 0 5px;
}

#promo_xyz_8294_code_text {
  font-weight: bold;
  padding: 0 10px;
  white-space: nowrap;
}

.promo_xyz_8294_timer_container_element {
  display: flex;
  margin: 0 10px;
}

.promo_xyz_8294_timer_box_unit {
  background-color: #7a0b8e;
  border-radius: 4px;
  padding: 5px 8px;
  margin: 0 2px;
  font-weight: bold;
  min-width: 38px;
}

.promo_xyz_8294_timer_label_text {
  font-size: 0.6rem;
  margin-top: 2px;
}

.promo_xyz_8294_buy_now_button {
  background-color: #ffeb3b;
  color: black;
  font-weight: bold;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.promo_xyz_8294_buy_now_button:hover {
  background-color: #ffe100;
}

.promo_xyz_8294_arrow_icon_element {
  margin-left: 5px;
}

.promo_xyz_8294_close_button_element {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.promo_xyz_8294_close_button_element:hover {
  opacity: 1;
}

.promo_xyz_8294_confetti_emoji {
  font-size: 1rem;
}

/* Tablet Responsive */
@media screen and (max-width: 768px) {
  .promo_xyz_8294_content_wrapper {
    padding: 0 15px;
    justify-content: center;
  }

  .promo_xyz_8294_special_tag_element {
    margin-bottom: 5px;
  }

  .promo_xyz_8294_timer_box_unit {
    min-width: 35px;
    padding: 4px 6px;
  }

  #promo_xyz_8294_code_text {
    order: 2;
  }

  .promo_xyz_8294_timer_container_element {
    order: 3;
    margin: 8px 0;
  }

  .promo_xyz_8294_buy_now_button {
    order: 4;
  }
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
  .promo_xyz_8294_banner_container {
    padding: 12px 0 15px;
  }

  .promo_xyz_8294_content_wrapper {
    flex-direction: column;
    gap: 8px;
    padding: 0 30px 0 15px;
  }

  .promo_xyz_8294_special_tag_element,
  .promo_xyz_8294_offer_text_block,
  #promo_xyz_8294_code_text,
  .promo_xyz_8294_timer_container_element,
  .promo_xyz_8294_buy_now_button {
    width: 100%;
    justify-content: center;
    margin: 2px 0;
  }

  .promo_xyz_8294_special_tag_element {
    display: inline-block;
    width: auto;
    margin: 0 auto 5px;
  }

  .promo_xyz_8294_offer_text_block {
    justify-content: center;
  }

  .promo_xyz_8294_timer_box_unit {
    flex: 1;
  }

  .promo_xyz_8294_buy_now_button {
    margin-top: 5px;
    justify-content: center;
  }

  .promo_xyz_8294_close_button_element {
    top: 10px;
    transform: none;
  }
}

/* Display script for demo purposes - can be removed in production */
.promo_xyz_8294_banner_container {
  display: block;
}


/* Fixed WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-button a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  fill: white;
}

/* Optional popup hint */
.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  bottom: 15px;
  background-color: white;
  color: #333;
  padding: 8px 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  pointer-events: none;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.content {
  text-align: center;
  padding: 20px;
}