/* * {
  overflow: hidden;
} */

html {
  scroll-behavior: smooth;
}

.main {
  background-image: url("../../assets/home.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 9rem;
  /* background-size: contain; */
}

.navbar {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 0.5rem 1rem;
  width: 100%; /* Ensure full width */
  box-sizing: border-box; /* Prevent overflow */
  overflow: hidden; /* Prevent any horizontal overflow */
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: #000000 !important;
  font-weight: 700;
  padding: 0.5rem 1rem; /* Default padding */
  font-size: 0.875rem;
  border-radius: 10px;
  border: 2px solid #000000;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-expand-lg .navbar-nav .nav-link.active {
  border: 2px solid red;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #000000;
}

.navbar-brand img {
  max-width: 150px; /* Adjust based on your logo size */
  height: auto;
  border-radius: 10px;
  margin: 0;
}

.navbar-brand {
  margin-right: 0!important; /* Increased font size */
  padding: 0;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px; /* Ensure buttons are well-spaced */
}

.navbar .container-fluid {
  display: flex!important; /* Increased font size */
  align-items: center!important; /* Increased font size */
  justify-content: space-between!important; /* Increased font size */
  padding: 0 15px!important; /* Increased font size *//* Control spacing around navbar */
}

.navbar-toggler {
  margin-left: auto;
}
@media (max-width: 768px) {
  .gap-md-5{
    gap:1rem!important;
  }
  }
  @media (max-width: 991px) {
  
    .navbar-expand-lg .navbar-nav .nav-link {
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
      margin: 0.25rem 0;
    }
    .navbar-expand-lg .navbar-nav {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      width: auto; /* Ensure compact layout */
    }
    .navbar-nav {
      padding-left: 15px;
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    .navbar {
      padding: 0.5rem;
    }
  }
  @media (min-width: 1024px) {
    .navbar {
      width: 100%; /* Full width of the container */
      max-width: 100%; /* Prevent overflow */
      padding: 0.3rem 0; /* Remove left and right padding */
      overflow-x: hidden; /* Prevent horizontal overflow */
    }
  
    .navbar .container-fluid {
      display: flex;
      flex-wrap: nowrap; /* Ensure no wrapping */
      align-items: center;
      justify-content: space-between;
      width: 100%; /* Full width */
      padding: 0; /* Remove all padding */
    }
  
    .navbar-brand {
      flex-shrink: 0;
      margin-right: auto;
      max-width: 130px; /* Prevent logo from making navbar wider */
    }
  
    .navbar-expand-lg .navbar-nav {
      display: flex;
      justify-content: center; /* Center the nav items */
      align-items: center;
      width: 100%; /* Ensure navbar items take full width */
      
      padding: 0; /* Remove extra padding */
    }
  
    .navbar-nav .nav-link {
      font-size: 0.9rem !important; /* Increased font size */
      padding: 0.4rem 1rem !important; /* Increased padding inside links */

      text-align: center;
      justify-content: center; /* Align content to the center */
      border-radius: 6px;
      white-space: nowrap; /* Prevents text from wrapping */
      overflow: hidden; /* Prevent content overflow */
      min-width: 80px; /* Adjust minimum width */
      max-width: none; /* Remove maximum width restriction */
    }
  
    .navbar-toggler {
      margin-left: auto;
    }
  }
  
  
/* Larger Screens */
@media (min-width: 1440px) {
  .navbar {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow-x: hidden;
  }

  .navbar .container-fluid {
    display: flex!important; /* Increased font size */
    flex-wrap: nowrap!important; /* Increased font size */
    align-items: center!important; /* Increased font size */
    justify-content: space-between!important; /* Increased font size */
    width: 100%!important; /* Increased font size */
    padding: 0!important; /* Increased font size */
  }

  .navbar-brand {
    flex-shrink: 0;
    margin-right: 0;
    padding-left: 0;
  }

  .navbar-expand-lg {
    display: flex;
    justify-content: flex-start; /* Align navbar items starting from the left */
    width: 100%;
  }

  .navbar-expand-lg .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly !important; /* Increased font size */
    width: 100%; /* Ensure navbar items take full width */
    padding: 0;
    margin-left: 0 !important; /* Increased font size */
  }

  .navbar-nav .nav-link {
    font-size: 1.12rem !important; /* Increased font size */
    padding: 0.7rem 2.1rem !important; /* Increased padding for bigger clickable area */
    text-align: center;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    min-width: 120px; /* Increase the minimum width for larger links */
    max-width: none; /* Adjust maximum width */
  }

  .navbar-toggler {
    margin-left: auto;
  }
}

/* Ultra-Wide Screens */
@media (min-width: 2560px) {
  .navbar {
    width: 100%;
    max-width: 100%;
    padding: 0; /* Ensure no extra padding */
    overflow-x: hidden; /* Prevent overflow */
  }

  .navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribute space evenly between brand and nav links */
    width: 100%;
    padding: 0; /* Remove any padding */
    margin: 0; /* Remove any margin */
  }

  .navbar-brand {
    margin: 0; /* Remove margin around brand */
    padding: 0; /* Remove padding */
    flex-shrink: 0; /* Prevent brand from shrinking */
    display: flex;
  }

  .navbar-expand-lg {
    display: flex;
    justify-content: space-between; /* Ensure nav links are distributed evenly */
    width: 100%;
  }

  .navbar-expand-lg .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-evenly; /* Evenly distribute the nav links */
    gap: 20px; /* Provide space between nav links */
    width: 100%; /* Ensure the navbar takes full width */
    padding: 0;
    margin: 0; /* Remove any margin */
  }

  .navbar-nav .nav-link {
    font-size: 1.4rem !important; /* Increased font size */
    padding: 1rem 2.5rem !important; /* Increased padding */
    text-align: center;
    border-radius: 6px;
    white-space: nowrap;
    overflow: hidden;
    min-width: 200px;
    max-width: none;
    border: 2px solid transparent; /* Optional, for a cleaner look */
  }

  .navbar-toggler {
    margin-left: auto;
  }
}
main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to the top */
  align-items: center;
  min-height: 100vh; /* Ensure full viewport height */
  margin: 0; /* Removed extra margin at the top */
  padding: 20px 0; /* Padding added for top and bottom space */
  background-color: #f8f9fa;
  overflow-y: auto; /* Allow scrolling if content overflows */
}

/* Styling for the under development message */
.development-message {
  display: none; /* Hidden by default */
  color: #333;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  position: fixed;
  bottom: 120px; /* Position at the bottom */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;  /* Make sure it's on top */
  width: 80%;
  max-width: 600px;
}

.development-message img {
  max-width: 100%; /* Ensure the image scales to fit the container */
  height: auto;
}

/* Media Query for Extra Small Screens (320px - Small Mobile) */
@media (max-width: 320px) {
  .development-message {
    width: 95%;
    bottom: 50px;
    font-size: 12px;
    padding: 14px 0 0 40px;
  }
}

/* Media Query for Small Mobile Screens (375px) */
@media (max-width: 375px) {
  .development-message {
    width: 93%;
    bottom: 55px;
    font-size: 13px;
    padding: 14px 0 0 40px;
  }
}

/* Media Query for Larger Mobile Screens (425px) */
@media (max-width: 425px) {
  .development-message {
    width: 90%;
    bottom: 80px;
    font-size: 14px;
    padding: 14px 0 0 60px;
  }
}

/* Media Query for Small Tablets (576px) */
@media (max-width: 576px) {
  .development-message {
    width: 88%;
    bottom: 90px;
    font-size: 15px;
    padding: 14px 0 0 40px;
  }
}

/* Media Query for Tablets (768px) */
@media (max-width: 768px) {
  .development-message {
    width: 85%;
    bottom: 80px;
    font-size: 16px;
    padding: 16px 0;
  }
}

/* Media Query for Laptops (1024px) */
@media (max-width: 1024px) {
  .development-message {
    width: 80%;
    bottom: 30px!important;
    font-size: 17px;
    padding: 60px 0 0 0;
  }
}

/* Media Query for Larger Screens (1440px) */
@media (max-width: 1440px) {
  .development-message {
    width:100%;
    bottom: 100px;
    font-size: 18px;
    padding: 20px 0;
  }
}

/* Media Query for Ultra-Wide Screens (2560px) */
@media (max-width: 2560px) {
  .development-message {
    width: 60%;
    bottom: 110px;
    font-size: 20px;
    padding: 22px 0;
  }
}

/* Main Content Layout */
.layout {
  display: flex;
  width: 100%;
  overflow: hidden; /* Prevent any overflow */
}

/* Main Content Section */
.about_Us_1 {
  flex: 1; /* Main content takes remaining space */
  margin-right: 0; /* Ensure no margin on the right */
  overflow: hidden; /* Prevent overflow in the main section */
}

.filters-aside {
  width: 250px;
  padding:  80px 20px;
  border-right: 1px solid #ccc;
  background-color: #f8f8f8;
}
.filters-aside h2 {
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}
.filters-aside ul {
  list-style: none;
  padding: 0;
}
.filters-aside li {
  margin-bottom: 10px;
}
.filters-aside a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}
.filters-aside a.active {
  color: #d33;
  font-weight: bold;
}
.content-container {
  flex-grow: 1;
  padding: 20px;
}
.content-item {
  display: none; /* Initially hidden */
  border: 1px solid #ddd;
  margin-bottom: 15px;
  padding: 10px;
  background-color: #fff;
}
.content-item p {
  margin: 5px 0;
  font-size: 14px;
}
.content-item .price {
  display: none; /* Hides the price numbers */
}

/* Fixed Button Container */
.fixed-button-container {
  position: fixed;
  left: 0;
  background-color: #fff;
  width: 100%; /* Full width */
  z-index: 1000;
  padding: 10px 20px; /* Adds padding to the container */
  display: flex;
  gap: 5px;
  justify-content: space-between; /* Distribute buttons evenly with no gaps on edges */
  box-sizing: border-box; /* Ensure padding is included in width */
}

.fixed-button-container button {
  background-color: grey;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  flex-grow: 1; /* Makes all buttons expand to fill available space */
  max-width: none; /* Remove any maximum width restriction */
  text-align: center;
}

.fixed-button-container button:first-of-type {
  background-color: maroon; /* Highlight the first button */
}

.fixed-button-container a {
  color: white;
  text-decoration: none;
  display: block;
}

/* Image Section Styling */
.flex-container {
  display: flex;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
  padding: 20px 0;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for better aesthetics */
}

/* Image Section Styling */
.image-section img {
  width: 100%; /* Make the image responsive */
  max-width: 1000px; /* Set a maximum width */
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Add rounded corners to the image */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15); /* Shadow for the image */
}

/* Container Styling */
.container {
  max-width: 1200px; /* Limit the container's width */
  margin: 0 auto; /* Center the container */
  padding: 20px; /* Add padding around the container */
  display: flex;
  flex-direction: column; /* Stack child elements vertically */
  gap: 20px; /* Space between flex-container elements */
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 10px; /* Reduce padding for smaller screens */
  }
  .filters-aside {
    width: 150px;
    padding: 10px;
    padding-top: 140px; /* Added padding to the top of the filters */
    border-right: 1px solid #ccc;
    background-color: #f8f8f8;
  }
  .filters-aside h2 {
    font-size: 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
  }
  .filters-aside ul {
    list-style: none;
    padding: 0;
  }
  
  .filters-aside li {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .flex-container {
    flex-direction: column; /* Stack content vertically */
    gap: 10px; /* Adjust spacing */
  }

  .image-section img {
    max-width: 100%; /* Ensure the image fits smaller screens */
    border-radius: 6px; /* Adjust corner radius */
  }
  .fixed-button-container {
    flex-wrap: wrap;
    justify-content: space-between; /* Spread buttons out instead of centering */
    gap: 10px;
  }

  .fixed-button-container button {
    font-size: 14px;
    width: calc(50% - 10px); /* Buttons occupy 50% of the width minus spacing */
    flex-grow: 0;
    padding: 0.4rem 0.8rem; /* Reduced padding on smaller screens */
  }
}

@media (max-width: 576px) {
  .filters-aside {
    width: 100px;
    padding: 10px;
    padding-top: 150px; /* Added padding to the top of the filters */
    border-right: 1px solid #ccc;
    background-color: #f8f8f8;
  }
  .filters-aside h2 {
    font-size: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
  }
  .filters-aside ul {
    list-style: none;
    padding: 0;
  }
  
  .filters-aside li {
    margin-bottom: 14px;
    font-size: 12px;
  }
  .fixed-button-container {
    flex-wrap: wrap;
    justify-content: space-between; /* Spread buttons out instead of centering */
    gap: 10px;
  }

  .fixed-button-container button {
    font-size: 13px;
    width: calc(50% - 10px); /* Buttons occupy 50% of the width minus spacing */
    flex-grow: 0;
    padding: 0.3rem 0.7rem; /* Further reduced padding */
  }

  .flex-container {
    padding: 5px; /* Reduce padding further for smaller screens */
  }

  .image-section img {
    border-radius: 4px; /* Smaller corner radius */
  }
}

/* Additional media query for screens <= 480px */
@media (max-width: 480px) {
  .filters-aside {
    width: 100px;
    padding: 10px;
    padding-top: 150px; /* Added padding to the top of the filters */
    border-right: 1px solid #ccc;
    background-color: #f8f8f8;
  }
  .filters-aside h2 {
    font-size: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
  }
  .filters-aside ul {
    list-style: none;
    padding: 0;
  }
  
  .filters-aside li {
    margin-bottom: 14px;
    font-size: 12px;
  }
  .fixed-button-container {
    flex-wrap: wrap;
    justify-content: space-between; /* Spread buttons out instead of centering */
    gap: 10px;
  }

  .fixed-button-container button {
    font-size: 13px;
    width: calc(50% - 10px); /* Buttons occupy 50% of the width minus spacing */
    flex-grow: 0;
    padding: 0.3rem 0.7rem; /* Further reduced padding */
  }

  .flex-container {
    padding: 5px; /* Reduce padding */
  }

  .image-section img {
    max-width: 100%; /* Ensure image fits smaller screens */
    border-radius: 3px; /* Smaller corner radius for very small screens */
    
  }
}

.index_footer {
  clear: both;
  width: 100%;
  color: #fff;
  padding: 10px;
  position: fixed;
  text-align: center; /* Center text for smaller screens */
  background-color: black;
  left: 0;
  bottom: 0;
  z-index: 1000;
}

.index_footer a {
  color: white; /* Change to desired link color */
  text-decoration: none; /* Remove underline */
  margin: 0 40px; /* Space between links */
  display: flex; /* Ensures the icon and text are aligned */
  align-items: center; /* Align icon with text */
}

.index_footer a:hover {
  text-decoration: underline; /* Optional: Add underline on hover */
}

.index_footer i {
  padding-right: 20px; /* Adjust padding between icon and text */
}


/* Responsive styles */
@media (max-width: 768px) {
  .index_footer {
    padding: 8px; /* Reduce padding for smaller screens */
    font-size: 12px; /* Adjust font size */
    justify-content: center !important; /* Center items on smaller screens */
  }

  .index_footer a {
    margin: 0 10px; /* Further reduced space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 5px; /* Further adjust padding between icon and text */
  }


}

@media (max-width: 480px) {
  .index_footer {
    padding: 4px; /* Further reduce padding for very small screens */
    font-size: 12px; /* Further adjust font size */
    justify-content: center; /* Center items on smaller screens */
    align-items: center; /* Ensure items are vertically centered */
    display: flex; /* Ensure Flexbox is applied */
    text-align: center; /* Center text for small screens */
  }

  .index_footer a {
    margin: 0 80px; /* Further reduced space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 5px; /* Further adjust padding between icon and text */
  }
}


/* Responsive styles for 1024px screens */
@media (min-width: 1024px) {
  .index_footer {
    padding: 12px; /* Adjust padding for 1024px screens */
    font-size: 14px; /* Slightly larger font size for readability */
    justify-content: center !important; /* Center items */
  }

  .index_footer a {
    margin: 0 15px; /* Adjust space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 7px; /* Adjust padding between icon and text */
  }
}

/* Responsive styles for 1440px screens */
@media (min-width: 1440px) {
  .index_footer {
    padding: 20px; /* Increase padding for 1440px screens */
    font-size: 18px; /* Larger font size for readability */
    justify-content: center !important; /* Center items */
  }

  .index_footer a {
    margin: 0 20px; /* Adjust space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 10px; /* Increase padding between icon and text */
  }
}

/* Responsive styles for 2560px screens */
@media (min-width: 2560px) {
  .index_footer {
    padding: 35px; /* More padding for 2560px screens */
    font-size: 32px; /* Larger font size for readability */
    justify-content: center !important; /* Center items */
  }

  .index_footer a {
    margin: 0 30px; /* Larger space between links */
    display: flex; /* Ensure the icon and text are aligned */
    align-items: center; /* Align icon with text */
  }

  .index_footer i {
    padding-right: 14px; /* More padding between icon and text */
  }
}
