@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #212121;
  background-color: #f8f9fa;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header with orange background */
header {
  background: #ff6f00;
  color: #fff;
  padding: 20px 0;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  height: 50px;
  width: auto;
}

header h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
}

nav ul {
  list-style: none;
  text-align: right;
}

nav ul li {
  display: inline-block;
  margin-left: 20px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

/* Hero Section */
#hero {
  background: #e3f2fd;
  padding: 60px 0;
  text-align: center;
}

#hero h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  color: #ff6f00;
  margin-bottom: 10px;
}

#hero p {
  font-size: 18px;
  color: #333;
}

/* About, Services, Contact Titles */
#about h2,
#services h2,
#contact h2 {
  font-family: 'Poppins', sans-serif;
  color: #ff6f00;
  margin-bottom: 20px;
}

/* About Section */
#about {
  padding: 50px 0;
  background: #ffffff;
}

blockquote {
  margin-top: 20px;
  padding: 15px 20px;
  background-color: #f1f1f1;
  border-left: 4px solid #1a237e;
  font-style: italic;
  color: #555;
}

/* Services Section */
#services {
  padding: 50px 0;
  background: #f4f6f8;
}

#services ul {
  list-style: none;
  padding-left: 0;
}

#services li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

#services li::before {
  content: "✔";
  color: #ff6f00;
  position: absolute;
  left: 0;
}

/* Contact Section */
#contact {
  padding: 50px 0;
  background: #ffffff;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background: #ff6
/* -----------------------------
   📱 Mobile Responsive Styling
------------------------------ */
@media (max-width: 768px) {
  .logo-title {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    text-align: left;
    padding-top: 10px;
  }

  nav ul li {
    display: block;
    margin: 10px 0;
  }

  header, #hero, #about, #services, #contact {
    padding: 30px 5%;
  }

  #hero h2 {
    font-size: 24px;
  }

  button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  form input, form textarea {
    font-size: 16px;
  }

  .container {
    width: 100%;
  }
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.whatsapp-float img {
  height: 55px;
  width: 55px;
}
.contact-info {
  margin-top: 30px;
  font-size: 16px;
}

.contact-info p {
  margin-bottom: 8px;
}
.map {
  margin-top: 30px;
  border: 2px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}





/* Sticky Header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Hero with overlay (if image is used) */
#hero {
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}
#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
#hero .container {
  position: relative;
  z-index: 1;
}

/* Testimonials */
#testimonials {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}
#testimonials blockquote {
  font-style: italic;
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  border-left: 5px solid #ff6f00;
}

/* Footer update */
footer small {
  display: block;
  margin-top: 10px;
  color: #aaa;
}

/* Social Icons */
.social-media ul {
  list-style: none;
  padding: 0;
}
.social-media li {
  display: inline-block;
  margin-right: 10px;
}
.social-media a {
  text-decoration: none;
  font-weight: bold;
  color: #1a237e;
}
