:root {
  --primary-green: #2d5016;
  --secondary-green: #4a7c2c;
  --gold: #d4af37;
  --light-cream: #f5f3e8;
  --dark: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.header-top {
  background: var(--primary-green);
  color: white;
  padding: 12px 0;
  font-size: 14px;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-top span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
}

.header-main {
  background: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 180px;
  height: 80px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

@keyframes rotateLogo {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(5deg) scale(1.05);
  }
}

.brand-name h1 {
  font-size: 26px;
  color: var(--primary-green);
  margin: 0;
  font-weight: bold;
}

.brand-name p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

nav ul li a:hover {
  color: var(--gold);
}

nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--primary-green);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  animation: pulse 2s infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(10deg);
}

.whatsapp-float i {
  color: white;
  font-size: 30px;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 650px;
}

/* .hero-container-image {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: floatContainer 6s ease-in-out infinite;
  width: 450px;
  height: 450px;
  background: url("../images/azamexport.png") center no-repeat;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 5px solid var(--gold);
} */
.hero-container-image {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;

  width: 450px;
  height: 450px;

  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 5px solid var(--gold);

  display: block;

  animation: floatContainer 6s ease-in-out infinite;
  /* background: #ffffff; */
}

/* IMAGE STYLE */
.hero-container-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes floatContainer {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-45%) scale(1.02);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--primary-green);
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: bold;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
  color: var(--primary-green);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gold);
}

.products-section {
  padding: 80px 0;
  background: white;
}

.product-category {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.product-category:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border-color: var(--gold);
}

.product-category h3 {
  color: var(--primary-green);
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-category:hover h3 {
  color: var(--gold);
}

.product-category .icon {
  font-size: 2.5rem;
  color: var(--gold);
  transition: all 0.3s ease;
}

.product-category:hover .icon {
  transform: rotate(360deg) scale(1.2);
}

.product-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.tab-btn {
  background: white;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: var(--secondary-green);
  color: white;
  transform: translateY(-3px);
}

.tab-btn.active {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-15px) rotate(2deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.product-image {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-info {
  padding: 20px;
}

.product-info h4 {
  color: var(--primary-green);
  font-weight: bold;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.product-card:hover .product-info h4 {
  color: var(--gold);
}

.product-info p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f3e8 0%, #ffffff 100%);
}

.gallery-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.gallery-slide {
  min-width: 100%;
  height: 500px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.gallery-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.4),
    rgba(74, 124, 44, 0.4)
  );
}

.gallery-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  z-index: 2;
}

.gallery-content h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-content p {
  font-size: 1.2rem;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.gallery-btn {
  background: rgba(212, 175, 55, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: var(--gold);
  transform: scale(1.15);
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}

.testimonials-section {
  padding: 80px 0;
  background: var(--light-cream);
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: var(--gold);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.author-info h5 {
  margin: 0;
  color: var(--primary-green);
}

.author-info p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.about-section {
  padding: 80px 0;
  background: white;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-box {
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--primary-green)
  );
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.05);
}

.stat-box h2 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-section {
  padding: 80px 0;
  background: var(--light-cream);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-card .icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-card:hover .icon {
  transform: rotateY(360deg);
}

footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold);
  transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

@media (max-width: 992px) {
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  nav ul {
    display: none;
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-container-image {
    width: 300px;
    height: 300px; display: none;
  }
}

@media (max-width: 576px) {
  .hero-container-image {
    width: 200px;
    height: 200px;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
     display: none;
  }
}
