/* starting header css  */

* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  padding: 0;
}

header {
  background-color: #fff;
  box-shadow: 0 0 20px #eee;
  position: sticky;
  top: 0;
  z-index: 2;
}

.translationSection ul li {
  position: relative;
  z-index: 1;
}

.translationSection ul li:hover {
  z-index: 0 !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
}

.translationSection,
.voiceSection,
.fileSection,
.imageSection,
.pdfSection {
  position: relative;
  z-index: 1;
}

.translationSection ul li,
.voiceSection ul li,
.fileSection ul li,
.imageSection ul li,
.pdfSection ul li {
  position: relative;
  z-index: 2;
}

.translationSection ul li:hover,
.voiceSection ul li:hover,
.fileSection ul li:hover,
.imageSection ul li:hover,
.pdfSection ul li:hover {
  z-index: 0 !important;
}

.navbar {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  padding: 0px !important;
  margin: 0px !important;
}

.navbar-brand img {
  height: 60px !important;
}

.nav-link {
  font-weight: bold;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.navbar-nav li {
  position: relative;
  display: inline-block;
}

.navbar-nav li a {
  font-weight: 500;
}

.navbar-nav li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 50px;
  height: 10px;
  background: url("img/underline.png") no-repeat center;
  background-size: contain;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.navbar-nav li:hover::after {
  opacity: 1;
}

.nav-link:hover::after {
  width: 70%;
}

.card img {
  width: 30%;
}

.nav-link:hover {
  color: #fd7e14 !important;
}

.card {
  margin: 10px;
  padding: 15px;
  position: static !important;
  border: none;
  width: 100%;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
  height: 100%;
}

.card:hover .text-center {
  color: #fd7e14 !important;
}

.row:nth-child(2) .card {
  height: 170px;
}

.video-card {
  width: 240px;
  height: 100px;
}

.video-card img {
  padding: 10px;
  width: 100%;
}

.cards .video-card img {
  padding: 10px;
  width: 45%;
}

.voice-card {
  width: 200px;
  height: 125px;
}

.translation-card{
  width: 200px;
  height: 150px;
}

.file-card {
  width: 200px;
  height: 130px;
}

.navbar-expand-lg .navbar-nav {
  align-items: center;
}
.education-card .Course {
  padding-right: 10px;
  font-weight: 300;
  font-size: 0.8rem;
  line-height: normal;
  margin: 5px 0 0;
}

.education-card img {
  /* padding: 10px; */
  width: 15%;
}

.image_card {
  width: 200px;
  height: 135px;
}

.image_card img {
  width: 50px;
}

.pdf_card {
  width: 170px;
  height: 150px;
}

.mt-1 {
  margin-top: 0.15rem !important;
}

.card:hover {
  transform: scale(1.2);
  background: #eeeeee;
  transform-origin: center center;
}

.container {
  left: 17%;
  width: 75%;
  border-radius: 10px;
  padding: 11px;
  border: 1px solid rgb(226 223 223);
  box-shadow: 0 0 20px #eee !important;
  /* background: transparent; */
  background-color: #fff;
  position: absolute;
}

.container p {
  font-weight: bold;
}

p {
  margin: auto;
}

.row > * {
  margin-top: 0px !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  /* margin: 16px; */
  padding-left: 0% !important;
  flex-shrink: 0;
}

.text-center {
  font-size: 1.15rem;
  font-weight: 600;
  color: rgb(67, 63, 63);
}

#fileContent {
  width: 17% !important;
}

#fileContent {
  left: 67% !important;
}


#pdfContent {
  width: 68%;
  left: 26% !important;
}

#aboutContent {
  width: 16%;
  left: 84%;
}

ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
#aboutContent ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

/* Hide all sections initially */
.section-content {
  display: none;
}

/* Show the hovered section */
.section-content.active {
  display: block;
}

#aboutContent li {
  margin-bottom: 5px;
  font-size: 14px;
  padding: 11px 5px;
  border: 1px solid #f5f5f5;
  border-radius: 5px;
}

#aboutContent li:hover {
  background: #f5f5f5;
  border-radius: 10px;
}
#aboutContent .drop-menu-item a {
  color: red !important;
}

#pdfContent p {
  font-size: 1.15rem;
}

.content-section {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.d-none {
  display: none !important;
}

.show {
  display: block !important;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin: 0;
  padding: 0;
  /* align-items: center; */
  /* margin: auto; */
  margin: auto;
}

.col-2 {
  width: 20%;
}

#videoContent .row .col-2 {
  width: 25%;
}
#educationContent {
  height: 208px;
}

#educationContent .col-2 {
  width: 32%;
}

#educationContent .card {
  width: 93% !important;
}

#voiceContent {
  width: 77% !important;
}
#translationContent .card {
  width: 93% !important;
  height: 93% !important;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 998;
}

.dropdown-menu.show {
  display: block;
}

/* ending header css  */

/* staring section css */

.banner-homepage-sec {
  align-items: center;
  background: linear-gradient(180deg, #fff, #eff7fd);
  display: flex;
  height: 480px;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.fancy-shaps-sec .fancy-shap1 {
  left: -8px;
  position: absolute;
  top: 3%;
}

.fancy-shaps-sec img {
  width: 69%;
}

.fancy-shaps-sec .fancy-shap2 {
  position: absolute;
  right: 193px;
  top: 10%;
}

.fancy-shaps-sec .fancy-shap3 {
  left: 42%;
  position: absolute;
  top: 70%;
}

.round-shap-banner-homepage {
  background: #fff;
  border-radius: 50%;
  bottom: -325px;
  height: 400px;
  opacity: 1;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.banner-homepage-sec .banner-content-sec {
  bottom: 0;
  margin: 30px auto auto;
  max-width: 914px;
  position: relative;
  text-align: center;
  width: 56%;
}

.green_hadding {
  color: #363232;
  /* text-align: justify; */
  width: 76%;
  font-weight: 700;
  font-size: 32px;
  line-height: normal;
  font-family: system-ui;
}

.videoPopup {
  background: linear-gradient(90deg, #01d5f5, #52df84);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  padding: 6px 12px;
}

.banner-content-sec .second-head.home {
  height: 139px;
  margin: auto;
  overflow-y: auto;
  text-align: start;
}

.banner-content-sec .second-head {
  font-size: 18px;
  line-height: 28px;
  max-width: 797px;
}

.banner-content-sec .second-head.home p {
  /* font-size: 1rem; */
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
}

.banner-content-sec .second-head.home::-webkit-scrollbar {
  width: 8px;
}

.banner-content-sec .second-head.home::-webkit-scrollbar-thumb {
  background-color: #fd7e14;
  border-radius: 4px;
}

.banner-content-sec .second-head.home::-webkit-scrollbar-thumb:hover {
  background-color: #0dcaf0;
  border-radius: 4px;
}

.banner-content-sec .second-head.home::-webkit-scrollbar-track {
  background: #fff;
}

/* ending section css */

/* starting main css */

.page-container {
  margin: auto;
  max-width: 1000px;
  padding-bottom: 25px;
  padding-top: 25px;
}

.page-container h2 {
  font-size: 36px;
  margin-bottom: 50px;
  margin-top: 20px;
  position: relative;
}

.page-container h2:after {
  background: url("img/underline-curv.b233fbf5251b9b8c111e.svg") no-repeat center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: 5px;
  bottom: -23px;
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 170px;
}

.translationSection ul {
  grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.page-container ul {
  font-weight: 300;
  line-height: 1.9rem;
  list-style: circle;
  margin: 20px 0;
}

.translationSection ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px #eee;
  max-width: 100%;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.translationSection .css-hboir5 {
  display: block;
  width: 100%;
}

.css-hboir5 {
  align-items: center;
}

.logo-maker-page p {
  font-weight: 100;
}

p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9rem;
  /* margin: 1.1rem 0; */
}

.logo-maker-page .css-1hnxo7a {
  margin-right: 0;
}

.translationSection .css-1hnxo7a {
  align-items: center;
  display: inline-block;
  justify-content: center;
  position: relative;
  width: 65px;
}

.translationSection .css-1hnxo7a img {
  width: 100%;
}

.css-1hnxo7a {
  margin-bottom: 10px;
}

.logo-maker-page .css-195k0gj {
  padding-left: 0;
}

.translationSection .css-9f6g39 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5rem;
}

.translationSection .css-itvw0n {
  font-size: 0.8rem;
  height: 5rem;
  line-height: normal;
  margin: 5px 0 0;
  overflow: auto;
}

.css-itvw0n {
  font-weight: 100 !important;
}

.translationSection .css-itvw0n p {
  font-weight: 300;
}

.translationSection .css-itvw0n::-webkit-scrollbar {
  width: 9px;
}

.translationSection .css-itvw0n::-webkit-scrollbar-thumb {
  background-color: #fd7e14;
  border-radius: 4px;
}

.translationSection .css-itvw0n::-webkit-scrollbar-thumb:hover {
  background-color: #0dcaf0;
  border-radius: 4px;
}

.translationSection .css-itvw0n::-webkit-scrollbar-track {
  background: #fff;
}

.translationSection.Videosec ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.translationSection.Videosec .css-1hnxo7a {
  width: 100%;
}

.translationSection.Videosec .css-1hnxo7a img {
  width: 100%;
}

.logo-maker-page .css-1hnxo7a {
  margin-right: 0;
}

.logo-maker-page .css-195k0gj {
  padding-left: 0;
}

.translationSection .css-9f6g39 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5rem;
}

li {
  transition: transform 0.3s ease-in-out;
}

li:hover {
  transform: scale(1.1);
  z-index: 10;
}

.translationSection {
  position: relative;
  /* overflow: hidden; */
}

.voiceSection ul {
  grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.voiceSection ul li {
  transition: all 0.2s ease-in-out;
}

.voiceSection ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px #eee;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.voiceSection .css-hboir5 {
  display: block;
  width: 100%;
}

.voiceSection .css-1hnxo7a {
  align-items: center;
  display: inline-block;
  /* justify-content: center; */
  position: relative;
  width: 50px;
}

.voiceSection .css-1hnxo7a img {
  width: 100%;
}

.logo-maker-page .voiceSection .css-195k0gj {
  padding-left: 0;
}

.voiceSection .css-9f6g39 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
}

.voiceSection .css-itvw0n {
  font-weight: 100;
  font-size: 0.8rem;
  line-height: normal;
  margin: 5px 0 0;
}

.fileSection ul {
  grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.fileSection ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px #eee;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.fileSection ul li {
  padding: 20px;
}

.fileSection .css-hboir5 {
  display: block;
  width: 100%;
}

.fileSection .css-1hnxo7a {
  align-items: center;
  display: inline-block;
  /* justify-content: center; */
  position: relative;
  width: 50px;
}

.fileSection .css-9f6g39 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
}

.fileSection .css-itvw0n {
  font-size: 0.8rem;
  line-height: normal;
  margin: 5px 0 0;
}

.css-9f6g39 {
  color: rgb(77, 75, 75);
  font-weight: bold;
}

.imageSection.others ul {
  grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.imageSection ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px #eee;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  padding: 20px;

  transition: all 0.2s ease-in-out;
  text-align: center;
}

.imageSection .css-hboir5 {
  display: block;
  width: 100%;
}

.imageSection .css-1hnxo7a {
  align-items: center;
  display: inline-block;
  justify-content: center;
  position: relative;
  width: 50px;
}

.imageSection .css-1hnxo7a img {
  width: 100%;
}

.imageSection .css-itvw0n {
  font-size: 0.8rem;
  line-height: normal;
  margin: 5px 0 0;
}

.imageSection .css-9f6g39 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
}

.logo-maker-page .css-195k0gj {
  padding-left: 0;
}

.button.green {
  padding: 10px 28px;
  background: linear-gradient(90deg, #01d5f5, #52df84);
  color: #fff;
}

.button {
  /* background: linear-gradient(90deg, #ddd, #ccc); */
  border: none;
  border-radius: 5px;
  /* color: #fff; */
  font-weight: 400;
  line-height: normal;
  padding: 10px 20px;
  transition: all 0.2s ease-in-out;
}

.imageSection ul {
  grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.imageSection ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px #eee;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.pdfSection ul {
  grid-gap: 1rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.pdfSection ul {
  margin: 0;
}

.pdfSection ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px #eee;
  font-weight: 700;
  max-width: 100%;
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.pdfSection .css-hboir5 {
  display: block;
  width: 100%;
}

.pdfSection .css-1hnxo7a {
  align-items: center;
  display: inline-block;
  /* justify-content: center; */
  position: relative;
  width: 50px;
}

.pdfSection img {
  width: 70% !important;
}

main .bottom-line-theme {
  background: linear-gradient(
    60deg,
    #ffbd00 10%,
    #f9132f 20%,
    #7535e7 40%,
    #01d5f5 60%,
    #01d5f5 0,
    #52df84
  );
  height: 6px;
  margin-bottom: 50px;
  width: 100%;
}

footer {
  font-size: 1rem;
  font-weight: 300;
}

/* footer .row {
    align-items: center;
    display: flex;
    margin: auto;
} */

footer .row {
  /* align-items: center; */
  display: flex;
  margin: auto;
}

.col-lg-12 {
  flex: 0 0 auto;
  width: 100% !important;
}

.col-lg-3 {
  flex: 0 0 auto;
  width: 25% !important;
}

.col-lg-2 {
  flex: 0 0 auto;
  width: 13% !important;
}

footer h6 {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: left;
}

footer .footer-right-links ul {
  align-items: flex-end;
  display: block;
  line-height: 36px;
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.footer-right-links li {
  border-bottom: 1px solid #eaeaea;
  line-height: 18px;
  padding: 5px 0;
}

.footer-right-links li a {
  font-size: 13px;
}

a,
a:hover {
  color: #404040;
  text-decoration: none;
}

footer .footer-right-links {
  justify-content: space-around;
  display: flex;
}

footer ul {
  display: inline-flex;
  gap: 10px;
}

footer .footer-links {
  text-align: center;
  opacity: 1;
}

.footer-links li {
  list-style: none;
}

.footer-links ul li a {
  font-size: 15px;
}

.center p {
  text-align: center;
  font-weight: 100;
  margin-bottom: 50px;
}

.footer-right-links li:hover {
  transform: none;
  z-index: auto;
}

hr {
  border: 0;
  border-top: var(--bs-border-width) solid;
  color: inherit;
  margin: 1rem 0;
  opacity: 0.25;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 0px;
}

.social-icon img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
}

.row .icon {
  width: 3%;
  margin: 0% !important;
  padding-bottom: 20px;
}

.footer-links {
  margin-top: 10px;
  font-size: 14px;
}

.footer-links a {
  text-decoration: none;
  color: #888888;
  font-size: 12px;
  margin: 0 5px;
}

.copyright {
  margin-top: 10px;
  font-size: 14px;
  color: gray;
}

ul.socialMediaLst li:first-child a {
  color: #0077b5;
}
