/* Custom Branding Colors */
:root {
  --doddle-teal: #009b9a;
  /* Matching the logo color */
  --doddle-navy: #1d3557;
  /* Matching the menu text color */
  --doddle-bg: #dff7f4;
}

body {
  font-size: 18px;
}

a{
  text-decoration: none;
  color: inherit;
}

/* Background Color matching the image's off-white/light gray */
.bg-light {
  background-color: #f8f9fa !important;
}

/* Standard Section Container Logic */
.container {
  max-width: 1200px !important;
  width: 90%;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}

/* Global Insurance/Form Page Container */
.insurance-form-container {
  background-color: var(--doddle-bg);
  min-height: 100vh;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

/* Desktop spacing adjustment */
@media (min-width: 992px) {
  .navbar-nav.mx-auto {
    transform: translateX(35px);
    /* Fine-tunes center alignment relative to the logo */
  }
}

/* Navbar z-index for proper layering */
.navbar {
  position: relative;
  z-index: 1001;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
}

/* Main Navigation Text Style */
.text-dark-blue {
  color: var(--doddle-navy) !important;
  font-size: 1.2rem;
  letter-spacing: -0.2px;
  font-weight: 900;
}

.nav-link:hover {
  color: var(--doddle-teal) !important;
}

/* Dropdown Styling */
.dropdown-menu {
  background-color: var(--doddle-teal);
  min-width: 280px;
  margin-top: 0;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

.dropdown-item {
  font-size: 1.1rem;
  white-space: nowrap;
  transition: background-color 0.2s;
  color: white !important;
}

.dropdown-item:hover {
  background-color: #008786;
  color: white !important;
}

.dropdown-toggle::after {
  display: none;
}

/* Hover Dropdown for large screens */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Right Side Small Links */
.utility-links .nav-link {
  font-size: 0.9rem;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.utility-links .nav-link:hover {
  color: var(--doddle-teal) !important;
}

/* Desktop spacing adjustment */
@media (min-width: 992px) {
  .navbar-nav.mx-auto {
    transform: translateX(35px);
  }
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
}

/* Standard Hero Banner for All Pages (Doddle Style) */
.hero-doddle {
  background-color: var(--doddle-bg);
  padding: 70px 0;
  border-bottom: 3px solid rgba(0, 155, 154, 0.1);
}

.hero-doddle-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #174052;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hero-doddle-subtitle {
  font-size: 1.2rem;
  color: #174052;
  line-height: 1.6;
  opacity: 0.85;
}

@media (max-width: 991px) {
  .hero-doddle {
    text-align: center;
    padding: 50px 0;
  }

  .hero-doddle-title {
    font-size: 2.2rem;
  }
}

/* Master Doddle Action Button (Purple) */
.btn-doddle {
  background-color: #7b4bb7;
  color: #fff !important;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 14px 40px;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(123, 75, 183, 0.3);
  text-decoration: none;
}

.btn-doddle:hover {
  background-color: #693aa8;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(123, 75, 183, 0.4);
}


.insurance-section {
  background-color: #ffff;
  padding: 100px 0;
}

.insurance-pill {
  background: #f5f5f5;
  border-radius: 70px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #174052;
  transition: 0.3s;
  cursor: pointer;
}

.insurance-pill .icon {
  font-size: 30px;
}

.insurance-pill:hover {
  background: var(--doddle-teal);
  transform: translateY(-4px);
}

/* .help-section styles... */
.help-section {
  background-color: #f5f5f5;
}

.help-title {
  font-size: 35px;
  font-weight: 800;
  color: #174052;
}

.help-text {
  font-size: 22px;
  line-height: 1.6;
  color: #174052;
  max-width: 520px;
}


/* Circle Background */

.help-img {
  width: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .help-title {
    font-size: 32px;
  }

  .help-text {
    font-size: 18px;
    margin: auto;
  }
}

.call-centre-section {
  background-color: #2f4a5a;
  /* Dark blue background */
}

.section-title {
  font-size: 42px;
  font-weight: 800;
}

.section-text {
  font-size: 20px;
  line-height: 1.8;
  max-width: 620px;
}

.phone-img {
  max-width: 85%;
}

.btn-purple {
  background-color: #7b4bb7;
  color: #fff;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-purple:hover {
  background-color: #693aa8;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }

  .section-text {
    font-size: 18px;
    margin: auto;
  }

  .phone-img {
    max-width: 320px;
  }
}

/* Top Section */
.footer-top {
  background-color: #f5f5f5;
}


.footer-link {
  text-decoration: none;
  font-size: 20px;
  color: #174052;
  font-weight: 500;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Purple Circle Icon */
.footer-icon {
  background-color: #7b4bb7;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  transition: 0.3s ease;
}

.footer-icon:hover {
  background-color: #693aa8;
  transform: translateY(-3px);
}

/* Bottom Section */
.footer-bottom {
  background-color: #2f4a5a;
}

.footer-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-logo {
    font-size: 32px;
  }

  .footer-link {
    font-size: 18px;
  }

  .footer-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .footer-text {
    font-size: 14px;
  }
}

/* Credit Cards Page Specific Styles */
.feature-card {
  text-align: center;
  padding: 5px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-title {
  font-size: 25px;
  font-weight: 800;
  color: #009b9a;
  margin-bottom: 15px;
}

.feature-text {
  line-height: 1.5;
  color: #174052;
  margin: 0 auto;
}

.sub-title {
  color: #7b4bb7;
  font-weight: 800;
  font-size: 35px;
  margin-bottom: 15px;
}

.section-intro-text {
  font-size: 18px;
  color: #174052;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Global Disclaimer / Fine Print Utility */
.doddle-disclaimer {
  padding: 40px 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #6c757d;
  background-color: transparent;
}

/* Global Insurance Page Container Utility */
.doddle-insurance-container {
  background-color: var(--doddle-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.doddle-disclaimer p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.doddle-disclaimer .disclaimer-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #174052;
  margin-bottom: 15px;
  display: block;
  text-align: center;
}

/* Sitewide FontAwesome Bullets Utility */
.fa-bullets {
  list-style: none;
  padding: 0;
}

.fa-bullets li {
  font-size: 22px;
  color: #174052;
  margin-bottom: 12px;
  position: relative;
  padding-left: 2.5rem;
  font-weight: regular;
  display: block;

}

.fa-bullets li::before {
  content: "\f058";
  /* Font Awesome Circle Check */
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--doddle-teal);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}

.img-flip {
  transform: scaleX(-1);
}

/* Marketing & Provider Sections */
.providers-section {
  background-color: #fff;
  border-top: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.benefit-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon {
  width: 50%;
}

.provider-logo {
  width: 80%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
  animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.provider-logo:hover {
  transform: scale(1.05);
}

.hero-img {
  width: 100%;
}

/* =========================================
   Generic Alternating Content Sections
   ========================================= */

.section-white {
  padding: 80px 0;
  background: #fff;
}

.section-muted {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.content-img {
  width: 100%;
  max-width: 460px;
}

@media (max-width: 991px) {

  .section-white,
  .section-muted {
    padding: 60px 0;
    text-align: center;
  }

  .content-img {
    max-width: 320px;
    margin-bottom: 32px;
  }
}