* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #0f172a;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  color: #2563eb;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}

nav a:hover {
  color: #2563eb;
}

.menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  background: #f8fafc;
  padding: 90px 0;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
}

.hero h1 span {
  color: #2563eb;
}

.hero p {
  margin-top: 15px;
  color: #475569;
  font-size: 18px;
}

.hero-buttons {
  margin-top: 30px;
}
.hero-buttons .btn {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@keyframes heroSlider {
  0% {
    background-image: url("/images/shiveinternationalexporter02.jpg");
  }
  33% {
    background-image: url("/images/shiveinternationalexporter03.jpg");
  }
  66% {
    background-image: url("/images/shiveinternationalexporter04.jpg");
  }
  100% {
    background-image: url("/images/shiveinternationalexporter02.jpg");
  }
}

/* ================= BUTTONS ================= */
.btn {
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  font-weight: 500;
}

.primary {
  background: #2563eb;
  color: #ffffff;
}

.primary:hover {
  background: #1e40af;
}

.secondary {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.secondary:hover {
  background: #2563eb;
  color: #ffffff;
}

/* ================= STATS ================= */
.stats {
  background: #2563eb;
  color: #ffffff;
  padding: 45px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats h2 {
  font-size: 32px;
}

/* ================= SECTIONS ================= */
.why,
.product,
.testimonials {
  padding: 80px 0;
}

.subtitle {
  color: #64748b;
  margin: 10px 0 40px;
}

/* ================= CARDS ================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin-bottom: 10px;
  color: #2563eb;
}

/* ================= PRODUCT ================= */
.product-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
}

.product ul {
  margin: 20px 0;
}

.product ul li {
  margin-bottom: 8px;
}

/* ================= SPEC BOX ================= */
.spec-box {
  background: #f1f5f9;
  padding: 25px;
  border-radius: 12px;
}

.spec-box h3 {
  margin-bottom: 15px;
  color: #2563eb;
}

/* ================= CTA ================= */
.cta {
  background: #2563eb;
  color: #ffffff;
  text-align: center;
  padding: 70px 20px;
}

/* ================= FOOTER ================= */
.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 60px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer h3,
.footer h4 {
  color: #ffffff;
  margin-bottom: 10px;
}

.footer p {
  font-size: 14px;
}

.copy {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #94a3b8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }
}
/* ===== MOBILE MENU FIX ===== */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 65px;
    right: 0;
    background: #ffffff;
    width: 100%;
    flex-direction: column;
    display: none;
    padding: 15px 0;
    border-top: 1px solid #e5e7eb;
  }

  nav a {
    padding: 12px 20px;
    margin: 0;
    border-bottom: 1px solid #f1f5f9;
  }

  nav.show {
    display: flex;
  }
}
/* ===== CONTACT PAGE CLEAN UI ===== */

.contact-section {
  padding: 80px 0;
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-card h2 {
  margin-bottom: 10px;
  color: #0f172a;
}

.contact-desc {
  color: #64748b;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-info p {
  margin-bottom: 14px;
  line-height: 1.6;
}

.quick-response {
  margin-top: 30px;
  padding: 18px;
  background: #f1f5f9;
  border-radius: 10px;
}

.quick-response h4 {
  color: #2563eb;
  margin-bottom: 5px;
}

/* FORM */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.full-btn {
  width: 100%;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
/* ================= UPDATED STATS (HONEST VERSION) ================= */
.stats h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stats p {
  font-size: 14px;
  opacity: 0.9;
}

/* ================= CENTERED SECTION TITLES ================= */
.why h2,
.product h2,
.trust-section h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
}

.why .subtitle {
  text-align: center;
  max-width: 650px;
  margin: 10px auto 50px;
  line-height: 1.6;
}

/* ================= PRODUCT SECTION IMPROVED ================= */
.product p {
  max-width: 550px;
  line-height: 1.7;
  color: #475569;
}

.product ul {
  list-style: none;
  padding-left: 0;
}

.product ul li {
  padding-left: 22px;
  position: relative;
}

.product ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* ================= SPEC BOX CLEAN ================= */
.spec-box p {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 0;
  font-size: 15px;
}

/* ================= TRUST SECTION (REPLACES TESTIMONIALS) ================= */
.trust-section {
  padding: 90px 0;
  background: #ffffff;
  text-align: center;
}

.trust-subtitle {
  max-width: 650px;
  margin: 10px auto 50px;
  color: #64748b;
  line-height: 1.6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.trust-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: left;
}

.trust-box h3 {
  color: #2563eb;
  margin-bottom: 10px;
}

/* ================= CTA FIX ================= */
.cta {
  padding: 90px 20px;
}

.cta p {
  margin: 15px 0 35px;
  opacity: 0.95;
}

.cta .btn {
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
}

.cta .btn:hover {
  background: #e0e7ff;
}
/* ================= HERO BACKGROUND IMAGE WITH OVERLAY ================= */
.hero-bg {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  animation: heroSlider 10s infinite;
  transition: background-image 1s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.75)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}
.hero-bg h1 {
  font-size: 42px;
  line-height: 1.2;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.65);
}

.hero-bg h1 span {
  color: #93c5fd;
}

.hero-bg p {
  margin-top: 18px;
  font-size: 18px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  color: #e5e7eb;            /* better contrast */
  font-weight: 400;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.6);
}

/* Buttons on dark background */
.hero-bg .secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.hero-bg .secondary:hover {
  background: #ffffff;
  color: #2563eb;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero-bg {
    min-height: 70vh;
    padding: 60px 0;
  }

  .hero-bg h1 {
    font-size: 30px;
  }
}
