/* Created by Micheal */

/* Base Reset and Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  scroll-behavior: smooth;
}
footer {
  background: #9bc4c4;
  text-align: center;
  padding: 2rem 1rem;
  color: #333;
  font-size: 0.9rem;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  display: block;
}

/* Header and Nav */
.site-header {
  background: #9bc4c4;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  max-width: 250px;
  height: auto;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 2000;
}

nav {
  margin-left: auto; /* push nav to the right */
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
}

nav ul li a {
  display: inline-block;
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 122, 122, 0.3); /* box hover effect */
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

nav ul li a:hover::after {
  transform: scaleX(1);
}

nav ul li a:hover {
  color: white;
}

/* CTA Buttons */
.cta-btn {
  background-color: #007a7a;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 6px 12px rgba(0, 122, 122, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-top: 1rem;
  cursor: pointer;
}

.cta-btn:hover {
  background-color: #004d4d;
  box-shadow: 0 10px 20px rgba(0, 77, 77, 0.6);
  transform: translateY(-3px);
}

/* Secondary CTA button */
.cta-btn.secondary {
  background-color: transparent;
  border: 2px solid #007a7a;
  color: #007a7a;
  margin-left: 1rem;
}

.cta-btn.secondary:hover {
  background-color: #007a7a;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 77, 77, 0.7);
  transform: translateY(-3px);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Hero Section */
.hero-section {
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  color: #222;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  text-align: center;
}

/* Rotating text */
#rotating-text {
  color: #007a7a;
  font-weight: 700;
  transition: opacity 0.5s ease;
}

/* Section */
.section {
  padding: 4rem 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #004d4d;
}

/* Stats Section */
.stats-section {
  background: #e0f7f7;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-card {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 122, 122, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 122, 122, 0.25);
}

.stat-card i {
  font-size: 3.5rem;
  color: #007a7a;
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #004d4d;
}

.stat-card p {
  color: #444;
  font-size: 1rem;
}

/* Cards and Grids */
.card, .service-card, .portfolio-item, .testimonial {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.card:hover, .service-card:hover, .portfolio-item:hover, .testimonial:hover {
  transform: translateY(-5px);
}

.services-grid, .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card i, .portfolio-item i {
  font-size: 2.5rem;
  color: #0aa;
  margin-bottom: 1rem;
}

/* Service cards hover effect with color shift */
.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 77, 77, 0.3);
}

.service-card:hover i {
  color: #007a7a;
}

/* Portfolio hover zoom and overlay */
.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item img {
  transition: transform 0.3s ease;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 77, 77, 0.3);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item::after {
  content: attr(data-title);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(0, 77, 77, 0.75);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0 0 10px 10px;
}

.portfolio-item:hover::after {
  opacity: 1;
}

/* Testimonials slider container */
.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

/* Individual testimonial */
.testimonial {
  display: none;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: opacity 0.5s ease;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

/* Dots container */
.testimonial-dots {
  text-align: center;
  margin-top: 1rem;
}

/* Individual dots */
.testimonial-dots button {
  border: none;
  background: #ccc;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dots button.active {
  background: #007a7a;
}

/* Section subtitles */
.section-subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #555;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 984px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(155, 196, 196, 0.95);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  nav ul.active {
    max-height: 400px;
  }

  .logo {
    margin: 0 auto;
    display: block;
    max-width: 180px;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid, .stats-grid, .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    padding: 1.5rem;
  }

  .hero-overlay h1 {
    font-size: 1.8rem;
  }

  .cta-btn {
    width: 100%;
    margin: 0.5rem 0 0 0;
    display: block;
  }

  .cta-btn.secondary {
    margin-left: 0;
  }
}
/* Timeline */
.timeline {
  border-left: 3px solid #0aa;
  padding-left: 2rem;
  margin: 2rem 0;
  position: relative;
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.1rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  background: #0aa;
  border-radius: 50%;
}

.timeline .year {
  font-weight: bold;
  color: #0aa;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.team-member {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  max-width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card i {
  font-size: 3rem;
  color: #0aa;
  margin-bottom: 1rem;
}
.filter-buttons {
  text-align: center;
  margin-bottom: 2rem;
}

.filter-btn {
  background: #e0f2f2;
  border: none;
  padding: 10px 20px;
  margin: 0 8px 12px 0;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  color: #004d4d;
  transition: background-color 0.3s, color 0.3s;
}

.filter-btn:hover {
  background-color: #004d4d;
  color: white;
}

.filter-btn.active {
  background-color: #004d4d;
  color: white;
}
/* Created by Micheal */

/* Base Reset and Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  display: block;
}

/* Hero Banner */
.hero-section.hero-center {
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  min-height: 60vh;
  position: relative;
}

.hero-section.hero-center .hero-overlay {
  background: rgba(0, 77, 77, 0.8);
  padding: 3rem;
  border-radius: 12px;
  max-width: 800px;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-section.hero-center h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-section.hero-center p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
  background: #007a7a;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-section .cta-btn {
  background: white;
  color: #007a7a;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-section .cta-btn:hover {
  background: #004d4d;
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
  background: #f0f8f8;
  padding: 4rem 2rem;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 2.5rem;
  color: #007a7a;
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #004d4d;
}

.stat-card p {
  font-size: 1rem;
  color: #555;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #007a7a;
}
.contact-hero {
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  color: white;
  text-align: center;
}

.contact-hero .hero-overlay {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(0, 77, 77, 0.75);
  border-radius: 12px;
}
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.contact-form-box, .contact-details-box {
  flex: 1;
  min-width: 300px;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.contact-form-box h2, .contact-details-box h2 {
  margin-bottom: 1rem;
}
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #007a7a;
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

form input, form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ccc;
  border-radius: 40px;
  font-size: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
form input:focus, form textarea:focus {
  border-color: #007a7a;
  box-shadow: 0 0 6px rgba(0,122,122,0.3);
  outline: none;
}
form button {
  background: #007a7a;
  color: white;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
form button:hover {
  background: #004d4d;
}
.stat-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.stat-card:hover {
  transform: translateY(-5px);
}
.stat-card i {
  font-size: 2.5rem;
  color: #007a7a;
  margin-bottom: 0.5rem;
}
.stat-number {
  font-size: 2.2rem;
  color: #004d4d;
  font-weight: 700;
}
.social-icons {
  margin-top: 1.5rem;
}
.social-icons a {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #007a7a;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #004d4d;
}
.scroll-cue {
  text-align: center;
  margin-top: 2rem;
}
.scroll-cue i {
  font-size: 3rem;
  color: white;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
/* Animate on scroll */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
/* WhatsApp Bubble */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.6s ease, opacity 0.6s ease;
  pointer-events: none;
  text-decoration: none;
}

.whatsapp-float.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #9bc4c4;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-size: 0.95rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.cookie-banner .cta-btn {
  background-color: #007a7a;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-banner .cta-btn:hover {
  background-color: #004d4d;
}
@media (max-width: 984px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    font-size: 0.9rem;
  }

  .cookie-text {
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .cookie-action {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .cookie-banner .cta-btn {
    width: auto;
    align-self: center;
    padding: 0.6rem 1.2rem;
  }
}
.portfolio-link {
  display: block;
  
  text-decoration: none;
  color: #222;
}
.portfolio-link {
  display: block;
  
  color: #222;
  text-decoration: none;
}


