
body {
  padding-top: 120px;
}
img {
  -webkit-user-drag: none; /* Works for Chrome and Safari */
  -khtml-user-drag: none; /* Safari older versions */
  user-select: none;      /* Prevents text selection around the image */
  pointer-events: none;   /* Optional: disables interactions like right-click */
}

.lang-button{
    background: transparent;
    color: white;
}

.lang-button-active{
    font-weight: 600;
}

.ul-spacing{
    margin-left: 0 !important;
    padding-left: 0 !important;
} 

  .flex {
    display: flex;
  }
  
  .inline-flex {
    display: inline-flex;
  }

  .justify-start {
    justify-content: flex-start;
  }
  
  .justify-end {
    justify-content: flex-end;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .justify-between {
    justify-content: space-between;
  }
  
  .justify-around {
    justify-content: space-around;
  }

  .text-left {
    text-align: left;
  }
  
  .text-right {
    text-align: right;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-justify {
    text-align: justify;
  }


  .header-wrapper.w-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff; /* Change this based on your design */
    border-bottom: 1px solid #ddd; /* Optional: Adds a bottom border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}

.header-wrapper.w-nav.scrolled {
  /* background-color: #f8f8f8; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, .9)
}


.section-7 {
  background: linear-gradient(rgba(249, 252, 255, 0.7), rgba(249, 252, 255, 0.8)), url('/images/map_blue_1.png');
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain; 
  background-position: center; 
}

.glassmorphism {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.brand-logo-img{
  width: auto;
  height: 60px;
}

.brand-logo {
  transition: filter 0.3s;
  opacity: 0.5;
}

.brand-logo:hover {
  cursor: pointer;
  opacity: 1 !important;
  transition: transform .3s;
}

.team-avatar{
  object-fit: cover;
  width: 100%;
  min-width: 16px;
  height: 100%;
  max-height: 455px;
  position: relative;
}
.team-avatar img{
  max-height: 455px;
}

/* team member */
.team-avatar {
  position: relative;
}

.info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(199, 195, 195, 0.7);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1;
  border-radius: 0px 0px 20px 20px;
}

.team-avatar:hover .info {
  transform: translateY(0);
}
/* team member end */

.blog-first-news{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  background-color: rgb(50 133 209 / 79%);
  color: white;
  padding: 20px;
  z-index: 1;
}


.card-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mandatory-input{
  color: #9c2222;
}


.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

#cookieConsent{ background-color:white;text-align:center;display:none;position:fixed;z-index:65000;bottom:0px;width:100%;font-size:14px;padding:1em 0;border-top:2px solid #ddd; }
#cookieConsent button.cookieAccept{ background:#090;color:white;border:none;border-radius:0.2em;margin:0.5em;padding:0.5em 1em;}
.grecaptcha-badge { 
  visibility: hidden;
}

 /* Mobile-specific dropdown behavior */
 
@media (max-width: 991px) {

  .nav-container{
    display: flex !important;
    justify-content: space-between !important;
    padding: 0px;
  }

  .navbar-collapse{
    padding: 1rem;
    position: absolute;
    top: 85px;
    left: 0px;
    width: 100%;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  .dropdown-menu {
    display: none;
    position: static;
    float: none;

  }
  .dropdown-menu.show {
    display: block;
    border: none;
  }

  .dropdown-menu.show li {
    border-bottom: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .dropdown-menu.show li:last-child {
    border-bottom: none;
  }

  .dropdown-menu.show:hover {
    background-color: transparent;
  }

  .navbar-toggler:focus{
    box-shadow: none !important;
    box-shadow: 0 !important;
  }

  .lang-switch{
    position: relative !important;;
  }
  .lang-dropdown{
    position: absolute !important;
    right: 0px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .lang-dropdown li{
    border-bottom: none !important;
    padding-top: 0px !important;;
  }

}

/* Desktop-specific dropdown hover behavior */
@media (min-width: 992px) {

  .nav-container{
    display: flex !important;
    justify-content: flex-start !important;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
    border-radius: 20px;
  }
  .dropdown-menu.show li {
    padding: 0px 15px 10px 15px;
  }
  .dropdown-menu.show li:first-child {
    padding-top: 10px;
  }
  .dropdown-menu {
    display: none;
  }
}

.navbar .dropdown-menu {
  background-color: #fff;
  transition: background-color 0.3s ease;
}

/* .navbar .dropdown-menu.show {
  background-color: #f0f0f0;
} */

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
}

