/* 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;
}

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #007a7a;
  color: white;
  padding: 0.5rem 1rem;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 4px 0;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #007a7a, #9bc4c4);
  z-index: 9999;
  transition: width 0.2s ease;
  width: 0;
}
/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  background: #007a7a;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.3s ease;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 122, 122, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #004d4d;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 77, 77, 0.4);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #004d4d 0%, #003333 100%);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007a7a, #9bc4c4, #007a7a);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  padding: 4rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  color: #9bc4c4;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #9bc4c4;
  border-radius: 2px;
}

.footer-section p {
  margin-bottom: 1rem;
  opacity: 0.95;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section ul li i {
  color: #9bc4c4;
  font-size: 1.2rem;
  min-width: 20px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: #9bc4c4;
  transform: translateX(3px);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  border-top: 1px solid rgba(155, 196, 196, 0.15);
  backdrop-filter: blur(10px);
}

.footer-bottom p {
  margin: 0.5rem 0;
  opacity: 0.9;
}

.footer-bottom a {
  color: #9bc4c4;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.footer-bottom a:hover {
  color: white;
  text-decoration: underline;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-badge-text {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(155, 196, 196, 0.15);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  font-size: 0.9rem;
  border: 1px solid rgba(155, 196, 196, 0.25);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.trust-badge-text:hover {
  background: rgba(155, 196, 196, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(155, 196, 196, 0.2);
}

.trust-badge-text i {
  color: #9bc4c4;
  font-size: 1.3rem;
}

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;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-toggle i {
  transition: all 0.3s ease;
  display: inline-block;
}

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);
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

@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: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 122, 122, 0.05);
}

.card:hover, .service-card:hover, .portfolio-item:hover, .testimonial:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 77, 77, 0.15);
}

.services-grid, .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card i, .portfolio-item i {
  font-size: 3rem;
  color: #007a7a;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #004d4d;
}

.service-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
}

/* Service cards hover effect with color shift */
.service-card:hover {
  border-color: rgba(0, 122, 122, 0.2);
}

.service-card:hover i {
  color: #004d4d;
  transform: scale(1.1);
}

/* 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;
}

/* Mobile Login Icon */
.mobile-login-icon {
  display: none;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 984px) {
  .menu-toggle {
    display: block;
  }

  .mobile-login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    margin-left: auto;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(0, 122, 122, 0.2);
  }

  .mobile-login-icon:hover {
    transform: scale(1.1);
    background: rgba(0, 122, 122, 0.4);
  }

  nav ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(155, 196, 196, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    max-height: 600px;
    padding: 1rem 0;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  nav ul li a {
    display: block;
    padding: 1rem;
  }

  .logo {
    max-width: 180px;
  }

  .section {
    padding: 3rem 1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .services-grid, .stats-grid, .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-section {
    padding: 5rem 1.5rem;
    min-height: 60vh;
  }

  .hero-overlay {
    padding: 2rem 1.5rem;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay p {
    font-size: 1rem;
  }

  .cta-btn {
    width: 100%;
    margin: 0.5rem 0 0 0;
    display: block;
  }

  .cta-btn.secondary {
    margin-left: 0;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    min-width: auto;
    max-width: none;
  }

  .contact-info p {
    font-size: 1rem;
  }

  .social-icons {
    gap: 1rem;
  }

  .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}
/* 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: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 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;
}

/* 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 Notification */
.toast {
  position: fixed;
  top: 30px;
  right: 30px;
  transform: translateY(-100px);
  background: rgba(0, 122, 122, 0.95);
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 122, 122, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  max-width: 500px;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.toast.success {
  background: rgba(40, 167, 69, 0.95);
}

.toast.error {
  background: rgba(220, 53, 69, 0.95);
}

.toast i {
  font-size: 1.5rem;
}

.toast .toast-message {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
}

.toast .toast-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  padding: 0;
  line-height: 1;
}

.toast .toast-close:hover {
  opacity: 1;
}

/* Form Styling */
form {
  max-width: 600px;
  margin: 0 auto;
}

form input, form textarea {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

form input:focus, form textarea:focus {
  border-color: #007a7a;
  box-shadow: 0 0 0 4px rgba(0, 122, 122, 0.1);
  outline: none;
  background: #fafafa;
}

form textarea {
  resize: vertical;
  min-height: 150px;
  border-radius: 25px;
}

form button {
  background: #007a7a;
  color: white;
  padding: 1.1rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

form button:hover {
  background: #004d4d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 77, 77, 0.3);
}

form button:active {
  transform: translateY(0);
}

form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.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;
}
/* Contact Info */
.contact-info {
  text-align: center;
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(0, 122, 122, 0.05) 0%, rgba(155, 196, 196, 0.1) 100%);
  border-radius: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(0, 122, 122, 0.08);
  border: 1px solid rgba(0, 122, 122, 0.1);
}

.contact-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  font-size: 1.2rem;
  color: #222;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 1rem;
  border-radius: 8px;
}

.contact-info p:hover {
  background: rgba(0, 122, 122, 0.05);
  transform: translateX(5px);
}

.contact-info i {
  font-size: 1.8rem;
  color: #007a7a;
  background: white;
  padding: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 122, 122, 0.15);
}

/* Social Icons */
.social-icons {
  margin-top: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a {
  font-size: 2rem;
  color: #007a7a;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 122, 122, 0.1);
  text-decoration: none;
}

.social-icons a:hover {
  color: white;
  background: #007a7a;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 122, 122, 0.3);
}

.social-icons a.x-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(36%) sepia(73%) saturate(560%) hue-rotate(141deg) brightness(95%) contrast(101%);
  transition: filter 0.3s ease;
}

.social-icons a.x-icon:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.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(10px);
  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: 1001;
  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:hover {
  background-color: #20b858;
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.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;
}

/* How It Works / Process Section */
.how-it-works-section {
  background: linear-gradient(135deg, #f8fdfd 0%, #e0f7f7 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.process-step {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #007a7a;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 122, 122, 0.15);
}

.process-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007a7a, #9bc4c4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 122, 122, 0.3);
}

.process-step i {
  font-size: 3rem;
  color: #007a7a;
  margin: 1rem 0;
}

.process-step h3 {
  color: #004d4d;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.process-step p {
  color: #555;
  line-height: 1.7;
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 122, 122, 0.1);
}

.faq-question {
  width: 100%;
  background: white;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #004d4d;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
  color: #007a7a;
}

.faq-question i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #007a7a;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fafafa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem 2rem;
  border-top: 1px solid #e0e0e0;
}

.faq-answer p {
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #007a7a 0%, #004d4d 100%);
  padding: 4rem 1.5rem;
  color: white;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  outline: none;
}

.newsletter-form button {
  background: white;
  color: #007a7a;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #9bc4c4;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #e0f7f7 0%, #9bc4c4 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}

.final-cta-section h2 {
  font-size: 2.8rem;
  color: #004d4d;
  margin-bottom: 1rem;
}

.final-cta-section p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Lightbox Modal for Portfolio */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 1rem;
  font-size: 1.2rem;
}

/* Breadcrumbs */
.breadcrumbs {
  background: #f8f9fa;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: #007a7a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #004d4d;
  text-decoration: underline;
}

.breadcrumbs span {
  color: #666;
}

.breadcrumbs i {
  color: #999;
  font-size: 0.8rem;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #007a7a, #004d4d);
  padding: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-cta.show {
  transform: translateY(0);
}

.mobile-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  color: #007a7a;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }

  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .whatsapp-float {
    bottom: 1rem;
    left: 1rem;
    right: auto;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .social-icons {
    margin-bottom: 2rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .cta-btn {
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


