/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap'); */

/*
Light 300
Light 300 italic
Regular 400
Regular 400 italic
Semi-bold 600
Semi-bold 600 italic
Bold 700
Bold 700 italic
Extra-bold 800
Extra-bold 800 italic
*/

@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");

/*font-family: 'Poppins', sans-serif;*/

/* @font-face {
    font-family: 'Gabriola';
    font-style: normal;
    font-weight: normal;
    src: local('Gabriola'), url('fonts/gabriola.woff') format('woff');
} */

:root {
  --lightgreen: #d2e6e4;
  --darkgreen: #0b7077;
  --orange: #ffb800;
  --blue: #2f327d;
  --lightpurple: #eff3ff;
  --darkgray: #696984;
  --black: #000000;
  --white: #ffffff;
}

/* html{ scroll-behavior: auto !important; scroll-padding-top: var(--scroll-padding, 50px);} */
html {
  scroll-behavior: auto !important;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  scroll-padding-top: 100px;
}

body {
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
  font-family: "Poppins", sans-serif;
}

*:focus {
  outline: none;
}

.heading2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--blue);
}
.heading2 span {
  color: var(--orange);
}

.heading3 {
  font-size: 27px;
  font-weight: bold;
  color: var(--blue);
}

.inputControl {
  border-radius: 10px;
  line-height: 2.8;
  padding-left: 20px;
  padding-right: 10px;
  border-radius: 20px;
  border: none;
}
.btnInput2 {
  border: solid 8px #fff;
  box-shadow: 0px 0px 15px 5px rgba(47, 50, 155, 0.1);
}
.btnInput {
  position: absolute;
  right: 10px;
  top: 10px;
}
/* .inputWrap2{ background-color: #fff; padding: 20px; border-radius: 50%; width: 20px;} */

.inputWrap {
  position: relative;
}
.btnSearch {
  color: #fff !important;
  border-radius: 50%;
}
.btnSend {
  color: #fff !important;
  background-color: #0b7077 !important;
  border-color: #0b7077 !important;
  border-radius: 15px;
}

#form .form-control {
  line-height: 1.8;
}
#form .btnSend {
  padding: 10px 20px;
}
#contactModal .btn-light.active {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

#logo {
  width: 200px;
  height: 50px;
  background: url(../images/new_logo.png) no-repeat center;
  background-size: contain;
}

#footerLogo {
  width: 308px;
  height: 78px;
  background: url(../images/logo.png) no-repeat center;
  background-size: contain;
  z-index: 2;
  position: relative;
}

#mainHeader {
  width: 100%;
  background-color: var(--white);
  position: fixed;
  top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 1;
  box-shadow: 0 0 5px 2px rgba(47, 50, 155, 0.1);
}
.nav-link {
  color: var(--black);
  margin-left: 20px;
  margin-right: 20px;
  font-weight: 500;
  font-size: 20px;
}

.navbar-nav .active > .nav-link {
  border-bottom: solid 2px var(--color3285);
  color: var(--color3285);
}

.navbar-toggler {
  border: none;
}

#homeBanner {
  background: url(../images/learnwithus/banner-home.png) no-repeat center;
  background-size: cover;
  /* width: 100%;
  height: 250%; */
  width: 100%;
  height: 900px;
  position: relative;
}
#explorecoursesbg {
  background: url(../images/learnwithus/exploreCourseBg.png) no-repeat center;
  background-size: contain;
  background-color: var(--white);
  padding-top: 110px;
  width: 100%;
  /* height: 150%; */
  /* width: 100%;
  height: 1119px; */
  position: relative;
}
.bgTeachOnJozuna {
  background: url(../images/TeachOnJozunaImages/TeachWithJozunaBg.jpg) no-repeat
    right;
  background-size: cover;
  width: 100%;
  height: 120%;
  /* width: 100%;
  height: 1119px; */
  position: relative;
}
.howToBeginBg {
  background: url(../images/TeachOnJozunaImages/howToBeginBg.jpg) no-repeat
    right;
  background-size: cover;
  width: 100%;
  height: 1100px;
  /* width: 100%;
  height: 1119px; */
  position: relative;
}
.potentialSection {
  background: url(../images/learnwithus/potential-banner.jpg) no-repeat right;
  background-size: cover;
  width: 100%;
  margin-top: 20px;
  position: relative;
} /* ✅ Default: Desktop - Grid with 3 columns */
.grid-card-container {
  margin-left: 10px;
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gridFeatured-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
/* Mobile only: Horizontal scroll with full-width cards */
@media (max-width: 768px) {
  .horizontal-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
  }

  .grid-card-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 90%; /* Ensures every card has this width */
    gap: 16px;
    grid-template-columns: none;
  }
  .gridFeatured-card-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 90%; /* Ensures every card has this width */
    gap: 16px;
    grid-template-columns: none;
  }
  .gridFeatured-card-container2 {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 90%; /* Ensures every card has this width */
    gap: 16px;
    grid-template-columns: none;
  }
  .featured-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    z-index: 20;
    padding: 5px;
    cursor: pointer;
  }

  .featured-left-arrow {
    left: 0;
  }

  .featured-right-arrow {
    right: 0;
  }

  .featured-scroll-arrow img {
    width: 24px;
    height: 24px;
    opacity: 0.8;
  }

  @media (min-width: 768px) {
    .featured-scroll-arrow {
      display: none;
    }
  }

  /* Ensure child cards don’t shrink */
  .grid-card-container > div {
    flex-shrink: 0;
  }
}

@media screen and (max-width: 768px) {
  .potentialSection {
    padding-top: 0px;
    margin-top: 30px;
  }
}
#homeBanner .bannerHeading {
  font-size: 55px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color2D2D);
  margin-top: 50px;
  margin-bottom: 30px;
}
#homeBanner .leadPara {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
  color: var(--color2D2D);
}
#bannerDesc {
  margin-top: 330px;
}

.skillTag {
  background-color: var(--white);
  padding: 5px 20px;
  color: var(--black);
  border-radius: 8px;
}

#homeBanner-video {
  width: 100%;
  position: relative;
  margin-top: 106px;
}
#homeBanner-video video {
  outline: none !important;
  border: none !important;
}

#services {
  position: relative;
  width: 100%;
  background-color: var(--lightpurple);
  padding-top: 120px;
  padding-bottom: 50px;
}
.bgServices {
  background: url(../images/bg-services.png) no-repeat right;
}

#services .leadPara {
  font-size: 24px;
  color: var(--darkgray);
  margin-top: 0px;
  margin-bottom: 60px;
}
.leadParaSkills {
  font-size: 24px;
  color: var(--darkgray);
  margin-top: 0px;
  margin-bottom: 60px;
}
#services .card {
  border: none;
  border-radius: 40px;
  padding: 40px 40px;
  min-height: 370px;
  box-shadow: 0px 0px 15px 5px rgba(47, 50, 155, 0.1);
}
#services .card-title {
  font-size: 27px;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 20px;
}
#services .card-text {
  font-size: 20px;
  color: var(--darkgray);
}
#services .card .dvbtn {
  position: absolute;
  bottom: 40px;
  right: 40px;
}
#services .card .btn-clk {
  border: none;
  border-radius: 15px;
  padding: 8px 20px;
  text-decoration: none;
  background-color: #fba333;
  color: #000;
  font-size: 14px;
}

#aboutUs {
  position: relative;
  width: 100%;
  background-color: var(--lightpurple);
  padding-top: 120px;
  padding-bottom: 50px;
}
#aboutUs .leadPara {
  font-size: 20px;
  color: var(--black);
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1.5;
}
.bgaboutUs {
  background: url(../images/bg-services.png) no-repeat left;
}

#videoModal .modal-body {
  padding: 0px;
  background: none;
}
#videoModal .modal-content {
  background: none;
  border: none;
}
#videoModal .modal-header {
  border-bottom: none;
}
#videoModal iframe {
  width: 100%;
  height: 600px;
}
#videoModal .btn-close {
  filter: invert(100%);
}

#ourMission {
  position: relative;
  width: 100%;
  background-color: var(--lightpurple);
  padding-top: 80px;
  padding-bottom: 50px;
  background-image: url(../images/bg-ourMission-left.png),
    url(../images/bg-ourMission-right.png);
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
}
#ourMission .leadPara {
  font-size: 20px;
  color: var(--black);
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1.5;
  text-align: justify;
}
.bgourMission {
  background: url(../images/bg-services.png) no-repeat right;
}

#ourFeatures {
  position: relative;
  width: 100%;
  background-color: var(--lightpurple);
  padding-top: 80px;
  padding-bottom: 50px;
}
#ourFeatures .card {
  border: none;
  border-radius: 40px;
  padding: 40px 40px;
  background-color: #f6f9ff;
  box-shadow: 0px 0px 15px 5px rgba(47, 50, 155, 0.1);
}
#ourFeatures .leadPara {
  font-size: 20px;
  font-weight: 500;
  color: var(--orange);
}
#ourFeatures ul li {
  margin-bottom: 8px;
  font-size: 18px;
}

#revealingStrength {
  position: relative;
  width: 100%;
  background-color: var(--lightpurple);
  padding-top: 80px;
  padding-bottom: 50px;
  background-image: url(../images/bg-ourMission-left.png),
    url(../images/bg-ourMission-right.png);
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
}
#revealingStrength .leadPara {
  font-size: 20px;
  color: var(--black);
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1.5;
}
.bgrevealingStrength {
  background: url(../images/bg-services.png) no-repeat right;
}
#revealingStrength ul li {
  margin-bottom: 8px;
  font-size: 18px;
}

#contactUs {
  position: relative;
  width: 100%;
  background-color: var(--lightpurple);
  padding-top: 80px;
  padding-bottom: 50px;
}
#contactUs .leadPara {
  font-size: 24px;
  color: var(--black);
  margin-top: 15px;
  margin-bottom: 30px;
  line-height: 1.6;
}
#contactUs .inputControl {
  border-radius: 50px;
  box-shadow: 0px 0px 15px 5px rgba(47, 50, 155, 0.1);
}

/* #mainFooter{
  background-image: url(../images/bg-footer.png), url(../images/bg-footerLine.png);
  background-position: top center, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, contain; 
  width: 100%; height: 541px; position: relative; padding-top: 150px; padding-bottom: 50px; color: var(--darkgreen); font-size: 15px;
} */

#mainFooter {
  background: url(../images/bg-footer.png) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 541px;
  position: relative;
  padding-top: 150px;
  color: var(--darkgreen);
  font-size: 15px;
}
.bgfooter {
  background: url(../images/bg-footerLine.png) no-repeat right;
  background-size: contain;
  width: 575px;
  height: 225px;
  position: absolute;
  right: 0px;
  bottom: 0;
  z-index: 1;
}

#mainFooter h3 {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 25px;
}
#mainFooter ul {
  list-style: none;
  padding-left: 0px;
}
#mainFooter ul li {
  margin-bottom: 20px;
}
#mainFooter ul li a {
  color: var(--darkgreen);
  text-decoration: none;
}
#mainFooter ul li a:hover {
  color: var(--black);
  text-decoration: underline;
}

#mainFooter .pghd2 {
  font-size: 28px;
  font-weight: 600;
}

#mainFooter .btnSend {
  padding-left: 20px;
  padding-right: 20px;
}

#rwFooter {
  margin-bottom: 50px;
}
#mainFooter a.lnkd {
  display: inline-block;
  text-decoration: none;
  color: #0b7077;
}
#mainFooter a.lnkd img {
  width: 25px;
  margin-right: 16px;
}
#mainFooter a.lnkd:hover {
  text-decoration: underline;
}
#mainFooter .ftaddr {
  margin-left: 40px;
}
.link {
  color: #37363b;
  text-decoration: none;
}
.link:hover {
  color: #d90429 !important;
  text-decoration: underline;
}

#webNav1 .nav-item.active .nav-link {
  border-bottom: none;
}
#webNav1 .nav-item {
  margin-bottom: 12px;
  font-size: 18px;
}
#webNav1 .nav-item .nav-link {
  font-size: 18px;
}

/******* CopyRight***************/
#copyRight {
  width: 100%;
  position: absolute;
  bottom: 0px;
  padding: 20px 0px;
  color: var(--darkgray);
  font-size: 14px;
  border-top: dashed 2px #bdcdd0;
  text-align: center;
}

.imgRounded {
  border-radius: 20px;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.v-mid {
  vertical-align: middle;
}

.zoom {
  transition: transform 0.2s;
}

.zoom:hover {
  transform: scale(1.5);
}

/**********************box shadow and gredient Fill Color*********************/

.boxShadow {
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.gradient {
  background: #e46f11; /* Old browsers */
  background: -moz-linear-gradient(
    45deg,
    #e46f11 0%,
    #faa71c 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    45deg,
    #e46f11 0%,
    #faa71c 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    45deg,
    #e46f11 0%,
    #faa71c 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e46f11', endColorstr='#faa71c',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

/**********************font awesome UL List*********************/
ul.fa-ul {
  list-style-type: none; /*padding-left: 20px;*/
  margin-left: 15px;
  clear: both;
}
ul.fa-ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
ul.fa-ul li:before {
  position: absolute;
  top: 1px;
  left: 0;
  font-family: FontAwesome;
  content: "\f0da"; /*color: green;*/
}

/***********Margin Top************/
.mt2 {
  margin-top: 2px;
}
.mt5 {
  margin-top: 5px;
}
.mt8 {
  margin-top: 8px;
}
.mt10 {
  margin-top: 10px;
}
.mt12 {
  margin-top: 12px;
}
.mt15 {
  margin-top: 15px;
}
.mt18 {
  margin-top: 18px;
}
.mt20 {
  margin-top: 20px;
}
.mt22 {
  margin-top: 22px;
}
.mt25 {
  margin-top: 25px;
}
.mt28 {
  margin-top: 28px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mt80 {
  margin-top: 80px;
}
.mt-5 {
  margin-top: -5px;
}

/***********Margin Bottom************/
.mb2 {
  margin-bottom: 2px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb8 {
  margin-bottom: 8px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb12 {
  margin-bottom: 12px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb18 {
  margin-bottom: 18px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb22 {
  margin-bottom: 22px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb28 {
  margin-bottom: 28px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb80 {
  margin-bottom: 80px;
}

/***********Font Sizes************/
.ft9 {
  font-size: 9px;
}
.ft10 {
  font-size: 10px;
}
.ft11 {
  font-size: 11px;
}
.ft12 {
  font-size: 12px !important;
}
.ft13 {
  font-size: 13px;
}
.ft14 {
  font-size: 14px;
}
.ft15 {
  font-size: 15px;
}
.ft16 {
  font-size: 16px;
}
.ft17 {
  font-size: 17px;
}
.ft18 {
  font-size: 18px;
}
.ft19 {
  font-size: 19px;
}
.ft20 {
  font-size: 20px;
}
.ft21 {
  font-size: 21px;
}
.ft22 {
  font-size: 22px;
}
.ft23 {
  font-size: 23px;
}
.ft24 {
  font-size: 24px;
}
.ft25 {
  font-size: 25px;
}
.ft26 {
  font-size: 26px !important;
}
.ft26 {
  font-size: 26px;
}
.ft30 {
  font-size: 30px;
}
.ft35 {
  font-size: 35px;
}
.ft40 {
  font-size: 40px;
}
.ft50 {
  font-size: 50px;
}

/***********Padding************/
.pad0 {
  padding: 0px;
}

/***********PaddingLeft************/
.padleft16 {
  padding-left: 16px;
}
.padleft10 {
  padding-left: 10px;
}
.padleft20 {
  padding-left: 20px;
}

.padtop10 {
  padding-top: 10px;
}
.padtop20 {
  padding-top: 20px;
}

/***********Social Icons************/
.socilaIcons {
  font-size: 16px !important; /*background:#4b4b4b;*/
  color: #fff;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  transition: transform 0.2s;
}

.socilaIcons:hover {
  background: #f1a53a;
  color: #fff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  transform: scale(1.2);
}

.fa-facebook {
  background: #3e5f9d;
}
.fa-facebook:hover {
  background: #3e5f9d;
  color: #fff;
}

.fa-twitter {
}
.fa-twitter:hover {
  background: #5bb6f7;
  color: #fff;
}

.fa-linkedin {
}
.fa-linkedin:hover {
  background: #0f7eba;
  color: #fff;
}

.fa-youtube {
}
.fa-youtube:hover {
  background: #e65147;
  color: #fff;
}

.fa-instagram {
  background: #fe734c;
}
.fa-instagram:hover {
  background: #fe734c;
  color: #fff;
}

.fa-whatsapp {
}
.fa-whatsapp:hover {
  background: #075e54;
  color: #fff;
}

/***********Page Scroll Up************/
#scrollUp {
  width: 40px;
  height: 40px;
  line-height: 40px;
  bottom: 25px;
  right: 20px;
  background: var(--orange);
  text-align: center;
  border-radius: 0 10px 0 0;
}
#scrollUp:hover {
  background: var(--darkgreen);
}
#scrollUp:before {
  font-family: FontAwesome;
  color: #fff;
  position: absolute;
  content: "\f077";
  z-index: 999999;
  left: 0;
  right: 0;
}

/***********bootstrap left and right input Icons ************/
.left-inner-addon {
  position: relative;
}
.left-inner-addon input,
.left-inner-addon textarea {
  padding-left: 30px;
}
.left-inner-addon i {
  position: absolute;
  padding: 10px 12px;
  pointer-events: none;
  color: #999999;
}
.right-inner-addon {
  position: relative;
}
.right-inner-addon input {
  padding-right: 30px;
}
.right-inner-addon i {
  position: absolute;
  right: 0px;
  padding: 10px 12px;
  pointer-events: none;
  color: #999999;
}

/*********custom file upload*************/
input.filePhoto {
  display: block;
  visibility: hidden;
  width: 0;
  height: 0;
}
#imgProfilePhoto {
  width: 178px;
  height: 178px;
  line-height: 178px;
}
#imgProfilePhoto img {
  width: 100%;
  height: 100%;
}

/***********Owl carousel Custome Navigation ************/
.customNavigation {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 100%;
}
.customNavigation a {
  display: inline-block;
  height: 24px;
  border: solid 1px #d5d5d5;
  margin-left: 2px;
}
.customNavigation a.prev,
.customNavigation a.next {
  float: right;
}
.customNavigation i.fa {
  width: 24px;
  height: 24px;
  line-height: 24px;
}
.icustomNavigation i.fa::before {
  font-size: 14px;
  line-height: 24px;
}
.customNavigation i.fa {
  display: inline-block;
  cursor: pointer;
  margin: 0px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #acacac;
  overflow: hidden;
  border-radius: 1px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translateZ(0);
}
.customNavigation i.fa::before {
  border-radius: 2px;
  speak: none;
  display: block;
  -webkit-font-smoothing: antialiased;
}
.customNavigation i.fa::after {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  display: none;
  box-sizing: content-box;
}
.customNavigation i.fa:hover {
  background: #f1a53a;
  color: #fff;
}
.customNavigation i.fa:hover::before {
  -webkit-animation: toRightFromLeft 0.3s forwards;
  -moz-animation: toRightFromLeft 0.3s forwards;
  animation: toRightFromLeft 0.3s forwards;
}

.team-carousel {
  position: relative;
}
.css-team-navigation .next {
  left: 25px;
  position: absolute;
  top: 50%;
  margin-top: -88px;
  cursor: pointer;
  z-index: 1;
}
.css-team-navigation .prev {
  right: 25px;
  position: absolute;
  top: 50%;
  margin-top: -88px;
  cursor: pointer;
  z-index: 1;
}

#skills {
  text-align: center;
  padding: 10px;
  background-color: var(--lightpurple);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 items per row */
  gap: auto;
  max-width: auto;
  margin: auto;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background: #fff; */
  padding: 15px;
  border-radius: 8px;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.skill-item img {
  width: 50px; /* Adjust icon size */
  height: 50px;
  margin-bottom: 10px;
}

.skill-item p {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
/* Ensure the carousel wrapper has overflow hidden */
.carousel-container {
  position: relative;
  width: 80%;
  margin: auto;
  overflow: hidden;
}
#clientReview {
  text-align: center;
  padding: 10px;
  padding-top: 0;
  background-color: var(--lightpurple);
}
#clientReview .leadPara {
  font-size: 24px;
  color: var(--darkgray);
  margin-top: 0px;
  margin-bottom: 60px;
}
.skillNameStyle {
  font-size: 20px;
  font-weight: 400;
  color: var(--darkgray);
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  }
}

@media (max-width: 480px) {
  .skills-grid {
    grid-template-columns: repeat(1, 1fr); /* 1 item per row */
  }
}

@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toRightFromLeft {
  49% {
    -moz-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}

/******* Place Holder***************/
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999999 !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999 !important;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #999999 !important;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #999999 !important;
}
::placeholder {
  color: #999999 !important;
}

/******** plugins *************/

/* Individual background colors for clarity */
#Learnwithus {
  background-color: transparent; /* dark blue */
}

#TeachonJozuna {
  background-color: transparent; /* green */
}

#OurPlatform {
  background-color: transparent; /* red */
}
