html {
    font-size: 100%; /* this defines what 1rem is */
    scroll-behavior: smooth;
  }
  
  body {
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #eae8e8;
    color: #333;
  }
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 100px; /* Adjust this value as needed */
}

.intro h1 {
    color: rgb(139  , 84, 36);;
    margin-bottom: 10px;
}

.services ul {
    list-style-type: none;
    padding: 0;
}
p{
    font-weight: bold;
}

.services li {
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 10px;
    border-left: 5px solid rgb(139  , 84, 36);
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.image-gallery img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;
    border-radius: 10px; /* Rounds the corners of the images */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow */
}

.image-gallery img:hover {
    transform: scale(1.5);
}
    

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: white;
    color: #333;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.5s;
    flex-wrap: wrap; /* Allow the navbar to wrap on smaller screens */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Optional: adds a shadow for better visibility */

  
  }
  
  .logo {
    height: 55px; /* Adjust the height to fit your design */
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    padding-left: 0;
    
  }
  
  .nav-links .dropdown {
    position: relative; /* Context for positioning the dropdown */
  }
  
  .nav-links li {
  padding: 5px 10px;
  }
  .dropdown {
    position: relative; /* Context for positioning the dropdown */
    display: inline-block; /* So that width can be applied */
  }
  .dropdown a {
    /* Assuming you want to style the dropdown trigger */
    padding: 0 20px; /* Adjust padding to control width */
  }
  .nav-links a {
    text-decoration: none;
    color: #4472f0; /* New text color when the header-scrolled class is active */
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: rgba(205, 134, 72, 0.718);; /* Highlight color */
  }
  
  .dropdown-content {
    display: none;
    position: fixed; /* Fixed position relative to the viewport */
    top: 60px; /* Adjust this value so the dropdown starts right below the navbar */
    left: 0;
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.871);
    backdrop-filter: blur(10px);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    padding: 10px;
    border: 1px solid black;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    column-count: 2; /* Replace with the number of columns you want */
    column-gap: 20px; /* Adjust the gap between columns */
  
  }
  
  .dropdown-content li 
  {
    color: black;
    padding: 8px 12px; /* Padding inside each list item */
    text-decoration:none;
    display: block;
    text-align: left;
    clear: both; /* Clear any floats */
  }
  
  
  
  /* Style the dropdown content to be displayed when hovering over the dropdown */
  .dropdown:hover .dropdown-content {
    display: grid; /* Show as a grid on hover */
    grid-template-columns: repeat(2, 1fr); /* Example for two columns */
  
  
  }
  
  /* You might want to add styles for when hovering over the dropdown items */
  .dropdown-content li:hover {
    background-color: #ddd;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: rgb(139  , 84, 36);; /* New text color when the header-scrolled class is active */
    font-weight: bold;
    font-size: larger;
  }
  .dropdown-link {
    color: black; /* Text color */
    text-decoration: none; /* No underline */
    padding: 8px 12px; /* Padding */
    display: block; /* Full-width link */
    background-color: transparent; /* Transparent background */
    transition: background-color 0.3s, color 0.3s; /* Smooth transitions for hover effects */
  }
  
  .dropdown-link:hover {
    background-color: #ddd; /* Background color on hover */
    color: black; /* Text color on hover */
  }   
  
  .dropdown-content a {
    font-size: 16px; /* Adjust the font size as needed */
    color: black; /* Set a different color */
    font-weight: normal; /* Set the weight to normal if desired */
  }
  .nav-links .dropdown .dropdown-content a {
    font-size: 16px; /* Set the desired font size */
    color: black; /* Set the desired color */
    font-weight: normal; /* Set the desired font weight */
    text-decoration: none; /* Removes underline from links */
    padding: 8px 12px; /* Optional: Adds padding for better spacing */
  }
  
  .services li:hover {
    background-color: #ffffff;
    transform: scale(1.05);
    
}

.services li {
 
  transition: transform 0.3s ease-in-out; /* Add this line */
  
}


.dropdown-title {
  font-size: 18px; /* Set the font size for the title */
  font-weight: bold; /* Make it bold */
  color: black; /* Set the title color */
  padding: 20px 20px; /* Set the padding for the title */
  text-align:right; /* Center the text */
  pointer-events: none; /* Disable pointer events so it can't be clicked */
  grid-column: 1 / -1; /* This will make the title span all columns */

}