* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: poppins, sans-serif;
  background-color: #f5f5f5;
  color: #2c3e50;
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
  width: 100%;
  padding: 1.5rem 5%;
  background: #f5f5f5;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.navbar .logo img {
  width: 130px;
  max-width: 100%;
  height: auto;
  z-index: 1001;
  position: relative;
}

/* Desktop Navigation */
.nav-content {
  display: flex;
  align-items: center;
  gap: 150px;
}
.navlnks {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.navlnks li a {
  position: relative;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2c3e50;
  transition: 0.3s;
}
.navlnks li a:hover {
  color: #000;
  text-shadow: 0 0 10px #000;
}
.btns {
  display: flex;
  gap: 1.2rem;
  transition: 0.3s;
}
.btn1 {
  color: #4caf50;
  border: none;
  font-size: 1rem;
  text-shadow: none;
  background-color: transparent;
  font-weight: 600;
  cursor: pointer;
}
.btn2 {
  padding: 0.5rem 1rem;
  color: #ffffff;
  background-color: #4caf50;
  border-radius: 5px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.btn2:hover {
  background-color: #52b788;
}
.btn1:hover {
  color: #52b788;
  text-shadow: 0 0 5px #52b788;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #2c3e50;
  transition: all 0.3s ease;
  border-radius: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== HERO SECTION ========== */
.hero-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-container {
  width: 100%;
  min-height: 400px;
  gap: 100px;
  padding: 1.8rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-container .hero-text {
  padding: 2.2rem 0.5rem;
  flex: 1;
}
.hero-container .hero-text h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.hero-container .hero-text h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #4caf50;
  letter-spacing: 2px;
}
.hero-container .hero-text p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.hero-container .hero-text .hero-btn {
  font-size: 1.2rem;
  font-weight: 400;
  border: none;
  padding: 1rem 1.8rem;
  background-color: #4caf50;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
}
.hero-text .hero-btn:hover {
  background-color: #52b788;
}
.hero-container .hero-img {
  flex: 0 0 auto;
}
.hero-container .hero-img img {
  width: 300px;
  height: auto;
  display: block;
}
.hero-section .dot-img {
  text-align: center;
  margin-top: 2rem;
}

/* ========== CLIENT SECTION ========== */
.client-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 5%;
}
.client-section h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.client-section p {
  font-size: 0.8rem;
  font-weight: 300;
  text-align: center;
  color: #333;
}
.client-section .client-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  margin-top: 2rem;
}
.client-section .client-img img {
  width: 40px;
  height: auto;
}

/* ========== BOX CONTAINER ========== */
.box-cobtiner {
  width: 100%;
  padding: 0 5%;
}
.box-cobtiner h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-top: 4rem;
  letter-spacing: -1px;
}
.box-cobtiner h3 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.8rem;
  margin-top: 0.5rem;
  letter-spacing: -1px;
}
.item-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}
.item-container .item {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1;
}
.item-container .item small {
  font-size: 0.75rem;
  font-weight: 300;
  color: #333;
  display: block;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ========== UNSEEN CONTAINER ========== */
.unseen-container {
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.unseen-container .unseen-left img {
  width: 100%;
  max-width: 350px;
  height: auto;
}
.unseen-container .unseen-right {
  flex: 1;
  max-width: 580px;
}
.unseen-container .unseen-right h2 {
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 0.5rem;
}
.unseen-container .unseen-right h3 {
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.unseen-container .unseen-right p {
  font-size: 0.85rem;
  font-weight: 300;
  color: #333;
  line-height: 1.6;
}
.unseen-container .unseen-right .unseeen-btn {
  margin-top: 1.7rem;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background-color: #4caf50;
  color: #ffffff;
  border-radius: 5px;
  cursor: pointer;
}
.unseen-right .unseeen-btn:hover {
  background-color: #52b788;
}

/* ========== LOCAL CONTAINER ========== */
.local-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 3rem 5%;
  gap: 100px;
  background-color: #eeeeee;
}
.local-container .local-left {
  flex: 0 0 auto;
}
.local-container .local-left h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.1rem;
  letter-spacing: -1px;
}
.local-container .local-left h3 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #4caf50;
  letter-spacing: -1px;
}
.local-container .local-left p {
  font-size: 0.8rem;
  font-weight: 300;
  color: #333;
  word-spacing: 1px;
  max-width: 300px;
}
.local-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.local-up-one,
.local-down-one {
  display: flex;
  gap: 80px;
}
.local-up-oneofone,
.local-up-oneoftwo,
.local-down-oneofone,
.local-down-oneoftwo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.local-up-oneofone img,
.local-up-oneoftwo img,
.local-down-oneofone img,
.local-down-oneoftwo img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.local-up-oneofone div,
.local-up-oneoftwo div,
.local-down-oneofone div,
.local-down-oneoftwo div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.local-up-oneofone span,
.local-up-oneoftwo span,
.local-down-oneofone span,
.local-down-oneoftwo span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  line-height: 1;
}
.local-up-oneofone p,
.local-up-oneoftwo small,
.local-down-oneofone small,
.local-down-oneoftwo small {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

/* ========== CUSTOMER CONTAINER ========== */
.customer-container {
  width: 100%;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.customer-left img {
  width: 100%;
  max-width: 300px;
  height: auto;
}
.customer-right {
  flex: 1;
}
.customer-right p {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: #666;
}
.customer-right h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -1px;
  color: #4caf50;
  line-height: 1.4;
  margin-top: 1rem;
}
.customer-right h3 {
  font-size: 0.8rem;
  font-weight: 300;
  color: #666;
  margin-top: 0.5rem;
}
.customer-img {
  display: flex;
  gap: 30px;
  margin-top: 2rem;
  align-items: center;
}
.customer-img img {
  width: 40px;
  height: auto;
}
.customer-img small {
  display: block;
  color: #4caf50;
  font-size: 1rem;
  font-weight: 400;
}

/* ========== COMMUNITY SECTION ========== */
.community-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 5%;
}
.community-section .community-text {
  max-width: 630px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.community-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-align: center;
}
.community-section p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
}
.community-containers {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  gap: 20px;
  width: 100%;
}
.community-containers .community-items {
  flex: 1;
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.community-containers .community-items h3 {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}
.community-containers .community-items small {
  display: block;
  margin-top: 1.8rem;
  font-size: 1rem;
  font-weight: 600;
  color: #4caf50;
}

/* ========== FOOTER SECTION ========== */
.footer-section {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}
.footer-text h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -1px;
}
.footer-btn {
  display: block;
  margin: 0 auto;
  text-align: center;
  margin-top: 1.8rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 400;
  border: none;
  background-color: #4caf50;
  color: #ffffff;
  border-radius: 5px;
  margin-bottom: 4rem;
  cursor: pointer;
}
.footer-btn:hover {
  background-color: #52b788;
}
.footer-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  margin: 4rem auto 0 auto;
  padding: 3rem 5%;
  max-width: 1400px;
  width: 100%;
  background-color: #2c3e50;
  color: #ffffff;
}
.left-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.left-container img {
  width: 130px;
  height: auto;
}
.footer-socialicons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer-socialicons img {
  width: 25px;
  height: auto;
  cursor: pointer;
}
.right-container {
  display: flex;
  gap: 80px;
}
.footer-links h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.footer-firstrow p {
  color: #f5f5f5;
  padding-top: 0.8rem;
  font-size: 0.9rem;
}
.footer-links .footer-sec-btn {
  padding: 0.8rem 1.3rem;
  font-size: 0.9rem;
  border-radius: 5px;
  font-weight: 300;
  background-color: #4caf50;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* ========================================
   TABLET VIEW (768px - 1024px)
======================================== */
@media (max-width: 1024px) {
  .nav-content {
    gap: 80px;
  }
  
  .navlnks {
    gap: 1.5rem;
  }
  
  .navlnks li a {
    font-size: 0.95rem;
  }
  
  .hero-container {
    gap: 60px;
  }
  
  .hero-container .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .hero-container .hero-text h2 {
    font-size: 2rem;
  }
  
  .hero-container .hero-img img {
    width: 250px;
  }
  
  .client-section .client-img {
    gap: 3rem;
  }
  
  .item-container {
    gap: 1.5rem;
  }
  
  .unseen-container {
    gap: 50px;
  }
  
  .local-container {
    gap: 60px;
  }
  
  .local-up-one,
  .local-down-one {
    gap: 50px;
  }
  
  .customer-container {
    gap: 40px;
  }
  
  .footer-container {
    gap: 50px;
  }
  
  .right-container {
    gap: 50px;
  }
}

/* ========================================
   MOBILE VIEW (Up to 767px)
======================================== */
@media (max-width: 767px) {
  /* Navbar Mobile */
  .navbar {
    padding: 1rem 5%;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background-color: #f5f5f5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .nav-content.active {
    right: 0;
  }
  
  .navlnks {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding: 2rem 0;
  }
  
  .navlnks li {
    width: 100%;
    text-align: center;
  }
  
  .navlnks li a {
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem;
  }
  
  .btns {
    flex-direction: column;
    gap: 1rem;
    width: 80%;
    margin-top: 1rem;
  }
  
  .btn1,
  .btn2 {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
  }
  
  /* Hero Section Mobile */
  .hero-container {
    flex-direction: column-reverse;
    gap: 2rem;
    padding: 2rem 5%;
    min-height: auto;
  }
  
  .hero-container .hero-text {
    padding: 0;
    text-align: center;
  }
  
  .hero-container .hero-text h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  
  .hero-container .hero-text h2 {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
  
  .hero-container .hero-text p {
    font-size: 0.85rem;
  }
  
  .hero-container .hero-text .hero-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  
  .hero-container .hero-img img {
    width: 100%;
    max-width: 250px;
  }
  
  /* Client Section Mobile */
  .client-section {
    padding: 2rem 5%;
  }
  
  .client-section h2 {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .client-section .client-img {
    gap: 2rem;
  }
  
  .client-section .client-img img {
    width: 35px;
  }
  
  /* Box Container Mobile */
  .box-cobtiner h2,
  .box-cobtiner h3 {
    font-size: 1.5rem;
  }
  
  .item-container {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  /* Unseen Container Mobile */
  .unseen-container {
    flex-direction: column;
    gap: 2rem;
    margin: 3rem auto;
  }
  
  .unseen-container .unseen-left img {
    max-width: 280px;
  }
  
  .unseen-container .unseen-right {
    text-align: center;
  }
  
  .unseen-container .unseen-right h2,
  .unseen-container .unseen-right h3 {
    font-size: 1.5rem;
  }
  
  /* Local Container Mobile */
  .local-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 5%;
    margin: 3rem auto;
  }
  
  .local-container .local-left {
    text-align: center;
  }
  
  .local-container .local-left h2,
  .local-container .local-left h3 {
    font-size: 1.5rem;
  }
  
  .local-container .local-left p {
    max-width: 100%;
  }
  
  .local-right {
    width: 100%;
    gap: 20px;
  }
  
  .local-up-one,
  .local-down-one {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Customer Container Mobile */
  .customer-container {
    flex-direction: column;
    gap: 2rem;
    margin: 3rem auto;
  }
  
  .customer-left img {
    max-width: 220px;
  }
  
  .customer-right {
    text-align: center;
  }
  
  .customer-right h2 {
    font-size: 1.3rem;
  }
  
  .customer-img {
    justify-content: center;
  }
  
  /* Community Section Mobile */
  .community-section {
    padding: 2rem 5%;
  }
  
  .community-section h2 {
    font-size: 1.6rem;
  }
  
  .community-section p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .community-containers {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .community-containers .community-items {
    padding: 2rem;
  }
  
  /* Footer Mobile */
  .footer-text h2 {
    font-size: 2rem;
  }
  
  .footer-btn {
    font-size: 0.9rem;
    padding: 0.9rem 1.5rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem 5%;
    text-align: center;
  }
  
  .left-container {
    align-items: center;
  }
  
  .footer-socialicons {
    justify-content: center;
  }
  
  .right-container {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  
  .footer-links {
    text-align: center;
  }
}

/* ========================================
   SMALL MOBILE (Up to 480px)
======================================== */
@media (max-width: 480px) {
  .navbar .logo img {
    width: 100px;
  }
  
  .hero-container .hero-text h1 {
    font-size: 1.5rem;
  }
  
  .hero-container .hero-text h2 {
    font-size: 1.4rem;
  }
  
  .hero-container .hero-img img {
    max-width: 200px;
  }
  
  .client-section h2 {
    font-size: 1.3rem;
  }
  
  .box-cobtiner h2,
  .box-cobtiner h3 {
    font-size: 1.3rem;
  }
  
  .footer-text h2 {
    font-size: 1.6rem;
  }
  
  .nav-content {
    width: 85%;
  }
}