

/* --- Outer Wrapper & Full Width Bar Background --- */
.bn-header-wrapper {
  background-color: #F5FBFF; 
  width: 100%;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 4%;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  
  /* --- Sticky Header Logic --- */
  position: -webkit-sticky; /* For Safari support */
  position: sticky;
  top: 0;
  left: 0;
  z-index: 998; /* Keeps header on top of body content, but beneath the mobile drawer overlay */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03); /* Adds a subtle shadow when scrolling */
}

/* --- Mobile Sidebar Fix --- */
/* Ensures the sidebar stays fixed relative to the entire viewport window even while scrolling */
.bn-header-sidebar {
  position: fixed;
  top: 0;
  right: -300px; 
  width: 280px;
  height: 100vh; /* Changed to viewport height */
  background: #ffffff;
  z-index: 1000; /* Higher than the sticky header layer */
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* --- SVG Logo Responsive Behavior Setup --- */
.bn-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}


/* --- Small Mobile Tweak --- */
@media (max-width: 480px) {
  .bn-header-logo-img {
   width: 80%;
  }
}
/* --- Max Width Container Centering --- */
.bn-header-container {
  max-width: 1320px;
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.bn-header-container *, .bn-header-sidebar * {
  box-sizing: border-box;
}

/* --- Logo Component Formatting --- */
.bn-header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.bn-header-logo-icon {
  width: 42px;
  height: 42px;
  background-image: linear-gradient(135deg, #3E3092, #3DB1D3);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 8px;
}

.bn-header-logo-text-group {
  display: flex;
  flex-direction: column;
}

.bn-header-logo-main {
  font-size: 24px;
  font-weight: 700;
  color: #3E3092;
  line-height: 1.1;
}

.bn-header-logo-accent {
  color: #3DB1D3;
}

.bn-header-logo-sub {
  font-size: 10px;
  color: #718096;
  font-weight: 500;
  margin-top: 2px;
}

/* --- Desktop Main Nav Links --- */
.bn-header-nav-desktop {
  display: flex;
  gap: 32px;
  align-items: center;
}

.bn-header-nav-link {
	font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.bn-header-nav-link:hover {
  color: #3E59A7;
}

/* --- Language Picker Styling --- */
.bn-header-lang-btn {
  background: #ffffff;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #1a202c;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.bn-header-flag {
  font-size: 16px;
}

/* --- Mobile Desktop Grid Controls --- */
.bn-header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.bn-header-hamburger span {
  width: 24px;
  height: 3px;
  background-color: #1a202c;
  border-radius: 2px;
}

/* --- Drawer Drawer Sidebar Elements --- */
.bn-header-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bn-header-sidebar {
  position: fixed;
  top: 0;
  right: -300px; /* Hidden off-canvas initialization layout */
  width: 280px;
  height: 100%;
  background: #ffffff;
  z-index: 1000;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bn-header-sidebar-top {
  display: flex;
  justify-content: flex-end;
}

.bn-header-sidebar-close {
  background: #ffffff;
  border: 1px solid #a0aec0;
  border-radius: 6px;
  /* width: 32px;
  height: 32px; */
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #4a5568;
  padding: 10px;
}

.bn-header-nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bn-header-mobile-link {
  text-decoration: none;
  color: #1a202c;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.bn-header-mobile-lang {
  margin-top: 10px;
}

/* --- Open Active Toggle Drawer Layout States --- */
.bn-header-sidebar-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.bn-header-sidebar.is-active {
  right: 0;
}

/* --- Media Queries --- */
@media (max-width: 991px) {
  .bn-header-nav-desktop {
    display: none;
  }
  
  .bn-header-hamburger {
    display: flex;
  }
}


/* //////////header */



/* --- Full-width Wrapper for Background --- */
.bn-footer-wrapper {
  background-color:#F5FBFF; 
  width: 100%;
  padding: 60px 4% 30px 4%; /* Soft side padding for smaller desktop screens */
  box-sizing: border-box;
  clip-path: ellipse(150% 100% at 50% 100%);
}

/* --- Centered Containment Rules --- */
.bn-footer-container {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1320px;
  padding-inline-end: 0;
  padding-inline-start: 0;
  width: 100%;
  color: #555555;
  font-family: "Inter", sans-serif;
}

.bn-footer-container * {
  box-sizing: border-box;
}

/* --- Elementor Custom Layout Elements --- */
.bn-footer-main-title {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1D1C1C;
  margin: 0 0 8px 0;
}

.bn-footer-sub-title {
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: #1D1C1C;
  margin: 0;
}

.elementskit-btn {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  border-radius: 5px;
  white-space: normal;
  background-color: transparent;
  padding: 15px 30px;
  background-image: linear-gradient(160deg, #3E3092 5%, #3DB1D3 89%);
  border-style: none;
  transition: opacity 0.3s ease;
}

.elementskit-btn:hover {
  opacity: 0.9;
}

/* --- Structure Components --- */
.bn-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  gap: 20px;
  margin-bottom: 50px;
  margin-top: 50px;
}

.bn-footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

/* Brand Section */
.bn-footer-brand-info {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.bn-footer-logo-wrapper {
  font-size: 26px;
  font-weight: 700;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bn-footer-logo-highlight {
  color: #3DB1D3;
}

.bn-footer-tagline {
  font-size: 11px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 2px 0 20px 0;
}

.bn-footer-description {
  color: #54595F;
  font-family: "Inter", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin-top: 30px;
}

/* Info Box / Card Structure */
.bn-footer-card {
  flex: 1.5;
  min-width: 320px;
  background: #F5FBFF;
  border: 1px solid #e1e8ed;
  border-radius: 12px;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.bn-footer-column {
  flex: 1;
  min-width: 200px;
}

.bn-footer-col-title {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1D1C1C;
  margin-top: 0;
  margin-bottom: 20px;
}

/* Lists and Contact links */
.bn-footer-links, .bn-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bn-footer-links li {
  margin-bottom: 12px;
}

.bn-footer-links a {
  transition: color 0.2s;
  text-decoration: none;
  color: #54595F;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.bn-footer-links a:hover {
  color: #3E3092;
}

.bn-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 15px;
  color: #555555;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.bn-footer-contact-list a {
  text-decoration: none;
  color: #555555;
}

.bn-footer-icon {
  color: #3DB1D3;
}

.bn-footer-address {
  line-height: 1.5;
}

/* Footer Bottom End */
.bn-footer-divider {
  border: 0;
  border-top: 1px solid #e1e8ed;
  margin-bottom: 20px;
}

.bn-footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #888888;
}

.bn-footer-imprint {
  text-decoration: none;
  color: #54595F;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/* --- Responsive Adaptations --- */
@media (max-width: 991px) {
  .bn-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .bn-footer-card {
    padding: 25px;
  }
  .bn-footer-brand-info {
  flex: 1;
  min-width: 300px;
  max-width: 100%;
}

.bn-footer-card {
  flex: 1.5;
  min-width: 100%;
  
  }
  
  
  .bn-footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: inherit;
  gap: 40px;
  margin-bottom: 40px;
  flex-direction: column;
}
}

@media (max-width: 600px) {
  .bn-footer-wrapper {
    padding: 40px 5% 20px 5%;
    clip-path: ellipse(200% 100% at 50% 100%);
  }
  .bn-footer-main-title, .bn-footer-sub-title {
    font-size: 28px;
  }
  .bn-footer-card {
    flex-direction: column;
  }
  .bn-footer-bottom {
    flex-direction: column-reverse;
    gap: 10px;
    align-items: flex-start;
  }

  
}

@media (max-width: 767px) {
.link-footer-bottom {
    display: flex;
    gap: 5px !important;
    flex-direction: column;
  }

}


@media screen and (min-width: 712px) and (max-width: 760px) {
    /* Your CSS here */
}

.link-footer-bottom {
  display: flex;
  gap: 25px;
}

.bn-footer-copyright {
  font-size: 16px;
}