/* ============================= */
/* GLOBAL */
/* ============================= */

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #ffffff;
}

/* ============================= */
/* PREMIUM CORPORATE HEADER      */
/* (NON-STICKY – SCROLLS AWAY)   */
/* ============================= */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 90px;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
}

header img {
  height: 130px;   /* Strong premium presence */
  width: auto;
  display: block;
  
}


/* Navigation */

nav {
  display: flex;
  align-items: center;
}

nav a {
  margin-left: 45px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

/* Elegant underline animation */

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: #1f6b3a;
  transition: width 0.3s ease;
}

nav a:hover {
  color: #1f6b3a;
}

nav a:hover::after {
  width: 100%;
}



/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero {
  padding: 180px 60px;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
              url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #ffffff;
}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h2 {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 30px;
}

.hero p {
  max-width: 850px;
  margin: 0 auto 50px auto;
  font-size: 18px;
  line-height: 1.8;
}

/* ============================= */
/* BUTTON */
/* ============================= */

.cta-btn {
  display: inline-block;
  background: #1f6b3a;
  color: #fff;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #15552c;
  transform: translateY(-3px);
}

/* ============================= */
/* SECTION GENERIC */
/* ============================= */

.section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1f6b3a;
  text-align: left;
}

.section h3 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #1f6b3a;
  text-align: left;
}

.section p {
  max-width: 900px;
  font-size: 17px;
  line-height: 1.7;
  text-align: left;
}

/* ============================= */
/* CREDIBILITY */
/* ============================= */

.credibility {
  display: flex;
  justify-content: space-around;
  text-align: center;
  padding: 70px 40px;
  background: #f8f8f8;
}

.cred-box h3 {
  font-size: 28px;
  color: #1f6b3a;
}

.cred-box p {
  font-size: 15px;
  color: #555;
}

/* ============================= */
/* INDUSTRIES SECTION */
/* ============================= */

.industries {
  padding: 100px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.industries h2 {
  font-size: 38px;
  margin-bottom: 60px;
  color: #1f6b3a;
  text-align: center;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.industry-card {
  padding: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
  transition: 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.industry-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1f6b3a;
}

.industry-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}


/* Distribution page grid version */

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  text-align: center;
}

.logo-grid img {
  max-width: 160px;
  max-height: 80px;
  margin: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.logo-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ============================= */
/* CONTACT PAGE */
/* ============================= */

.page-hero {
  padding: 120px 60px;
  text-align: center;
  background: #f4f6f5;
}

.page-hero h1 {
  font-size: 42px;
  color: #1f6b3a;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  color: #555;
}

.contact-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.contact-info,
.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
}

.contact-form button {
  width: 100%;
}

/* ============================= */
/* FORMS */
/* ============================= */

form input,
form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  border: none;
  cursor: pointer;
}

/* ============================= */
/* FOOTER */
/* ============================= */

footer {
  background: #1f6b3a;
  color: #fff;
  padding: 40px 60px;
  font-size: 15px;
  text-align: center;
}

/* ============================= */
/* WHATSAPP FLOAT */
/* ============================= */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  padding: 14px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 1000;
}

.whatsapp-float:hover {
  background: #1ebe5b;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .credibility {
    flex-direction: column;
    gap: 40px;
  }

  header {
    flex-direction: column;
    gap: 20px;
  }

}
/* ============================= */
/* LARGE PREMIUM DISTRIBUTION LOGOS */
/* ============================= */

.brands {
  max-width: 1400px;
  margin: 80px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 70px;
  align-items: center;
  justify-items: center;
}

.brands a {
  width: 260px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #ffffff;
  border-radius: 14px;
  transition: all 0.35s ease;
}

.brands a:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.brands img {
  max-width: 220px;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: all 0.35s ease;
}

.brands a:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.06);
}
