* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
}

/* General styling for the header */
/* Style for the header and icons container */
.header-icons {
margin-top: 20px;
}

.icons {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px; /* Add padding for spacing */
}

a {
text-decoration: none;
display: inline-block; /* Ensure the link wraps the image fully */
}


/* Style the link container */
.left-icon {
display: flex;
align-items: center; /* Align the icon and text vertically */
text-decoration: none; /* Remove underline from the link */
color: #000; /* Text color (can be customized) */
gap: 10px; /* Space between the icon and the text */
}

/* Style the icon */
.left-icon img {
width: 20px; /* Set icon size */
height: 20px;
}

.right-icons {
display: flex;
gap: 10px; /* Space between the right-side icons */
}

.right-icons img {
width: 20px; /* Set icon size */
height: 20px;
}

/* Style the phone number */
.left-icon span {
font-size: 16px; /* Adjust font size */
}

/* Header Styling */
header {
width: 100%;
background-color: #f8f8f8;
}

/* General Header Styling */
.header-container {
  max-width: 1200px; /* Restrict container width */
  margin: 0 auto; /* Center the container */
  padding: 0 15px; /* Small padding for better alignment */
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd; /* Optional: Add a bottom border */
  background-color: #fff; /* Set header background color */
}

/* Logo Styling */
.navbar-logo {
  flex-shrink: 0; /* Prevent logo from resizing */
}

.navbar-logo img {
  max-height: 70px;
  display: block;
  border-radius: 15px; /* Smoother corners */
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-logo img:hover {
  transform: scale(1.3);
  opacity: 0.9;
}

/* Menu Styling */
.menu {
  display: flex;
  align-items: center;
  gap: 20px; /* Even spacing between menu items */
  font-family: 'poppins' sans-serif;
}

.menu .nav-link {
  display: flex; /* Ensures equal size */
  align-items: center;
  justify-content: center;
  width: 140px; /* Fixed width */
  height: 50px; /* Fixed height */
  text-align: center; /* Centers text */
  padding: 10px 15px;
  margin: 0; /* Remove default margin */
  color: #161515; /* Default text color */
  background-color: #f9f9f9; /* Light background */
  border: 1px solid #ddd; /* Border for structure */
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.menu .nav-link:hover {
  background-color: #40413f; /* Hover background */
  color: #fad60c; /* Hover text color */
  transform: scale(1.05); /* Hover zoom effect */
}

/* Button Styling */
.menu .btn {
  background: linear-gradient(#b49900e5, rgb(255, 170, 14), rgb(77, 68, 68));  color: rgb(8, 8, 8);
  border: none;
  padding: 10px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.menu .btn:hover {
  background-color: #0c0c0c;
  color: white;
  transform: scale(1.05);
}

/* Responsive Menu Button */
.btn-primary {
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 4px;
}

/* Small Screens */
@media (max-width: 768px) {
  .navbar {
      flex-wrap: wrap;
      justify-content: space-between;
  }

  .navbar-logo img {
      max-height: 50px; /* Smaller logo */
  }

  .menu {
      display: none; /* Hide menu links */
  }

  #navbarMenu {
      display: none; /* Hidden by default */
      flex-direction: column;
      align-items: center;
      gap: 15px;
      margin-top: 15px;
  }

  .collapse.show {
      display: flex !important; /* Display menu when toggled */
  }

  #navbarMenu .nav-link {
      width: 100%; /* Full width for links */
      text-align: center;
  }

  .btn-primary {
      margin: 10px 0;
  }
}

/* Adjusted Spacing for Center Alignment */
.navbar .menu {
  flex-grow: 1;
  justify-content: center;
  margin-left: 20px; /* Space between logo and menu */
}

.navbar .btn {
  margin-left: auto; /* Push button to far right */
}



.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns */
  gap: 20px;
}

.gallery-item {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #333;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item span {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  color: #fff;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 5px;
  border-radius: 0 0 8px 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover span {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr); /* Adjust to 2 columns for smaller screens */
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr; /* Adjust to 1 column for very small screens */
  }
}
.container h1{
    color: rgb(0, 0, 0);
    text-align: center;
    border-radius: 20px;
    color: #332e03;
    font-weight: 600;
    font-family: "poppins";
}
.landing-image{
  padding-left: 70px;
  margin-top: 50px;
}


@media (max-width: 768px) {

    .subscription-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      }
      .subscription-text,
      .subscription-form {
        flex: 1;
        width: 100%;
        margin-bottom: 10px;
      }
      .subscription-form {
        justify-content: flex-start;
      }
      .subscription-form input[type="email"],
      .subscription-form button {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
      }
      
    header {
        flex-direction: column;
        align-items: center;
    }
  
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
    }
  
    nav a {
        margin: 10px 0;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }
  
    .menu-button {
        display: block;
    }
  
    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
  
    .icons {
        margin-top: 10px;
        gap: 10px;
    }
  }
  
  @media (max-width: 480px) {
    nav a {
        font-size: 14px;
    }
  }
   
   
  .subscription-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to right, #fae06b, #fae06b);
    color: rgb(12, 12, 12);
    opacity: 75%;
    border-top: 2px solid #dfe7ed;
    width: 100%; /* Ensure it takes the full width */
    margin: 0; /* Remove any default margins */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
  }
  
  .subscription-text {
    display: flex;
    align-items: center;
  }
  .subscription-text img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  .subscription-text p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }
  .subscription-form {
    display: flex;
    flex-direction: column; /* Stack the elements vertically */
    align-items: center; /* Center the text and inputs horizontally */
    gap: 10px; /* Add spacing between the elements */
  }
  .subscription-form p {
    font-size: 16px;
    color: #555;
    margin: 0; /* Remove default paragraph margin */
    text-align: center; /* Center-align the text */
  }
  .input-group {
    display: flex;
    flex-wrap: wrap; /* Ensure inputs wrap on smaller screens */
    justify-content: center; /* Center-align the input group */
    gap: 10px; /* Space between input and button */
  }
  
  .input-group input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    flex: 1; /* Allows the input to expand */
    min-width: 200px;
  }
  
  .input-group button {
    background-color: #050505;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .input-group button:hover {
    background-color: #f0d910;
    color: rgb(14, 13, 13);
  }
  
  .icons img {
    width: 24px; /* Icon width */
    height: 24px; /* Icon height */
    border-radius: 20px;
  }
  .end-paragraph p{
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
    margin-left: 20px;
  }
  .end-paragraph h2{
    margin-left: 20px;
  }
  .banner-container {
    height: 50vh; /* Takes 50% of the viewport height */
    width: 100%; /* Full width */
    overflow: hidden; /* Ensures no extra space shows */
  }
  
  /* The image fills the container */
  .banner-image {
    height: 100%; /* Fills the container's height */
    width: 110%; /* Fills the container's width */
    object-fit: cover; /* Ensures the image scales proportionally and covers the entire container */
  }
  
  /* Media query for small screens (optional adjustments) */
  @media (max-width: 768px) {
    .banner-container {
      height: 40vh; /* Reduce height for smaller screens */
    }
  }