@charset "utf-8";

/* Base Reset and Global Setup */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.container-fluid {
  padding: 0;
  margin: 0;
}

/* ======= Custom Nav Styling ======= */
.custom-navbar {
  background-color: #fff;
  padding: 20px 10%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-navbar .navbar-nav {
  gap: 15px;
}

.custom-navbar .nav-link {
  color: #333;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 10px;
}

.custom-navbar .nav-link:hover {
  color: #00a9a7;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 25px;
  height: 3px;
  background-color: #333;
  display: block;
  position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  background-color: #333;
  width: 25px;
  height: 3px;
  position: absolute;
  left: 0;
}
.navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler-icon::after {
  top: 8px;
}

/* ======= Hero Section ======= */
.hero {
  background-color: #fff;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
}

.hero-content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  align-items: flex-start;
  gap: 50px;
}

.hero-logo {
  flex-shrink: 0;
}

.hero-logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
}

.hero-text {
  max-width: 700px;
  margin-top: 100px;
}

.hero-text h1 {
  font-size: 1.6rem;
  color: #00a9a7;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1rem;
  color: #333;
}

/* ======= Wave Section ======= */
.wave-section {
  width: 100%;
  display: block;
}

.wave-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* ======= Footer ======= */
footer {
  background-color: #00a9a7;
  color: #fff;
  padding: 20px 5%;
  text-align: center;
  font-size: 0.9rem;
  width: 100%;
}

footer p {
  margin: 5px 0;
}

/* ======= Services & Misc ======= */
.service {
  padding: 20px;
  margin: 15px 0;
  color: black;
}

/* .bg-green {
  background-color: #4CAF50;
}

.bg-blue {
  background-color: #2196F3;
} */

.wave-footer {
  background: #00a9a7;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

.logo-small-logo img {
  max-height: 10px;
  max-width: 20px;
}

/* =================== Responsive Layouts =================== */

/* Medium devices: tablets & small laptops (751px–1100px) */
@media (min-width: 751px) and (max-width: 1100px) {
  .hero {
    padding: 60px 8%;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .hero-logo img {
    max-width: 80%;
  }

  .hero-text {
    margin-top: 0;
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  footer {
    padding: 20px 5%;
    font-size: 0.85rem;
  }
}

/* Small devices (phones/tablets under 750px) */
@media (max-width: 750px) {
  .hero {
    padding: 40px 5%;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .hero-logo img {
    max-width: 90%;
  }

  .hero-text {
    margin-top: 0;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .wave-section {
    height: auto;
  }

  footer {
    padding: 15px 5%;
    font-size: 0.8rem;
  }
}

/* Extra small (phones under 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 30px 5%;
  }

  .hero-content {
    gap: 15px;
  }

  .hero-logo img {
    max-width: 95%;
  }

  .hero-text h1 {
    font-size: 1.3rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  footer {
    font-size: 0.75rem;
  }
}

