* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
  font-size: 1.1rem;
}



.slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.slides-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  position: relative;
}

.slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.263), rgba(0, 0, 0, 0.436));
  z-index: 2;
  pointer-events: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}


.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  padding: 20px;
  max-width: 1100px;
  border-radius: 8px;
  font-size: 1.5rem;
  z-index: 2;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  font-size: 2rem;
  padding: 10px;
  border: none;
  cursor: pointer;
  z-index: 3;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.slider-paragraph {
  font-size: 19px;
}

@media only screen and (max-width: 768px) {
  .slider {
    height: 300px;
  }

  .hero-text {
    font-size: 1rem;
    padding: 10px;
    left: 5%;
    max-width: 90%;
  }

  .slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0;
  }

  .prev,
  .next {
    font-size: 1.5rem;
    padding: 8px;
  }

  .slider-paragraph {
    font-size: 13px;
  }
}









.container {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}


.Indoworld-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    background-color: #f8f9fb;
  }

  .Indoworld-heading {
    font-size: 40px;
    font-weight: 800;
    color: #002855;
    margin-bottom: 20px;
  }

  .Indoworld-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
  }

  .Indoworld-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .Indoworld-service-box {
    perspective: 1000px;
    height: 200px;
    width: 100%;
    max-width: 100%;
  }

  .Indoworld-service-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    border-radius: 16px;
  }

  .Indoworld-service-box:hover .Indoworld-service-inner {
    transform: rotateY(180deg);
  }

  .Indoworld-service-front,
  .Indoworld-service-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    padding: 25px 15px;
    background: linear-gradient(135deg, #ffffff, #fdf6ef);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .Indoworld-service-front {
    z-index: 2;
    border-top: 4px solid #e69110;
  }

  .Indoworld-service-back {
    transform: rotateY(180deg);
    border-top: 4px solid #e69110;
  }

  .Indoworld-service-icon {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #e69110;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-bottom: 12px;
  }

  .Indoworld-service-box:hover .Indoworld-service-icon {
    transform: scale(1.3);
    color: #ffb84d;
  }

  .Indoworld-service-title {
    font-size: 19px;
    font-weight: 700;
    color: #002855;
    text-align: center;
    font-family: 'Montserrat';
  }

  @media (max-width: 991px) {
    .Indoworld-services {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .Indoworld-heading {
      font-size: 2rem;
    }

    .Indoworld-subtitle {
      font-size: 1rem;
      padding: 0 10px;
    }

    .Indoworld-services {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .Indoworld-service-box {
      width: 100%;
    }

    .Indoworld-service-icon {
      margin-bottom: 10px;
    }

    .Indoworld-service-title {
      font-size: 1.2rem;
    }
  }

.choose-1 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
}

.choose-1.choose-1-image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.choose-1.choose-1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: transform 0.8s ease;
}

.choose-1.choose-1-image:hover img {
  transform: scale(1.05);
}

.choose-1.choose-1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
  mix-blend-mode: multiply;
  z-index: 1;
}

.choose-1.choose-1-content {
  width: 50%;
  background: #e69110;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(4px);
  animation: slideInRight 1.2s ease-out both;
}

.choose-1.choose-1-inner {
  max-width: 600px;
}

.choose-1.choose-1-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 600;
  animation: fadeInUp 1s ease-out;
}

.choose-1.choose-1-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
  animation: fadeInUp 1.2s ease-out;
}

.choose-1.choose-1-list {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0;
}

.choose-1.choose-1-list li {
  margin-bottom: 16px;
  font-size: 18px;
  position: relative;
  padding-left: 32px;
  animation: fadeInUp 1.3s ease-out;
}

.choose-1.choose-1-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-weight: bold;
  animation: pulseCheck 1.2s infinite;
}

.choose-1.choose-1-footer {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.95;
  animation: fadeInUp 1.4s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

@keyframes pulseCheck {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@media (max-width: 768px) {

  .choose-1.choose-1-image,
  .choose-1.choose-1-content {
    width: 100%;
    height: auto;
  }

  .choose-1.choose-1-content {
    padding: 50px 25px;
    text-align: left;
  }

  .choose-1.choose-1-title {
    font-size: 26px;
  }

  .choose-1.choose-1-list li {
    font-size: 16px;
    padding-left: 26px;
  }

  .choose-1.choose-1-footer {
    font-size: 16px;
  }
}






.container-1 {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
  background-color: #f8f9fb;
  ;
}

.container-1-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.container-1-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #002b4d;
}

.container-1-hero p {
  font-size: 1.2rem;
  color: #002b4d;
}

.container-1-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.container-1-card {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container-1-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 1cap #659fcc;
}

.container-1-team-section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #002b4d;
}

.container-1-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.container-1-team-member {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container-1-team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(59, 131, 246, 0.507);
}

.container-1-team-member img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid #002b4d;
}

.container-1-team-member h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
}

.container-1-role {
  font-size: 1rem;
  color: #64748b;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.container-1-bio {
  font-size: 1rem;
  color: #334155;
}

/* Animations */
.container-1-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: container-1-fadeUp 0.8s forwards;
}

.container-1-delay-1 {
  animation-delay: 0.2s;
}

.container-1-delay-2 {
  animation-delay: 0.4s;
}

.container-1-delay-3 {
  animation-delay: 0.6s;
}

.container-1-delay-4 {
  animation-delay: 0.8s;
}

.container-1-delay-5 {
  animation-delay: 1s;
}

.container-1-delay-6 {
  animation-delay: 1.2s;
}

@keyframes container-1-fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .container-1-hero h1 {
    font-size: 2rem;
  }

  .container-1-team-grid {
    grid-template-columns: 1fr;
  }

  .container-1-card {
    padding: 1.5rem;
  }
}


.culture-1 {
  background-color: #f8f9fb;
  padding: 60px 20px;
}

.culture-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .culture-container {
    flex-direction: row;
    align-items: center;
  }
}

.culture-image {
  flex: 1;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.culture-image img {
  width: 100%;
  height: 500px;
  display: block;
  transition: transform 0.4s ease;
}

.culture-image img:hover {
  transform: scale(1.03);
}

.culture-text {
  flex: 1;
  color: #333;
}

.culture-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.culture-text h2 span {
  color: #e69110;
}

.culture-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}





.mission-1 {
  padding: 80px 20px;
  background-color: #f8f9fb;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (min-width: 768px) {
  .mission-container {
    flex-direction: row;
    align-items: center;
  }
}

.mission-text {
  flex: 1;
}

.mission-text h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  color: #000;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.1);
}

.mission-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #000;
}

.mission-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.mission-image img:hover {
  transform: scale(1.03);
}






.vision {
  background-color: #f8f9fb;
}

.vision-1 {
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;

}

.vision-1 img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-1 .content {
  flex: 1;
}

.vision-1 h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.vision-1 p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .vision-1 {
    flex-direction: row;
    align-items: center;
  }

  .vision-1 .image-container,
  .vision-1 .content {
    flex: 1;
  }
}


/* 
    .choose-1.no-image {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f58238 0%, #f9a02b 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(245, 130, 56, 0.5);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: fadeInScale 1.2s ease forwards;
}

.choose-1-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.choose-1-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 16px;
  animation: slideFadeIn 0.6s ease forwards;
}

.choose-1-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  animation: slideFadeIn 0.8s ease forwards;
}

.choose-1-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.choose-1-list li {
  font-size: 18px;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
  line-height: 1.4;
  animation: slideFadeIn 1s ease forwards;
  cursor: default;
  transition: color 0.3s ease;
}

.choose-1-list li:hover {
  color: #fff8dc;
}

.choose-1-list li .check-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 900;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.choose-1-list li:hover .check-icon {
  transform: translateY(-50%) scale(1.4);
  color: #fff8dc;
  text-shadow: 0 0 8px #fff8dc;
}

.choose-1-footer {
  font-size: 20px;
  font-weight: 700;
  opacity: 0.9;
  animation: slideFadeIn 1.2s ease forwards;
  text-align: center;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .choose-1.no-image {
    padding: 40px 25px;
  }
  
  .choose-1-title {
    font-size: 28px;
  }
  
  .choose-1-list li {
    font-size: 16px;
    padding-left: 32px;
  }
  
  .choose-1-list li .check-icon {
    font-size: 20px;
  }
  
  .choose-1-footer {
    font-size: 18px;
  }
} */


.footer-margin {
  margin-left: 100px;
}








@media (max-width: 600px) {
  .footer-margin {
    margin-left: 0px;
  }

}




#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: #002b4d;
  color: white;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
}

#scrollToTopBtn:hover {
  background-color: #002b4d;
}




.services-2-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  color: #333;

}

.services-2-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-2-header h2 {
  font-size: 40px;
  color: #222;
  margin-bottom: 10px;
}

.services-2-header p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}


.services-2-header p {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}


.services-2-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  gap: 30px;
}

.services-2-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 5px solid #002b4d;
}

.services-2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.services-2-icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #002b4d;
}

.services-2-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 12px;
}

.services-2-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14.5px;
  color: #555;
}

.services-2-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}

/* .services-2-list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #002a4e; 
  font-size: 14px;
} */

@media (max-width: 600px) {
  .services-2-header h2 {
    font-size: 28px;
  }

  .services-2-card {
    padding: 25px 20px;
  }
}


@media (max-width: 768px) {
  .services-2-grid {
    grid-template-columns: 1fr;
  }

  .services-2-header h2 {
    font-size: 26px;
  }

  .services-2-header p {
    font-size: 14px;
    padding: 0 10px;
  }

  .services-2-title {
    font-size: 18px;
  }

  .services-2-list {
    font-size: 13.5px;
  }
}







.about-section {
  position: relative;
  background-color: #f8f9fb;
  padding: 50px 20px;
  overflow: hidden;
}

.container-2 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.header h2 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.header h2 span {
  font-size: 1.5rem;
  margin-right: 10px;
}

.intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 1100px;
  margin: 10px auto;
  line-height: 1.8;
  text-align: justify;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  max-width: 450px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid #dbeeff;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 100, 255, 0.1);
  /* border-color: #66bfff; */
}

.card h3 {
  font-size: 1.8rem;
  color: #0077b6;
  margin-bottom: 15px;
}

.card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.wave-top,
.wave-bottom {
  position: absolute;
  width: 100%;
  height: 100px;
  background: url('https://www.svgrepo.com/show/43576/wave.svg') no-repeat;
  background-size: cover;
  left: 0;
  z-index: 0;
}

.wave-top {
  top: -1px;
  transform: rotate(180deg);
}

.wave-bottom {
  bottom: -1px;
}

@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }

  .header h2 {
    font-size: 2rem;
  }
}







.banner {
  background: linear-gradient(to right, #002a4e, #e69110);
  color: white;
  padding: 30px 20px;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.banner h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}










.team-1-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.team-1-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 50px;
  color: #222;
}

.team-1-section-title {
  font-size: 1.8em;
  margin: 40px 0 20px;
  color: #444;
}

.team-1-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.team-1-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-1-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.team-1-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-1-card h4 {
  margin: 10px 0 5px;
  font-size: 1.2em;
  color: #111;
}

.team-1-card p {
  font-size: 0.95em;
  color: #666;
  margin: 5px 0 15px;
}

.team-1-card a {
  text-decoration: none;
  color: #007BFF;
  font-size: 0.9em;
}

.team-1-values {
  text-align: center;
  margin-top: 70px;
}

.team-1-values h3 {
  margin-bottom: 25px;
}

.team-1-value-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.team-1-value-tag {
  background: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 0.95em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.349);
}

.team-1-value-tag:hover {
  background: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 0.95em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.534);
}

@media (max-width: 600px) {
  .team-1-title {
    font-size: 2em;
  }

  .team-1-section-title {
    font-size: 1.5em;
  }
}










.blog {
  background-color: #f8f9fb;
}



.blog-container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.blog-title {

  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1c1c1c;
  font-weight: bold;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.blog-post.blog-1 {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 25px;
  transition: transform 0.2s;
}

.blog-post.blog-1:hover {
  transform: translateY(-5px);
}

.blog-heading {
  font-size: 1.4rem;
  color: #002244;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.blog-summary {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more-link {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
}

.read-more-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .blog-title {
    font-size: 2rem;
  }
}





.testimonial-1.section {
  background-color: #f5f5f5;
  padding: 20px 20px;
}

.testimonial-1.container {
  max-width: 800px;
  margin: auto;
  text-align: center;
  position: relative;
}

.testimonial-1.title {
  font-size: 2rem;
  font-weight: bold;
  color: #2e3a59;
  margin-bottom: 30px;
}

.testimonial-1.slider {
  overflow: hidden;
  position: relative;
  height: 220px;
}

.testimonial-1.card-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-1.card {
  min-width: 100%;
  background-color: white;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-1.quote {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.testimonial-1.author {
  font-weight: bold;
  color: #1a1a1a;
}

.testimonial-1.role {
  color: #777;
  font-size: 0.9rem;
}

.testimonial-1.btn {
  background-color: #2e3a59;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 10px 5px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.testimonial-1.btn:hover {
  background-color: #1f2944;
}

.testimonial-1.nav-buttons {
  margin-top: 20px;
}









.contact-1.container {
  display: flex;
  max-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}


.contact-1.form-container {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #e69110, #002a4e);
  color: white;
}

.contact-1.title {
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-1.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-1.input,
.contact-1.textarea {
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
}

.contact-1.input::placeholder,
.contact-1.textarea::placeholder {
  color: #666;
}

.contact-1.textarea {
  resize: vertical;
  height: 100px;
}

.contact-1.button {
  background: #fff;
  color: #002a4e;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

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


.contact-1.info-container {
  flex: 1;
  padding: 40px;
  background: #fff;
  color: #333;
}

.contact-1.info-title {
  font-size: 20px;
  margin-bottom: 10px;

}

.contact-1.info-desc {
  font-size: 14px;
  margin-bottom: 25px;
  text-align: center;
}

.contact-1.info-item {
  margin-bottom: 15px;
  font-size: 14px;
  text-align: left;
}

@media (max-width: 600px) {
  .contact-1.container {
    flex-direction: column;
    box-shadow: none;
    border-radius: 0;
  }

  .contact-1.form-container,
  .contact-1.info-container {
    padding: 25px 20px;
    flex: none;
    width: 100%;
  }

  .contact-1.title {
    font-size: 20px;
    text-align: center;
  }

  .contact-1.form {
    gap: 12px;
  }

  .contact-1.input,
  .contact-1.textarea {
    font-size: 14px;
  }

  .contact-1.button {
    font-size: 14px;
    padding: 10px;
  }

  .contact-1.info-title {
    font-size: 18px;
    text-align: center;
  }

  .contact-1.info-desc,
  .contact-1.info-item {
    text-align: left;
    font-size: 13.5px;
  }

  .contact-1.info-item {
    margin-bottom: 10px;
  }
}






.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.team-section h2 {
  font-size: 32px;
  color: #002a4e;
  margin-bottom: 40px;
  border-bottom: 2px solid #002a4e;
  padding-bottom: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card-2 {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.team-card-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}



.team-card h3 {
  font-size: 20px;
  color: #002a4e;
  margin-bottom: 5px;
}

.team-card p.title {
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
}

.team-card p.description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.team-card a {
  display: inline-block;
  margin-right: 10px;
  background-color: #002a4e;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
}

.team-card a:hover {
  background-color: #014a7f;
}






.team-card-2 img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 15px;
}

.team-card-2 h3 {
  font-size: 20px;
  color: #002a4e;
  margin-bottom: 5px;
}

.team-card-2 p.title {
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
}

.team-card-2 p.description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.team-card-2 a {
  display: inline-block;
  margin-right: 10px;
  background-color: #002a4e;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 14px;
}

.team-card-2 a:hover {
  background-color: #014a7f;
}




@media (max-width: 600px) {
  .team-card {
    text-align: center;
  }
}



@media (max-width: 600px) {
  .team-section {
    padding: 40px 15px;
  }

  .team-section h2 {
    font-size: 24px;
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .team-card,
  .team-card-2 {
    text-align: center;
    padding: 20px;
  }

  .team-card img,
  .team-card-2 img {
    width: 100px;
    height: 100px;
  }

  .team-card-2 img {
    object-fit: cover;
    border-radius: 50%;
  }

  .team-card h3,
  .team-card-2 h3 {
    font-size: 18px;
  }

  .team-card p.description,
  .team-card-2 p.description {
    font-size: 13.5px;
    text-align: justify;
  }

  .team-card a,
  .team-card-2 a {
    font-size: 13px;
    padding: 8px 12px;
    margin: 5px 5px 0 0;
  }
}





.container-3 {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.container-4 {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  padding: 20px;
}









.coming-soon-container {
  /* background-color: #002a4e; */
  background-color: #f8f9fb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 50vh;
  text-align: center;
  padding: 20px;
}

.coming-soon-container h1 {
  font-size: 4rem;
  color: #e69110;
  margin-bottom: 10px;
  animation: fadeInDown 1.2s ease-out;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .coming-soon-container h1 {
    font-size: 2.5rem;
  }

  .email-box input[type="email"] {
    width: 90%;
  }


  .prev {
    left: 0px;
  }

  .next {
    right: 0px;
}

.container-mission{
  display: none;
}
}









/* Hide by default (for desktop) */
.mission-2 {
  display: none;
}

/* Show only on mobile */
@media (max-width: 767px) {
  .mission-2 {
    display: block;
    padding: 60px 20px;
    background-color: #f8f9fb;
  }

  .mission-container-2 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .mission-heading-2 {
    font-size: 2.4rem;
    margin-bottom: 0;
    color: #000;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.1);
  }

  .mission-image-2 {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
  }

  .mission-image-2 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
  }

  .mission-image-2 img:hover {
    transform: scale(1.03);
  }

  .mission-text-2 p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #000;
  }
}
