/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
  }
  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown button {
  background-color: rgb(223, 229, 231);
    
    color: white;
    padding: 0px 0px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin-top: -7px;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    right: 0px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;

    
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  .dropdown button:hover {
    background-color: #768d76;
  }
  .imgdrop{
      width: 50px;
      height: 40px;
  }

header {

  margin: 10px 10px 10px 10px;

  border-radius: 25px;
  background-color: rgb(223, 229, 231);
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

header .logo h1 {
  font-size: 24px;
}

header nav ul {
  list-style-type: none;
  display: flex;
  justify-content: baseline;
}

header nav ul li {
  margin-left: 20px;
  
}

header nav ul li a {
  color: black;
  text-decoration: none;
}

header nav ul li a:hover {
  text-decoration: underline;
}




  
  /* Hero Section */
  .hero {
    background: url(../assets/images/kalvium/venky1-1.jpeg) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 8px;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffa500;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background-color: #e59400;
  }
  
  /* Navigation Header */
  .header {
    background-color: #333;
    color: #fff;
    padding: 20px 10%;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .header h1 {
    margin: 0;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
  }
  
  .nav-links li {
    margin: 0 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
  }
  
  .nav-links a:hover {
    color: #ffa500;
  }
  
  .menu-section,
  .gallery-section,
  .reviews-section {
    padding: 50px 10%;
    text-align: center;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .menu {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  
  .menu-item {
    background-color: #fff;
    margin: 15px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .reviews blockquote {
    font-style: italic;
    margin: 15px 0;
    padding: 15px;
    background-color: #fff;
    border-left: 4px solid #ffa500;
  }
  
  .footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
  }
  