
/* General styles for the entire page */
body {
    font-family: Arial, sans-serif;
    margin: 0%;
    padding-top: 0%;
    background-color: #ffffff; /* Light gray background */
    box-sizing: border-box;
}

/* Styles for the header section */
header {
    
    background-color: hsla(185, 100%, 82%, 0.7); /* Semi-transparent white background */
    backdrop-filter: blur(10px); /* Apply blur effect */
    -webkit-backdrop-filter: blur(10px); /* Apply blur effect for Safari */
    color: #000000; /* Black text */
    padding: 3.5%;
    text-align: center; /* Center-align header content */
    width: fixed;
    top: 0;
    box-sizing: border-box;
    position: relative;
}


.logo {
  position: absolute;
  top: -2vw;
  right: 82vw;
  margin: -1%;
}

.logo img {
  width: 20vw;
  height: auto;
  border-radius: 50%;
  animation-name: slideright;
  animation-duration: 2s;
}

@keyframes slideright {
  from{transform: translateX(-100%)}
}

.Number {
  position: absolute;
  top: 0;
  right: 0;
  margin: .4%;
}

.Number h1 {
  font-size: 25px;
  color: #000000;
}

@media screen and (max-width: 480px) {
  .Number {
    position: relative; /* Change position to relative for better responsiveness */
    top: auto;
    right: auto;
    margin: 1.25%; /* Adjust as needed */
    padding: .4%; /* Adjust as needed */
    text-align: center; /* Center-align on smaller screens */
  }
}

/* Styles for the main heading */
header h1 {
    margin: 0%;
    font-size: 300%; /* Larger font size */
    text-align: center;
}

.btn {
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #2c6981fd;
    padding: 1% 1.55%;
    font-size: 17px;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;

  }
  
  .btn:hover {
    color: #2c6981fd;
    cursor: pointer;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: white;
    z-index: -1;
    transition: all 1s;
  }
  
  .btn:hover::before {
    width: 160%;
  }

.dropdown {
    position: relative;
}

/* Styles for the dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(162, 247, 255, 0.55);
    top: 10;
    left: 0;
    padding: 1.25%;
    z-index: 10;
}

/* Styles for the dropdown menu items */
.dropdown-menu li {
    margin: 2%;
}

/* Show the dropdown menu when hovering over the parent li */
.dropdown:hover .dropdown-menu {
    display:grid;
}

.dropdown-menu a {
    color: #000; /* Change text color to dark gray */
    font-size: 15px;;
    font-weight: bolder;
    display: block; /* Make each item a block element */

}

.dropdown-menu a:hover {
    color: white;
}

nav ul li {
    display: inline;
    margin-right: 2%;
}

nav ul li a {
    color: #000000; /* White text */
    text-decoration: none; /* Remove underline from links */
    font-size: 1.5rem; /* Font size */
}

.overlay {
  position: relative;
  left: 50%;
  transform: translate(-50%, -250%);
  text-align: center;
  color: white;
  z-index: 1; /* Ensure overlay is on top of the image */
}

.overlay h2 {
  font-size: 3rem;
  text-transform: uppercase ;
  margin-top: -10%;
}

.overlay .btn {
  background-color: #2c6981; /* Adjust button background color */
  color: white;
  padding: 1.25% 1.55%;
  font-size: 1.2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.overlay .btn:hover {
  background-color: #4068cd; /* Adjust button hover background color */
}

* {box-sizing:border-box}

.service-sections .btn { 
  margin-left: 6%;
}


.image-container { 
  margin-bottom: 1%;
}



.service-sections {
  
  display: flex;
  justify-content: space-between;
  gap: 1%;

  
}

.service img {

  width: 33vw;
  height: 45vw;
  border-radius: 5px;
  margin-bottom: 0%;
}

.service-sections h3 { 
  margin-left: 6%;
}

.service-sections p { 
  margin-left: 6%;
}

.services {
  padding: 7vw;
}

.services .intro-text {
  font-size: 120%;
  text-align: center;
  color: #555;
  margin: 0vw;
  background-color: #f0f8ff;
  padding: 0vw;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-section {
  margin: 5vw 0vw;
}

.service-title {
  font-size: 200%;
  margin-bottom: 1vw;
  text-align: center;
}

.service-description {
  font-size: 100%;
  text-align: center;
  color: #555;
  margin: 0% 1.55% 1.55% 1.55%;
  background-color: #f0f8ff;
  padding: 1.25%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.images {

  display: flex;
  justify-content: space-between;
  gap: 1vw;
  margin: 2vw 0vw;
  width: 85vw;
  height: 35vw;

}

.service-image {

  width: 35vw;
  height: 35vw;
  box-shadow: 0 4px 8px rgb(0, 0, 0);
}

.divider {
  border: .2% solid #ddd;
  margin: 0% 0%;
}

@media screen and (max-width: 480px) {
  .images {
      flex-wrap: nowrap;
  }

  .service-image {

      width: 100%;
      margin-bottom: 2%;
  }
}

.service .btn {

  background-color: #4068cd;
  color: #fff;
  text-decoration: none;
  padding: 1.25% 1.55%;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.service .btn:hover {
  background-color: #0071a5fd;
}

.estimate_header h2 {
  font-size: 24px;
  font-family: 'Comic Sans MS' cursive;
  color: #66c7ff; /* Adjust color as needed */
  margin-bottom: 1%;
  padding: 1.3% 1.55%;
  border-radius: 20px;
  background-color: #e6f3ff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.estimate_header h3 {
  font-size: 18px;
  color: #0e0e0e; /* Adjust color as needed */
  padding: 0% .75%;
}


/* Styles for the contact form */
#contact-form {
    background-color: #fff; /* White background */
    padding: 1.55%;
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Box shadow for depth */
}

/* Styles for form labels */
#contact-form label {
    display: block;
    margin-bottom: 1%;
    font-size: 1.2rem; /* Font size */
    color: #333; /* Dark gray text */
}

/* Styles for form input fields and textarea */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 1%;
    margin-bottom: 1.5%;
    font-size: 1.2rem; /* Font size */
    border: 1px solid #030303; /* Gray border */
    border-radius: 5px; /* Rounded corners */
}

/* Styles for the textarea input */
#contact-form textarea {
    height: 150px; /* Set textarea height */
}

/* Styles for the form submit button */
#contact-form button {
    background-color: #333333; /* Dark gray background */
    color: #fff; /* White text */
    border: none;
    padding: 1.25% 1.55%;
    font-size: 1.2rem; /* Font size */
    cursor: pointer;
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth hover effect */
}

/* Hover styles for the form submit button */
#contact-form button:hover {
    background-color: #42bac7; /* Darker gray background on hover */
}

/* Button container */
.cta-button {
  text-align: center; /* Center-align the button */
  margin-top: 3.5%; /* Add some space above the button */
}

/* Button styling */
.cta-button a {
  display: inline-block;
  padding: 1.28% 1.6%;
  background-color: #4068cd; /* Button background color */
  color: #fff; /* Text color */
  font-size: 18px;
  text-decoration: none; /* Remove underline */
  border-radius: 30px; /* Rounder corners */
  border: none; /* Remove border */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow */
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

/* Button hover effect */
.cta-button a:hover {
  transform: translateY(-3px); /* Move button up slightly on hover */
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2); /* Add larger shadow on hover */
}


/* Styles for the footer section */
footer {
    background-color: #333; 
    color: #fff; /*text*/
    text-align: center; /* Center-align footer content */
    padding: 2%;
    margin-top: 1.75%; 
}

footer .copyright {
    font-size: xx-small;
    margin-right: 2.75%;
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-section {
    margin-right: 1.5%;
}

.contact-info h3 {
    margin-top: 0%;
}



body img {
  width: 30%;

  height: 1mp;
  
}

.about-us h2 {
  margin-left: 1%;
}

.about-us img { 
  margin-left: 1%; 
}

.about-us p {
  margin-left: 1%;
}