* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

.main-navbar {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  z-index: 999;
  margin: 0;
}


body {
  padding-top: 100px; 
}


.container {
        max-width: 1400px;
        min-width: 320px;
        width: 90%;
        margin: auto;
        transition: transform 0.3s ease-in-out;
    }


    .top-navbar .container,
    .main-navbar .container {
      display: flex;
      justify-content: space-between; 
      align-items: center;
    }

    .social-links {
        display: flex;
        gap: 10px;
    }

    .social-links a {
        color: white;
        text-decoration: none;
        font-size: 18px;
    }
    .social-icon:hover {
      color: #ff9800; 
      transform: scale(1.2); 
    }
    .contact-info {
        display: flex;
        gap: 15px;
        font-size: 14px;
    }

  .contact-info {
    display: flex;
    align-items: right;
    gap: 15px;
    margin-right: 10px; 
  }
  
  .contact-item {
    display: flex;

    gap: 5px;
    
  }

    .logo {
      height: auto; 
        font-weight: bold;
    }
    
 
    .nav-links {
      list-style: none;
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-left: auto; 
      align-items: center;
      transition: all 0.3s ease;
  }
  
  .nav-links li {
      display: flex;
      align-items: center;
      font-size: large;
  }
  .nav-links a {
    position: relative;
    color: black; 
    text-decoration: none;
    padding-bottom: 5px; 
}

.nav-links a:not(.auth-btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0; 
    height: 2px; 
    background-color: #ff9800; 
    transition: width 0.3s ease-in-out;
}

.nav-links a:not(.auth-btn):hover::after {
    width: 100%; 
}

.nav-links a:hover{
  color: #ff9800;
}
 
   .search-container {
    display: flex;
    align-items: center;
  }
  
  .search-bar {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    border-radius: 25px;
    padding: 5px 10px;
  }
  
  .search-bar input {
    border: none;
    background: transparent;
    outline: none;
    padding: 5px;
    width: 100px; 
  }
  
  .search-bar button {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    
    .search-container {
      flex: 1; 
      max-width: 0; 
      overflow: hidden;
      transition: max-width 0.3s ease-in-out;
    }
    
   
    .search-container.visible {
      max-width: 200px; 
    }
    
    .search-bar {
      display: flex;
      align-items: center;
      background: #f0f0f0;
      border-radius: 25px;
      padding: 5px 10px;
    }
    
    .search-bar input {
      border: none;
      background: transparent;
      outline: none;
      padding: 5px;
      width: 100%; 
    }
    
    .search-bar button {
      border: none;
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
     Search Icon 
    .search-icon {
      cursor: pointer;
      display: flex;
      align-items: center;
    }
    .search-icon:hover{
        background-color: #ff9800;
        color: black;
    }
    .logo img {
      height: auto; 
      max-width: 120px; 
    }
 
    
.auth-btn {
  display: flex;
  align-items: center;
  justify-content: center; /* centers both icon and text */
  gap: 8px;
  border-radius: 30px;
  width: 130px;
  background-color: black;
  color: white !important;
  border: 5px solid black; 
  box-shadow: inset 0 0 0 2px white; 
  padding: 8px 12px; /* better spacing */
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: auto;
  position: relative; /* important if using ::after or hover effects */
  text-decoration: none;
  height: 46px; /* optional: consistent height */
}
#authLinks,
#dashboardLinks {
  display: flex;
  gap: 12px; /* Adjust space as needed */
  align-items: center;
  list-style: none;
}

    .auth-btn:hover {
      background-color: #ff9800;
      color: black !important;
    }
    .hamburger {
      display: none;
      font-size: 30px; 
      cursor: pointer;
      z-index: 1001;
    }
    
    .nav-links.open {
      display: block;
    }
    
    @media screen and (max-width: 768px) {
      .hamburger {
        display: block;
        font-size: 30px; 
        cursor: pointer;
        z-index: 1001;
      }
      
      .nav-links.open {
        display: block;
      }
      
     
      /*.hero {*/
      /*  padding: 40px 10px; */
      /*}*/
    
      /*.hero h1 {*/
      /*  font-size: 2rem; */
      /*}*/
    
      /*.hero p {*/
      /*  font-size: 1.2rem; */
      /*}*/
    
      
      .welcome {
        padding: 20px; 
      }
    
      .welcome-content {
        flex-direction: column; 
        text-align: center; 
      }
    
      .welcome-text h2 {
        font-size: 1.8rem; 
      }
    
      .welcome-text p {
        font-size: 1rem; 
      }
    
      
      .partners-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem; 
      }
    
     
      .footer-content {
        flex-direction: column; 
        text-align: center; 
      }
    
      .footer-column {
        margin: 10px 0; 
      }
    }
    
    @media screen and (max-width: 1024px) {
        .container {
            width: 95%;
        }
    }