/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #222;
  background-color: #f9f9f9;
  line-height: 1.6;
}

/* Navbar container */
.navbar {
  background-color: #5e2b97;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 6px 20px;
}

/* Row 1 (logo + site name + hamburger for mobile) */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-logo {
  height: 65px;
  width: auto;
  border-radius: 6px;
}

.site-text {
  font-size: 22px;
  font-weight: bold;
}

/* Hide hamburger by default (only mobile shows it) */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Row 2 (unit text + logo) */
.second-row {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 2px;
  margin: 3px 20px 4px 0;
}

.unit-text {
  font-size: 12px;
  font-weight: bold;
}

.pashas-logo {
  height: 75px;
  width: auto;
}

/* Nav links (row 3) */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 5px;
  flex: 1;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.35rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffeb3b;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #ffeb3b;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Desktop */
@media (min-width: 769px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .nav-links {
    position: absolute;  
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .nav-links a {
    font-size: 19px;
    font-weight: 500;
    color: #fff;
  }
}

/* Mobile only */
@media (max-width: 768px) {
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .top-row {
    width: 100%;
  }

  .brand {
    gap: 8px;
    text-align: center;
  }

  .main-logo {
    height: 55px;
  }

  .site-text {
    font-size: 18px;
  }

  .hamburger {
    display: block;
  }

  .second-row {
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 5px;
    width: 100%;
    text-align: center;
  }

  .unit-text {
    font-size: 20px;
  }

  .pashas-logo {
    height: 70px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    display: inline-block;
    padding: 5px 0;
  }
}

/* Contact Section */
.contact-info {
  padding: 40px 20px;
  background-color: #fff;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #5e2b97;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.info-item {
  background-color: #f3e5f5;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-item i {
  font-size: 24px;
  color: #5e2b97;
  margin-bottom: 10px;
}

.info-item p {
  margin-top: 5px;
}

.info-item a {
  color: #5e2b97;
  text-decoration: none;
}

/* ===== What Our Clients Say Section ===== */
.about-reviews {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.about-reviews h2 {
  text-align: center;
  color: #5e2b97;
  font-size: 36px;
  margin-bottom: 50px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* reduced min width */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  max-width: 500px;  /* prevent overly wide stretching */
  width: 100%;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 600px) {
  .review-grid {
    grid-template-columns: 1fr; /* stack cards */
    gap: 15px;
  }

  .review-card {
    max-width: 100%;
  }
}

/* ===== Brand Partners Section ===== */
.partners {
  padding: 50px 20px;
  background: #fff;
}

.partners h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #5e2b97;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-radius: 15px;
}

.partner-logos img {
  max-height: 120px;
  max-width: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
  background-color: #f3e5f5;
}

.partner-logos img:hover {
  transform: scale(1.1);
}

/* About Us Section with Map */
.about-flex {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap; /* stack on small screens */
  padding: 40px 20px 20px 20px; /* reduced bottom padding from 40px to 20px */
  background-color: #f8f8f8;
}

.about-text {
  flex: 1 1 400px; /* flexible width, min 400px */
}

.about-text h3 {
  margin-bottom: 15px;
  color: #5e2b97;
}

.about-map {
  flex: 1 1 400px;
}

.about-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 3px solid #5e2b97; /* purple border */
  border-radius: 6px;
}

footer {
  background-color: #5e2b97;
  color: #fff;
  text-align: center;
  padding: 0px;
}
