
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
  padding-top: 75px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(1px);
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  z-index: 999;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%; /* Makes the image circular */
  margin-right: 10px;
}

.logo-text h1 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  color: #1d2d50;
}

.logo-text p {
  font-size: 0.8rem;
  margin: 0;
  color: #555;
}

.emergency-btn {
  background-color: #3b82f6;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.emergency-btn i {
  font-size: 1rem;
}


.hero {
  text-align: center;
  background: linear-gradient(to right, #eef5ff, #f7fcfa);
  padding: 100px 20px 80px;
}

.trust-badge {
  display: inline-block;
  background-color: #dbeafe;
  color: #1e40af;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.trust-badge i {
  margin-right: 6px;
  color: #fbbf24;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
}

.hero .highlight {
  background: linear-gradient(to right, #3b82f6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #3b82f6;
  color: white;
  border: none;
}

.btn.primary:hover {
  background-color: #2563eb;
}

.btn.outline {
  border: 2px solid #3b82f6;
  color: #3b82f6;
  background: transparent;
}

.btn.outline:hover {
  background-color: #e0f2fe;
}

.stats-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;
  padding: 60px 20px;
  background: linear-gradient(to right, #f8fbff, #f9fefc);
  text-align: center;
}

.stat-box {
  min-width: 140px;
}

.stat-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 6px;
}

.stat-box p {
  font-size: 1rem;
  color: #374151;
}

.services-section {
  background-color: #f8fcff;
  text-align: center;
  padding: 80px 20px;
}

.services-section h2 {
  font-size: 2.5rem;
  color: #111827;
  margin-bottom: 12px;
}

.services-section .subtitle {
  color: #6b7280;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}

.icon-circle img {
  width: 34px;
  height: 34px;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 10px;
}

.service-card p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Icon circle background colors */
.bg-blue { background-color: #e0efff; }
.bg-red { background-color: #ffe4e4; }
.bg-green { background-color: #e6fdf1; }
.bg-purple { background-color: #f3e8ff; }

.excellence-section {
  background-color: #f3fbfc;
  padding: 80px 20px;
}

.excellence-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.excellence-text {
  flex: 1 1 55%;
}

.excellence-text h2 {
  font-size: 2.4rem;
  color: #111827;
  margin-bottom: 16px;
}

.excellence-text p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 12px;
}

.features-list img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

/* Info card */
.info-card {
  flex: 1 1 40%;
  background-color: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #111827;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item img {
  width: 22px;
  height: 22px;
  margin-right: 14px;
  margin-top: 3px;
}

.info-item strong {
  font-size: 0.95rem;
  color: #111827;
  display: block;
}

.info-item p {
  font-size: 0.95rem;
  color: #374151;
  margin: 2px 0 0;
}

.cta-section {
  background: linear-gradient(to right, #3b82f6, #10b981); /* Blue to green gradient */
  padding: 80px 20px;
  color: white;
  text-align: center;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0f2fe;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
}

.btn-primary {
  background-color: white;
  color: #2563eb;
  border: none;
}

.btn-primary:hover {
  background-color: #f3f4f6;
}

.btn-outline {
  border: 1.5px solid white;
  color: white;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}


.custom-footer {
  background-color: #1e293b;
  color: #cbd5e1;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-about h3 {
  color: #38bdf8;
  margin-top: 10px;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a {
  text-decoration: none;
  color: #60a5fa;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #facc15;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #94a3b8;
}

hr {
  border: none;
  border-top: 1px solid #334155;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-about,
  .footer-links,
  .footer-contact {
    min-width: 100%;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .stats, .service-cards {
    grid-template-columns: 1fr 1fr;
  }
  .excellence {
    flex-direction: column;
  }
  .excellence-text, .visit {
    flex: 1 1 100%;
    padding: 1rem 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .stats, .service-cards {
    grid-template-columns: 1fr;
  }
  .hero .buttons button {
    margin-top: 0.5rem;
    display: block;
  }
}
