/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #004437;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
  }
  
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  
  .logo {
    max-height: 50px;
    width: auto;
    margin-left: 20px;
  }
  
  .navbar nav {
    display: flex;
    gap: 20px;
    margin-right: 20px;
  }
  
  .navbar nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    font-size: 1em;
    padding: 8px 12px;
    transition: color 0.3s ease;
  }
  
  .navbar nav a:hover {
    color: #b5d8c8;
  }
  
  .menu-icon {
    display: none;
    font-size: 1.8em;
    color: #ffffff;
    cursor: pointer;
    margin-right: 20px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  /* Hero Section */
  .hero {
    margin-top: 60px;
    height: 100vh;
    background: url('../images/infonestmainpage.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0 40px;
    color: white;
  }
  
  .hero-text {
    max-width: 600px;
  }
  
  .hero h1 {
    font-size: 4em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  }
  
  .cta-buttons {
    display: flex;
    gap: 20px;
  }
  
  /* Welcome Section */
  .welcome-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f4f4f4;
  }
  
  .welcome-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #004437;
  }
  
  .welcome-section p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #333;
    padding-left: 300px;
    max-width: 1200px;
  }
  
  /* Why Choose Us Section */
  .why-choose-us {
    text-align: center;
    padding: 40px 20px;
    background-color: #004437;
    color: white;
  }
  
  .why-choose-us h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .why-choose-us p {
    font-size: 1.2em;
    line-height: 1.8;
    padding-left: 300px;
    max-width: 1200px;
  }
  
  /* How We Help Section */
  .how-we-help {
    padding: 60px 60px;
    background-color: #e3f1ed;
    text-align: left;
  }
  
  .how-we-help h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .how-we-help ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  
  .how-we-help ul li {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 400px;
    font-family: 'Open Sans', sans-serif;
  }
  
  .how-we-help ul li strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #004437;
  }
  
  /* Our Expertise Section */
  .our-expertise {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .our-expertise h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #004437;
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .service-card h3 {
    margin-bottom: 10px;
    color: #004437;
  }
  
  /* Let’s Build Section */
  .lets-build {
    text-align: center;
    padding: 40px 20px;
    background-color: #004437;
    color: white;
    margin-bottom: 280px;
  }
  
  .lets-build h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
  .lets-build p {
    font-size: 1.2em;
    margin-bottom: 40px;
  }
  
  .lets-build .cta-button {
    background-color: white;
    color: #004437;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .lets-build .cta-button:hover {
    background-color: #f4f4f4;
    color: #00372e;
  }
  
  /* Highlights Section */
  .highlights {
    padding: 50px 20px;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .highlight-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
  }
  
  .card h3 {
    color: #004437;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 1em;
  }
  
  /* Footer */
  footer {
    background-color: #004437;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    text-align: center;
    font-size: 0.9em;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
  }
  
  footer p {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-contact {
    background-color: #004437;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .cta-center {
    text-align: center;
    margin-top: 20px;
  }
  
  /* General Button Styling */
  .cta-button,
  .cta-button-alt {
    display: inline-block;
    background-color: #004437;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.2em;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
    font-weight: bold;
  }
  
  .cta-button:hover {
    background-color: #1e6045;
  }
  
  .cta-button-alt {
    background-color: white;
    color: #004437;
    border: 2px solid #004437;
  }
  
  .cta-button-alt:hover {
    background-color: #f4f4f4;
  }
  
  /* Fix for mobile and iPads */
  @media (max-width: 768px) {
    .menu-icon {
      display: block;
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      padding: 8px 12px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .menu-icon:hover {
      background-color: rgba(255, 255, 255, 0.25);
      transform: scale(1.1);
    }
    .navbar nav {
      display: none;
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      flex-direction: column;
      background-color: #004437;
      width: 100%;
      text-align: center;
      padding: 20px 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      transform: translateY(-20px);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .navbar nav.active {
      display: flex;
      transform: translateY(0);
      opacity: 1;
    }
    .navbar nav a {
      font-size: 1.2em;
      padding: 15px 20px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      transition: background-color 0.2s ease;
    }
    .navbar nav a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }
    .navbar nav a:last-child {
      border-bottom: none;
    }
  
    /* Hero Section */
    .hero {
      padding: 20px;
      height: auto;
      min-height: 60vh;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .hero h1 {
      font-size: 2.5em;
    }
    .cta-buttons {
      flex-direction: column;
      gap: 10px;
    }
  
    /* Other Sections */
    .welcome-section p,
    .why-choose-us p {
      padding-left: 0;
      font-size: 1em;
    }
    .how-we-help ul li {
      padding-left: 0;
      font-size: 1em;
    }
    .services-container {
      grid-template-columns: 1fr;
    }
    .service-card {
      width: 90%;
    }
  }
