* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Sansation', sans-serif
}
body {
    font-family: 'Sansation', sans-serif;
  }
 

header {
  background-color: #ffffff;
  /* border-bottom: 1px solid #e0e0e0; */
  padding: 15px 30px;
  position: relative;
  z-index: 1000;
  /* background: #A9DCFF; */
  /* color: white; */
}

.container {
  max-width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.logo span {
  font-size: 22px;
  font-weight: bold;
  color: #2d5a96;
}

.nav {
  display: flex;
  align-items: center;
  color: #000;
  font-weight: bold;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
    letter-spacing: 1px;
  }
  
  .nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px; /* Adjust as needed */
    width: 0%;
    height: 2px;
    background-color: #2d5a96;
    transition: width 0.4s ease;
  }
  
  .nav a:hover {
    color: #2d5a96;
  }
  
  .nav a:hover::after {
    width: 100%;
  }
  
  .getlisted {
    background-color: #2d5a96;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .getlisted:hover {
    background-color: #114b96; /* Darker shade on hover */
    transform: translateY(-10px);
    /* box-shadow: 0 4px 10px rgba(179, 179, 179, 0.5); */
    transition: .3s;
  }
.emergency-btn {
  background-color: #e53935;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 500;
}
.emergency-btn:hover {
    background-color: #ce2623; /* Darker shade on hover */
    transform: translateY(-10px);
    /* box-shadow: 0 4px 10px rgba(179, 179, 179, 0.5); */
    transition: .3s;
  }

.nav a.emergency-btn::after {
    content: none;
  }
.nav a.getlisted::after {
    content: none;
  }
  

/* Hamburger menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Mobile responsive styles */
@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 40%;
    background-color: #ffffff;
    flex-direction: column;
    padding-top: 30px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
  }

  .nav.active {
    right: 0;
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }
  

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.hidden {
    display: none;
  }

  .container {
    flex-wrap: nowrap;
  }
  .nav li a.getlisted {
    margin-top: 20px !important; /* ← force margin */
    display: inline-block;   
    /* margin-left: 0px;  */
       /* ← ensure it behaves like a block */
      /* justify-content: left; */
  }
  
}

  .hero-banner {
  width: 100%;
  overflow: hidden;
  max-height:650px ;
  
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}


.footer {
  background-color: #2d5a96;
  color: #ffffff;
  padding: 30px 20px 20px;
  font-family: 'Sansation', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 80%;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
  /* color: #A9DCFF; */
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #ffffff30;
  padding-top: 15px;
  font-size: 13px;
  color: #ffffffff;
}
.quick-links-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  min-width: 120px;
}

.quick-links li {
  margin-bottom: 8px;
}

.quick-links a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  line-height: 1.6;
}

.quick-links a:hover {
  text-decoration: underline;
}


/* Responsive */
@media (max-width: 720px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    padding: 0;
  }
}

.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
 
  /* padding: 60px 20px; */
  background-color: #ffffff;
  text-align: center;
  max-width: 80%;
  margin: 30px auto;

}

.services-heading {
  font-size: 32px;
  color: #000;
  margin-bottom: 20px;
  width: 100%;
  order: -1; /* Makes sure it stays first inside flex-column */
  flex-shrink: 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Individual Card */
.service-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex: 1 1 280px;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 20px;
  color: #2d5a96;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* ========== Responsive Styles ========== */

/* @media (max-width: 1024px) {
  .services-grid {
    gap: 20px;
  }

  .services-heading {
    font-size: 28px;
  }
} */

/* @media (max-width: 768px) {
  .services-grid {
    flex-direction: row;
    justify-content: center;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
    max-width: 300px;
  }

  .services-heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
} */

@media (max-width: 720px) {
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-card img {
    height: 60px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }

  .services-heading {
    font-size: 20px;
  }
}
.why-partner {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding: 60px 20px; */
  background-color: #ffffff;
  /* border-top: 1px solid #e0e0e0; */
  text-align: center;
  margin: 30px auto;
}

.why-partner h2 {
  font-size: 28px;
  color: #000000;
  margin-bottom: 20px;
  width: 100%;
  order: -1;
}

.why-partner ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

.why-partner li {
  margin-bottom: 12px;
  padding-left: 28px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  position: relative;
}

.why-partner li::before {
  content: "✔";
  color: #2d5a96;
  font-weight: bold;
  position: absolute;
  left: 0;
}
@media (max-width: 720px) {
  .why-partner h2 {
    font-size: 22px;
  }

  .why-partner ul {
    font-size: 15px;
  }

  .partner-cta-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
