
    body, html { margin: 0; padding: 0; font-family: 'Morga', sans-serif; }
    #root { overflow-x: hidden; }
    button { cursor: pointer; }


    .timer {
  color: #ffffff; /* or white */
  font-family: monospace;
}


.header {
  /* Remove 'position: fixed' and related positioning */
  height: 110px;
  background: #000000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
    margin-top: 40px; /* Adjust based on the top-strip height */

}


    .logo-image {
  height: 90px;
  max-width: 100%;
  object-fit: contain;
}

.map-icon {
  height: 40px;
  max-width: 100%;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 8px;
}

@media (max-width: 600px) {
  .logo-image {
    height: 60px; /* shrink on small screens */
    max-width: 120px;
  }

  .map-icon {
    height: 20px;
  }
}


/* Group map icon and call button together */
.right-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hide call button on mobile */
.call-web-only {
  display: none;
}

@media (min-width: 600px) {
  .call-web-only {
    display: block;
  }

  .call-button {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    transition: all 0.3s ease;
  }

  .call-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(234, 88, 12, 0.4);
  }
}


.nav-tabs {
  position: sticky;
  top: 90px;
  background-color: #ffffff;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: center;
  gap: 20px;
  padding: 12px 20px;
  border-bottom: 1px solid #eaeaea;
  z-index: 999;
}


@media (max-width: 768px) {
  .nav-tabs {
    justify-content: flex-start;
  }
}


.nav-tabs button {
  background: none;
  border: none;
  padding: 8px 16px;
  font-size: 1rem;
  color: #555;
  font-weight: 500;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}

.nav-tabs button:hover {
  background-color: #007bff20;
  color: #007bff;
}

.nav-tabs button:focus {
  outline: none;
  background-color: #007bff;
  color: #fff;
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 50px 60px 30px;
  background: linear-gradient(to right, #f8fbff, #ffffff);
  gap: 40px;
  flex-wrap: wrap;
}


.hero .text {
  flex: 1;
  max-width: 600px;
}

.hero .text h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #46c09d; /* Vibrant orange */
  font-weight: 900;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero .text p {
  font-size: 1.125rem;
  color: #334155; /* Slightly darker slate for better readability */
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.2px;
}


.hero .text button {
  padding: 14px 28px;
  background-color: #007bff;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.hero .text button:hover {
  background-color: #46c09d;
}

.hero .video {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
}

.hero .video video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 50px 20px 40px; /* 👈 Increased top padding */
    text-align: center;
    gap: 30px;
  }

  .hero .text,
  .hero .video {
    max-width: 100%;
    width: 100%;
  }

  .hero .text h1 {
    font-size: 2rem;
    padding: 0 10px;
    margin-top: 20px; /* 👈 Optional: extra margin on h1 */
  }

  .hero .text p {
    padding: 0 10px;
  }

  .hero .text button {
    width: 90%;
    max-width: 300px;
    margin: auto;
  }
}


.team {
  padding: 30px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 30px;
}


.team-card img {
  width: 100%;
  height: 220px; /* You can adjust this value */
  object-fit: cover;
  border-radius: 8px;
}


    
.issues {
  padding: 20px 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #46c09d 30%, #46c09d 70%, #ffffff 100%);
}

    .issues h2 { text-align: center; margin-bottom: 30px; }

    .issue-card img {
  width: 100%;
  height: 300px; /* Adjust as needed */
  object-fit: cover;
 
  border-radius: 8px;
  margin-bottom: 12px;
}



.how {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.step-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-6px);
}
.step-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  background-color: #ddd;
  display: block;
  margin: 0 auto;
}


.step-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #007bff;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
}

.step-description {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.4;
}

/* CTA Button */
.cta-button {
  margin-top: 50px;
  padding: 14px 28px;
  background-color: #007bff;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #005dc1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .step-card {
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .step-content {
    align-items: center;
    text-align: center;
  }
}




    .usps { padding: 60px 20px; display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
  .map {
  padding: 0;
  margin: 0;
  width: 100%;
}

.map iframe {
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

.footer {
  background-color: #02014e; /* deep maroon like xyz */
  color: #000000;            /* soft white text */
  padding: 60px 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  border-top: 2px solid #f97316; /* optional orange accent */
  font-family: 'Segoe UI', sans-serif;
 
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: #f1f5f9;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #facc15; /* gold-yellow hover effect */
}

.footer-credit {
  grid-column: 1 / -1;
  text-align: center;
 
  font-size: 0.85rem;
  color: #cbd5e1;
   margin-bottom: 40px;
}

.footer-credit a {
  color: #f97316;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Responsive button styling at the bottom (if you keep it) */
.footer .appointment-button {
  display: block;
  margin: 20px auto 0;
  background: #2563eb;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  max-width: 240px;
  transition: background 0.3s;
}

.footer .appointment-button:hover {
  background: #1d4ed8;
}

.bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.bottom-banner-button {
  padding: 14px 32px;
  background: linear-gradient(135deg, #007bff, #0056d2);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.bottom-banner-button:hover {
  background: linear-gradient(135deg, #0056d2, #003e99);
  box-shadow: 0 8px 20px rgba(0, 86, 210, 0.4);
}


    .widgets { position: fixed; left: 10px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; padding: 10px; border-radius: 20px; background: black; z-index: 10000;}
  
  
 h2 {
font-size: clamp(1.9rem, 2vw + 1rem, 2.8rem);

  font-weight: 700;
  color: #007bff;
  text-align: center;
  
  letter-spacing: 0.05em;
  border-bottom: 2px solid #007bff;
  padding-bottom: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: color 0.3s ease;
}

h2:hover {
  color: #0056b3;
  border-color: #0056b3;
  cursor: default;
}



.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.feature-table {
  min-width: 500px; /* Force horizontal scroll if screen is too narrow */
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.table-scroll::-webkit-scrollbar {
  height: 6px;
}

.table-scroll::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 4px;
}


.feature-table th,
.feature-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 1rem;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
}

.feature-table th:first-child,
.feature-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #0f172a;
}

.feature-table thead {
  background: #f1f5f9;
}

.tick {
  color: #10b981; /* Tailwind green-500 */
  font-size: 1.2rem;
  font-weight: bold;
}

.cross {
  color: #ef4444; /* Tailwind red-500 */
  font-size: 1.2rem;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .feature-table th,
  .feature-table td {
    font-size: 0.9rem;
    padding: 12px 10px;
  }

  .feature-table th:nth-child(2),
  .feature-table th:nth-child(3),
  .feature-table td:nth-child(2),
  .feature-table td:nth-child(3) {
    white-space: nowrap;
  }
}



.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #0f0f0f;
  color: #f97316;
  text-align: center;
  font-weight: 700;
  padding: 10px 0;
  font-size: 14px;
  z-index: 9999; /* always above everything */
  display: flex;
  justify-content: center;
  gap: 20px;
  border-bottom: 2px solid #f97316;
}
