* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #0f0f0e;
    color: #333;
    scroll-behavior: smooth;
  }
  
  .hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 20px;
    background-color: #000000;
    color: rgb(0, 0, 0);
    position: relative;
    background-size: cover; /* Ensures the image covers the whole section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* Shadow for depth */
    filter: brightness(0.9) saturate(1.2); /* Enhance image */
    animation: fadeInHero 2s ease-in-out; /* Fade-in animation */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); /* Slanted bottom */
    transition: background-image 1s ease-in-out, transform 1s ease; /* Smooth transitions */
  }
  
  /* Optional Overlay for Better Text Contrast */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); /* Match hero shape */
  }
  
  .hero .navbar {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 3;
  }
  
 

  .image-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 20px auto 0;
    overflow: hidden;
  }
  
  .image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .image-slider img.active {
    opacity: 1;
  }
  
  /* Navbar Styling */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: #000; /* Set to solid black */
    z-index: 1000;
    transition: background 0.3s, padding 0.3s;
  }
  
  .logo img {
    width: 120px;
    height: 120px; /* Ensures the image is a square to maintain a circular shape */
    display: block;
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image is nicely cropped if not square */
    transition: transform 0.3s ease-in-out;
}

.logo img:hover {
    transform: scale(1.1);
}

  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ffdb58;
    transform: scale(1.1);
  }
  
  .nav-links li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffdb58;
    transition: width 0.3s ease, left 0.3s ease;
  }
  
  .nav-links li:hover::after {
    width: 100%;
    left: 0;
  }
  
  /* Responsive Navbar */
  @media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
    }
  
    .nav-links {
        flex-direction: column;
        gap: 15px;
        background: rgba(0, 0, 0, 0.9);
        padding: 10px;
        border-radius: 8px;
        display: none;
    }
  
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 70px;
        right: 20px;
    }

    .nav-links li {
        padding: 0 0 0 25px;

    }
  
    .menu-toggle {
        display: flex;
    }
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-toggle div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .menu-toggle.active div:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }
  
  .menu-toggle.active div:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active div:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

/* Welcome Section */
.welcome {
  background: url('images/11.jpg') no-repeat center center/cover; /* Add image with gradient overlay */
  padding: 80px 20px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

/* Welcome Container */
.welcome-container {
  background: rgba(255, 255, 255, 0.8); /* Transparent white background */
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading Style */
.welcome-container h1 {
  font-size: 2.5rem;
  color: #000000; /* Vibrant orange for the title */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}

/* Paragraph Style */
.welcome-container p {
  font-size: 1rem;
  line-height: 1.8;
  color: #4b4b4b; /* Neutral gray for readability */
  margin-top: 15px;
  text-align: justify;
  letter-spacing: 0.5px;
  word-spacing: 2px;
  font-style: italic; /* Elegant touch */
}

  /* About Section Styling */
.about {
    background: url('images/10.jpg') no-repeat center center/cover; /* Add image with gradient overlay */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background: #fff; /* Card-like appearance */
}

.about h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fdd35b; /* Vibrant orange */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about h2 .highlight {
    color: #fdd35b; /* Slightly darker orange for emphasis */
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-top: 10px;
}

/* Main Menu Section */
.menu {
    background: #1e1e1e; /* Uniform dark gray background */
    padding: 60px 20px;
    text-align: center;
    color: #f5f5f5;
    margin-top: 80px;
}

/* Section Heading */
.menu h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fdd35b;
    position: relative;
    display: inline-block;
}

.menu h2 span {
    color: #fdd35b;
}

/* Menu Items Container */
.menu-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Individual Menu Item */
.menu-item {
    background: #1e1e1e; /* Same background as the section for uniformity */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 300px;
    width: 100%;
    text-align: center;
    position: relative;
    color: #f5f5f5; /* Text matches the section */
}

/* Hover Effect */
.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Image in Menu Item */
.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.menu-item:hover img {
    transform: scale(1.1);
}

/* Menu Item Details */
.menu-details {
    padding: 20px;
    background: #1e1e1e; /* Matches the section background */
    border-top: 1px solid #292929; /* Subtle separator */
}

.menu-details h3 {
    font-size: 1.5rem;
    color: #fdd25d;
    margin-bottom: 10px;
}

.menu-details p {
    font-size: 1rem;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-item {
        max-width: 100%;
    }
}

.contact-info {
    max-width: 700px;
    margin: 40px auto;
    padding: 20px;
    background:  #333; /* Card background */
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Modern shadow */
    margin-top: 80px;
  }
  
  .contact-info h2 {
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    margin-bottom: 15px;
    background: #000000;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Soft card shadow */
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .contact-card:hover {
    transform: translateY(-5px); /* Hover effect */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
  }
  
  .contact-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #cfe9fa; /* Accent border */
  }
  
  .details {
    flex-grow: 1;
  }
  
  .details p {
    margin: 5px 0;
    font-size: 1rem;
    color: white;
  }
  
  .details p strong {
    color: #ffffff; /* Highlighted labels */
  }
  
  @media (max-width: 600px) {
    .contact-card {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
    }
  
    .contact-card img {
      margin-bottom: 10px;
    }
  }

  /* Footer Styling */
.footer {
    background: #333; /* Dark background */
    color: #fff; /* White text */
    padding: 20px;
    text-align: center;
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer p {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: #ccc; /* Subtle text color */
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px; /* Spacing between icons */
    margin-top: 10px;
}

.social-icons a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #444; /* Icon background */
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2); /* Zoom effect on hover */
    background: #ff9800; /* Vibrant hover color */
}

/* Icon Colors */
.icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.icon.facebook:hover {
    background: #4267B2;
}

.icon.twitter:hover {
    background: #1DA1F2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }
}
