/* Base styles */
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: 3.5vh;
}
.social-icons a:hover{
  color: yellow;
}
.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 */
}



.btn {
  display: inline-block;
  padding: 12px 24px;
  margin-top: 15px;
  background: #004aad;
  color: #fff;
  border: none;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #003080;
}

/* Hero Video Section */
/* Hero Section */
.hero-only-image {
  background: url('images/home.png') no-repeat center center/cover;
  height: 100vh;  /* Full viewport height */
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .hero-only-image {
    height: 80vh;  /* Adjust height for smaller screens */
    background-position: center ;  /* Keep image centered */
  }
}

/* Small Mobile Responsiveness */
@media screen and (max-width: 480px) {
  .hero-only-image {
    height: 55vh;  /* Further reduce height for very small screens */
    background-position: center;  /* Keep image centered */
  }
}


/* About Section */
.about-quick {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 5%;
  align-items: center;
  background: #f4f4f4;
}

.about-text {
  font-size: 1.3rem;
  flex: 1;
  padding: 20px;
}

.about-image {
  flex: 1;
  padding: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Services Section */
.services-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

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

.services-header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

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

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #0077cc;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.service-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

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

  .services-header p {
    font-size: 16px;
  }
}



/* Project Highlight */
.project-highlight {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 5%;
  background: #fdfdfd;
}

.project-highlight .highlight-text,
.project-highlight .project-image {
  flex: 1;
  padding: 20px;
}

.highlight-text{
  font-size: 1.3rem;
}
.project-highlight img {
  width: 100%;
  border-radius: 10px;
}

/* Investor CTA */
.partner-home {
  padding: 60px 20px;
  background-color: #fdfdfd;
}

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

.partner-image {
  flex: 1 1 40%;
  text-align: center;
}

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

.partner-content {
  flex: 1 1 50%;
  padding: 10px;
}

.partner-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.partner-content p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #666;
  line-height: 1.6;
}

.partner-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.partner-content ul li {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.partner-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0077cc;
  font-weight: bold;
}

.partner-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #0077cc;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.partner-btn:hover {
  background-color: #005fa3;
}

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

  .partner-image,
  .partner-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .partner-content {
    padding: 0;
  }

  .partner-content ul li {
    padding-left: 0;
  }

  .partner-content ul li::before {
    display: none;
  }
}


/* Why Choose Us */
.why-choose-us {
  padding: 60px 5%;
  background: #f0f8ff;
}

.why-choose-us ul {
  list-style: none;
  padding: 0;
}

.why-choose-us li {
  margin: 10px 0;
  font-size: 1.1em;
  position: relative;
  padding-left: 25px;
}

.why-choose-us li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: green;
}

/* Sustainability */
.green-promise {
  background: url('https://images.unsplash.com/photo-1560185127-6c9f32740c34?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  position: relative;
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.green-bg-overlay {
  background-color: rgba(0, 60, 40, 0.8);
  padding: 80px 20px;
  border-radius: 12px;
}

.green-content h2 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
}

.green-content .subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  color: #cfcfcf;
}

.green-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.green-card {
  background: #ffffff15;
  border-radius: 16px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.green-card:hover {
  background: #ffffff25;
  transform: translateY(-10px);
}

.green-card img {
  width: 160px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.green-card h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.green-card p {
  font-size: 15px;
  color: #e5e5e5;
}

.green-btn {
  display: inline-block;
  background: #00c982;
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.green-btn:hover {
  background: #00a26c;
}

@media screen and (max-width: 768px) {
  .green-promise {
    padding: 60px 15px;
  }

  .green-content h2 {
    font-size: 30px;
  }

  .green-content .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .green-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .green-card {
    padding: 25px 18px;
  }

  .green-card img {
    width: 50px;
    margin-bottom: 10px;
  }

  .green-card h4 {
    font-size: 18px;
  }

  .green-card p {
    font-size: 14px;
  }

  .green-btn {
    font-size: 14px;
    padding: 12px 28px;
  }
}

@media screen and (max-width: 480px) {
  .green-content h2 {
    font-size: 26px;
  }

  .green-content .subtitle {
    font-size: 15px;
  }

  .green-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
}


/* Testimonials */
.testimonials {
  background: #fff0f0;
  padding: 60px 5%;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-top: 20px;
  scroll-snap-type: x mandatory;
}

.testimonial {
  flex: 0 0 300px;
  scroll-snap-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.subscribe-box input {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 200px;
  margin-top: 10px;
}

.subscribe-box button {
  padding: 10px 15px;
  background: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .about-quick,
  .project-highlight {
    flex-direction: column;
  }
  .service-cards {
    flex-direction: column;
  }
  .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }
}

/* 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;
  }
}


/*  footer   */
.footer {
  background-color: #16436f; /* Dark blue */
  color: white;
  padding: 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  max-width: 95%;
  margin: 5px 5px 10px;
}

.footer-section {
  width: 20%; /* Adjust the width */
}

.footer-section h2 {
  border-bottom: 2px solid; /* Light grey underline */
  margin-bottom: 10px;
}

.footer-section a {
  color: #ccc;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  height: 20px;
  display: flex;
  padding: 10px 10px;
  background-color: white; /* Slightly darker blue */
  color: #16436f;
}
.left-side, .right-side {
  width: 50%;
  font-weight: bolder;
}
