body {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Helvetica, sans-serif;
  overflow: auto;
}

html {
  scroll-behavior: smooth;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@import url("https://fonts.googleapis.com/css?family=Inter:500,700,400|Poppins:500");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.container {
  max-width: 90%;
  margin: auto;
  padding: 20px;
}

header {
  background: #001549;
  width: 100%;
  height: auto;
}

nav {
  height: 10vh;
  background-color: #001549;
  display: flex;
  align-items: center;
  width: 100%;
}

.logo a img {
  width: 162px;
  height: 27px;
}

nav .logo a {
  font-size: 1.5rem;
  text-decoration: none;
  display: flex;
  text-align: center;
  margin: 0 10px;
}

nav .nav-links {
  list-style: none;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 33px;
}

.nav-links li {
  display: inline-block;
}

nav .nav-links li a {
  color: #fff;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  /* 175% */
}

@media only screen and (max-width: 768px) {
  .container {
    max-width: 100%;
  }

  nav {
    position: relative;
    display: block;
  }

  .logo {
    height: 10vh;
    display: flex;
    align-items: center;
  }

  .logo a {
    text-align: center;
  }

  nav .menuIcon {
    position: absolute;
    cursor: pointer;
    top: 30%;
    right: 5%;
  }

  nav .menuIcon .line {
    width: 30px;
    margin: 5px 0;
    height: 3px;
    background-color: white;
  }

  nav .menuIcon .line:nth-child(1).open {
    transform: rotate(45deg);
    width: 40px;
    height: 5px;
    top: 16px;
    transition: all 0.5s ease;
  }

  nav .menuIcon .line:nth-child(2).open {
    opacity: 0;
  }

  nav .menuIcon .line:nth-child(3).open {
    transform: rotate(-45deg);
    width: 40px;
    height: 5px;
    transition: all 0.5s ease;
  }

  nav .nav-links {
    margin-top: -10px;
    padding: 0;
    width: 100%;
    background-color: rgba(0, 21, 73, 0.82);
    display: flex;
    align-items: center;
    flex-direction: column;
    clip-path: circle(50px at 90% -10%);
    transition: all 0.5s ease-out;
    font-family: "Inter", Helvetica, sans-serif;
    font-size: 22px;
    letter-spacing: 6.6px;
  }

  .nav-links li {
    margin: 10px 0;
    opacity: 0;
  }

  nav .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    height: 100vh;
  }

  .nav-links li a {
    font-size: 25px;
  }

  .nav-links li:nth-child(1) {
    transition: all 0.5s ease 0.2s;
  }

  .nav-links li:nth-child(2) {
    transition: all 0.5s ease 0.4s;
  }

  .nav-links li:nth-child(3) {
    transition: all 0.5s ease 0.6s;
  }

  .nav-links li:nth-child(4) {
    transition: all 0.5s ease 0.8s;
  }

  li.fade {
    opacity: 1;
  }

  .logo.close {
    visibility: hidden;
  }

  .flex-section {
    flex-direction: column-reverse;
  }

  .flex-section .text,
  .flex-section .profile {
    width: 100%;
  }

  .frame-5 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 1260px) {
  .frame-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    /* Flexible columns */
    gap: 20px;
    /* Add spacing between grid items */
  }
}

@media only screen and (min-width: 1024px) {
  .hero-banner {
    height: 400px;
    background: #001549;
  }

  .flex-section .text {
    width: 50%;
    color: white;
  }

  .flex-section .image {
    width: 50%;
    text-align: right;
  }
}

.hero-banner {
  background: #001549;
}

.flex-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: -100px;
}

.flex-section .text {
  color: white;
  text-align: left;
  margin-top: 60px;
}

.flex-section .image {
  text-align: right;
  margin-top: 60px;
  margin-right: 120px;
}

.flex-section img {
  max-width: 100%;
  height: auto;
}

.flex-section h2 {
  font-size: 40px;
  font-weight: 700;
}

.flex-section .sub {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  padding: 0 !important;
}

.flex-section p {
  font-size: 20px;
  padding: 0.5px 0;
  color: rgba(255, 255, 255, 0.8);
}

.flex-section p b {
  font-weight: 700;
  color: white;
}

.frame-section {
  display: flex;
  justify-content: flex-start;
}

.frame-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  /* Ensure wrapping on smaller screens */
}

.frame-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
}

.frame-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  /* Slight hover effect */
}

.arrow-icon {
  font-size: 14px;
  display: inline-block;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .frame-link {
    font-size: 14px;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .frame-container {
    gap: 10px;
    /* Narrower gap for very small screens */
  }

  .frame-link {
    padding: 6px 10px;
    font-size: 12px;
  }
}

.subhead {
  color: #0033b6;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 6.6px;
  text-transform: uppercase;
  text-align: center;
}

.primary-text {
  color: #001549;
  text-align: justify;
  font-size: 25px;
  font-weight: 500;
  line-height: 40px;
  /* 130% */
  letter-spacing: -0.8px;
}

@media only screen and (max-width: 768px) {
  .primary-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 1px;
  }
}

.secondary-text {
  color: rgba(0, 21, 73, 0.54);
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: -0.8px;
}

@media only screen and (max-width: 768px) {
  .secondary-text {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 1px;
  }
}

.richtext {
  padding: 40px 0;
}

.slider {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  animation: slideIn 0.5s ease-out;
  position: relative;
  width: 60%;
  margin-top: 20px;
  border-radius: 20px;
  background: #f7f7f9;
  padding: 16px 12px 25px 23px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slider-content {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: slideIn 0.5s ease-out;
}

.slider-content img {
  border-radius: 8px;
  animation: slideIn 0.5s ease-out;
}

.slider-content video {
  border-radius: 8px;
  animation: slideIn 0.5s ease-out;
}

.slider-text {
  flex: 1;
  animation: slideIn 0.5s ease-out;
}

.slider-text h3 {
  color: #001549;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  /* 128.571% */
  letter-spacing: -0.56px;
  animation: slideIn 0.5s ease-out;
}

.slider-text p {
  padding: 10px 0;
  color: rgba(0, 21, 73, 0.57);
  font-size: 16px;
  font-weight: 500;
  animation: slideIn 0.5s ease-out;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Space between icon and text */
  padding: 10px 20px;
  /* Adjust padding for better spacing */
  background-color: #142a5c;
  /* Button background */
  color: white;
  /* Text color */
  text-decoration: none;
  /* Remove underline */
  font-size: 16px;
  /* Font size */
  font-weight: 500;
  border-radius: 28px;
  /* Rounded corners */
  transition: background-color 0.3s ease, transform 0.2s ease;
  /* Smooth hover effect */
}

.read-more:hover {
  background-color: #1e3b8b;
  /* Darker background on hover */
  transform: scale(1.05);
  /* Slight zoom on hover */
}

.read-more svg {
  flex-shrink: 0;
  /* Prevent SVG from shrinking */
  transition: stroke 0.3s ease;
  /* Smooth color change */
}

.read-more:hover svg path {
  stroke: #ffffff;
  /* Change icon color on hover */
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
  .read-more {
    font-size: 14px;
    /* Adjust font size for smaller screens */
    padding: 8px 16px;
    /* Adjust padding for smaller screens */
  }

  .slider {
    display: block;
  }
}

.slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 20px auto;
  flex-wrap: wrap;
}

.slider-buttons {
  position: relative;
  /* Relative positioning */
  display: flex;
  /* Use flexbox to align */
  justify-content: space-between;
  /* Align buttons to left and right */
  width: 100%;
  margin-top: 20px;
  /* Adjust spacing */
}

.slider-buttons button {
  pointer-events: auto;
  /* Enable button interaction */
  background: rgba(0, 0, 0, 0.6);
  /* Button background */
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
}

.slider-buttons button:hover {
  background-color: #2593da;
  /* Change color on hover */
  /* Slight zoom effect on hover */
}

.slider-buttons button:active {
  background-color: #007bff;
  /* Darker color on click */
  transform: scale(0.95);
  /* Slight press effect */
}

.prev-button {
  position: relative;
  /* Precisely position the button */
  left: 100px;
  /* Adjust distance from the left */
  top: -340px;
  /* Vertically center */
}

.next-button {
  position: relative;
  /* Precisely position the button */
  right: 100px;
  /* Adjust distance from the right */
  top: -340px;
}

.slider-buttons button svg {
  transition: fill 0.3s ease, transform 0.2s ease;
}

.slider-buttons button svg path {
  fill: white;
  /* Default fill color */
  transition: fill 0.3s ease;
  /* Smooth color transition */
}

.slider-buttons button:hover {
  /* Slight zoom on hover */
  background-color: #2593da;
  /* Change button background */
}

.slider-buttons button:hover svg path {
  fill: white;
  /* Change SVG fill color on hover */
}

@media only screen and (max-width: 768px) {
  .slider-content {
    flex-direction: column;
  }

  .slider-content img {
    width: 100%;
  }

  .slider-content video {
    width: 100%;
  }
}

.achievement-text {
  padding: 40px 0;
}

.achievements {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}

.achievement {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.achievement h3 {
  color: #001549;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.achievement p {
  color: #001549;
  font-size: 24px;
  font-weight: 400;
}

.reviewing-history {
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}

.reviewing-history h2 {
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 6.6px;
}

.review-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media only screen and (max-width: 768px) {
  .review-buttons {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.review-button {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(255, 255, 255, 0.08);
  background-color: #142a5c;
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
}

.review-button:hover {
  background-color: #1e3b8b;
  transform: scale(1.05);
}

.reviewing {
  padding: 100px 250px;
  background: #001549;
}

@media only screen and (max-width: 320px) {
  body {
    width: 320px;
  }
}

@media only screen and (max-width: 768px) {
  .reviewing {
    padding: 0px;
  }

  .course-icon {
    margin-bottom: 10px;
  }
}

.teaching-experience {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}

.teaching-experience h2 {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: #142a5c;
}

.course {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px 20px 9px;
  margin-bottom: 15px;
  border-radius: 20px;
  background: #f7f7f9;
}

.course:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.course-icon {
  border-radius: 10px;
  background: #202060;
  width: 86px;
  height: 93px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin-right: 20px;
}

.course-details {
  flex: 1;
  text-align: left;
}

.course-details h3 {
  margin: 0;
  color: #001549;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 119.698%;
  /* 23.94px */
  letter-spacing: -0.4px;
}

.course-details p {
  font-size: 14px;
  color: #001549;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 119.698%;
  /* 16.758px */
  letter-spacing: -0.28px;
}

.course-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #001549;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 119.698%;
  /* 21.546px */
  letter-spacing: -0.36px;
}

.course-stats span {
  font-weight: bold;
}

.course-stats svg {
  width: 18px;
  height: 18px;
  fill: #142a5c;
}

@media only screen and (max-width: 768px) {
  .course {
    flex-direction: column;
    align-items: flex-start;
  }

  .course-stats {
    justify-content: space-between;
    width: 100%;
  }
}

.teach {
  padding: 50px 80px;
}

.course-stats svg {
  width: 39px;
  height: 39px;
}

@media only screen and (max-width: 768px) {
  .teach {
    padding: 30px 0px;
  }

  .course.open>div.course-details>p,
  h3 {
    text-align: center;
  }

  #teaching>div.container>div>div.course-details>p {
    text-align: center;
  }
}

.course {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: #f7f7f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.course-icon {
  border-radius: 10px;
  background: #202060;
  width: 86px;
  height: 93px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.course-details {
  flex: 1;
  text-align: left;
  margin-left: 15px;
}

.course-details h3 {
  margin: 0;
  color: #001549;
  font-size: 20px;
  font-weight: 700;
}

.course-details p {
  margin: 5px 0 0;
  color: #001549;
  font-size: 14px;
}

.course-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: #001549;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.course-content {
  display: none;
  padding: 15px;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  animation: slideDown 0.5s ease-out;
}

/* Active state for expanded course content */
.course.open+.course-content {
  display: block;
}

.course.open .arrow-icon {
  transform: rotate(180deg);
}

.unique-slider-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
  /* Prevent overflow on the right side */
  position: relative;
  padding: 0 15px;
  box-sizing: border-box;
}

.unique-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.unique-blog-card {
  height: 400px;
  flex: 0 0 calc(33.333% - 20px);
  /* 3 cards in a row */
  margin: 10px;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Space out content evenly */
}

.unique-blog-card img {
  border-radius: 30px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.unique-content {
  padding: 15px;
}

.unique-slider h3 a {
  color: black;
}

.unique-date {
  font-size: 12px;
  color: #888888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.unique-blog-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  color: #333333;
}

.unique-tags {
  font-size: 12px;
  margin-top: 10px;
}

.unique-tags a {
  color: #0033b6;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-transform: uppercase;
  padding: 5px 0;
  margin-right: 8px;
}

.unique-tags a:hover {
  text-decoration: underline;
}

.unique-slider-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.unique-slider-arrow {
  background-color: white;
  color: rgb(0, 0, 0);
  border: 1px solid #2593da;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin: 0 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.unique-slider-arrow:hover {
  background-color: #2593da;
  color: white;
}

@media (max-width: 768px) {
  .unique-blog-card {
    flex: 0 0 100%;
  }

  .unique-slider-container {
    padding: 0 10px;
  }
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  font-family: Arial, sans-serif;
  padding: 40px 0px;
}

.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 600px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2575fc;
  outline: none;
}

.contact-form textarea {
  resize: none;
  height: 100px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background: #001549;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background: #1a5bbf;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 187px;
  background: black;
}

.footer {
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 6.6px;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .footer {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .footer {
    font-size: 18px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 900px) {
  .slider {
    width: 100%;
    padding: 20px;
    flex-direction: column;
  }

  .prev-button {
    left: 0px;
  }

  .next-button {
    right: 0px;
  }

  .slider-buttons {
    top: 350px;
  }
}

.wraper {
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.wraper p {
  text-align: left;
}

#response-message {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}