  /* Reset and base styles */
  * {
    font-family:'gel','helvetica','Arial';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header container */
#divHeader {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Container for centering content */
.container {
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Flexbox layout for header content */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo styles */
.aLogo {
    display: block;
}

.aLogo img {
    max-height: 60px;
    width: auto;
}

/* Mobile menu toggle button - hidden by default */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

/* Navigation menu */
.main-nav {
    display: flex;
    align-items: center;
}

.ulNav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ulNav li {
    margin: 0 10px;
}

.ulNav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s;
}

.ulNav a:hover {
    color: #cc5f00;
}

/* Call button styling */
.call-btn {
    background-color: #cc5f00;
    color: white !important;
    padding: 10px 15px !important;
    border-radius: 4px;
}

.call-btn:hover {
    background-color: #cc5f00;
    color: white !important;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    /* Show menu toggle button */
    .menu-toggle {
        display: block;
    }
    
    /* Change navigation to vertical layout */
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    /* Show navigation when active */
    .main-nav.active {
        max-height: 300px;
    }
    
    .ulNav {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }
    
    .ulNav li {
        margin: 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
    }
    
    .ulNav li:last-child {
        border-bottom: none;
    }
    
    .ulNav a {
        display: block;
        padding: 15px;
    }
    
    /* Adjust logo size */
    .aLogo img {
        max-height: 50px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        width: 92%;
    }
    
    .aLogo img {
        max-height: 40px;
    }
}




 /* Services Reset and basic styles */


  /* Styling the overall list container */
  .ulprovide {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  /* Heading styles */
  #txtprovide {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
  }

  /* Default styling for list items */
  .ulprovide li {
    margin: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  /* Hover effect for list items */
  .ulprovide li:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  /* Styling individual divs inside list items */
  .ulprovide li div {
    text-align: center;
  }

  .ulprovide img {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }

  /* Styling for the service titles */
  .ulprovide h2 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: #333;
  }

  /* Mobile-first: single column layout by default */
  @media screen and (max-width: 768px) {
    .ulprovide li {
      width: 100%;
      margin: 10px 0;
    }

    /* Add some padding and adjust font size for mobile view */
    .ulprovide h2 {
      font-size: 1.5rem;
    }
  }

  /* Tablet and larger: grid layout with multiple columns */
  @media screen and (min-width: 769px) {
    .ulprovide {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 columns */
      gap: 20px;
    }

    .ulprovide li {
      width: 100%;
    }

    .ulprovide h2 {
      font-size: 1.4rem; /* Adjust heading size */
    }
  }

  /* Large screens (desktop): 3-column grid layout and larger content */
  @media screen and (min-width: 1024px) {
    .ulprovide {
      grid-template-columns: repeat(3, 1fr); /* 3 columns */
      gap: 30px; /* Increase the space between items */
    }

    .ulprovide li {
      width: 100%;
    }

    .ulprovide h2 {
      font-size: 1.8rem; /* Increase the font size on desktop */
    }

    .ulprovide img {
      max-width: 90%; /* Ensure images take more space but stay proportional */
    }
  }