.mil-logo img{
    height: 35px;
}
@media (max-width: 575px) {
 .mil-logo img{
    height: 25px;
}

}

@media (max-width: 767px) {
  .mil-lang-btn{
    margin-right: 15px;
  }
  .mil-lang-dropdown{
    right: 10px;
  }
}

.calc-btn{
    margin-top: 24px;
    cursor: pointer;
}
.text-center{
    text-align: center!important;
}

/* Language Switcher Dropdown - Google Translate Style */
.mil-lang-switcher {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.mil-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background-color: transparent;
    border: 1px solid #dadce0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    color: #5f6368;
}

.mil-lang-btn:hover {
    background-color: #f8f9fa;
    border-color: #dadce0;
}

.mil-lang-btn.active {
    background-color: #f8f9fa;
}

.mil-lang-icon {
    color: #5f6368;
    width: 18px;
    height: 18px;
}

.mil-lang-text {
    color: #5f6368;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mil-lang-arrow {
    transition: transform 0.2s ease;
    color: #5f6368;
    width: 10px;
    height: 10px;
}

.mil-lang-btn.active .mil-lang-arrow {
    transform: rotate(180deg);
}

.mil-lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    min-width: 160px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
    overflow: hidden;
}

.mil-lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mil-lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #202124;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 400;
    font-size: 14px;
}

.mil-lang-option:hover {
    background-color: #f8f9fa;
}

.mil-lang-option.active {
    background-color: #e8f0fe;
    color: #1967d2;
}

.mil-flag-icon {
    flex-shrink: 0;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mil-lang-switcher {
        margin-right: 10px;
    }
    
    .mil-lang-btn {
        padding: 6px 12px;
        gap: 4px;
    }
    
    .mil-lang-icon {
        width: 16px;
        height: 16px;
    }
    
    .mil-lang-text {
        font-size: 13px;
    }
    
    .mil-lang-dropdown {
        min-width: 140px;
    }
}


/* --- CARD GENERAL --- */
.insurance-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 28px 32px;
  box-shadow:
      0 10px 25px rgba(0,0,0,0.04),
      0 5px 10px rgba(0,0,0,0.03);
  border: 1px solid rgba(0, 82, 166, 0.12);

  transition: 
      transform 0.25s cubic-bezier(.17,.67,.67,1.25),
      box-shadow 0.25s ease,
      border-color 0.25s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* shine subtle */
.insurance-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: radial-gradient(
    circle at 0% 0%, 
    rgba(0,82,166,0.09), 
    transparent 70%
  );
  transition: transform 0.6s ease;
}

.insurance-card:hover::before {
  transform: translate(10px, 10px);
}

.insurance-card:hover {
  transform: translateY(-6px);
  border-color: #0052A6;
  box-shadow:
      0 20px 45px rgba(0,82,166,0.15),
      0 10px 20px rgba(0,82,166,0.12);
}

/* --- ICON BADGE --- */
.insurance-card__icon-wrapper {
  width: 110px;
  height: 110px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f6f9ff, #eef4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
      inset 0 3px 8px rgba(255,255,255,0.7),
      0 6px 18px rgba(0,82,166,0.08);
}

.insurance-card__icon-wrapper img {
  max-width: 72px;
  max-height: 72px;
}

/* --- TITLE --- */
.insurance-card__title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0052A6;
  margin-bottom: 18px;
}

/* --- BUTTON --- */
.insurance-card__btn {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  color: #0052A6;
  border: 2px solid #0052A6;
  background: #fff;
  transition: all 0.25s;
}

.insurance-card__btn:hover {
  background: #0052A6;
  color: #fff;
  box-shadow: 0 12px 22px rgba(0,82,166,0.25);
  transform: translateY(-2px);
}

.insurance-card__btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 12px rgba(0,82,166,0.18);
}

/* --- RESPONSIVE --- */
@media (max-width: 575px) {
  .insurance-card {
    padding: 26px 22px;
  }

  .insurance-card__title {
    font-size: 1.25rem;
  }

  .insurance-card__icon-wrapper {
    width: 95px;
    height: 95px;
  }

  .insurance-card__icon-wrapper img {
    max-width: 62px;
  }
}
footer{
  margin-top: 100px;
}

.h1-custom{
    font-size: 60px;
    max-width: 600px;
    margin: 0 auto;
    text-wrap: balance;
    margin-top: 30px;
}

@media (max-width: 992px) {
.h1-custom{
  font-size: 48px;
}
}
@media (max-width: 575px) {
.h1-custom{
  font-size: 42px;
}
}