/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: #F5F7FA;
  color: #0B1F3A;
  line-height: 1.6;
}

/* ================= HEADER ================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #62819b;
  color: rgb(7, 7, 7);
  padding: 20px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: bold;
  font-size: 16px;
  max-width: 70%;
}

nav {
  display: flex;
}

nav a {
  color: rgb(248, 247, 247);
  margin-left: 15px;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 50vh;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

/* ================= SECTIONS ================= */
.section {
  padding: 35px 20px;
  text-align: center;
}

.light {
  background: white;
}

/* ================= CATEGORY ================= */
.category-title {
  margin-top: 30px;
  font-size: 22px;
  color: #1f6f50;
}

.category {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 15px;
}

@media (min-width: 700px) {
  .category {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .category {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  background: #fff;
  border-radius: 14px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ================= SLIDER ================= */
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

/* 🔥 KEY IMAGE FIX */
.slider img {
  min-width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

/* 🎯 MOBILE FIX (NO RIGHT SIDE CUT) */
@media (max-width: 768px) {
  .slider img {
    height: 180px;
    object-position: center right; /* 👈 shows right side too */
  }
}

/* Optional: special tuning per category */
img[src*="agriculture"],
img[src*="animal"],
img[src*="cow"],
img[src*="camel"],
img[src*="sheep"],
img[src*="gold"],
img[src*="copper"],
img[src*="marble"] {
  object-position: center;
}

/* ================= SLIDER BUTTONS ================= */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ================= TEAM ================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  border-left: 4px solid #2c7be5;
}

.owner-card {
  border-left: 4px solid #28a745;
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #C9A227;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #a8821d;
}

/* ================= CONTACT ================= */
form {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* ================= WHATSAPP ================= */
.wa-link {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #25D366;
  border-radius: 8px;
  text-decoration: none;
  color: #0B1F3A;
  font-weight: bold;
}

.wa-link:hover {
  background: #128C7E;
  color: white;
}

.phone-link {
  padding: 10px 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-decoration: none;
  color: #0B1F3A;
}

/* ================= FLOAT BUTTON ================= */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* ================= FOOTER ================= */
footer {
  background: #62819b;
  color: white;
  padding: 30px;
  text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  nav {
    display: none;
    flex-direction: column;
    background: #62819b;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 30vh;
  }

  .section {
    padding: 25px 15px;
  }

  .logo {
  font-weight: bold;
  font-size: 16px;
  max-width: 70%;
  /* ADD THESE: */
  display: flex;
  align-items: center;
}
}