* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #0f172a;
  --accent: #f59e0b;
  --text: #1e293b;
  --yellow: #f2b401;
  --dark-green: #064916;
  --black: #040404;
  --white: #ffffff;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================= Header & Navigation ================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--black);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
a {
  text-decoration: none;
  color: inherit;
}
nav.container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.8rem;
  /* font-weight: bold;
  color: var(--yellow);
  letter-spacing: 1px; */
}
.logo img {
  height: 45px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--white);
  padding: 0.5rem 0.7rem;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--yellow);
}

/* CTA Button */
.cta-btn {
  background: var(--yellow);
  color: var(--black);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--dark-green);
  color: var(--white);
}

/* Dropdown Menu */
.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--black);
  min-width: 200px;
  border: 1px solid var(--dark-green);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--white);
}

.dropdown-content a:hover {
  background: var(--dark-green);
  color: var(--yellow);
}

/* Mobile Menu */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: var(--black);
    width: 100%;
    height: calc(100% - 70px);
    gap: 0;
    padding-top: 2rem;
    transition: left 0.3s ease;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
  }

  /* Show menu on hover for mobile isn't practical, so it's hidden by default */
  .dropdown-content {
    position: static;
    border: none;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--yellow);
    cursor: pointer;
  }
}

@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ================= Hero Section ================= */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  margin-top: 70px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#040404ea, #064916c2);
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  padding: 20px;
  animation: fadeUp 1.2s ease-in-out;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero h1 span {
  color: #f2b401;
}

.hero p {
  font-size: 1.2rem;
  color: #eaeaea;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #f2b401;
  color: #040404;
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
  color: var(--white);
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #040404;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* ================= Section ================= */

.section .container-two {
  padding: 5rem 0;
}
.container-two {
  padding: 50px 20px;
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.section-title p {
  font-size: 1.125rem;
  color: var(--black);
  max-width: 700px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--dark-green);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}

.service-card:hover {
  box-shadow: 0 10px 30px #f2b60152;
  transform: translateY(-5px);
  border-color: var(--yellow);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--dark-green), var(--yellow));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.service-card p {
  color: var(--black);
  margin-bottom: 1rem;
}

.service-card span {
  color: var(--dark-green);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ================= Stats Section ================= */
.stats {
  background: linear-gradient(135deg, var(--black), var(--dark-green));
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--yellow);
  opacity: 0.1;
  border-radius: 50%;
  top: -200px;
  right: -200px;
}
.stats::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--accent);
  opacity: 0.1;
  border-radius: 50%;
  top: 160px;
  left: -172px;
}

.container-three {
  max-width: 1200px;
  margin: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 40px 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(242, 180, 1, 0.25);
}

.stat-item h3 {
  font-size: 3.5rem;
  color: var(--yellow);
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-item p {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Animation */
.stat-item {
  opacity: 0;
  transform: translateY(30px);
}

.stat-item.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease;
}

/* ================= Testimonial Section ================= */

.container-four {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: var(--black);
}
.testimonial-section {
  max-width: 980px;
  width: 100%;
  background: var(--dark-green);
  border-radius: 26px;
  padding: 60px 50px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--yellow), transparent 70%);
  opacity: 0.6;
  animation: pulse 4s infinite ease-in-out;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 45px;
}

.testimonial-header h2 {
  font-size: 2.7rem;
  color: var(--yellow);
  margin-bottom: 10px;
}

.testimonial-header p {
  font-size: 1.1rem;
  opacity: 0.85;
}

.testimonial-container {
  position: relative;
  min-height: 300px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(60px) scale(0.96);
  transition: all 0.8s ease;
  padding: 38px;
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.quote {
  font-size: 4.2rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 1.22rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.client {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--yellow);
  box-shadow: 0 0 18px rgba(242, 180, 1, 0.6);
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.client-info span {
  font-size: 0.95rem;
  color: var(--yellow);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--yellow);
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.arrow:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
}

.arrow.prev {
  left: -22px;
}
.arrow.next {
  right: -22px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.dot.active {
  background: var(--yellow);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(242, 180, 1, 0.7);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.9;
  }
}

/* ================== iPad ================== */
@media (max-width: 1024px) {
  .testimonial-section {
    padding: 50px 35px;
  }
  .testimonial-text {
    font-size: 1.15rem;
  }
  .arrow.prev {
    left: 10px;
  }
  .arrow.next {
    right: 10px;
  }
}

/* ================== Mobile ================== */
@media (max-width: 600px) {
  .testimonial-header h2 {
    font-size: 2rem;
  }
  .testimonial-container {
    min-height: 380px;
  }
  .testimonial {
    padding: 28px;
  }
  .testimonial-text {
    font-size: 1.05rem;
  }
  .quote {
    font-size: 3.4rem;
  }
  .avatar {
    width: 52px;
    height: 52px;
  }
}

/* ================== CTA Section Styling ================== */

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #000000f8, #000000f8);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: 700px;
  animation: fadeInUp 1.2s ease-out;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: #f2b401;
  animation: fadeIn 1s ease-out;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 35px;
  line-height: 1.6;
  animation: fadeIn 1.3s ease-out;
}

/* Button Styling */
.btn-primary {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  color: #064916;
  background: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  color: #f2b401;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 12px 28px;
  }
}

/* ================== Footer Section Styling ================== */

footer {
  background: var(--dark-green);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  padding: 50px 20px 20px 20px;
  perspective: 1000px; /* 3D perspective */
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  border-radius: 15px;
  padding: 40px;
  background: linear-gradient(145deg, #064916, #064916);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--yellow);
  margin-bottom: 15px;
  font-size: 1.2rem;
  position: relative;
}

.footer-section h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--yellow);
  margin-top: 5px;
  border-radius: 3px;
}

.footer-section p,
.footer-section ul,
.footer-section li {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  text-decoration: none;
  color: var(--white);
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--yellow);
}
.footer-section .contact-info p a {
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-section .contact-info p a:hover {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 10px var(--yellow));
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 0.9rem;
  color: #ececec;
}

.footer-bottom a {
  color: var(--yellow);
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}
