* {
    padding: 0;
    margin: 0;
    font-family: "Inter";
}

.navbar-header {
    background-color: #1D6CB7;
    display: flex;
    padding: 0.5%;
    font-size: 12px;
    color: white;
    justify-content: space-between;
}

.header-start {
    display: flex;
    align-items: center;
    gap: 5px;
    /* margin-left: 6%; */
}

.header-text,
.mail {
    margin-left: 20px;
}

.header-text2 {
    margin-left: 5px;
}

.header-end,
.location,
.mail {
    display: flex;
}

.main-navbar{
    display: flex;
    align-items: center;
    font-size: 15px;
    justify-content: space-between;
}

.logo {
    /* background-color: #1D6CB7; */
    background-image: url('images/blue.png');
    width: 187.5px;
    height: 70px;
    padding: 0.5%;
}

.navbar {
    display: flex;
    /* background-color: #F8F8F8; */
    font-size: 15px;
    font-weight: bold;
    margin-left: 100px;
    padding: 0% ;
}
.navbar a {
    color: black;
    text-decoration: none;
    padding: 0px 20px;
    display: block;
}

.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    text-align: left;
    opacity: 90%;
    display: none;
    position: absolute;
    background-color: #1D6CB7;
    margin-left: 10px;
    width: 200px;
    border-radius: 4px;
    color: white;
}
.dropdown-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 10px 0;
}
.dropdown-content li {
    margin: 5px 0px; 
}
.dropdown-content a {
    color:white;
    padding: 1px 10px 1px 0px;
    text-decoration: none;
    display: block;
}
.dropdown.show .dropdown-content {
    display: block;
}
.navbar-section {
    display: flex;
    text-align: center;
}
.arrow {
    margin-left: 5px;
}

.button button{
    background-color: #1D6CB7;
    border-radius: 100px ;
    margin: 10px;
    padding: 5%;
    width: 105px;
    border: none;
    color: white;
}

.mobile-nav-toggle {
    display: none;
}

.toggle-lines-box {
    cursor: pointer;
}

.toggle-line {
    width: 35px;
    height: 5px;
    background-color: black;
    margin: 6px 0;
  }

  
@media only screen and (max-width: 1920px) {
    .main-navbar{
        font-size: 13px;
    }
    }
@media only screen and (max-width: 1920px) {
    .mobile-nav-toggle {
        display: flex;
        justify-content: flex-end;
        flex-grow: 1;
        padding: 0 20px 0 0;
    }
}




*{
    padding: 0;
    margin: 0;
}

.hero{
background-image: url(images/Staff.png);
background-position: left center;
align-items: center;
width: 1920px;
background-size: cover;
background-repeat: no-repeat;
padding: 5% 0%;
}

.text{
text-align: center;
font-family: 'Lucida Sans', 'Roboto Condensed';
color: white;
margin: 0px auto;
padding-bottom: 2%;
text-transform: uppercase;
}
.bodytext{
    text-align: center;
    font-family: 'Inter';
    line-height: 30px;
    font-size: 20px;
    margin: 0px auto;
    padding-bottom: 2%;
    color: white;
    justify-content: center;
    display: flex;
    padding: 20px;
}


/* Staff Cards Section Styles */
  /* Staff Cards Section Styles */
.staff-cards {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6rem;
    padding: 2rem;
    background-color: transparent;
  }
  
  .staff-card {
    width: 250px;
    align-items: center;
    background-color: #1D6CB7;
    color: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .staff-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .staff-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .staff-info {
    padding: 1rem;
  }
  
  .staff-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
  }
  
  .staff-role {
    font-size: 0.875rem;
  }
  
  .staff-position {
    font-size: 0.873rem;
    margin: 0.5rem 0;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .social-icon {
    width: 15px;
    height: 15px;
  }
  
  .staffheading{
    text-align: center;
    text-decoration: underline;
    padding-top: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color:black ;
  }

  .staffline{
    text-align: center;
  }
  .blogsBackground {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden; /* Ensure pseudo-element doesn’t overflow */
  }
  
  .blogsBackground::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('http://127.0.0.1:8000/assets/user/images/background.jpg');
    background-size:100%;
    background-position: center;
    background-repeat: repeat;
    object-fit: contain;
    opacity: 0.09; /* Set opacity of the background image */
    z-index: -1; /* Ensure the pseudo-element is behind the content */
  }
  
  .blogsBackground > * {
    position: relative;
    z-index: 1; /* Ensure content is above the pseudo-element */
  }

  .sec-title__tagline2 {
    color: white !important; 
    font-size: 55px !important;
  }
  
  @media(max-width: 991px) {
    .bodytext{ 
      font-size: 16px;
    }
  }

  @media(max-width: 810px) {
    .bodytext{ 
      font-size: 10px;
    }
    .sec-title__tagline2 {
      font-size: 32px !important;
    }
  }