/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

/* ===== Header ===== */
header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 40px;
  margin-left: auto;
  margin-right: 40px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #28a745;
}

/* Call Button */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #28a745;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px; /* pill shape */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s;
}

.call-btn:hover {
  background: #218838;
}

.call-btn i {
  font-size: 16px;
}

/* ===== Carousel ===== */
.hero {
  margin-top: 0;
}

.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 500px;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 50%;
}

.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* ===== Brands Section ===== */
.brands {
  padding: 50px 20px;
  text-align: center;
}

.brands h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  justify-items: center;
}

.brand-tile {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 10px;
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.brand-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.brand-tile img {
  max-height: 250px;
  max-width: 100%;
  object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-tile {
    width: 120px;
    height: 80px;
    padding: 15px;
  }
  .brand-tile img {
    max-height: 50px;
  }
}



/* ===== WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
  transition: background 0.3s;
}

.whatsapp-float:hover {
  background: #1ebe5b;
}

.whatsapp-float i {
  font-size: 20px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Product Section */
.product-section {
  width: 100%;
  background: #f8f8f8;
  padding: 60px 20px;
}

.product-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.product-image img {
  width: 100%;
  max-width: 175px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-content {
  flex: 1;
}

.product-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.product-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column;
    text-align: center;
  }
  .product-image img {
    max-width: 100%;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #fff;
  color: #222;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 3rem 0;
}

/* Section 1: Background */
.background .container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.background .image img {
  width: 280px;
  border-radius: 10px;
}

.background .text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.background .text h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #222;
}

.background .text p {
  margin-bottom: 0.5rem;
  color: #555;
}

/* Section 2: Team */
.team {
  background: #f9f9f9;
  text-align: center;
}

.team h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.team-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 240px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.card .role {
  font-size: 1rem;
  color: #007b5e;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

/* Section 3: Journey */
.journey h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.timeline {
  border-left: 3px solid #007b5e;
  padding-left: 2rem;
  position: relative;
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0.72rem;
  width: 15px;
  height: 15px;
  background: #007b5e;
  border-radius: 50%;
}

.year {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007b5e;
}

.content h4 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
}

.content p {
  color: #555;
}

.footer {
  background: #fff;   /* White background */
  color: #000;        /* Black text */
  padding: 40px 20px;
  border-top: 2px solid #ddd;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.footer-logo img {
  width: 150px;
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #2e7d32;   /* Green headings */
}

.footer p {
  margin: 5px 0;
  font-size: 0.95rem;
  color: #000;
}

.social-links a {
  color: #000;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #2e7d32;
}

.footer-map {
  display: flex;
  flex-direction: column;  /* stack heading and buttons */
  align-items: flex-start; /* keep everything left aligned */
}

.map-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;         /* wrap if too many buttons */
  margin-top: 8px;         /* spacing below heading */
}

.map-buttons a {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s;
  font-size: 0.95rem;
  white-space: nowrap;
}

.map-buttons a:hover {
  background: #1b5e20;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .footer-logo img {
    margin-bottom: 20px;
  }
}
.team-contact-icons {
  margin-top: 10px;
}
.team-contact-icons a {
  margin-right: 10px;
  color: #25d366;
  font-size: 1.3em;
  text-decoration: none;
  transition: color 0.2s;
}
.team-contact-icons a[title="Call"] {
  color: #000000;
}
.team-contact-icons a:hover {
  opacity: 0.7;
}
/* Get in Touch Section */
.get-in-touch {
  padding: 1px 0;   /* reduced from 80px */
  background: #fff;
}

.get-in-touch-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding-left: 5%;
}

.get-in-touch h2 {
  font-size: 58px;   /* smaller heading */
  font-weight: 400;
  margin-bottom: 10px; /* reduced gap */
  color: #000;
}

.get-in-touch .subtitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #333;
  line-height: 1.4;
  margin: 0; /* remove extra space */
}
.contact-locations {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.location-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.location-left {
  flex: 1;
}

.location-left h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.location-left p {
  font-size: 16px;
  color: #333;
}

.location-right {
  flex: 2;
  font-size: 16px;
  color: #000;
}

.location-right p {
  margin: 6px 0;
}

.location-right strong {
  font-weight: 700;
}
/* ===== Responsive Navbar ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px;
    border-radius: 8px;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}

/* ===== Carousel Fix ===== */
.carousel {
  height: auto;
}
.carousel-slide {
  height: auto;
}
.carousel-slide img {
  height: auto;
  max-height: 70vh;
  object-fit: cover;
}

/* ===== Grids ===== */
@media (max-width: 768px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== About Section ===== */
@media (max-width: 768px) {
  .background .container {
    flex-direction: column;
    text-align: center;
  }
  .background .image img {
    width: 200px;
  }
}

/* ===== Contact Locations ===== */
@media (max-width: 768px) {
  .location-box {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== Footer Fix ===== */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-map {
    align-items: center;
  }
}
/* ===== MOBILE INTERFACE ===== */

/* ===== NAV BASE (keeps existing desktop styling; just ensure flex) ===== */
.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}

/* Base nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}

/* Default desktop layout: Logo → Menu → Call */
.logo-link   { order: 1; }
.nav-links   { order: 2; margin-left: auto; } /* pushes menu to middle/right */
.call-btn    { order: 3; }
.hamburger   { display: none; } /* hidden on desktop */

/* Mobile layout: Logo → Call → Hamburger */
@media (max-width: 900px) {
  .nav-links { display: none; }  /* hide desktop menu */
  .hamburger { display: inline-flex; order: 3; margin-left: auto; }

  .logo-link { order: 1; }
  .call-btn  { order: 2; margin-left: 12px; }
}


/* Ensure logo and call button have sensible defaults */
.logo-link img {
  height: 100px; /* change to desired */
  display: block;
}
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
}

/* Hide default hamburger by default (desktop) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
/* hamburger lines */
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  margin: 4px 0;
}

/* ===== Drawer & overlay (hidden by default) ===== */
.drawer-overlay {
  position: fixed;
  inset: 0;              /* top/right/bottom/left = 0 */
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 1200;
}

/* Drawer slides from right to left and occupies 75% of viewport width */
.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 75vw;
  max-width: 420px; /* optional max width for large phones */
  background: #fff;
  transform: translateX(100%); /* start off-screen to the right */
  transition: transform 0.36s cubic-bezier(.2,.9,.2,1);
  z-index: 1250;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: -8px 0 24px rgba(0,0,0,0.12);
  overflow-y: auto;
}

/* When active */
.drawer-overlay.visible { opacity: 1; visibility: visible; }
.menu-drawer.open { transform: translateX(0); }

/* Drawer header + close */
.drawer-header { display:flex; justify-content:flex-end; }
.drawer-close {
  font-size: 30px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}

/* Drawer links styling */
.drawer-links {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.drawer-links a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  padding: 10px;
  border-radius: 8px;
  display: block;
}

/* Body state when drawer open — prevent background scroll */
body.drawer-open {
  overflow: hidden;
}

/* ===== MOBILE LAYOUT rules (only active <= 900px) ===== */
@media (max-width: 900px) {
  /* show hamburger */
  .hamburger { display: inline-flex; }

  /* hide desktop nav links on mobile */
  .nav-links { display: none !important; }

  /* explicit ordering on mobile: logo -> call -> hamburger */
  .logo-link { order: 1; }
  .call-btn   { order: 2; }
  .hamburger  { order: 3; margin-left: auto; } /* pushes the hamburger to the right */

  /* Align items and spacing */
  .site-nav { align-items: center; gap: 10px; }
  .logo-link img { height: 40px; }
}

/**/
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1200;
}

.drawer-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 75vw;
  max-width: 420px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1250;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-drawer.open {
  transform: translateX(0);
}

.drawer-close {
  align-self: flex-end;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}


