* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #1e1e1e;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

/* ===== Polished Navbar ===== */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    color: #014421;
  }
}
.navbar {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  font-weight: 500;
  color: #013220;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #026733;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #026733;
}

.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu a.active {
  color: #026733;
  font-weight: 600;
}


/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    padding: 20px;
    display: none;
  }
  .nav-menu.active {
    display: flex;
  }
}

/* Hero */
.hero {
  background: #ffffff;
  padding: 100px 0 60px;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 2.8rem;
  color: #014421;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 30px;
}
.btn-primary {
  background-color: #014421;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary:hover {
  background-color: #026733;
}
.hero-animation lottie-player {
  width: 100%;
  max-width: 400px;
  margin: auto;
}


/* Founder */
.team-wrapper {
  background-color: #ffffff;
  padding: 80px 20px;
}
.founder-section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.founder-text {
  flex: 1;
}
.founder-text h2 {
  font-size: 2rem;
  color: #014421;
}
.founder-text p {
  color: #333;
  margin-bottom: 12px;
}
.founder-image {
  flex: 1;
  text-align: center;
}
.founder-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
}

/* Why Us */
.why-us {
  background-color: #ffffff;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  color: #014421;
  margin-bottom: 40px;
}
.counter-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.counter-box h3 {
  font-size: 2.5rem;
  color: #014421;
}
.counter-box p {
  font-size: 1rem;
  margin-top: 5px;
}
.why-points {
  max-width: 700px;
  margin: auto;
  text-align: left;
}
.why-item {
  padding: 10px 0;
  border-bottom: 1px dashed #98d1af;
  font-size: 1.1rem;
  color: #014421;
}

/* ABOUT SECTION */
.about-section {
  background: #f9fff9;
  padding: 100px 20px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-left {
  flex: 1;
  min-width: 280px;
}

.about-left h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #014421;
}

.about-left p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-right {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-left {
    text-align: center;
  }
}

/* Video Gallery */
.work-section {
  text-align: center;
}
.video-gallery {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
  scroll-behavior: smooth;
}
.work-video {
  position: relative;  
  flex: 0 0 auto;
  width: 300px;
  height: 500px;
  overflow: hidden;
  border-radius: 10px;
}
.work-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.sound-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.work-video {
  position: relative; /* Needed for absolute button */
  overflow: hidden;
  border-radius: 10px;
  width: 300px;
  height: 500px;
}

.sound-toggle:hover {
  background-color: rgba(0,0,0,0.8);
}
/* Responsive for Mobile */
@media (max-width: 768px) {
  .work-video {
    width: 220px;
    height: 360px;
  }
}

/* Posters */
.posters-section {
  text-align: center;
}
.poster-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.poster-gallery img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s;
}
.poster-gallery img:hover {
  transform: scale(1.05);
}

/* ===== BRANDS WE'VE WORKED WITH ===== */
.brands-section {
  background: #f8fff9;
  padding: 80px 0;
  text-align: center;
}

.brands-section .section-title {
  font-size: 2.2rem;
  color: #014421;
  margin-bottom: 10px;
}

.brands-subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.brand-grid img {
  width: 140px;
  height: 100px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.brand-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.brand-grid img {
  width: 160px;
  height: 100px;
  object-fit: contain;
  border-radius: 6px;
  background-color: #fff;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* About */
.about-section {
  text-align: center;
}
.about-text {
  max-width: 800px;
  margin: auto;
}
.about-text h2 {
  font-size: 2rem;
  color: #014421;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.1rem;
  color: #333;
}

/* Footer */
footer {
  background: #014421;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .video-gallery {
    justify-content: flex-start;
  }
}

.full-services-section {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background: #f0fff5;
  color: #014421;
  padding: 20px 25px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  background: #e4faeb;
}

