/* 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: white;
  color: #fff;
}

.logo {
display: flex;
  height: 170px;
  width: 90px;

}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: black;
  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: black;
  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: white;
  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: black;
  text-decoration: none;
  font-size: 20px;
}

/* Close Button inside Mobile Menu */
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  color: black;
  cursor: pointer;
}

.image-home{
  width: 100%;
  height: 300px;
  
}

.section-middle{
  display: flex;
  background-color: white;
  flex-direction: column;
  justify-content: center;
}

.outer-container {
  display: flex; /* Use Flexbox to align items side by side */
  justify-content: space-between; /* Distribute space evenly */
  gap: 20px; /* Add space between the inner divs */
  padding: 20px;
  background-color: white;
}

/* Inner div style */
.inner-div {
  flex: 1; /* Make each div take up equal width */
  padding: 20px;
  background-color: rgb(234, 245, 215)
  ;
  color: black;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.innerdiv1{
  margin-top: 10px;
  height: 100px;
}
.innerdiv2{
  margin-top: 10px;
  height: 100px;
}

.s-m-b-div{
  display: flex;
  justify-content: center;
  background-color: white;
  flex-direction: column;
  align-items: center;
}
.s-m-b-h1{
  font-size: 30px;
  margin-top: 5px;
  margin-bottom: 10px;
}

.s-m-b-h2{
  align-self: center;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
}

.s-m-b-p{

  font-family: Arial, Helvetica, sans-serif;
  margin-left: 5px;
  margin-bottom: 5px;

}

.s-m-b{
  width: 90%;
  border-radius: 5px;
}


.s-s-div {
  display: flex; /* Align child elements side by side */
  gap: 20px; /* Space between the buttons */
  justify-content: center; /* Center buttons horizontally */
  padding: 20px;
  background-color: white;
}

/* Style for buttons */
.s-s-btns {
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #dd3f10;
  color: white;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.s-s-btns:hover {
  background-color: #e15226;
}

.footer{
  display: flex;
  background-color: #0c93c0;
  display: flex;
  width: 100vw;
  flex-direction: column;
}

/* Responsive Styling */



/* Responsive Styles */
@media (max-width: 768px) {
  .outer-container {
      flex-direction: column; /* Stack the divs vertically on mobile */
      gap: 10px; /* Reduce space between the divs in mobile */
  }
}

.s-m-h1{
  align-self: center;
  font-size: medium;
 flex-wrap: wrap;
  font-family: 'roboto',Arial, Helvetica, sans-serif;
}

.s-m-btn{
  background-color: #dd3f10;
  width: 70%;
  align-self: center;
  margin-top: 10px;
  margin-bottom: 10px;
  
}

/* 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: #dd3f10;
}

.hbtn2:active{
  background-color: #03b8fa;
}

.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;}
  

    
.top{
  display: flex;
  background-color:#0c93c0;
  width: 100vw;
  flex-direction: column;
}

.top-number{
  
  display: flex;
  margin-top: 10px;
  margin-left: 10px;
}

.top-email{
  
    display: flex;
    margin-top: 10px;
    margin-left: 10px;
  }

.icon-phone{
  height: 40px;
}

.icon-email{
  height: 40px;
}

.phone{
  text-decoration: none;
  color: white;
  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;
}