  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      color: #333;
      line-height: 1.6;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
     a {
    text-decoration: none;
    color: inherit;
  }
    .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 {
  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;
      }
    }
    
    /* Hero Section */
    .hero {
      background-color: #1E4841;
      padding: 40px 0;
      text-align: center;
      color: #fff;
    }
    
    .hero-content h1 {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 15px;
    }
    
    .hero-subtitle {
      font-size: 18px;
      color: #ddd;
      margin-bottom: 25px;
    }
    
    .cta-button {
      display: inline-block;
      background-color: #fff;
      color: #1E4841;
      padding: 8px 16px;
      text-decoration: none;
      font-size: 14px;
      margin-top: 10px;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background-color: #f9f9f9;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }   
    
    /* Tagline Section */
    .tagline {
      text-align: center;
      padding: 40px 0;
      color: #1E4841;
    }
        
    .tagline h2 {
      font-size: 24px;
    }

    /* Subsidiary Introduction */
    .subsidiary-intro {
      text-align: center;
      padding: 10px 0 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .subsidiary-intro p {
      font-size: 16px;
      color: #555;
    }

    /* ENHANCED CARDS STYLING */
    .cards-container {
      margin: 70px 0;
      max-width: 100%;
      padding: 0 20px;
    }

    .card {
      display: flex;
      border: none;
      margin: 60px auto;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      max-width: 1000px;
      background-color: #fff;
      position: relative;
    }

    .card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(30, 72, 65, 0.15);
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, #1E4841, #3a8a7e);
    }

    .card-img {
      width: 440px;
      height: auto;
      min-height: 340px;
      background-color: #f5f5f5;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
      transition: all 0.5s ease;
    }

    .card:hover .card-img {
      transform: scale(1.05);
    }

    .card-img::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(30, 72, 65, 0), rgba(30, 72, 65, 0.4));
      transition: opacity 0.3s ease;
    }

    .card:hover .card-img::after {
      opacity: 0.7;
    }

    .card-content {
      padding: 40px 35px;
      flex: 1;
      position: relative;
    }

    .card-content h3 {
      margin-bottom: 20px;
      color: #1E4841;
      font-size: 24px;
      font-weight: 700;
      border-bottom: 2px solid rgba(30, 72, 65, 0.3);
      padding-bottom: 12px;
      transition: all 0.3s ease;
      position: relative;
    }

    .card-content h3::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 40%;
      height: 2px;
      background-color: #1E4841;
      transition: width 0.4s ease;
    }

    .card:hover .card-content h3::after {
      width: 70%;
    }

    .card-content p {
      font-size: 16px;
      margin-bottom: 25px;
      color: #444;
      line-height: 1.7;
    }

    .card-content ul {
      list-style: none;
      margin: 0 0 25px 10px;
      padding: 0;
    }

    .card-content ul li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 14px;
      color: #555;
      font-size: 15px;
      transition: transform 0.2s ease;
    }

    .card-content ul li:hover {
      transform: translateX(5px);
    }

   

    .read-more-btn {
      display: inline-block;
      background-color: transparent;
      color: #1E4841;
      border: 2px solid #1E4841;
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      margin-top: 10px;
    }

    .read-more-btn:hover {
      background-color: #1E4841;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(30, 72, 65, 0.2);
    }

    .hidden-content {
      display: none;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Card counter badge */
    .card::after {
      content: '';
      position: absolute;
      top: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background-color: rgba(30, 72, 65, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      font-weight: bold;
      opacity: 0;
      transform: scale(0);
      transition: all 0.4s ease;
    }

    .card:nth-child(1)::after { content: '01'; }
    .card:nth-child(2)::after { content: '02'; }
    .card:nth-child(3)::after { content: '03'; }
    .card:nth-child(4)::after { content: '04'; }
    .card:nth-child(5)::after { content: '05'; }
    .card:nth-child(6)::after { content: '06'; }
    .card:nth-child(7)::after { content: '07'; }

    .card:hover::after {
      opacity: 1;
      transform: scale(1);
    }

    /* Responsive Adjustments */
    @media (max-width: 900px) {
      .card {
        flex-direction: column;
        margin: 40px 20px;
      }
      
      .card-img {
        width: 100%;
        height: 280px;
      }
      
      .card-content {
        padding: 30px 25px;
      }
      
      .card-content h3 {
        font-size: 22px;
      }

      .card::before {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
      }

      .card::after {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
      }
    }

    @media (max-width: 600px) {
      .card-content {
        padding: 25px 20px;
      }
      
      .card-content h3 {
        font-size: 20px;
      }
      
      .card-content p,
      .card-content ul li {
        font-size: 14px;
      }

      .read-more-btn {
        padding: 6px 16px;
        font-size: 13px;
      }
    }
    
    /* 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;
            }
        }

 
    /* Container slide-in animation */
    .nav-container {
      animation: slideIn 0.8s ease-out;
    }

    /* Slide-in animation keyframes */
    @keyframes slideIn {
      from {
        transform: translateY(-20px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }
    .button-container {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .visit-website-btn {
      display: inline-block;
      background-color: #1E4841;
      color: white;
      border: 2px solid #1E4841;
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
      margin-top: 10px;
      margin-left: 10px;
    }

    .visit-website-btn:hover {
      background-color: #16352f;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(30, 72, 65, 0.2);
    }
    .service-list {
      margin: 25px 0;
      padding: 0;
    }
    
    .service-list-title {
      font-size: 18px;
      font-weight: 600;
      color: #1E4841;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      position: relative;
    }
    
    .service-list-title:before {
      content: '';
      display: inline-block;
      width: 30px;
      height: 3px;
      background: linear-gradient(to right, #1E4841, #3a8a7e);
      margin-right: 10px;
      border-radius: 2px;
    }
    
    .service-list-items {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
    }
    .service-item i {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: #1E4841;
  font-size: 18px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
    .service-item {
        position: relative;
        padding: 12px 12px 12px 45px;
      background-color: rgba(30, 72, 65, 0.05);
      border-radius: 8px;
      transition: all 0.3s ease;
      cursor: default;
    }
    
    .service-item:hover {
      background-color: rgba(30, 72, 65, 0.1);
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .service-item i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #1E4841;
      font-size: 18px;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .service-item span {
      font-size: 14px;
      font-weight: 500;
      color: #333;
      line-height: 1.3;
      margin-left: 25px;
    }
    
  </style>