
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f9fb;
  color: #222;
}
/* HERO */
.about-hero {
  background: none;
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 90px; /* Pushes hero below fixed navbar */
}
.about-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(30,60,114,0.55), rgba(118,75,162,0.45)),url('uploads/hero-labtest4.jpg') center center/cover no-repeat;
  z-index: 1;
}
.about-hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color:#ffffff
}
.about-hero-content p {
  font-size: 1.5rem;
  color: #ffd88b;
  font-weight:bold;
}

.contact-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.contact-hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.contact-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}
.contact-hero-content p {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight:bold;
}
/* Contact Info */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: #fff;
}
.contact-card {
  background: #f4f7ff;
  border-left: 5px solid #764ba2;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px 30px;
  width: 320px;
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-8px);
  background: #fff6ef;
  border-color: #764ba2;
}

/* Form */
.contact-form-section {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}
.contact-form-section h2 {
  font-size: 2rem;
  color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin-bottom: 30px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: auto;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}
.contact-form button {
  background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover {
  background: #b11717;
}

/* Contact Map */
.contact-map {
  background: #fff;
  text-align: center;
  padding: 60px 20px;
}

.contact-map h2 {
  font-size: 2rem;
  color:#764ba2;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.map-container {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-container:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  filter: grayscale(30%) contrast(1.1) brightness(1.05);
  border-radius: 15px;
}


/* Footer */
.footer {
  background: #1a1a2e;
  color: #fff;
  padding: 60px 20px 30px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
}
.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
  color: #ccc;
  transition: color 0.3s;
}
.footer-col ul li:hover {
  color: #ffcc00;
}
.footer-social a {
  color: #fff;
  margin-right: 10px;
  font-size: 1.2rem;
}
.hours span {
  color: #ff3b3b;
  font-weight: 600;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #233454;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
