/* --- Fix language selector overlap on mobile --- */
@media (max-width: 600px) {
  header > div {
    flex-direction: column;
    align-items: stretch !important;
    gap: 8px !important;
    min-height: 110px;
    position: relative;
  }
  #mainTitle {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-size: 1.25rem !important;
    text-align: center;
    z-index: 1;
  }
  #languageSelect {
    position: static !important;
    margin: 0 auto 0 0 !important;
    display: block;
    width: 90%;
    max-width: 220px;
    margin-bottom: 6px !important;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  #logoDP {
    margin: 0 auto 0 auto !important;
    display: block;
    height: 48px !important;
    max-width: 90px !important;
  }
}
.footer-main {
  background: #1877f3;
  color: #fff;
  padding: 2.2rem 0 0 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-top: 2.5rem;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2.5rem;
  padding: 0 2rem;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 1.5rem;
}
.footer-map-embed iframe {
  width: 100%;
  max-width: 260px;
  min-width: 180px;
  height: 120px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px #0002;
  margin-top: 0.5rem;
}
.logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}
.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px #0002;
  margin-bottom: 0.3rem;
}
.footer-brand-name {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}
.footer-location {
  font-size: 1rem;
  color: #ffe6e6;
  margin-bottom: 0.5rem;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.2rem;
}
.footer-social-icon img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 1px 4px #0001;
  transition: transform 0.18s, box-shadow 0.18s;
}
.footer-social-icon:hover img {
  transform: scale(1.13) rotate(-7deg);
  box-shadow: 0 2px 10px #fff3;
}
.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #ffe6e6;
  letter-spacing: 0.5px;
}
.footer-contact-item {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.footer-contact-item span {
  font-weight: 500;
  color: #fff;
  margin-right: 0.3rem;
}
.footer-contact-item a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: #ffe6e6;
}
.footer-visitor-count {
  font-size: 2.7rem;
  line-height: 1.18;
  font-weight: bold;
  color: #ffea00;
  margin-top: 0.2rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(255, 234, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulseGlow 2s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  gap: 2px;
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 2px 8px rgba(255, 234, 0, 0.3);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 4px 16px rgba(255, 234, 0, 0.5);
    transform: scale(1.02);
  }
}

.footer-visitor-count:hover {
  color: #fff;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

.footer-visitor-count .plus-symbol {
  font-size: 1.8rem;
  font-weight: normal;
  opacity: 0.9;
  margin-top: -2px;
  transition: all 0.3s ease;
}

.footer-visitor-count:hover .plus-symbol {
  opacity: 1;
  transform: scale(1.1);
}
.footer-bottom {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  margin-top: 0.5rem;
  padding-bottom: 0.7rem;
  border-top: 1px solid #fff2;
  padding-top: 0.7rem;
  background: #000;
  margin-bottom: 0;
  position: relative;
  bottom: 0;
  width: 100%;
}
@media (max-width: 800px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .footer-col {
    min-width: 0;
  }
}
/* ===== Profile Card Modern Layout ===== */
.profile-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: linear-gradient(90deg, #f7faff 60%, #e3f0ff 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(0,64,128,0.10);
  padding: 0;
  overflow: hidden;
  min-height: 220px;
}
.profile-info {
  flex: 1 1 0;
  padding: 36px 32px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.profile-name {
  font-size: 1.55rem;
  color: #004080;
  font-weight: bold;
  margin: 0 0 10px 0;
  letter-spacing: 0.5px;
}
.profile-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.13rem;
  color: #222;
  margin-bottom: 4px;
}
.profile-icon img {
  width: 26px;
  height: 26px;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.08));
  transition: transform 0.15s;
}
.profile-icon:hover img {
  transform: scale(1.13) rotate(-8deg);
  filter: drop-shadow(0 2px 6px #007bff44);
}
.profile-photo {
  flex: 0 0 210px;
  background: linear-gradient(120deg, #e3f0ff 60%, #b3d8ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  max-width: 240px;
  padding: 0;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  max-width: 180px;
  max-height: 240px;
  object-fit: cover;
  border-radius: 0 22px 22px 0;
  box-shadow: 0 2px 16px rgba(0,64,128,0.10);
  border: 4px solid #fff;
}
@media (max-width: 700px) {
  .profile-card { flex-direction: column-reverse; min-height: unset; }
  .profile-photo { max-width: 100%; border-radius: 0 0 22px 22px; }
  .profile-photo img { border-radius: 0 0 22px 22px; }
  .profile-info { padding: 28px 18px 18px 18px; }
}
html {
  scroll-behavior: smooth;
}
/* 2 rows, 4 columns grid for brand logos */
.brand-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
  justify-items: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto 32px auto;
}
.brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #f7f7f7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: block;
}
.brand-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 220px;
  min-height: 240px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.brand-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}
/* Attractive and centered brand logos in cards */
.brand-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 32px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 220px;
  min-height: 240px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.brand-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}
.brand-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #f7f7f7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: block;
}
.brands {
  margin-top: 32px;
  margin-bottom: 32px;
}
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: linear-gradient(-45deg, #1e3c72, #2a5298, #00c6ff, #0072ff);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating Background Text */
.floating-bg-text {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.floating-bg-text div {
  position: absolute;
  white-space: nowrap;
  font-size: 60px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  color: rgba(255, 255, 255, 0.03);
  animation: floatText 40s linear infinite;
}

.floating-bg-text div:nth-child(1) { top: 10%; left: -100%; animation-delay: 0s; }
.floating-bg-text div:nth-child(2) { top: 30%; left: -100%; animation-delay: 5s; }
.floating-bg-text div:nth-child(3) { top: 50%; left: -100%; animation-delay: 10s; }
.floating-bg-text div:nth-child(4) { top: 70%; left: -100%; animation-delay: 15s; }
.floating-bg-text div:nth-child(5) { top: 90%; left: -100%; animation-delay: 20s; }

@keyframes floatText {
  0% { transform: translateX(0); }
  100% { transform: translateX(200%); }
}

/* Header */
header {
  background: linear-gradient(to right, #004080, #007bff);
  color: white;
  padding: 1rem 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffea00;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 1rem;
  background: linear-gradient(to right, #007bff, #00bfff);
  color: white;
  animation: fadeInSlide 1s ease-in;
}

@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 20px;
  background: linear-gradient(135deg, #00bfff, #004080);
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #007bff, #002a66);
}

section {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  scroll-margin-top: 120px; /* Increased for large header image */
}

#services {
  background: #003366; /* dark blue background */
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#services h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #ffea00; /* Yellow title for attention */
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.services-list li {
  background: #007bff;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s ease;
  cursor: pointer;
}

.services-list li:hover {
  background: #0056b3;
  transform: scale(1.05);
}



/* Brand Cards */
.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
  justify-items: center;
}

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  padding: 24px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.brand-card:hover {
  transform: scale(1.1) rotate(-1deg);
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.4);
}

.brand-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 8px; /* Small gap below logo */
  border-radius: 12px;
  background: #f7f7f7;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: block;
}

.brand-card p {
  font-weight: bold;
  color: #004080;
  font-size: 1.05rem;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  max-width: 140px;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}

form input,
form select,
form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

form button {
  background: #004080;
  color: white;
  font-weight: bold;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #002a66;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: popupIn 0.4s ease;
}

@keyframes popupIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-content h3 {
  margin-bottom: 1rem;
  color: #004080;
}

.modal-content button {
  background: #004080;
}

.modal-content button:hover {
  background: #002a66;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
}

/* Footer */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
#testimonials {
  background: #f0f8ff;
  padding: 2rem;
  margin: auto;
  max-width: 800px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.testimonial {
  margin-top: 1rem;
  font-style: italic;
  color: #004080;
}

.testimonial h4 {
  margin-top: 0.5rem;
  font-weight: normal;
  color: #333;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  height: 60px;
  width: 60px;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
#whyus {
  background: #f1f9ff;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#whyus h2 {
  color: #004080;
  text-align: center;
  margin-bottom: 1rem;
}

#whyus ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
}

#whyus li {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

#whyus li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: green;
}
#whyus {
  background: #f1f9ff;
  color: #222; /* ✅ Add this line */
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

#whyus h2 {
  color: #004080;
  text-align: center;
  margin-bottom: 1rem;
}
#whyus {
  background: #004080;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

#whyus {
  background: #004080;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-align: center;
}

#whyus h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#whyus ul {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#whyus li::before {
  content: "✅";
  margin-right: 0.5rem;
  color: #00ffcc;
}
#about {
  background: #003366;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  text-align: center;
}
.services-list li {
  background: #007bff;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
}
.services-list li {
  background: #007bff;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
  cursor: pointer;
}

.services-list li:hover {
  background: #0056b3;
  transform: scale(1.05);
}
#brands {
  background: #002244;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#brands h2 {
  color: #ffea00;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  padding: 1rem;
  justify-items: center;
}

.brand-card {
  background: white;
  color: #004080;
  text-align: center;
  border-radius: 10px;
  padding: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.brand-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.4);
}

.brand-card img {
  max-height: 60px;
  margin-bottom: 0.5rem;
}

.brand-card p {
  font-weight: bold;
  font-size: 0.95rem;
  color: #004080;
}
#reviews {
  background: #f1f1f1;
  color: #333;
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  margin-bottom: 2rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#reviews h2 {
  color: #004080;
  margin-bottom: 0.5rem;
}

.google-review-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 20px;
  background-color: #4285F4;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
}

.google-review-btn:hover {
  background-color: #2a65c9;
}
/* Bright yellow background for testimonials */
#testimonials {
  background: #f5d42e;
  padding: 2rem;
  border-radius: 10px;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

#testimonials h2 {
  color: #004080;
  margin-bottom: 1.5rem;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #f0f8ff;
  border-left: 5px solid #007bff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-style: italic;
  font-size: 1rem;
  color: #333;
}

.testimonial-card h4 {
  margin-top: 1rem;
  color: #004080;
  font-weight: 600;
}

#contact {
  background: #56cfe1;
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

#contact h2 {
  color: #004080;
  margin-bottom: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}

form input,
form select,
form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

form button {
  background: #004080;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #002a66;
}

#formMessage {
  color: green;
  font-weight: 500;
  margin-top: 10px;
}
.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
  padding: 1rem;
  justify-items: center;
  align-items: stretch;
}

.brand-card {
  background: white;
  color: #004080;
  text-align: center;
  border-radius: 12px;
  padding: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 180px;
}

.brand-card img {
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.brand-card p {
  font-weight: 600;
  font-size: 0.9rem;
  color: #004080;
}
.brand-card img {
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.brand-card {
  min-height: 120px; /* ✅ or adjust as needed */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand-card img {
  max-height: 60px;
  object-fit: contain;
}
.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}
