/* Google Font Linkings */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Satisfy&display=swap");

:root {
  /* --primary: #FF914D; */
  --primary: #f57c00;
  --secondary: #fff;
  --dark: #252525;
  --danger: #d63031;
  --success: #00b894;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

#cms {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  background: var(--secondary);
  max-width: 100%;
  overflow-x: hidden;
}

body > h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 90px 10px 10px;
  color: var(--primary);
}

/* Navbar Design */
nav {
  background: transparent;
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 100;
  transition: all 0.5s ease;
}

nav.active {
  justify-content: space-between;
  background: var(--secondary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

nav .brand {
  height: 100%;
  margin-left: 10px;
  display: none;
  justify-content: center;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
}

nav.active .brand {
  display: flex;
}

nav .brand img {
  width: auto;
  height: 50px;
  object-fit: fit;
}

nav .brand p {
  font-size: 1.4rem;
  font-weight: 600;
}

nav .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

nav .nav-links li {
  list-style: none;
  position: relative;
  margin-right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.5s ease;
}

nav .nav-links li a,
nav .nav-links li span {
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.1rem;
  padding: 10px 0;
  display: block;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

nav.active .nav-links li a,
nav.active .nav-links li span {
  color: var(--dark);
}

nav .nav-links li .course-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100px;
  background-color: var(--secondary);
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 100;
}

nav .nav-links li .course-dropdown li {
  margin: 10px 0;
}

nav .nav-links li .course-dropdown li a {
  padding: 10px 20px;
  font-size: 1rem;
}

nav .nav-links li.dropdown:hover .course-dropdown {
  top: 70px;
  opacity: 1;
  visibility: visible;
}

nav .nav-links li a::after,
nav .nav-links li span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

nav .nav-links li a:hover,
nav .nav-links li span:hover,
nav .nav-links > li > a.active,
nav .nav-links > li > span.active {
  color: var(--primary);
}

nav .nav-links li a:hover::after,
nav .nav-links li span:hover::after,
nav .nav-links > li > a.active::after,
nav .nav-links > li > span.active::after {
  width: 50%;
}

nav #toggle-btn {
  display: none;
  margin-right: 20px;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

nav #toggle-btn span {
  width: 30px;
  height: 2px;
  background-color: var(--primary);
  display: block;
  margin: 10px 0;
  transition: all 0.3s ease;
}

nav #toggle-btn.active span {
  margin: 0;
}

nav #toggle-btn.active span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}

nav #toggle-btn.active span:nth-child(2) {
  opacity: 0;
}

nav #toggle-btn.active span:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}

nav #toggle-btn:hover {
  color: var(--dark);
}

@media (max-width: 768px) {
  nav {
    height: 60px;
    width: 100%;
  }

  nav #toggle-btn {
    display: block;
  }

  nav .brand img {
    height: 40px;
  }

  nav .brand p {
    font-size: 1.2rem;
  }

  nav .nav-links {
    flex-direction: column;
    position: absolute;
    top: -2000px;
    left: 0;
    width: 100%;
    background-color: var(--secondary);
    transition: all 0.5s ease;
    z-index: 101;
  }

  nav .nav-links li {
    margin: 10px 0;
  }

  nav .nav-links li a,
  nav .nav-links li span {
    font-size: 1rem;
    color: var(--dark);
  }

  nav .nav-links.active {
    top: 58px;
  }

  nav .nav-links li.dropdown:hover .course-dropdown,
  nav .nav-links li.dropdown .course-dropdown {
    position: relative;
    top: 0;
    min-width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    background-color: rgba(220, 220, 220);
    box-shadow: none;
  }

  nav .nav-links li.dropdown .course-dropdown.active {
    height: 100%;
  }

  nav .nav-links li.dropdown .course-dropdown li {
    margin: 10px 0;
  }

  nav .nav-links li.dropdown .course-dropdown li a {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* Home Text */
.home-text {
  background-color: rgba(18, 24, 32, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8rem 5rem 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.home-text p {
  font-size: 1.3rem;
  color: var(--secondary);
  margin: 2rem 0;
}

.home-text p span {
  color: var(--primary);
}

.home-text h1 {
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--secondary);
  margin: 2rem 0;
}

.home-text h1 span {
  color: var(--primary);
  font-size: 4rem;
  font-weight: 500;
  font-family: Satisfy, cursive;
}

.home-text .cta-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.home-text .cta-contact a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.2rem;
  word-wrap: normal;
  padding: 15px 40px;
  margin: 1rem 2rem;
  border-radius: 35px;
  border: 2px solid var(--primary);
  transition: all 0.5s ease;
}

.home-text .cta-contact a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.home-text .cta-contact p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 2rem 1rem;
}

/* Contact Form */
.contact {
  width: 100%;
  height: auto;
  padding: 5rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(180deg, #181e26 0, #121820 100%);
  color: var(--secondary);
}

.contact h2 span {
  color: var(--primary);
}

.contact .btn-group {
  width: 100%;
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .btn-group button {
  padding: 1.5rem;
  border-radius: 4rem;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark);
}

.contact .input-fields {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.contact .input-fields .text-input .input-grp {
  width: 100%;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
}

.contact .input-fields .text-input .input-grp label,
.contact .input-fields .text-input label {
  font-size: 1rem;
  font-weight: 500;
}

.contact .input-fields .text-input .input-grp label span,
.contact .input-fields .text-input label span {
  color: var(--danger);
}

.contact .input-fields .text-input {
  width: 45%;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
}

.contact .input-fields .text-input textarea,
.contact .input-fields .text-input .input-grp input {
  width: 100%;
  padding: 1rem 0;
  border: none;
  outline: none;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  background: none;
  font-family: 'Poppins', sans-serif;
  resize: none;
}

.contact .input-fields .text-input textarea {
  min-height: 100px;
}

.contact .input-fields .text-input textarea:focus,
.contact .input-fields .text-input .input-grp input:focus {
  border-bottom: 2px solid var(--primary);
}

@media (max-width: 768px) {
  .contact {
    padding: 2rem;
  }

  .contact .input-fields .text-input {
    width: 100%;
  }
}

/* Forms Design */
.form {
  width: min(90%, 500px);
  height: auto;
  background-color: var(--secondary);
  margin: 15px auto;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
}

.input-group {
  width: 100%;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--dark);
}

.input-group label span {
  color: var(--danger);
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: #ccc;
}

.input-group textarea {
  resize: none;
  min-height: 100px;
}

.input-group img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.input-group .error {
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}

.input-group .checkbox-group {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 15px;
  cursor: pointer;
}

.input-group .checkbox-group label {
  margin-left: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
}

.input-group .checkbox-group label input {
  margin-right: 5px;
}

.btn-group {
  width: 100%;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-group button {
  width: 100%;
  padding: 10px;
  margin: 0 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--primary);
  color: var(--secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-group button:hover {
  opacity: 0.8;
}

/* WHatsapp Button */
.wa-container {
  position: absolute;
}

.wa-container span {
  position: fixed;
  bottom: 30px;
  right: -900px;
  width: 160px;
  height: 35px;
  background-color: #25d366;
  color: #fff;
  border-radius: 35px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 35px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: all 0.3s ease;
}

.wa-container span.active {
  right: 90px;
}

.wa-container span i {
  margin: 0 10px;
  animation: lrmove 1s ease-in-out infinite;
}

@keyframes lrmove {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

.wa-container span:hover {
  transform: scale(1.1);
}

#wa-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: all 0.3s ease;
}

#wa-btn i {
  line-height: 60px;
}

#wa-btn:hover {
  transform: scale(1.1);
}

/* Footer Design */
footer {
  width: 100%;
  color: var(--secondary);
  background: linear-gradient(180deg, #181e26 0, #121820 100%);
  position: relative;
}

footer .footer-content {
  width: 100%;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

footer .footer-item {
  display: flex;
}

footer .footer-item li {
  list-style: none;
  margin: 0 10px;
}

footer .footer-item li a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.2rem;
  transition: all 0.5s ease;
}

footer .footer-item.social-links li a {
  font-size: 1.5rem;
}

footer .footer-item li a:hover {
  color: var(--primary);
}

footer .copy {
  min-width: 100%;
  padding: 20px 10px 80px;
  color: var(--secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .copy p {
  font-size: 1rem;
}

footer .copy p a {
  text-decoration: none;
  color: var(--secondary);
}

footer .line {
  width: 90%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}

footer .line::after,
footer .line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 2px;
  background-color: var(--primary);
}

footer .line::after {
  left: -35px;
}

footer .line::before {
  right: -35px;
}

@media (max-width: 768px) {
  footer {
    padding: 2rem;
  }

  footer .footer-content {
    margin-bottom: 10px;
  }

  footer .footer-item {
    width: 100%;
    margin: 10px 0;
    justify-content: center;
  }

  footer .footer-item.important-links {
    flex-direction: column;
    align-items: center;
  }

  footer .footer-item li {
    margin: 10px 10px;
  }

  footer .footer-item li a {
    font-size: 1.2rem;
  }

  footer .footer-item.social-links li a {
    font-size: 1.5rem;
  }

  footer .copy {
    flex-direction: column;
    gap: 10px;
    padding: 20px 10px 60px;
  }

  footer .copy p {
    font-size: 1rem;
  }

  footer .line {
    width: 80%;
  }
}

section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 10px;
  text-align: center;
}

/* Swiper Style */
.courses {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.courses .courses-slide {
  min-width: min(250px, 90%);
  height: 200px;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px,
    rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
  text-decoration: none;
  color: #222222;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.courses .courses-slide .icon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  transition: all 0.5s ease-in-out;
}

.courses .courses-slide .text {
  font-size: 1.5rem;
  font-weight: 600;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}

.courses .courses-slide:hover .icon {
  width: 300px;
  height: 300px;
  border-radius: 0;
}

.courses .courses-slide:hover .text {
  transform: scale(1.1);
}

/* Team Details */
.our-team {
  width: 90%;
  margin: 20px auto;
  padding: 20px 0;
}

.team-member-container {
  display: flex;
  margin-top: 20px;
}

.team-member-container .team-member {
  min-width: 100%;
  padding: 10px;
  display: flex;
  gap: 25px;
  border-radius: 20px;
}

.team-member-container .team-member .image-container {
  width: min(90%, 300px);
  border-radius: 20px;
  background-color: #ff914c;
}

.team-member-container .team-member .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.team-member-container .team-member .info-container {
  width: 95%;
  background-color: #ff914cab;
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.team-member-container .team-member .info-container h3 {
  margin: 0;
  font-size: 1.75rem;
  color: #fff;
}

.team-member-container .team-member .info-container span {
  display: block;
  font-size: 1.25rem;
}

.team-member-container .team-member .info-container p {
  font-size: 0.9rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .team-member-container .team-member {
    flex-direction: column;
  }

  .team-member-container .team-member .image-container {
    width: 95%;
    height: 250px;
  }
}

/*Mou Details*/
.detail-Mou {
  max-width: 100%;
  height: 500px;
  text-align: center;
  background-image: url(../img/uploads/background-MOU.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}

.detail1-Mou {
  width: 100%;
  height: 100%;
  padding: 20px 20px 10px;
  background-color: rgba(0, 0, 0, 0.6);
}

.detail-Mou .mou-header {
  margin: 20px auto 0;
  width: min(100%, 500px);
}

.detail-Mou .mou-header p {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.2rem;
}

.detail-Mou .mou-header p.left {
  text-align: start;
}

.detail-Mou .mou-header p.right {
  text-align: end;
}

.detail-Mou .mou-header h1 {
  color: var(--primary);
  font-size: 2rem;
}

.content-Mou {
  display: flex;
  justify-content: center !important;
  margin-top: 60px;
  max-width: 100%;
}

.mou-img-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-width: 100vw !important;
  margin: 0 auto;
}

.mou-img-container .mou-img {
  height: 130px;
  margin: 0 auto;
}

.mou-img-container img {
  width: auto;
  max-width: 150px;
  height: 150px;
  background-color: var(--secondary);
  margin: 0 auto;
  object-fit: contain;
  border-radius: 10px;
}

/* Partnet Tile */
.partner {
  width: 100%;
  height: auto;
  background-image: url(../img/uploads/partner-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.partner .nsic h1 {
  color: white;
  text-align: center;
  padding: 10px;
}

.logo {
  display: flex;
  justify-content: center;
}

.bg-blur {
  width: 100%;
  padding: 25px 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.partner .nsic {
  color: white;
}

.partner .nsic img {
  width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Journey Style */
.journey-container {
  width: 100%;
  height: auto;
  overflow: hidden;
  text-align: center;
  background-image: url(../img/uploads/Journeybackground.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.journery-details {
  min-width: 100%;
  height: 100%;
  padding: 3rem 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.journery-details > span {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
}

.journery-details h1 {
  color: #ff914d;
  font-size: 2.2rem;
}

.journery-details .content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  margin: 20px auto;
}

.journery-details .content .j_count {
  width: min(90%, 300px);
  margin: 20px 10px;
}

.journery-details .content .j_count h2 {
  font-size: 2.2rem;
  color: #ff914d;
  margin-top: 10px;
}

.journery-details .content .j_count .title {
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  margin-top: 6px;
}

/* Message Pop Up */
#msg {
  width: min(90%, 500px);
  height: auto;
  padding: 10px;
  background-color: var(--secondary);
  color: var(--dark);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.3) -4px 0 25px -6px;
  transition: all 0.5s ease;
}

#msg.active {
  bottom: 20px;
}

#msg p {
  font-size: 0.9rem;
}

/* Contact Style */
.contact-container {
  max-width: 100%;
  padding: 2rem 1rem;
  margin: 10px 0 0;
  background-color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-container .contact-info,
.contact-container .google-map {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 0px 40px 0px;
  min-height: 520px;
}

.contact-container .contact-info {
  width: 100%;
  max-width: 500px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--primary);
}

.contact-container .contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.contact-container .contact-info .contact-details .contact-details-item {
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.contact-container .contact-info .contact-details .contact-details-item i {
  font-size: 1.5rem;
  margin-right: 10px;
  min-width: 3.5rem;
  min-height: 3.5rem;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--secondary);
}

.contact-container
  .contact-info
  .contact-details
  .contact-details-item
  .phone-number {
  display: flex;
  flex-wrap: wrap;
}

.contact-container .contact-info .contact-details .contact-details-item a {
  text-decoration: none;
  color: var(--secondary);
  font-size: 1.2rem;
  transition: all 0.5s ease;
}

.contact-container
  .contact-info
  .contact-details
  .contact-details-item
  a:hover {
  color: var(--dark);
}

.contact-container .google-map {
  width: 100%;
  max-width: 450px;
  padding: 0 1rem;
  background-color: var(--secondary);
}

.contact-container .google-map .location {
  margin: 12px;
}

.contact-container .google-map .location a {
  font-size: 1.2rem;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
}

.contact-container .google-map .location iframe {
  width: 100%;
  height: 180px;
  border-radius: 10px;
}

/* About us */
.about-container {
  width: 100%;
  padding: 25px 20px;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.about-container .about {
  width: min(90%, 400px);
  height: auto;
  padding: 20px;
  margin: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 10px 1px rgba(25, 35, 45, 0.1);
  position: relative;
}

.about-container .about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/logo.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.about-container .about h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
}

.about-container .about p {
  font-size: 1rem;
  text-align: center;
  padding: 0 10px;
  color: var(--secondary);
}

.about-container .about h2,
p {
  z-index: 2;
}

/* About page cards */
.card-container {
  width: min(100%, 700px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.card-container .card {
  width: min(300px, 90%);
  height: auto;
  min-height: 260px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px 5px rgba(25, 35, 45, 0.1);
  transition: all 0.5s ease;
}

.card-container .card:hover {
  transform: translateY(-5px) scale(1.01);
}

.card-container .card .icon i {
  width: 100%;
  height: 100%;
  font-size: 2.5rem;
  color: var(--primary);
}

.card-container .card .title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--primary);
  text-align: center;
}

.card-container .card .desc {
  font-size: 0.95rem;
  text-align: left;
  padding: 0 10px;
  color: var(--dark);
}

/* Testimonials Video Style */
.testimonials-section {
  margin: 40px 0;
}

.testimonials-section #yt-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.testimonials-section #yt-preview iframe {
  width: min(90%, 640px);
  aspect-ratio: 16/9;
  border: none;
}

.testimonials-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 10px;
  text-align: center;
  position: relative;
}

section h2 {
  position: relative;
}

.testimonials-section h2::after,
section h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: calc(25%);
  height: 2px;
  background-color: var(--primary);
  margin: 10px auto;
}

.testimonials-container {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  position: relative;
}

.testimonials-container a {
  width: min(90%, 400px);
  height: auto;
  aspect-ratio: 16/9;
  margin: 10px;
  position: relative;
  box-shadow: 0 0 10px 1px rgba(25, 35, 45, 0.1);
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.testimonials-container a:hover {
  transform: scale(1.01);
}

.testimonials-container a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.testimonials-container a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  text-align: center;
  line-height: 3.5rem;
  font-size: 1.5rem;
  border-radius: 50%;
  color: var(--primary);
  background-color: var(--secondary);
  opacity: 0.7;
  transition: all 0.5s ease;
}

@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);

/* Course Cards */
.course-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 80vh;
}

figure.snip1208 {
  color: #fff;
  position: relative;
  overflow: hidden;
  margin: 10px;
  width: min(300px, 90%);
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  box-shadow: 0 0 10px 1px rgba(25, 35, 45, 0.1);
}

figure.snip1208 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

figure.snip1208 img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  vertical-align: top;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

figure.snip1208 figcaption {
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

figure.snip1208 h3 {
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  color: #333333;
  text-transform: uppercase;
}

figure.snip1208 p {
  font-size: 0.75em;
  margin-bottom: 20px;
  line-height: 1.6em;
  text-align: justify;
  max-height: 100px;
  overflow-y: auto;
}

figure.snip1208 .more-text {
  display: none;
}

figure.snip1208 figcaption .readmore-btn {
  display: inline-block;
  font-size: 0.8em;
  color: var(--primary);
  border: none;
  background-color: transparent;
  cursor: pointer;
}

figure.snip1208 a {
  border: medium none;
  padding: 10px 20px;
  background-color: #1abc9c;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8em;
}

figure.snip1208:hover img,
figure.snip1208.hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

figure.snip1208:hover .date,
figure.snip1208.hover .date {
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

figure.snip1208:hover i,
figure.snip1208.hover i {
  -webkit-transform: rotateY(0);
  transform: rotateY(0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

figure.snip1208:hover a,
figure.snip1208.hover a {
  background-color: #117964;
}

/* certificate */
.verification-content {
  margin-top: 80px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.badge {
  position: relative;
  display: flex;
  justify-content: center;
}

.badge p {
  position: absolute;
  bottom: 10px;
  left: 120px;
  z-index: 2;
}

.badge img {
  width: 75%;
  height: auto;
  background-color: #ffffff;
  object-fit: contain;
  margin: 0 auto;
}

table {
  width: min(100%, 700px);
}

table,
th,
td {
  border: 1px black solid;
  border-collapse: collapse;
  padding: 10px;
}

.Verification-details {
  margin: 40px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .verification-content {
    flex-direction: column;
    align-items: center;
    justify-content: start;
  }
}

/* Department card */
/* Card Hover */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.dep-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px 0;
}

.card-hover {
  width: min(90%, 230px);
  height: 200px;
  position: relative;
  overflow: hidden;
  margin: 10px 20px;
  box-shadow: 0 0 32px -10px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.card-hover:hover .card-hover__content {
  height: 100%;
}

.card-hover .card-hover__link {
  font-size: 0.8rem;
  color: black;
}

.card-hover:hover img {
  transform: scale(1);
  transition: all 0.35s 0.1s ease;
}

.card-hover__content {
  color: black;
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ff914c;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: all 0.35s ease;
}

.card-hover__title {
  font-size: 1rem;
  margin-bottom: 1em;
}

.card-hover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
  transform: scale(1.2);
  transition: all 0.35s 0.35s cubic-bezier(0.1, 0.72, 0.4, 0.97);
}
