* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #ffff;
}

header {
  background-color: #1C2F4C;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem;
  padding-right: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: auto;
  align-items: left;
}

.country-list {
  text-align: center;
  background-color: #fff;
  color: #1C2F4C;
  padding: 0.5rem;
  font-weight: bold;
  font-size: 1rem;
}

.nav-links {
  list-style: none;
  font-size: 18px;
  font-weight: bolder;
  display: flex;
}

.nav-links li a {
  background-color: #1C2F4C;
  border: none;
  color: #ffff;
  padding: 16px 20px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 10px;
}

.nav-links li a:hover {
  background-color: #fff;
  color: #1C2F4C;
}

.hero {
  background: url('images/People/mksg.jpg') center/cover no-repeat;
  color: white;
  height: 100vh;
  padding: 2rem 2rem;
  text-align: center;
  overflow: visible;
  animation: fadeIn 1s ease forwards;

}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 7rem;
  border-radius: 10px;
  animation: fadeIn 1s ease forwards;

}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero p,
.hero2 p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hero h2,
.hero2 h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero1 {
  background: url('images/People/book.JPG') center/cover no-repeat;
  color: white;
  padding: 1rem 1rem;
  text-align: center;
  animation: fadeIn 1s ease forwards;

}

.hero1 .overlay1 {
  background-color: rgba(0, 0, 0, 0.5);
  /* black transparent */
  padding: 10rem;
  border-radius: 10px;
  animation: fadeIn 1s ease forwards;

}

.hero1 h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero1 p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}


.hero2 {
  background: url('images/People/service.jpg') center/cover no-repeat;

  background-size: 100%;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
  animation: fadeIn 1s ease forwards;

}

.hero2 .overlay2 {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 7rem;
  border-radius: 10px;
  animation: fadeIn 1s ease forwards;

}

.hero2 h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero2 p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}


.cta-button1,
.cta-button2,
.cta-button3,
.cta-button4,
.cta-button5 {
  display: inline-block;
  width: 50px;
  height: 50px;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  margin: 0 0.1rem;
  transition: all 0.3s ease;
}

hr {
  border: 2px solid black;
  width: 95%;
  margin: 20px auto;
}


.cta-button1 {
  background-color: #25D366;
}


.cta-button2 {
  background-color: #D62976;
}


.cta-button3 {
  background-color: #0077B5;
}


.cta-button4 {
  background-color: #1877F2;
}

.cta-button5 {
  background-color: #218838;
}

.cta-button1:hover,
.cta-button2:hover,
.cta-button3:hover,
.cta-button4:hover,
.cta-button5:hover {
  background-color: #fff;
  color: #1C2F4C;
  transform: translateY(-10px);
}

.call-wrapper {
  position: relative;
  display: inline-block;
}

.phone-number {
  visibility: hidden;
  background-color: #fff;
  color: #1C2F4C;
  padding: 10px 10px;
  border-radius: 6px;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.call-wrapper:hover .phone-number {
  visibility: visible;
  opacity: 1;
}


.services {
  padding: 0rem 2rem;
  margin-bottom: 1rem;
  background-color: #fff;
  color: #1C2F4C;
  text-align: center;

}

.services h2 {
  font-size: 2.5rem;
  padding: 0rem 1rem;
  margin-bottom: 2rem;
  color: #1C2F4C;
}

.services h3 {
  font-size: 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;

}

.service-card {
  background-color: #e7e4de;
  padding: 0rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #1C2F4C;
  font-size: 1.4rem;
}

.service-card a {
  color: #1C2F4C;
}


.hamburger {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.form-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem;
}

.form-container iframe {
  width: 100%;
  height: 1000px;
  border: none;
}

.about-section {
  background-color: #f4f4f4;
  padding: 4rem 2rem;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-section h2 {
  color: #1C2F4C;
  font-weight: bolder;
  font-size: 3rem;
  align-content: center;

}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 0.3rem 0.3rem;
  color: #1C2F4C;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1C2F4C;
}

.about-text p {
  font-size: 1.11rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1;
  min-width: 250px;
  padding-right: 1%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 2);
}

.about-section a {
  color: #1C2F4C;
}

.success-section {
  background-color: #fff;
  padding: 4rem 2rem;
  text-align: center;
  cursor: pointer;
}

.success-text p {
  color: #1C2F4C;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.success-section h2 {
  font-size: 2.5rem;
  color: #1C2F4C;
  margin-bottom: 2rem;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;

}

.success-card {
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  transition: transform 0.3s ease;


}

.success-card:hover {
  transform: translateY(-10px);

}

.success-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.success-card h3 {
  font-size: 1.2rem;
  color: #1C2F4C;
  margin-bottom: 0.5rem;
}

.success-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

.team-horizontal {
  padding: 60px 20px;
  background: #f2f2f2;
  text-align: center;
}

.team-horizontal h2 {
  font-size: 3rem;
  margin-bottom: 40px;
  color: #1C2F4C;
}

.team-card-horizontal {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin: 20px auto;
  max-width: 1000px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card-horizontal:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.team-card-horizontal img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
  border: 3px solid #ddd;
}

.team-info {
  text-align: left;
}

.team-info h3 {
  font-size: 2.5rem;
  padding: 0rem 4rem;
  margin-bottom: 5px;
  color: #1C2F4C;
}

.team-info p {
  font-size: 2rem;
  padding: 0rem 4rem;
  color: #555;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.8%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-wrappersq {
  position: relative;
  width: 100%;
  padding-top: 100%;
  height: 0;
  overflow: hidden;
}

.video-wrappersq iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.success-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.video-box {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  overflow: hidden;
  cursor: pointer;
}

.video-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 12px #000;
  pointer-events: none;
}

.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background-color: #1C2F4C;
  color: white;
  text-align: center;
  padding: 1.5rem;
  font-size: 20px;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 800px) {
  .hamburger {
    display: block;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: left;
  }

  .about-image {
    max-width: 90%;
  }

  .country-list {
    font-size: 0.8rem;
  }


  .nav-links {
    flex-direction: column;

    position: fixed;
    top: 0;
    left: 0;
    /* height: 45%;
    width: 45%; */
    padding: 5%;
    background-color: #1C2F4C;
    opacity: 80%;


    transform: translateX(-100%);
    transition: transform 0.35s ease;

    padding-top: 60px;
    text-align: left;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li a {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    border-radius: 10;
  }

  .logo {
    font-size: 1.2rem;
    flex-direction: row;
    align-items: center;
    text-align: center;
  }

  .about-section h2 {
    font-size: 2.5rem;

  }

  .hero {
    height: auto;
    background: url('images/People/mksgp.jpg') center/cover no-repeat;
    min-height: 100%;
    padding: 1rem 1rem;
  }

  .hero2 {
    /* color: white; */
    background-size: 170%;
    height: auto;
    padding: 0rem 0rem;
    text-align: center;
    overflow: hidden;
  }

  .hero1 {
    height: auto;
    width: 100%;
    background: url('images/People/book.JPG') center/cover no-repeat;
    min-height: 100%;
    padding: 1rem 1rem;
    overflow: scroll;
  }

  .hero .overlay,
  .hero1 .overlay1 {
    padding: 4rem 1rem;
    overflow: visible;
  }

  .hero2 .overlay2 {
    padding: 1rem 1rem;
    overflow: visible;
  }

  .hero h1,
  .hero1 h1,
  .hero2 h1 {
    font-size: 2rem;
  }

  .hero p,
  .hero1 p,
  .hero2 p {
    font-size: 1rem;
  }

  .cta-button1,
  .cta-button2,
  .cta-button3,
  .cta-button4,
  .cta-button5 {
    width: 42px;
    height: 42px;
    font-size: 22px;
    line-height: 42px;
    margin: 0 0.2rem;
  }

  .services h2 {
    font-size: 2rem;
  }

  .services h3 {
    font-size: 1.5rem;
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(1fr));
    gap: 0.8rem;
    padding: 0 1rem;
    ;
  }

  .service-card h3 {
    font-size: 1rem;
    padding: 0.3rem;
  }

  .success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .success-card h3 {
    font-size: 0.9rem;
    padding: 0rem 0.2rem;
  }

  .team-info h3 {
    font-size: 1.3rem;
    padding: 0rem 0rem;
  }

  .team-info p {
    font-size: 0.9rem;
    padding: 0rem 0rem;
  }

  .success-section h2 {
    font-size: 1.7rem;
  }

  footer {
    font-size: 12px;
  }


}

@media (max-width: 360px) {

  .team-info h3 {
    font-size: 1rem;
    padding: 0rem 0rem;
  }

  .team-info p {
    font-size: 0.7rem;
    padding: 0rem 0rem;
  }

  .success-card h3 {
    font-size: 0.8rem;
    padding: 0rem 0.2rem;
  }

  .success-card p {
    font-size: 0.8rem;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .success-section h2 {
    font-size: 1rem;
  }

}