        body {
            margin: 0;
        }

        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 5px 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            background-color: #f7f7f7;
            position: sticky;
            top: 0;
            z-index: 999;

        }

        .logo img {
            height: 80px;
        }

        nav {
            display: flex;
            gap: 20px;
            align-items: center;
            transition: transform 0.3s ease-in-out;
        }

        nav a {
            text-decoration: none;
            color: #075a86;
            padding: 8px 14px;
            font-weight: 600;
            font-family: 'Segoe UI', sans-serif;
            position: relative;
            border-radius: 5px;
            transition: background-color 0.3s ease, color 0.3s ease;
            text-transform: uppercase;
        }

        nav a:hover {
            color: #004d35;
            background-color: #f0f8f5;
        }

        nav a.active {
            background-color:#075a86;
            color: #fff;
        }

        .nav-buttons {
            display: flex;
            gap: 10px;
        }

        .join-btn {
            background-color: #004d35;
            color: white;
            padding: 10px 18px;
            border: none;
            border-radius: 6px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        .join-btn:hover {
            background-color: #007b52;
        }

        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            position: relative;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
        }

        .hamburger-icon {
            width: 30px;
            height: 3px;
            background-color: #004d35;
            position: relative;
            transition: background-color 0.3s ease;
        }

        .hamburger-icon::before,
        .hamburger-icon::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 3px;
            background-color: #004d35;
            left: 0;
            transition: transform 0.3s ease, top 0.3s ease;
        }

        .hamburger-icon::before {
            top: -10px;
        }

        .hamburger-icon::after {
            top: 10px;
        }

        .hamburger-menu.active .hamburger-icon {
            background-color: transparent;
        }

        .hamburger-menu.active .hamburger-icon::before {
            transform: rotate(45deg);
            top: 0;
        }

        .hamburger-menu.active .hamburger-icon::after {
            transform: rotate(-45deg);
            top: 0;
        }

        @media (max-width: 768px) {
            header {
                flex-wrap: wrap;
                justify-content: space-between;
                padding: 10px 15px;
            }

            .hamburger-menu {
                display: flex;
            }

            nav {
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background-color: #ffffff;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 10px 0;
                z-index: 998;
                transform: translateY(-100%);
                visibility: hidden;
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s ease-in-out;
                max-height: 90vh;
                overflow-y: auto;
            }

            nav a {
                padding: 12px 20px;
                text-align: center;
                border-bottom: 1px solid #f0f0f0;
            }

            nav a:last-child {
                border-bottom: none;
            }

            .nav-buttons {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 10px 20px;
                border-top: 1px solid #f0f0f0;
                margin-top: 10px;
            }

            .nav-buttons .join-btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            nav.active {
                transform: translateY(0);
                visibility: visible;
                opacity: 1;
                pointer-events: auto;
            }
        }


        .hero-slider {
            position: relative;
            overflow: hidden;
            height: 100vh;
            font-family: 'Poppins', sans-serif;
        }


        .slide {
            position: absolute;
            top: 0;
            left: 100%;
            width: 100%;
            height: 100%;
            display: flex;
            opacity: 0;
            transition: all 1s ease;
        }

        .slide.active {
            left: 0;
            opacity: 1;
        }


        .slide-image {
            flex: 1;
            background-size: cover;
            background-position: center;
            filter: brightness(0.85);
            z-index: 0;
        }

        .slide-text {
            position: absolute;
            top: 50%;
            left: 5%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            max-width: 550px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            z-index: 2;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
        }

        .slide-text h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .slide-text h1 span {
            color: #f2c744;
            font-weight: 700;
        }

        .slide-text p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            line-height: 1.7;
        }


        .hero-btn {
            background-color: #f2c744;
            color: #1e1e1e;
            padding: 12px 28px;
            font-size: 1rem;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: 0.3s ease-in-out;
        }

        .hero-btn:hover {
            background-color: #d4b24b;
            color: #2c2b2b;
        }


        @media (max-width: 768px) {
            .slide {
                position: relative;
                left: 0;
                opacity: 1;
                height: 100vh;
                display: block;
            }

            .slide-image {
                position: relative;
                width: 100%;
                height: 100vh;
                background-size: cover;
                background-position: center;
                filter: brightness(0.6);
                z-index: 0;
            }

            .slide-text {
                position: absolute;
                top: 50%;
                left: 5%;
                transform: translateY(-50%);
                background: rgba(255, 255, 255, 0.2);
                ;
                color: #fff;
                padding: 20px 24px;
                max-width: 65%;
                border-radius: 0 20px 20px 0;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
                text-shadow: none;
                text-align: left;
                z-index: 2;
                font-weight: 600;
                overflow-wrap: break-word;

            }

            .slide-text h1 {
                font-size: 2.3rem;
                color: #fff;
                ;
                margin-bottom: 12px;
            }

            .slide-text h1 span {
                color: #f2c744;
                ;
                font-weight: 800;
            }

            .slide-text p {
                font-size: 0.95rem;
                margin-bottom: 20px;
                color: #fff;
                font-size: 1.2rem;

                line-height: 1.7;
                font-family: 'Segoe UI', sans-serif;
            }

            .hero-btn {

                background-color: #f2c744;
                color: #1e1e1e;
                padding: 12px 28px;
                font-size: 1rem;
                border: none;
                border-radius: 30px;
                cursor: pointer;
                transition: 0.3s ease-in-out;
            }

            .hero-btn:hover {
                background-color: #d4b24b;
                color: #2c2b2b;
            }
        }

.testimonial-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
}

.testimonial-section h3 {
  color: #009879;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
}

.testimonial-section h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #002b5b;
  text-transform: uppercase;
}

.slider-container {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.testimonial-slide {
  background-color: #009879;
  border-radius: 20px;
  padding: 35px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-slide.active {
  opacity: 1;
  z-index: 1;
  position: relative;
}

.testimonial-text {
  flex: 1;
  text-align: left;
  padding-right: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-circle {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  background-color: #ffffff;
  color: #009879;
  font-size: 15px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.testimonial-circle:hover {
  transform: scale(1.05);
}

.stars {
  color: #f5b301;
  margin-top: 6px;
  font-size: 18px;
}

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

  .testimonial-text {
    padding-right: 0;
    margin-bottom: 20px;
    font-size: 15px;
  }

  .testimonial-circle {
    width: 140px;
    height: 140px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .testimonial-section h2 {
    font-size: 26px;
  }

  .testimonial-slide {
    padding: 20px;
  }

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

  .testimonial-circle {
    width: 120px;
    height: 120px;
    font-size: 13px;
  }
}


.ecommute-counter {
  background: #f7f7f7; /* Softer light gray */
  border-radius: 22px;
  padding: 80px 20px;
  margin: 80px auto;
  max-width: 950px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.4s ease;
}

.ecommute-counter:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.counter-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

.counter-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.counter-item h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #0A3A63; /* Navy Blue */
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
}

.counter-item p {
  font-size: 1.3rem;
  color: #2FA44F; /* Green accent */
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

.divider {
  width: 2px;
  height: 80px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .counter-box {
    flex-direction: column;
    gap: 50px;
  }
  .divider {
    display: none;
  }
  .counter-item h2 {
    font-size: 3rem;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slider .slide.active { opacity: 1; }

.hero-slider .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  top: 0;
  left: 0;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  z-index: 2;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.hero-btn {
  background: #0A3A63;
  color: #fff;
  padding: 12px 30px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #145A8D;
  border-color: #2FA44F;
  box-shadow: 0 0 10px #2FA44F;
}

/* === ICON BUTTONS === */
.icon-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.icon-box {
  background: #fff;
  color: #0A3A63;
  border-radius: 12px;
  padding: 18px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 120px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.icon-box i {
  font-size: 32px;
  margin-bottom: 10px;
  color: #0A3A63;
  transition: color 0.3s ease;
}

.icon-box span {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  text-align: center;
  color: #0A3A63;
}

.icon-box:hover {
  background: #0A3A63;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.3);
}

.icon-box:hover i {
  color: #2FA44F;
}

.icon-box:hover span {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .slide-content {
    left: 5%;
  }
  .icon-buttons {
    gap: 10px;
    justify-content: center;
  }
  .icon-box {
    width: 80px;
    height: 80px;
  }
}

.custom-footer {
    background-color:#07568e ; /* Dark green */
    color:#f7f7f7;
    padding: 60px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space7 -between;
    max-width: 1200px;
    margin: auto;
}

.footer-col {
    flex: 1 1 300px;
    margin: 15px;
    box-sizing: border-box;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo span {
    color:#f7f7f7; /* Accent red */
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f7f7f7;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color:#f7f7f7;
}

.social-icons a {
    color: #f7f7f7;
    font-size: 18px;
    margin-right: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

.footer-col i {
    margin-right: 8px;
    color: #f7f7f7;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #ccc;
}
