/* Basic body and header styles */
body {
  font-family: Arial, sans-serif;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #d3d3d3;
  color: #fff;
}

.logo {
display: flex;
  height: 130px;
  width: 90px;

}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 18px;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  margin-left: 30px;
}

.hamburger span {
  background-color: rgb(0, 0, 0);
  height: 3px;
  width: 100%;
  border-radius: 2px;
}

/* Mobile menu is completely hidden when not active */
.mobile-menu {
  display: none; /* Hides the menu completely */
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background-color: #d3d3d3;
  padding: 60px 20px;
  z-index: 1000;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 20px;
}

/* Close Button inside Mobile Menu */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: rgb(0, 0, 0);
  cursor: pointer;
}

/* Media Queries for Mobile responsiveness */
@media (max-width: 768px) {
  nav ul {
      display: none;
  }

  .hamburger {
      display: flex;
  }

  /* When the mobile menu is active (shown) */
  .mobile-menu.active {
      display: block; /* Shows the menu */
  }
}
/* Reset some basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  
  background-color: #f0f0f0;
}

/* Container will center everything and allow wrapping */
.container {
  display: flex;
  flex-wrap: wrap;
  background-color: #f0f0f0;
  justify-content: center; /* Center the boxes */
  align-items: center;
  
  min-height: 100vh; /* Center vertically */
}

/* Styling for each box */
.box {
  background-color: white;
  padding: 10px;
  
  
  width: calc(50% - 20px); /* Two columns in large screens */
  max-width: 100%; /* Maximum width of the boxes */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content inside the boxes */
}

/* Image styling */
.box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Button container for the first box */
.buttons {
  display: flex;
  justify-content: space-between;
  width: 100%; /* Ensure buttons take full width of their container */
  margin-top: 20px;
}

/* Styling for buttons */
button {
  padding: 10px 20px;
  border: none;
  background-color: #333;
  color: white;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  flex: 1; /* Equal width for both buttons */
  margin: 0 5px; /* Small gap between the buttons */
}

.hbtn1{
  background-color: #d61f2c;
}
.hbtn1:active{
  background-color: #ff4551;
}

.hbtn2{
  background-color: #ce9f1c;
}

.hbtn2:active{
  background-color: #f8c128;
}

.wide-btn{
  background-color: #d61f2c;

}
.wide-btn:active{
  background-color: #ff4551;
}

.hbtn3{text-decoration: none;}
/* Wide button in the second box */
.wide-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
}

/* Responsive Design: Stacking boxes on mobile and tablet */
@media (max-width: 768px) {
  .box {
      width: 100%; /* Full width on smaller screens */
  }

  
  
  /* Keep buttons side by side on small screens */
  .buttons {
      flex-direction: row; /* Always side by side */
  }
  
  /* Ensure buttons take up full width side by side in mobile */
  button {
      margin: 0 5px;
  }
}

.p{
  display: flex;
  margin-top: 10px;
  padding-bottom: 15px;
  align-self: center;
  

  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  justify-content: center;
    font-weight: bold;}

.servicep{
  
    display: flex;
    margin-top: px;
    padding-bottom: 15px;
    align-self: center;
    
  
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    justify-content: center;
      font-weight: bold;}
  

    
.footer{
  display: flex;
  background-color:#d3d3d3;
  width: 100vw;
  flex-direction: column;
}

.footer-number{
  display: flex;
  margin-top: 10px;
  margin-left: 10px;
}

.footer-email{
  
    display: flex;
    margin-top: 10px;
    margin-left: 10px;
  }

.icon-phone{
  height: 40px;
  color: black;
}

.icon-email{
  height: 40px;
}

.phone{
  text-decoration: none;
  color: rgb(0, 0, 0);
  margin-top: 12px;
  margin-left: 10px;
}

.email{
  text-decoration: none;
  color: white;
  margin-top: 15px;
  margin-left: 10px;
}

.pservices{margin-top: 5px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}