/* ===================================================
   GLOBAL STYLES
   =================================================== */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.text-teal {
  color: #009688;
}

.btn-teal,
.btn-outline-teal {
  transition: all 0.3s ease;
  border-radius: 6px;
  font-weight: 500;
}

/* Solid Teal Button */
.btn-teal {
  background-color: #009688;
  color: #fff;
  border: 2px solid transparent;
}

.btn-teal:hover {
  background-color: #00796b;
  transform: translateY(-2px);
}

/* Outline Teal Button */
.btn-outline-teal {
  border: 2px solid #009688;
  color: #009688;
}

.btn-outline-teal:hover {
  background-color: #009688;
  color: #fff;
  transform: translateY(-2px);
}

/* ===================================================
   HEADER FIXED WRAPPER
   =================================================== */
.header-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}


/* ===================================================
   TOP INFO BAR — TEAL THEME WITH PNG ICONS
   =================================================== */
.topbar {
  background-color: #009688;
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.info-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  /* makes icons white */
}

.topbar a {
  color: #fff;
  transition: color 0.3s ease;
}

.topbar a:hover {
  color: #ffc107;
}

.topbar i {
  font-size: 15px;
  color: #ffc107;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===================================================
   NAVBAR — FIXED UNDER TOPBAR
   =================================================== */
.navbar {
  background-color: #fff;
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}



.logo-img {
  width: 325px;
}

.navbar-brand:hover {
  color: #00796b !important;
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: #333 !important;
  padding: 6px 12px;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #009688;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #009688 !important;
}

/* ===================================================
   RESPONSIVE FIXES
   =================================================== */
@media (max-width: 768px) {
  .topbar .container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .logo-img {
    width: 225px;
  }

  .info-item span {
    font-size: 13px;
  }

  /* Body padding slightly larger for small screens */
  body {
    padding-top: 150px;
  }
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #e0f7f6 0%, #ffffff 40%, #c8f0ec 100%);
  overflow: hidden;
  text-align: left;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at top right, rgba(0, 150, 136, 0.15), transparent 60%),
    radial-gradient(circle at bottom left, rgba(0, 150, 136, 0.1), transparent 60%);
  z-index: 0;
  animation: bgMove 20s infinite linear alternate;
}

@keyframes bgMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-30px, 30px);
  }
}

.hero .container,
.hero-text,
.hero-image {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-weight: 700;
  color: #00332f;
  line-height: 1.3;
  padding-top: 40px;
}

.hero-text .text-teal {
  color: #009688;
}

.hero-text p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.hero-image img {
  border-radius: 12px;
  max-width: 90%;
  transition: transform 1.2s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* Animations */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideLeft 1s ease forwards;
}

@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideRight 1s ease forwards;
}

@keyframes slideRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-buttons a {
  /* opacity: 0; */
  transform: translateY(1px);
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.8s;
}

/* Responsive Hero */
@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
    text-align: center;
  }

  .hero-image {
    margin-top: 40px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-choose-section {
  background: linear-gradient(135deg, #009688, #00796b);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.why-card {
  background: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-3px) scale(1.1);
}

.icon-img {
  width: 88px;
  height: 88px;
}

.why-card h5 {
  font-weight: 700;
  margin: 0.75rem 0;
  color: #00332f;
}

.why-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Fade-up Animation */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Delay */
.delay-1s {
  animation-delay: 0.3s;
}

.delay-2s {
  animation-delay: 0.6s;
}

.delay-3s {
  animation-delay: 0.9s;
}

.delay-4s {
  animation-delay: 1.2s;
}

.delay-5s {
  animation-delay: 1.5s;
}

@media (max-width: 768px) {
  .why-card {
    margin-bottom: 1rem;
  }

  .icon-box {
    width: 70px;
    height: 70px;
  }
}

/* ===================================================
   OUR PROCESS SECTION
   =================================================== */
#process {
  position: relative;
  background: linear-gradient(135deg, #e0f7f6 0%, #ffffff 40%, #c8f0ec 100%);
  padding: 80px 0;
  overflow: hidden;
}

#process::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at top right, rgba(0, 150, 136, 0.1), transparent 60%),
    radial-gradient(circle at bottom left, rgba(0, 150, 136, 0.05), transparent 60%);
  z-index: 0;
  animation: processBgMove 25s infinite linear alternate;
}

@keyframes processBgMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-40px, 40px);
  }
}

.p-icon-img {
  padding-bottom: 25px;
  width: 180px;
  height: 180px;
}

#process .card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

#process .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #009688, #00796b);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

#process .card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
}

.icon-img.animate-icon {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: iconFadeUp 1s forwards;
}

@keyframes iconFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  60% {
    opacity: 1;
    transform: translateY(-10px) scale(1.1);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#process .card h5 {
  font-weight: 700;
  color: #00332f;
  margin-bottom: 0.75rem;
}

#process .card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===================================================
   CONTACT & FOOTER
   =================================================== */
#contact input,
#contact textarea {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
  transition: border-color 0.3s ease;
}

.f-logo-img{
  width: 260px;
  margin-bottom: 15px;
}

#contact input:focus,
#contact textarea:focus {
  border-color: #009688;
  outline: none;
}

footer {
  font-size: 0.9rem;
  background: #00332f;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}