* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border: 1px solid red; */
  padding: 20px;
  background: #1a3c6e;
  position: fixed;
  width: 100%;
}

.logo {
  font-size: 40px;
  font-weight: bold;
  color: #00a884;
}

nav a {
  font-size: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0 10px;
}
.hamburger{
  display: none;
}
/* Header */
header {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url(./images/Is\ It\ Legal\ to\ Have\ Multiple\ Health\ Insurance\ Policies\ in\ the\ UAE_.jpeg)
      no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  height: 85vh;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
  min-height: 100vh; /* Ensures full viewport height */
  text-align: center;
}

.hero h1 {
  text-align: center;
  line-height: 110px;
  color: #fff;
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 60px;
}

.cta-buttons .btn {
  padding: 12px 24px;
  margin: 10px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.btn-primary {
  background-color: #1a3c6e;
  color: white;
}

.btn-secondary {
  background-color: #2e8b57;
  color: white;
}

/* Services Section */
.services {
  display: flex;
  justify-content: space-around;
  padding: 60px 40px;
  margin: 50px 0;
  /* background: #2e8b57; */
}

.card {
  background: #0d47a1;
  /* color: #333; */
  color: white;
  padding: 40px 10px;
  border-radius: 8px;
  width: 28%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
  cursor: pointer;
}

.card:hover{
    transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.card-img {
  width: 70px;
  height: auto;
  margin-bottom: 30px;
}

.card h2 {
  /* color: #1a3c6e; */
  color: #fff;
  font-size: 25px;
}
.card p {
  padding: 12px 0;
  font-size: 18px;
}
.card a {
  display: inline-block;
  font-size: 20px;
  margin-top: 10px;
  /* color: #1a3c6e; */
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.card a:hover {
  margin-left: 5px;
  transition: 0.3s;
  color: red;
}
.footer {
  background: #f8f8f8;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

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

.footer-section {
  flex: 1 1 220px;
  margin: 20px;
}

.footer-section h2.logo {
  font-size: 24px;
  color: #0077b6;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #0077b6;
}

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

.footer-section ul li {
  margin: 6px 0;
}

.footer-section .social-icons a {
  margin-right: 10px;
  font-size: 18px;
  color: #0077b6;
  text-decoration: none;
}

.footer-section .social-icons a:hover {
  color: #023e8a;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #ddd;
  margin-top: 20px;
  font-size: 14px;
}

/* 🔹 Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin: 15px 0;
    flex: 1 1 100%;
  }

  .footer-section .social-icons {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px;
  }

  .footer-section h2.logo {
    font-size: 20px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}


/* ------------------------------ */
.health-highlights {
  /* background-color: #f5f5f5; */
  background: #0d47a1;
  padding: 40px 20px;
  text-align: center;
}

.health-highlights h2 {
  font-size: 2em;
  font-weight: 300;
  /* color: #1565c0; */
  color: #fff;
  margin-bottom: 30px;
}

.highlight-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.highlight-box {
  background: white;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.highlight-box .icon {
  font-size: 2.5em;
  color: #1565c0;
  margin-bottom: 15px;
}

.highlight-box h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

.highlight-box p {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  color: #1565c0;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}
/* ----------------------------------- */
.our-services {
  background-color: #e7f2fa;
  padding: 50px 20px;
  text-align: center;
}

.our-services h2 {
  font-size: 2em;
  color: #1565c0;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-box {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  cursor: pointer;
}
.service-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-box h3 {
  color: #1565c0;
  margin-bottom: 10px;
}

.service-box p {
  color: #555;
  font-size: 0.95em;
}

.reach-out {
  margin-top: 40px;
}

.reach-btn {
  background-color: #1565c0;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.reach-btn:hover {
  background-color: #0d47a1;
}

/* ---------------- Responsive Design ---------------- */ /* Tablets */
@media (max-width: 992px) {
  header{
    height: auto;
  }
  .logo {
    font-size: 32px;
  }
  nav a {
    font-size: 18px;
    padding: 0 8px;
  }
  .hero h1 {
    font-size: 48px;
    line-height: 70px;
  }
  .services {
    flex-wrap: wrap;
    justify-content: center;
  }
  .card {
    width: 45%;
    margin-bottom: 20px;
  }
} /* Mobile */
@media (max-width: 768px) {
  header{
    height: 50vh;
    align-items: start;
  justify-content: start;
  }
  nav {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
  nav .links {
    display: none;
    flex-direction: column;
    background: #1a3c6e;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }
  nav .links a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
  }
  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 28px;
    color: #fff;
    /* margin-right: 30px; */
  }
  .hero h1 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 30px;
  }
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  .services {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }
  .card {
    width: 90%;
    margin-bottom: 20px;
  }
  .highlight-columns {
    flex-direction: column;
    align-items: center;
  }
  .highlight-box {
    width: 90%;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
} /* Small Mobile */
@media (max-width: 480px) {
  header{
    height: auto;
  }
  .logo {
    font-size: 24px;
  }
  .hero h1 {
    font-size: 28px;
    line-height: 40px;
  }
  .card h2 {
    font-size: 20px;
  }
  .card p {
    font-size: 16px;
  }
  .service-box h3 {
    font-size: 18px;
  }
  .service-box p {
    font-size: 14px;
  }
  footer {
    font-size: 12px;
  }
}

