.elementor-kit-612{--e-global-color-primary:#0C214A;--e-global-color-secondary:#132D66;--e-global-color-text:#7A7A7A;--e-global-color-accent:#E8EEF9;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-9160586-font-size:36px;--e-global-typography-9160586-font-weight:700;--e-global-typography-9160586-line-height:1.3px;--e-global-typography-5bab3a3-font-size:18px;--e-global-typography-5bab3a3-line-height:1.6px;--e-global-typography-ed1e5c7-font-size:28px;--e-global-typography-ed1e5c7-font-weight:600;}.elementor-kit-612 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Container */
.profile-dropdown {
  position: relative;
  display: inline-block;
  z-index: 999;
}

/* Button */
.profile-btn {
  background-color: #001f5b;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
  height: 34px;
  max-width: 180px;
  white-space: nowrap;
}

.profile-btn:hover {
  background-color: #163e8c;
}

/* Icon + chevron */
.profile-icon {
  background: #fff;
  color: #001f5b;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.chevron {
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}
.profile-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown box */
.dropdown-content {
  position: absolute;
  right: 0;
  background: #fff;
  min-width: 160px;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Active state (via JS) */
.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dropdown links */
.dropdown-content a {
  color: #001f5b;
  padding: 10px 14px;
  display: block;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #f1f1f1;
  transition: background 0.2s ease;
}

.dropdown-content a:last-child {
  border-bottom: none;
}
.dropdown-content a:hover {
  background: #f0f4ff;
}

/* Mobile */
@media (max-width: 768px) {
  .profile-dropdown {
    display: flex;
    justify-content: center;
  }
  .dropdown-content {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}/* End custom CSS */