* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
  line-height: 1.6;
}

/* Header & Nav */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo & Navigation */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 48px;
  width: auto;
  border-radius: 50%;
  object-fit: contain;
}

.logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.logo-text span {
  color: #2563eb;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #2563eb;
}

 
/* Hero Section - Brightened Image */
.hero {
  background: linear-gradient(rgba(15, 23, 42, 0.35), rgba(15, 23, 42, 0.35)), url('ac-ladder.jpg') center/cover no-repeat;
  color: #ffffff;
  padding: 5rem 1rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.btn-primary {
  display: inline-block;
  background: #2563eb;
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
}

/* Common Container Layout */
.container {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #0f172a;
}

/* Redesigned About Us Section */
.about-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.about-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.badge {
  background: #eff6ff;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.about-header h2 {
  margin-bottom: 0;
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.about-box {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
}

.about-box .icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.about-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.about-box p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}

/* Cards & Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 1rem 0.5rem 1rem;
  color: #0f172a;
}

.card p {
  font-size: 0.9rem;
  padding: 0 1rem 1.25rem 1rem;
  color: #64748b;
}

/* Location Section */
.location-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.location-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.location-info p {
  margin-bottom: 0.75rem;
  color: #475569;
}

.map-container iframe {
  border-radius: 12px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #0f172a;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 10000;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

/* Mobile Header Adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .logo-container {
    justify-content: center;
  }

  .site-logo {
    height: 36px;
  }

  .logo-text {
    font-size: 0.9rem;
    line-height: 1.2;
    white-space: nowrap;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.8rem;
    width: 100%;
    border-top: 1px solid #f1f5f9;
    padding-top: 0.5rem;
  }

  nav a {
    margin-left: 0;
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }
}