/* your styles go here */
.navigation {
    /*background: linear-gradient(to right, transparent 50%, #590006  50%); */
    /* background-image: linear-gradient(to right, #5991ce, #95d4ff, #5991ce); Brighter gradient colors */

    background-image: linear-gradient(to right, #f5f5f5


    ,#f5f5f5


    , #f5f5f5


    ); /* Brighter gradient colors */
    transition: 0.2s ease;
  }
  @media screen and  (max-width: 991px) {
    .navigation {
      background: #1a1a37;
    }
  }
  
  @media screen and  (max-width: 991px) {
    .navbar-collapse {
      background: #1a1a37;
      max-height: calc(100vh - 80px);
    }
    .navbar-collapse.show {
      overflow-y: auto;
    }
  }
  
  
  .nav-bg {
    background-color: #1a1a37;
  }
  
  .nav-item {
    margin: 0 10px;
    position: relative;
  }
  @media screen and  (max-width: 991px) {
    .nav-item:last-child {
      margin-bottom: 20px;
    }
  }
  .nav-item .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 10px;
  }
  .nav-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: #fff;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
     pointer-events: none; 
  }
  @media  screen and (max-width: 991px) {
    .nav-item::before {
      opacity: 0.1;
      height: 100%;
    }
  }
  .nav-item:hover::before, .nav-item.active::before {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  
  .navbar-dark .navbar-nav .nav-link {
    
  }
  
  link:focus,
  .navbar-dark .navbar-nav .nav-link:hover {
    
    
  }
  
  .navbar-dark .navbar-nav .active > .nav-link,
  .navbar-dark .navbar-nav .nav-link.active,
  .navbar-dark .navbar-nav .nav-link.show,
  .navbar-dark .navbar-nav .show > .nav-link {
    color: #590006;
    ;
  }
  
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 0px;
  }
  @media  screen and (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
      padding: 12px 20px;
    }
  }
  
  .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: blueviolet;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.0509803922);
  }
  
  /* .navbar .nav-item > .dropdown-toggle::after {
    width: 0;
    height: 5px;
    position: relative;
    top:25px;
    left:-80px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;


  } */
  .navbar .dropdown .dropdown-menu li {
    padding-top: 10px;
  }
  .navbar .dropdown .dropdown-menu li:last-child {
    padding-bottom: 15px;
  }
  .navbar .dropdown .dropdown-menu.dropdown-submenu {
    top: 0;
  }
  @media screen and  (max-width: 991px) {
    .navbar .dropdown .dropdown-menu.dropdown-submenu li:first-child {
      margin-top: 15px;
    }
  }
  .navbar .dropdown .dropdown-item .dropdown-toggle {
    display: block;
    line-height: 1.8;
  }
  .navbar .dropdown:hover > .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    
  }
  .navbar .dropdown-menu {
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);

    padding: 0 15px;
    padding-left: 5px;
    top: 96px;
    border-radius: 0;
    display: block;
    visibility: hidden;
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    background: #fff;
  }
  @media screen and (max-width: 991px) {
    .navbar .dropdown-menu {
      padding-left: 15px;
      display: none;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      transform-origin: unset;
      margin: 0;
      border: 0;
      position: static;
    }
  }
  .navbar .dropdown-menu.show {
    visibility: hidden;
  }
  @media  screen and (max-width: 991px) {
    .navbar .dropdown-menu.show {
      visibility: visible;
      display: block;
    }
  }
  .navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
    position: relative;
    color: #1e1e4b;
    transition: 0.2s ease;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
  }
  @media screen and  (max-width: 991px) {
    .navbar .dropdown .dropdown .dropdown-toggle, .navbar .dropdown-item {
      text-align: center;
    }
  }
  .navbar .dropdown .dropdown .dropdown-toggle:hover, .navbar .dropdown-item:hover {
    
    background: transparent;
  }
/* Base styles */
.team-slider {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-slider .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.team-slider .col-lg-4 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px;
}

.team-image {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    object-fit: cover;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.team-image:hover {
    transform: scale(1.05);
}

/* Arrows styles */
.team-prev-btn,
.team-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 24px;
    color: black;
    cursor: pointer;
    z-index: 999;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-prev-btn {
    left: 20px;
}

.team-next-btn {
    right: 20px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .team-slider .col-lg-4 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media (max-width: 768px) {
    .team-slider .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .team-slider .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.hero-home {
    position: relative;
    overflow: hidden;
}

.hero-home .swiper-slide {
    display: flex;
    align-items: center;
}

/* Set background image properties */
.hero-home {
    background-size: cover;
    background-position: center;
}

/* Ensure the content is centered vertically and horizontally */
.hero-slide {
    height: 100%;
}

.hero-slide .container {
    max-width: 100%;
}

/* Adjust the content for smaller screens */
@media (max-width: 768px) {
    .hero-slide {
        padding: 50px 0; /* Adjust as needed */
    }
}

.blinky {
  position: fixed;
  bottom: 20px; /* Adjust as needed */
  left: 50px; /* Adjust as needed */
  animation: blink 0.5s infinite; /* Adjust blink duration */
}

@keyframes blink {
  0%, 100% { 
    background-color: #a27a6e; /* Original button color */
  }
  50% { 
    background-color: #800000; /* Mild maroon color during blink */
  }
}
#about {
  background-color: #f8f9fa; /* Set background color */
  padding: 50px 0; /* Set padding */
}

#about h2 {
  color: #333; /* Set heading color */
}

#about .col-lg-4 {
  border: 1px solid #ccc; /* Add border to columns */
  border-radius: 10px; /* Add border radius to columns */
  padding: 20px; /* Set padding for columns */
}

#about .col-lg-4:hover {
  background-color: #e9ecef; /* Change background color on hover */
}

/* Style for mobile menu */
@media (max-width: 991.98px) {
  /* Adjust the max-width as needed based on your design */
  #navbarSupportedContent {
    position: absolute;
    background-color: #343a40; /* Background color of the mobile menu */
    top: 56px; /* Adjust this value to align the mobile menu with the toggle button */
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure the mobile menu is above other content */
    display: none; /* Initially hide the mobile menu */
  }

  #navbarSupportedContent.show {
    display: block; /* Show the mobile menu when the collapse class is added */
  }

  #navbarSupportedContent .nav-link {
    color: #fff !important; /* Text color of mobile menu links */
  }
}
