* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
    color: #333;
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    background-color: #1e48415a;
  }

  .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  /* HOOMI Style Navigation Menu */
/* General Styles */
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
}
.topbar {
background: #1E4841;
color: white;
padding: 10px 20px;
font-size: 14px;
display: flex;
justify-content: flex-start;
align-items: center;
}

.topbar span {
margin-right: 20px;
}
/* Navbar Container */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 30px;
background: white;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
height: 70px;
}

/* Logo */
.logo img {
width: 120px;
height: 45px;
}

/* Menu Container */
.nav-menu {
display: flex;
align-items: center;
}

/* Navigation Links */
.nav-links {
display: flex;
list-style: none;
margin: 0;
padding: 0;
}

.nav-links li {
margin: 0 20px;
}

.nav-links a {
text-decoration: none;
color: black;
font-weight: 500;
font-size: 17px;
transition: color 0.3s ease;
}

.nav-links a:hover {
color: #1E4841;
}

/* Button */
.membership-btn {
background: #1E4841;
color: white;
border: none;
padding: 10px 20px;
font-weight: bold;
border-radius: 25px;
cursor: pointer;
font-size: 14px;
transition: background 0.3s ease;
}

.membership-btn:hover {
background: #1E4841;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
  }

  .hamburger span {
    height: 2px;
    width: 100%;
    background-color: #1E4841;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
.mobile-membership {
display: none;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 90;
    display: none;
  }

  .overlay.active {
    display: block;
  }

  .close-btn {
    display: none;
  }

  /* Responsive Menu */
  @media (max-width: 768px) {
    .navbar {
      padding: 0 1rem;
    }

    .hamburger {
      display: flex;
    }

    .nav-menu {
      position: fixed;
      top: 60px;
      right: -100%;
      background-color: #fff;
      width: 250px;
      height: calc(100vh - 60px);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 20px;
      transition: all 0.3s ease;
      z-index: 99;
      box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
      right: 0;
    }

    .nav-links {
      flex-direction: column;
      width: 100%;
      height: auto;
      margin-left: 0;
    }

    .nav-links li {
      width: 100%;
      height: auto;
      margin: 8px 0;
    }

    .nav-links a {
      width: 100%;
      padding: 12px 20px;
      justify-content: flex-start;
    }

    /* Hide desktop membership button */
    .membership-btn {
      display: none;
    }

    /* Show mobile membership link */
    .mobile-membership {
      display: block;
    }

    .mobile-membership a {
      color: #1E4841;
      font-weight: 500;
    }

    /* Animated hamburger to X */
    .hamburger.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
    .close-btn {
      display: block;
      font-size: 30px;
      color: #1E4841;
      text-align: right;
      padding: 10px 20px;
      cursor: pointer;
    }
  }
  
  /* Original Eaglemark Styles (keeping only what's needed) */
  /* Hero Section */
  .hero {
    background-color: #f5f9f8;
    padding: 40px 0;
    width: 100%;
  }

  .hero-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 2%;
  }

  .hero-content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1E4841;
  }

  .cta-button {
    display: inline-block;
    background-color: #1E4841;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 15px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
  }

  .cta-button:hover {
    background-color: #2a635a;
    transform: translateY(-2px);
  }

  /* Carousel Styles */
  .carousel-container {
    position: relative;
    margin: 0;
    overflow: hidden;
    height: 720px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(30, 72, 65, 0.12);
    max-width: 100%;
    width: 100%;
  }

  .carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0s 0.8s;
    transform: translateX(100%);
  }

  .carousel-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
  }

  .carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 2;
  }

  .meeting-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }

  .slide-title {
font-size: 53px;
margin-bottom: 15px;
line-height: 1.2;
}

.slide-title .line-light {
font-weight: 400; /* lighter */
}

.slide-title .line-bold {
font-weight: 700; /* bolder */
}
@media (max-width: 600px) {
.slide-title {
  font-size: 32px; /* smaller font */
  margin-bottom: 10px;
  line-height: 1.3;
}
}

  .slide-description {
    font-size: 18px;
    max-width: 700px;
    line-height: 1.5;
  }

  .carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    gap: 20px;
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 3;
  }

  .carousel-indicators {
    display: flex;
    gap: 10px;
  }

  .carousel-indicator {
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }

  .carousel-indicator.active {
    background-color: white;
    transform: scale(1.2);
  }

  /* Navigation buttons for carousel */
  .carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    color: #1E4841;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }

  .carousel-prev:hover, .carousel-next:hover {
    background: rgba(255, 255, 255, 0.8);
  }

  .carousel-prev {
    left: 15px;
  }

  .carousel-next {
    right: 15px;
  }

  /* Trust Section */
  .trust-section {
    padding: 50px 0;
    background-color: #f5f9f8;
    width: 100%;
  }

  .trust-content {
    max-width: 1800px;
    margin: 0 90px;
    padding: 0 2%;
  }

  .trust-content h2 {
    font-size: 26px;
    margin-bottom: 20px;
    align-items: center;
    color: #1E4841;
  }

  .trust-content p {
    font-size: 15px;
    color: #546;
    margin-bottom: 20px;
    max-width: 800px;
  }

  /* Focus Section */
  .focus-section{
    background-color: #1E4841;
    font-family: 'Segoe UI', sans-serif;
    color: white;
    padding: 2rem 1rem;
  }
  .containertwo {
    max-width: 1200px;
    margin: auto;
  }

  .containertwo h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: white;
    line-height: 1.3;
  }

  .focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .focus-item {
    background-color: #226055;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    text-decoration: none;
    display: block;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
    min-height: 260px;
  }

  .focus-item:hover {
    transform: translateY(-6px);
  }

  .focus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 50px;
    background-color: #2d7064;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .focus-item h3 {
    margin-top: 50px;
    font-size: 20px;
    color: white;
  }

  .focus-item p {
    font-size: 15px;
    color: #f0f0f0;
    margin-top: 12px;
    line-height: 1.5;
  }

  a {
    text-decoration: none;
  }

  /* Tablet view (2 columns) */
  @media (max-width: 992px) {
    .focus-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  /* Mobile view (1 column) */
  @media (max-width: 600px) {
    .focus-grid {
      grid-template-columns: 1fr;
    }

    .containertwo h2 {
      font-size: 1.6rem;
    }

    .focus-item {
      padding: 20px;
    }
  }

  /* Projects Gallery */
  .projects-gallery {
    padding: 60px 0;
    background-color: #fff;
    width: 100%;
  }

  .projects-gallery h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 15px;
    color: #1E4841;
  }

  .gallery-intro {
    text-align: center;
    max-width: 1800px;
    margin: 0 auto 40px;
    color: #555;
    padding: 0 2%;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    margin: 0 auto 40px;
    width: 100%;
    max-width: 1800px;
    padding: 0 2%;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.4s ease;
  }

  .gallery-item:hover {
    transform: scale(1.02);
  }

  .gallery-item.large {
    grid-column: span 2;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  @media (max-width: 1024px) {
.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-item.large {
  grid-column: span 2;
}
}

@media (max-width: 600px) {
.projects-gallery h2 {
  font-size: 22px;
}

.gallery-grid {
  grid-template-columns: 1fr;
  gap: 330px; /* Space between images on mobile */
}

.gallery-item {
  aspect-ratio: 1 / 1; /* Square shape only on mobile */
  margin-bottom: 10px; /* Adjust spacing between rows */
}

.gallery-item.large {
  grid-column: span 1;
}
}
  /* Contact Section */
  .contact-section {
    padding: 70px 0;
    text-align: center;
    background-color: #f3fffc;
    width: 100%;
  }

  .contact-section h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #1E4841;
  }

  .contact-section p {
    max-width: 1800px;
    margin: 0 auto 40px;
    font-size: 16px;
    color: #555;
    padding: 0 2%;
  }
  @media (max-width: 1024px) {
.contact-section {
  margin-top: 300px;
  padding: 10px 0; /* Reduced padding for tablets */
}

.contact-section h2 {
  font-size: 22px; /* Adjust font size on tablets */
}

.contact-section p {
  font-size: 14px; /* Adjust font size on tablets */
  padding: 0 5%; /* Increase padding for better readability */
}
}

@media (max-width: 600px) {
.contact-section {
  padding: 30px 0; /* Reduced padding for mobile */
}

.contact-section h2 {
  font-size: 20px; /* Adjust font size on mobile */
  margin-bottom: 20px;
}

.contact-section p {
  font-size: 14px; /* Maintain font size for readability on mobile */
  padding: 0 5%; /* Adjust padding on mobile */
  margin: 0 auto 30px; /* Adjust margin to prevent overcrowding */
}
}
  /* Footer */
  .footer-container {
          background-color: #1E4841;
          width: 100%;
          /* max-width: 1200px; */
          padding: 3rem 2.5rem;
        
          position: relative;
          overflow: hidden;
      }

      .footer-content {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          position: relative;
          z-index: 2;
      }

      .brand {
          flex: 1.2;
          padding-right: 2rem;
      }

      .brand-logo {
          display: flex;
          align-items: center;
          margin-bottom: 1rem;
      }

      .logo-squares {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 3px;
          margin-right: 12px;
      }

      .square {
          width: 10px;
          height: 10px;
          background-color: #1E4841;
          border-radius: 2px;
          transition: transform 0.3s ease;
      }

      .brand-logo:hover .square:nth-child(1) {
          transform: translate(-2px, -2px);
          background-color: #34796E;
      }

      .brand-logo:hover .square:nth-child(2) {
          transform: translate(2px, -2px);
      }

      .brand-logo:hover .square:nth-child(3) {
          transform: translate(-2px, 2px);
      }

      .brand-logo:hover .square:nth-child(4) {
          transform: translate(2px, 2px);
          background-color: #34796E;
      }

      .brand-name {
          font-size: 28px;
          font-weight: 700;
          color: #fff;
          letter-spacing: -0.5px;
      }

      .brand-tagline {
          font-size: 15px;
          color: #e0e0e0;
          max-width: 240px;
          line-height: 1.5;
          font-weight: 300;
          letter-spacing: -0.3px;
          position: relative;
      }

      .brand-tagline::after {
          content: '';
          position: absolute;
          bottom: -15px;
          left: 0;
          width: 40px;
          height: 2px;
          background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
          border-radius: 2px;
      }

      .navigation {
          flex: 2;
          display: flex;
          justify-content: space-around;
      }

      .footer-column {
          margin-right: 1rem;
          flex: 1;
      }

      .footer-column h3 {
          font-size: 13px;
          color: #adb5bd;
          margin-bottom: 1.5rem;
          font-weight: 600;
          letter-spacing: 1px;
          text-transform: uppercase;
      }

      .footer-column ul {
          list-style: none;
      }

      .footer-column li {
          margin-bottom: 1rem;
          color: #ffffff;
          font-size: 14px;
          font-weight: 500;
          letter-spacing: 0.5px;
          transition: all 0.3s ease;
          display: block;
          position: relative;
          cursor: pointer;
      }

      .footer-column li::after {
          content: '';
          position: absolute;
          width: 0;
          height: 2px;
          bottom: -4px;
          left: 0;
          /* background-color: #5ee1cb; */
          transition: width 0.3s ease;
          border-radius: 2px;
      }

      .footer-column li:hover {
          color: #5ee1cb  ;
          transform: translateX(3px);
      }

      .footer-column li:hover::after {
          width: 100%;
      }

      .chart-background {
          position: absolute;
          top: 0;
          right: 0;
          width: 60%;
          height: 100%;
          z-index: 1;
          opacity: 0.07;
          overflow: hidden;
      }

      .chart-line {
          width: 100%;
          display: flex;
          justify-content: space-between;
          height: 100%;
          align-items: flex-end;
          padding-bottom: 20px;
      }

      .chart-bar {
          width: 5px;
          background-color: #adb5bd;
          margin-right: 8px;
          border-radius: 4px 4px 0 0;
          transition: height 1s ease, background-color 0.5s ease;
      }

      .chart-bar:nth-child(10n) {
          background-color: #1E4841;
          width: 6px;
      }

      .chart-bar:nth-child(5n) {
          background-color: #212529;
      }

      .copyright {
          margin-top: 3rem;
          padding-top: 1.5rem;
          display: flex;
          justify-content: space-between;
          align-items: center;
          font-size: 12px;
          color: #adb5bd;
          position: relative;
          z-index: 2;
      }

      .copyright p {
          font-weight: 400;
      }

      .gradient-overlay {
          position: absolute;
          bottom: 0;
          right: 0;
          width: 30%;
          height: 40%;
          background: radial-gradient(circle at bottom right, rgba(30, 72, 65, 0.05), transparent 70%);
          z-index: 1;
          border-radius: 50%;
      }

      @media (max-width: 768px) {
          .footer-content {
              flex-direction: column;
          }

          .brand {
              margin-bottom: 3rem;
              padding-right: 0;
          }

          .navigation {
              flex-direction: column;
          }

          .footer-column {
              margin-bottom: 2rem;
              margin-right: 0;
          }

          .copyright {
              flex-direction: column;
              align-items: flex-start;
          }
      }

  /* Additional fix for full width on body and html */
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  a {
    text-decoration: none;
    color: inherit;
  }
  .paragraph-row {
display: flex;
gap: 75px; /* space between paragraphs */
flex-wrap: wrap; 
}

.paragraph-row p {
flex: 1; /* allows equal width */
}
@media (max-width: 768px) {
.paragraph-row {
  flex-direction: column;
  gap: 20px; 
 width: 100%;  
}

.paragraph-row p {
  flex: none;
  width: 100%; /* full width on mobile */
}
}

