body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}


#emergency-widget {
  position: fixed;
  bottom: 90px; 
  right: 20px;
  z-index: 1000;
}

#emergency-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #E53935; 
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

#emergency-btn:hover {
  background: #c62828;
  transform: scale(1.1);
}


#emergency-popup {
  display: none;
  position: fixed;
  bottom: 160px;
  right: 20px;
  width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}


#emergency-popup .popup-header.emergency {
  background: #E53935;
  color: white;
  padding: 10px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

#emergency-popup .popup-header.emergency span {
  font-size: 16px;
}

#close-emergency {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}


#emergency-popup .popup-body {
  padding: 15px;
  font-size: 14px;
  color: #333;
  text-align: center;
}


#emergency-popup .emergency-call {
  display: block;
  text-align: center;
  background: #E53935;
  color: white;
  padding: 10px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

#emergency-popup .emergency-call:hover {
  background: #c62828;
}


@keyframes slideUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}



#whatsapp-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}


#whatsapp-btn {
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

#whatsapp-btn:hover {
  transform: scale(1.1);
}

#whatsapp-btn img {
  width: 32px;
  height: 32px;
}


#whatsapp-popup {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

.popup-header {
  background: #25d366;
  color: #fff;
  padding: 12px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.popup-body {
  padding: 15px;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.popup-btn {
  display: block;
  text-align: center;
  background: #25d366;
  color: #fff;
  padding: 14px;
  text-decoration: none;
  font-weight: bold;
  border-top: 1px solid #eee;
  transition: background 0.3s;
  font-size: 14px;
}

.popup-btn:hover {
  background: #1ebe5a;
}














.landing-hero {
  background: linear-gradient(135deg, #004aad, #003080);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.landing-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.landing-hero h1 span {
  color: #5ecbff;
}

.landing-hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.cta-btn {
  display: inline-block;
  padding: 15px 30px;
  background: #0056d6;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #003c9d;
}

.cta-btn i {
  margin-right: 8px;
}

.cards {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: #0a3d82;
  padding: 25px;
  border-radius: 10px;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card i {
  font-size: 28px;
  margin-bottom: 12px;
  color: #ffcc00;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  color: #ddd;
}

.top-bar {
  background: #004aad;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}

.top-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.top-bar .info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar i {
  color: #ffcc00;
  font-size: 15px;
}

header {
  background: #004aad;
  height: 50px;
  width: 100%;
}

header * {
  display: none;
}

.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-text h2,
.hero-text p {
  display: none;
}

.hero .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff9800;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 12px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero .btn:hover {
  background: #e68900;
  transform: scale(1.08);
}

#services {
  padding: 50px 20px;
  background: #f5f5f5;
  text-align: center;
}

#services h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #004aad;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service img {
  width: 100%;
  border-bottom: 3px solid #004aad;
  transition: transform 0.3s ease;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service:hover img {
  transform: scale(1.05);
}

.service h3 {
  margin-top: 15px;
  font-size: 20px;
  color: #004aad;
}

.service p {
  padding: 0 15px 20px;
  font-size: 15px;
  color: #555;
}

#rates {
  background: #004aad; 
  padding: 60px 20px;
  text-align: center;
}

#rates h2 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 30px;
}

.table-container {
  overflow-x: auto;
  max-width: 1000px;
  margin: 0 auto;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff; 
  border-radius: 8px;
  overflow: hidden;
}

.rates-table th,
.rates-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 15px;
  color: #333;
}

.rates-table th {
  background: #003080; 
  color: #fff;
  font-weight: bold;
}

.rates-table tr:nth-child(even) {
  background: #f9f9f9;
}

.rates-table tr:hover {
  background: #eef4ff;
}

.rates-note {
  margin-top: 15px;
  font-size: 12px;
  color: #eef4ff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}


#about {
  padding: 40px 20px;
  text-align: center;
}

#contact {
  padding: 60px 20px;
  background: #eee;
}

#contact h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 10px;
  color: #004aad;
}

#contact p.subtext {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  align-items: start;
}

.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.contact-form h3 {
  color: #004aad;
  margin-bottom: 15px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input, 
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #004aad;
  box-shadow: 0 0 5px rgba(0, 74, 173, 0.4);
}

.contact-form button {
  padding: 12px;
  background: #004aad;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #003080;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form select:focus {
  outline: none;
  border-color: #004aad;
  box-shadow: 0 0 5px rgba(0, 74, 173, 0.4);
}


.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.contact-info h3 {
  color: #004aad;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 15px;
}

.contact-info i {
  margin-right: 8px;
  color: #004aad;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 8px;
}

footer {
  background: #004aad;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.footer-column p,
.footer-column li {
  margin: 8px 0;
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

footer i {
  background: #fff;
  color: #004aad;
  border-radius: 50%;
  padding: 6px;
  font-size: 13px;
  margin-right: 6px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
