/* Basic Styles */
body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
}
/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box; /* Include padding and border in the width calculation */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #393a3a;
  z-index: 1000; /* Ensure it's above other content */
  box-shaow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Add shadow */
}

.logo img {
  height: 60px;
}

/* Hamburger Menu Styles */
/* Hamburger Menu Styles */
.hamburger {
  display: inline-block;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #Fff; /* Change color as desired */
  margin-bottom: 5px;
  transition: background-color 0.3s ease; /* Add transition for smoother animation */
}

/* Hamburger Hover Effect */
.hamburger:hover .bar {
  background-color: #fff; /* Change color on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .logo {
    flex: 1;
  }
  
  .hamburger {
    display: block;
  }
}

/* Navigation Menu Styles */
.navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #393a3a;
  box-shadow: 0 2px 0px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
}

.navigation.active {
  display: block;
}

/* Navigation Link Styles */
.navigation a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: #fff;
}

.navigation a:hover {
  background-color: #393a3a;
}
.navigation ul {
  list-style: none; /* Remove bullet points */
  padding: 0;
  margin: 0;
}
/* Content List Styles */
.content-list {
  text-align: center;
  padding: 2rem 0;
}

.content-list h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.content-list ul {
  list-style: none;
  padding: 0;
}

.content-list li {
  margin-bottom: 1rem;
}

/* Content Button Styles */
.content-button {
  text-align: center;
  padding: 1rem 0;
}

.content-button a {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #F43F1A;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  height: auto;
  width: 9rem;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.content-button a:hover {
  background-color: #F44F4A;
}
.advert-image {
  display: block;
  width: 94%; /* Adjust the width as needed */
  margin: 30px auto 0; /* Adjust the margin for spacing and centering */
  border-radius: 5px;
}
/* Main Styles */
/* Add this CSS at the end of your existing styles */
/* Add this CSS at the end of your existing styles */
main {
  position: relative; /* Ensure the overlay is positioned relative to the main element */
  background-image: url('background.jpg'); /* Replace 'background_image.jpg' with the path to your desired background image */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 70px; /* Adjust padding-top to accommodate the fixed header */
  padding-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
  background-color: #fff; /* Fallback color in case the background image is missing */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0,1); /* Adjust the transparency by changing the alpha value (0.5 for 50% transparency) */
}
/* CSS styles for services */
.services {
  text-align: center;
  padding: 2rem 0;
}

.services h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem; /* Increased margin for better spacing */
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid layout */
  grid-gap: 20px; /* Adjust spacing between grid items */
  justify-items: center;
}

.service-box {
  padding: 20px;
  background-color: #f9f9f9; /* Background color for service boxes */
  border-radius: 10px;
  box-shado: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Box shadow for a modern look */
  
}

.service-box i {
  color: #F43F1A; /* Set the color of the icons to match the content button */
  margin-bottom: 1rem; /* Adjust spacing between icon and service details */
}

.service {
  text-align: center;
}

.service h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service p {
  font-size: 1rem;
  color: #666; /* Adjust text color */
}
/* Apple-inspired CSS styles for the "About Us" section */

.about-us {
  text-align: center;
  padding: 2rem 0;
}

.about-us h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.about-us p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-us ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.about-us li {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.about-us li:before {
  content: "\2022"; /* Add bullet point using Unicode */
  color: #000; /* Match bullet point color with Apple's style */
  font-weight: bold;
  position: absolute;
  left: -1.2em;
}

.about-us li:first-child:before {
  top: 0.3rem;
}

.about-us li:last-child:before {
  bottom: 0.3rem;
}

/* Animations */
..about-us p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}

.about-us p.animate {
  transform: translateY(0);
}
/* Apple-inspired CSS styles for the "Testimonials" section */

.testimonials {
  text-align: center;
  padding: 2rem 0;
  background-color: #fff;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color:#fff;
}

.testimonial {
  display: inline-block;
  width: 300px;
  margin: 0 20px 20px 0; /* Add margin between testimonial boxes */
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.testimonial-box {
  margin-bottom: 1rem;
}

.testimonial-box p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.author {
  font-style: italic;
  color: #666;
  font-size: 1rem;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .testimonials {
    display: grid;
    grid-template-columns: 1fr; /* Display testimonials in a single column */
    grid-gap: 20px; /* Add spacing between testimonial boxes */
  }
  
  .testimonial {
    margin: 0 auto 20px auto; /* Center testimonial boxes horizontally */
    width: 80%; /* Set width to 80% of the container */
  }
}
/* Global Styles */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 500px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h2 {
  text-align: center;
  color: #333;
  
}

form {
  margin-top: 20px;
  text-align: center; /* Align form elements center */
}

label {
  display: block;
  margin-bottom: 10px;
  color: #666;
  font-size: 14px;
}

input[type="text"],
input[type="email"],
textarea {
  width: calc(80% - 22px);
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

input[type="submit"] {
  background-color: #F43F1A;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: #F44F4A;
}
footer {
  background-color: #393a3a;
  color: #fff;
  padding: 10px 0; /* Reduced padding */
  text-align: center;
  box-shadw: 0px -5px 5px rgba(0, 0, 0, 0.1); /* Add shadow on the top */
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 20px; /* Adjusted font size */
}

.social-icons a:hover {
  color: #fff; /* Change color on hover */
}
  .whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
  }
  .whatsapp-icon {
    margin-right: 10px;
    width: 20px; /* Decrease the size as needed */
    height: 20px; /* Decrease the size as needed */
  }
  .service-grid a {
  text-decoration: none; /* Reset any default underline styles */
}
.gallery-section {
    background-color: #fff;
    padding: 10px;
    text-align: center;
    
}

.gallery-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
}

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

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Transparent white overlay */
  z-index: 9999; /* Ensure it's above other content */
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader::after {
  content: "";
  width: 60px;
  height: 60px;
  border: 6px solid #f3f3f3; /* Light grey */
  border-top: 6px solid #F43F1A; /* Blue */
  border-radius: 50%;
  animation: spin 1s linear infinite; /* Rotation animation */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}