body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
    color: #222;
  }
  
   :root {
      --soil-brown: #5a3721;
      --clay-orange: #D2691E;
      --beige: #F3EFE0;
      --text-dark: #2e2e2e;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
  .hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  
  .bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .hero-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    text-align: center;
  }
  
  .hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
  }
 
  .about-modern {
  background: radial-gradient(circle at center center, rgb(239,238,192),rgba(239,154,47, 0.56));
  padding: 4rem 2rem;
  color: #fff;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1200px;
  margin: auto;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  COLOR: #5a3721;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.about-text h2 span {
  color: #5a3721; /* vibrant blue accent */
}

.about-feature {
  margin-bottom: 1.5rem;
}

.feature-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: #00B2FF;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #5a3721;
}

.about-image {
  flex: 1;
  border: 2px solid #f5b429;
  border-radius: 12px;
  overflow: hidden;
  max-width: 500px;
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.why-choose {
  background: radial-gradient(circle at center center, rgb(239,238,192),rgba(239,154,47, 0.56));
  color: #fff;
  padding: 4rem 2rem;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.why-textbox {
  background: linear-gradient(196deg, #f7be69, #302803b7);
  padding: 2rem;
  border-radius: 20px;
  flex: 1 1 300px;
  color: #fff;
}

.why-textbox h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.why-textbox h2 span {
  color: #fff;
}

.why-textbox p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  
}

.why-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.why-btn:hover {
  background: #fff;
  color: #007eff;
}

.stats-grid {
  display: grid;
  flex: 2 1 600px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: #111;
  border: 1px solid #ffa600;
  border-radius: 14px;
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
}

.stat-card .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.stat-card h3 {
  font-size: 1.6rem;
  margin: 0.2rem 0;
  color: #fff;
}

.stat-card p {
  color: #ffae00;
  font-weight: 500;
}

/* Special blue background for one card */
.stat-card.stat-blue {
  background: linear-gradient(145deg, #f7be69, #302803b7);
  color: #fff;
  border: none;
}

@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}

/* application css */
  .applications-section {
  background: radial-gradient(circle at center center, rgb(239, 238, 192), rgb(255 174 72 / 54%));  
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 1rem;
  margin: 0.5rem 0 2rem;
  font-weight: 600;
  color: #5a3721;
}

.section-subtitle {
  font-size: 2.4rem;
  font-weight: 500;
  color: #5a3721;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.app-card {
  background-image: radial-gradient(circle at center center, rgb(239,238,192),rgba(239,154,47, 0.56));
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.app-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid #db981c;
}

.app-card img,
.angled-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  transition: transform 0.4s ease;
}

.app-card:hover img,
.app-card:hover .angled-img {
  transform: scale(1.08);
}

.app-content {
  padding: 1.2rem 0.5rem;
}

.app-number {
  font-size: 0.9rem;
  color: #5a3721;
  margin-bottom: 0.2rem;
}

.app-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #5a3721;
}

.app-desc {
  font-size: 0.95rem;
  color: #5a3721;
  margin-bottom: 1.5rem;
}

.learn-more {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5a3721;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.app-card:hover .learn-more {
  color: #b16400;
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
  .app-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .app-grid {
    grid-template-columns: 1fr;
  }
}





   .clients {
    padding: 3rem 2rem;
    text-align: center;
  }
  .clients h2{
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .icons img {
    /* height: 100px; */
    width: 100%;
    margin: 0 0rem;
  }
  
  
  
  .clients {
    padding: 4rem 2rem;
    background: radial-gradient(circle at center center, rgb(239, 238, 192), rgba(239, 154, 47, 0.56));
    text-align: center;
    overflow: hidden;
    color: #5a3721;
  }
  
  .client-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
  }
  
  .client-track {
    display: flex;
    gap: 5rem;
    animation: scrollLeft 20s linear infinite;
    align-items: center;
  }
  
  .client-track img {
    height: 80px; /* ← increase size here */
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
  }
  
  
  .client-track img:hover {
    filter: grayscale(0%);
  }
  
  @keyframes scrollLeft {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
 