.header-container {
    width: 100%;
    background: rgba(255, 255, 255, 1); /* solid at top */
    color: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* Transparent style after scrolling */
.header-container.scrolled {
    background: rgba(255, 255, 255, 0.85); /* semi-transparent */
    backdrop-filter: blur(6px); /* optional glass effect */
}




.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Wrap top + bottom rows so they stack */
.nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* align right */
    gap: 50px;             /* spacing between top and bottom row */
}

/* Top row keeps same styling */
.top-row {
    font-size: 15px;
    font-weight: 500;
    margin-right: 30px;
    font-family: "Wicklow", Georgia, Garamond, Times, serif; /* Classic serif style */


}

/* Bottom row styled a bit bolder */
.bottom-row {
    font-size: 16px;
    font-weight: 600;
    gap: 32px;
    margin-right: 30px;
}

/* Keep hover underline for bottom row */
.bottom-row .header-option {
    font-size: 20px;   /* bigger than top row */
    font-weight: 600; 
    position: relative;
    padding: 4px 0;
    font-family: "Wicklow", Georgia, Garamond, Times, serif; /* Classic serif style */

}

.bottom-row .header-option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2b5876;
    transition: width 0.3s ease;
}

.bottom-row .header-option:hover::after {
    width: 100%;
}




.header-options {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 15px;
    font-weight: 500;
}

.header-option {
    color: #1a2a6c;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
    font-size: 18px; /* increase this value as needed */
}
/* Bottom row styling */

/* Dropdown box */
.header-option .dropdown {
  display: none;
  position: absolute;
  top: 100%; /* appear below */
  left: 0;
  background: #d9dee4; /* light gray */
  padding: 25px;
  min-width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

/* Show on hover */
.header-option:hover .dropdown {
  display: block;
}

/* Arrow (notch) */
.header-option .dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #d9dee4 transparent;
}

/* Links */
.dropdown a {
  display: block;
  color: #003366; /* dark blue */
  text-decoration: none;
  font-size: 16px;
  padding: 10px 0;
}

/* Divider lines */
.dropdown a {
  border-bottom: 2px solid #fff;
}

.dropdown a:last-child {
  border-bottom: none;
}

/* Hover effect */
.dropdown a:hover {
  color: #1a4d99;
}


.header-option:hover {
    color: #2b5876;
}

.contact-button {
    background: #1a2a6c;
    color: white;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}



.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a2a6c;
    font-size: 14px;
    margin-left: 10px;
}

.language-selector select {
    background: transparent;
    color: #1a2a6c;
    border: 1px solid rgba(26, 42, 108, 0.3);
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
}

/* Divider line */
.divider-line {
    width: 100%;
    height: 1px;
    background: rgba(26, 42, 108, 0.2);
    margin: 10px 0 15px;
}


/* 
.bottom-row .header-option {
    color: #1a2a6c;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 5% 0;
} */

/* .bottom-row .header-option:hover {
    color: #2b5876;
} */
/* 
.bottom-row .header-option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2b5876;
    transition: width 0.3s ease;
} */

/* .bottom-row .header-option:hover::after {
    width: 100%;
} */

/* Responsive adjustments */
@media (max-width: 1024px) {
    .bottom-row {
        padding-left: 0;
        gap: 24px;
        font-size: 15px;
    }
    
    .top-bar {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .bottom-row {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .header-options {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
}