@import url('https://fonts.googleapis.com/css2?family=Ancizar+Serif:ital,wght@0,300..900;1,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Ancizar Serif", serif;
}
.bg-navy {
  background-color: #001f3f; /* Dark navy blue */
}
.top-bar a{
  font-weight: bold;
  font-size: 22px;
}
.custom-navbar {
  background-color: #5d889f; /* Grayish sea blue */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow at the bottom */
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  filter: invert(1); /* Makes toggle icon visible on dark backgrounds */
}

.nav-link {
  margin-left: 15px;
  font-weight: 500;
}
.hero-section {
  background-color: #000; /* Black background */
  height: 100vh;
  width: 100%;
  padding: 60px 0;
}

.hero-section h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

.hero-section p {
  font-size: 1.1rem;
  color: #ccc;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.insurance-products {
  background-color: #f9f9f9;
}

.insurance-products h2 {
  font-size: 2.5rem;
  color: #333;
}

.insurance-products p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

.product-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
  border-radius: 6px;
}

.product-card .card-title {
  font-weight: 600;
  color: #333;
}

.product-card .card-text {
  font-size: 1rem;
}
.insurance-discovery {
  background: linear-gradient(to right, #0a0a0a, #1a1a1a); /* Dark gradient */
}

.insurance-discovery h2 {
  font-size: 2.2rem;
}

.insurance-discovery .image-box {
  height: 75vh;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.insurance-discovery .image-box:hover {
  transform: scale(1.03);
}

.object-fit-cover {
  object-fit: cover;
}
.expertise-section {
  background: linear-gradient(to right, #051421, #04273a); /* Eye-catching dark blue gradient */
  color: #fff;
}

.expertise-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.expertise-card h2 {
  font-size: 3rem;
}
.quote-section {
  background-color: #f4f4f4;
}

.quote-card {
  max-width: 600px;
  width: 100%;
  background: linear-gradient(to right, #004e92, #000428); /* Eye-catching gradient */
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: white;
  transition: transform 0.3s ease;
}

.quote-card:hover {
  transform: scale(1.02);
}

.quote-card .btn {
  background-color: #fff;
  color: #004e92;
  border-radius: 50px;
}
.footer-section {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364); /* Eye-catching dark gradient */
  text-align: center;
  color: white;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-section hr {
  width: 80px;
  margin: 2rem auto;
  border-top: 2px solid #ffffff33;
}

@media (max-width: 576px) {
  .footer-section h4 {
    font-size: 1.2rem;
  }

  .footer-section p {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .quote-card {
    padding: 2rem 1rem;
  }

  .quote-card .btn {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .expertise-card h2 {
    font-size: 2.5rem;
  }

  .expertise-card {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .insurance-discovery .image-box {
    height: 40vh;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 40px 0;
    text-align: center;
  }
}