* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
}

.header {
    max-width: 1500px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo  {
    display: flex;
    top: -20px;
    width: 80px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    color: #31793a;
}

.Category {
    display: flex;
    gap: 10px;
}


.logo {
  height: 70px;
  top: -25px;
  position: absolute;
}

  

.search-bar {
    padding: 8px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-btn {
    padding: 8px 12px;
    border: none;
    background: #007BFF;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.actions i{
    font-size: 20px;
    cursor: pointer;
}

.login {
    text-decoration: none;
    color: #333;
    font-size: 17px;
}

.post-ad {
    padding: 8px 15px;
    background: #FF9800;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.navbar{
    background-color:  #1d1f52;
    position: relative;
    margin: auto;
    /* max-width: 1140px; */
    height: 50px;
    align-content: center;
    padding: 0 20px;
    color: white;
    
}
.navbar ul li{
   list-style: none;
}
.navbar ul {
   display: flex;
   gap: 20px;
}
.navbar ul li{
   list-style: none;
}
.lists{
    display: flex;
    justify-content: start;
    align-items: center;
}

.dropdown-menu{
    width: 70px;
    font-size: 18px; 
    border: none;
    outline: none;
    background-color: transparent;
    color: white;
    
    
}
.dropdown-menu option{
    margin-top: 10px;
   width: 100vw;
    
    color: black;
    
}





.menu-container {
    position: relative;
    display: inline-block;
}

.menu-button {
    background-color: transparent;
    color: white;
    padding: 12px 0;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-menu {
    display: none;

    position: absolute;
    background-color: white;
    min-width: 75vw;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 1;
}

.dropdown-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.menu-container:hover .dropdown-menu {
    display: block;
}

/* Login css */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .input-group {
    transition: all 0.3s ease;
  }
  
  .input-group:focus-within {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  }
  
  .form-control:focus {
    box-shadow: none;
  }
  
  .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
  }
  
  .btn-primary:disabled {
    background-color: #84b4f8;
    border-color: #84b4f8;
  }
  
  .rounded-pill {
    border-radius: 50rem;
  }
  
  .cursor-pointer {
    cursor: pointer;
  }
  
  .check-icon {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .check-icon.visible {
    opacity: 1;
  }


  /* Carosol */


  .mentor-carousel, .carousel-inner, .carousel-item, .carousel-item img {
    max-height: 50vh !important;
    object-fit: cover;
  }
  
  .carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.8;
    background-color: rgba(0,0,0,0.3);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    top: calc(50% - 25px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-indicators {
    margin-bottom: 1rem;
  }
  
  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 5px;
  }
  
  .carousel-indicators button.active {
    opacity: 1;
    background-color: #007bff;
  }
  
  .slide-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: rgba(0,0,0,0.6);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
  }

  .prev-button{
    position: absolute;
    top: 40% !important;
    left: 2px !important;
    color: black !important;
  }
  .next-button{
    position: absolute;
    top: 40% !important;
    right: 2px !important;
    color: black !important;
  }


  /* Home Content */

  .bg-hover-effect {
    transition: background-color 0.3s ease;
    list-style: none;
    cursor: pointer;
  }
  
  .bg-hover-effect:hover {
    background-color: #ebebeb;
  }
  
  /* Custom scrollbar for the aside */
  .custom-scrollbar {
    overflow-y: auto;
    scrollbar-width: thin;
  }
  
  .custom-scrollbar::-webkit-scrollbar {
    width: 6px;
  }
  
  .custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
  }
  
  .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
  }

  .section-image{
    width: 100%;
    border-radius: 10px;
  }

  /* 
   Image and Content
  */
  





  /* Footer css */
  /* Custom styling for footer */
.footer {
    background-color: #212529;
}

.footer h4 {
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: #0d6efd;
}

.hover-white:hover {
    color: #fff !important;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    padding-left: 5px;
    transition: all 0.3s ease;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #0d6efd;
    transform: translateY(-3px);
}

.btn-outline-light:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.like-button{
  display: inline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 2rem;
    }
 
  
  .section-container {
      padding: 40px 0;
  }
}

@media screen and (max-width: 370px) {
  .navbar-nav,.nav-menu{
    font-size: 12px;
  }

}
@media screen and (max-width: 310px) {
  .navbar-nav{
    font-size: 10px;
  }
  .nav-menu{
    font-size: 5px;
  }

}