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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  color: #003838;
  background-color: #f4fdfd;
}
html {
  scroll-behavior: smooth;
}

/* ===== Navbar Base ===== */
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #005656;
  height: 90px; /* set a fixed navbar height */
  padding: 0 30px;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar .logo img {
  height: 90px;
  transition: transform 0.3s ease;
}

/* ===== Desktop Menu ===== */
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #ffd700;
}

/* ===== Hamburger Icon ===== */
.menu-toggle {
  display: none; /* Hidden on desktop */
  color: white;
  font-size: 26px;
  cursor: pointer;
}

/* ===== Mobile View ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Show hamburger only on mobile */
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: #005656;
    display: none; /* Hidden by default */
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  nav.active {
    display: block; /* Show when toggled */
  }
}





/* Logo Image */
.navbar img {
  height: 90px; /* slightly larger than navbar height for overlap */
  width: 90px;
  border-radius: 50%;
  object-fit: fill;
  margin-left: 20px;
  margin-top: 10px; /* overlaps the navbar top */
  transition: transform 0.3s ease;
}


.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar a:hover,
.navbar a.active {
  color: #ffd700;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  text-align: center;
  color: white;
  overflow: hidden;

  /* Background image with overlay color */
  background: url('./assets/hero-image1.png') no-repeat center center/cover;
}


/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* Adjust opacity for contrast */
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 1.5rem;
  line-height: 1.8;
  color: white;
}

.hero-content h1 span {
  color: #00bfa6; /* Accent color */
}

.hero-content .btn {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #ffffff;
  color: #005656;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn {
  display: inline-block;
  background-color: #fff;
  color: #005656;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none; /* removes underline */
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #005656;
  color: #fff;
}


.hero-content .btn:hover {
  background-color: #007d7d;
  color: #ffffff;

}




/* Core Services Section */
.core-services {
  /* background-color: #00898927; */
  padding: 80px 20px;
  position: relative;
  /* top: -80px; */
  z-index: 3;
  text-align: center;
}

.core-services h2 {
  font-size: 2.5rem;
  color: #005656;
  margin-bottom: 50px;
  font-weight: bold;
}

/* Container for all cards */
.core-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* Ensures equal height */
  gap: 30px;
}

/* Individual Service Card */
.service-card {
  background: #008989a2;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  color: #fff;
  padding: 30px 25px;
  border-radius: 4px;
  width: 300px;
  min-height: 260px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card.mid {
  background: #ccffff3c;
  color: #008989;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #fff;
}

.service-card.mid h3 {
  color: #008989;
}

/* List styling */
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
  line-height: 1.5;
}

.service-card li::before {
  content: "•";
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.service-card.mid li::before {
  color: #008989;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
  .core-services {
    top: -60px;
  }

  .core-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 80%;
    min-height: auto;
  }
}


/* -------------------------------------- WHAT WE DO ------------------------------------------------------ */

.what-we-do {
  background-color: #00898927;
  padding: 80px 20px;
  text-align: center;
}

.what-we-do h2 {
  color: #014444;
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Container for the section */
.work-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 150px;
}

/* Each work item (row of image + text) */
.work-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

/* Image styling */
.work-item img {
  width: 45%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Text section */
.work-text {
  width: 50%;
  text-align: left;
}

.work-text h3 {
  color: #007272;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.work-text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.work-text ul li {
  color: #444;
  font-size: 1rem;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.work-text ul li::before {
  content: "✔";
  color: #008989;
  position: absolute;
  left: 0;
  top: 0;
}

/* Reverse layout if needed later */
.work-item.reverse {
  flex-direction: row-reverse;
}

/* Responsive for smaller screens */
@media (max-width: 900px) {
  .work-item {
    flex-direction: column;
    text-align: center;
  }

  .work-item img {
    width: 90%;
  }

  .work-text {
    width: 90%;
    text-align: center;
  }

  .work-text ul li {
    text-align: left;
    display: inline-block;
  }
}




/* ------------------------------------------------ ABOUT -------------------------------------------------------------- */

.about {
  background-color: #f7f9f9;
  padding: 100px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

/* Text Section */
.about-text {
  flex: 1;
  color: #222;
}

.about-text h2 {
  color: #005656;
  font-size: 2.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-weight: 700;
}

.about-text .tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #00bfa6;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* Image Section */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    flex: none;
  }

  .about-image img {
    max-width: 80%;
  }
}

/* ------------------------------------- Why chhose us-------------------------------- */

.why-choose-us-modern {
  /* background: #00898927; */
  padding: 80px 20px;
  text-align: center;
}

.why-choose-us-modern h2 {
  color: #005656;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 2rem;
  color: #008989;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

.cta-banner {
  background: linear-gradient(135deg, #008989, #00b8b8);
  color: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cta-banner p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: #008989;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #006f6f;
  color: #fff;
}



/* Contact Section */

.contact-modern {
  /* background: #00898927; */
  padding: 80px 20px;

}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px #008989;
}

/* Left Side */
.contact-left {
  flex: 1;
  background-image: url('assets/hero-image\ \(2\).jpg'); /* 🌸 Replace with your floral pattern */
  background-size: fill;
  background-repeat: no-repeat;
  background-position: start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 150px;
}

.contact-left .overlay {
  background: rgba(0, 137, 137, 0.6);
  color: #fff;
  padding: 50px 40px;
  border-radius: 8px;
  max-width: 70%;
  text-align: left;
}

.contact-left h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 1rem;
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #fff;
  font-size: 1.2rem;
}

/* Right Side */
.contact-right {
  flex: 1;
  padding: 50px 40px;
  background: #f9f9f9;
  color: #003333;
}

.contact-right h3 {
  color: #008989;
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #003333;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  color: #003333;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #008989;
  color: #003333;
}

.contact-form button {
  background: #008989;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #006f6f;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    padding: 40px 20px;
  }

  .contact-left .overlay {
    max-width: 100%;
    text-align: center;
  }
}


.contact {
  background: linear-gradient(to bottom, #ffffff 0%, #008989 100%);
  padding: 100px 50px;
  text-align: center;
}

.contact h2 {
  font-size: 2.2rem;
  color: #008989;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form {
  background: rgba(255, 255, 255, 0.384);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  text-align: left;
}

.contact-form h3 {
  color: #008989;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #008989;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #00898927;
  color: #003333;
}

.contact-form button {
  background-color: #008989;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
}

.contact-form button:hover {
  background-color: #00898927;
  color: #008989;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #008989;
  opacity: 1; /* ensures the color is solid */
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #008989;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #00898927; /* ✅ Teal background */
  color: #003333; /* ✅ White text for contrast */
}

/* ✅ When user focuses inside the input */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #00898927; /* Teal outline on focus */
  background-color: #00898927; /* Slightly darker teal */
  color:#003333;
}

/* Footer Styling */
.footer {
  background-color: #008989bb; /* same as contact page */
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer h4 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer p, 
.footer a, 
.footer li {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  line-height: 1.6;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-details, 
.footer-social, 
.footer-links, 
.footer-map {
  flex: 1;
  min-width: 250px;
}

/* Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 6px 0;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #034141;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ffffff;
  text-decoration: none;
  color: #034141;
}

/* Map Section */
.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  background-color: #005656;
  color: white;
  padding: 10px 0;
  font-size: 14px;
  border-radius: 10px;
  margin-top: 20px;
}

.footer-bottom a {
  color: #ffd700;
  text-decoration: none;
  margin-left: 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-details, 
  .footer-social, 
  .footer-links, 
  .footer-map {
    margin-bottom: 20px;
  }
  .footer-map iframe {
    height: 250px;
  }
}





