body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.top-bar {
  width: 100%;
  background-color: #16436f;
  color: white;
  font-size: 14px;
}

.contact-bar {
  margin-left: 80px;
  display: flex;
  justify-content: space-between;
  padding: 5px 30px;
  align-items: center;
}

.contact-bar a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.social-icons a {
  color: white;
  margin-left: 10px;
  font-size: 30px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white; /* Example color */
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 15px; /* Space between links */
}

.nav-links a {
  color: #16436f; /* Link color */
  text-decoration: none; /* Remove underline */
  font-weight: bold; /* Make font bold */
  transition: color 0.3s; /* Smooth color transition */
}

.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  padding: 10px 0;
  min-width: 150px;
}

.nav-links .dropdown:hover .dropdown-menu {
  display: block;
}

.nav-links .dropdown-menu li {
  padding: 8px 20px;
}

.nav-links .dropdown-menu li a {
  color: #333;
}

.nav-left a{
  color: #16436f; /* Link color */
  text-decoration: none;/* Remove underline */
  font-size: 20px;
  font-weight: bold; /* Make font bold */
  transition: color 0.3s; /* Smooth color transition */

}

.nav-links a:hover {
  color: red; /* Change color on hover */
}


/* Hero Section */
.hero {
  height: 250px;
  background: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?auto=format&fit=crop&w=1400') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero h1 {
  font-size: 3em;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* About / Timeline */
.timeline-section {
  padding: 80px 20px;
  text-align: center;
  background: #f7f7f7;
}

.timeline-section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.timeline-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.timeline-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.timeline-card:hover {
  transform: translateY(-5px);
}

/* Leadership Messages */
.carousel-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding: 20px;
  scroll-behavior: smooth;
}

.message-card {
  flex: none;
  scroll-snap-align: center;
  width: 90%;
  max-width: 700px;
  display: flex;
  background: #f1f1f1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.message-img {
  width: 40%;
  object-fit: cover;
}

.message-content {
  padding: 20px;
  text-align: left;
}

.message-content h3 { margin-bottom: 10px; font-size: 1.4em; }
.message-content p { font-size: 0.95em; line-height: 1.6; }

/* Responsive */
@media(max-width: 768px) {
  .message-card {
    flex-direction: column;
    text-align: center;
  }

  .message-img {
    width: 100%;
    height: 250px;
  }
}

/* Video Section */
.video-section {
  padding: 60px 20px;
  background: #fff;
}

.video-box {
  position: relative;
  max-width: 900px;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.video-box video {
  width: 100%;
  display: block;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 20px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}
/* Testimonials */
.testimonials {
  background-color: #eef6fa;
  padding: 50px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #005aa7;
  margin-bottom: 20px;
}

.testimonials p {
  font-style: italic;
}
/* More Info Section */
.details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 20px;
  background: #f0f0f0;
  justify-content: center;
}

.details .info {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-left: 5px solid #009688;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* Core Values List */
.details .info ul {
  list-style: none;
  padding: 0;
}

.details .info ul li {
  padding: 6px 0;
}

.investor-section {
  background: linear-gradient(to bottom right, #f5f5f5, #e6f0ea);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.investor-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.investor-content {
  flex: 1;
  min-width: 300px;
}

.investor-content h2 {
  font-size: 2rem;
  color: #103f3e;
  margin-bottom: 15px;
}

.investor-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.investor-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.investor-points li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #3d3d3d;
}

.investor-btn {
  background-color: #103f3e;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.investor-btn:hover {
  background-color: #145c59;
}

.investor-image {
  flex: 1;
  min-width: 300px;
}

.investor-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}



/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .subscribe-form {
    flex-direction: column;
    gap: 10px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .investor-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .investor-content h2 {
    font-size: 1.6rem;
  }

  .investor-btn {
    display: inline-block;
    margin-top: 15px;
  }
}


/* Responsive for mobile */
@media (max-width: 768px) {
  .slide {
    flex-direction: column;
    text-align: center;
  }

  .slide img {
    margin: 0 0 20px 0;
  }

  .overlay-text {
    font-size: 14px;
  }

  .timeline {
    border-left: 2px solid #009688;
  }

  .details {
    flex-direction: column;
    padding: 40px 10px;
  }

  .video-box {
    margin: 0 10px;
  }
}
