* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .container-navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px;
    
}

header {
    background-color: #493628;
    padding: 1px 0;
    width: 100%;
     /* Added to position the hamburger menu correctly */
}
/* Default navigation */
header .container-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img{
    height: 50px;
    width: 50px;
    font-weight: bold;
    cursor: pointer;
}
.logo img:hover{
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.desktop-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

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

.desktop-nav ul li a {
    text-decoration: none;
    color: #ffffff;
}
.desktop-nav ul li a:hover {
    color: #d3895f;
}

/*Hamburger menu*/
.hamburger-menu {
    display: none; 
    font-size: 1.5em;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.hamburger-menu.open {
    transform: rotate(45deg); 
}

/* Mobile navigation menu*/
.mobile-nav {
    display: none; /* Hidden by default */
    position: absolute;
    top: 55px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    background-color: #000000;
    text-align: center;
    padding: 15px 0;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    padding: 10px 0;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #fff;
}
    body {
      font-family:  Arial , sans-serif;
      background-color: #dfdddb;
      color: #333;
      line-height: 1.6;
    }

    header {
      background-color: #493628;
      color: rgb(179, 176, 176);
      padding-left: 2rem 1rem;
      text-align: center;
    }
        main {
      padding: 3rem 1rem;
     max-lines: 1000px;
      margin: auto;
      text-align: center;
    }

    
     .services {
       
         display: flex;
      align-items: center;
      padding-left: 2rem 1rem;
    }
    
     .services-section {
      text-align: center;
      margin-bottom: 2rem;
      text-align: center;
    }

     .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

      .service-card button {
       background-color: #152216;
      color: white;
      border: none;
      padding: 0.6rem 1.2rem;
      border-radius: 5px;
      cursor: pointer;
    }
    
    
    
     .service-card {
  
      background-color: #f5f5f5 ;
      border: 1px solid #ccb8b8;
      border-radius: 10px;
      padding-left: 2rem 1.5rem;
      box-shadow: 0 2px 5px rgba(36, 18, 18, 0.1);
      text-align: center;
      padding-bottom: 10px;
      padding-top: 10px;
    }
    

    .service-card button {
      background-color: #493628;
      color: white;
      border: none;
      padding:  0.6rem 1.2rem;
      margin-top: 1rem;
      border-radius: 5px;
      cursor: pointer;
      

    }

  
    .service-card button:hover {
      background-color: #093004;
      
    }

    footer {
      position: absolute;
      bottom: 0px;
      width: 100%;
      background-color: #363636;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top:4rem ;

    }

@media (max-width: 768px){
      footer {
      position: relative;
      bottom: 0px;
      width: 100%;
      background-color: #363636;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top:4rem ;

    }
        .desktop-nav {
        display: none;
    }
    .logo{
        padding-left: 10px;
    }
    .logo img{
        height: 40px;
        width: 40px;
    }

    .hamburger-menu {
        font-size: 1em;
        display: block; /* Make it visible on mobile */
        color: white;
        font-weight: bold;
        padding: 5px 10px;
        background-color: #493628;
        border: 3px solid #674e3c;
        border-radius: 5px;
        position: absolute; /* Position it relative to the header */
        top: 10px; /* Adjust vertical position as needed */
        right: 20px; /* Adjust horizontal position as needed */
        z-index: 1000; /* Ensure it appears above other elements */
    }

}