/* ===================================== */
/*            BASE STYLES               */
/* ===================================== */
:root {
  --primary: #2B7A78;
  --primary-light: #3AAFA9;
  --primary-lightest: #DEF2F1;
  --white: #FEFFFF;
  --dark: #17252A;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --gray-dark: #4B5563;
  --accent: #DEF2F1;
  --yellow: #F59E0B;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background-color: var(--primary-lightest);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===================================== */
/*             BUTTONS                  */
/* ===================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: var(--primary-lightest);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-light {
  background-color: var(--white);
  color: var(--primary);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* === HERO SECTION === */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70vh;
  min-height: 500px; /* Added minimum height */
  padding: 5rem 10%;
  color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 1;
  
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2; /* Improved readability */
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
  animation: fadeInUp 1s ease both; /* New animation */
}

.hero-content p {
  font-size: 1.25rem; /* Slightly larger */
  line-height: 1.6; /* Better readability */
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  max-width: 80%; /* Better text width */
  animation: fadeInUp 1s ease 0.2s both; /* New animation */
}

.cta-container { /* New container for buttons */
  display: flex;
  flex-wrap: wrap;
  gap: 1rem; /* Better spacing */
}

.hero-content a {
  display: inline-block;
  padding: 0.85rem 2rem; /* Larger click area */
  font-weight: 600; /* Bolder text */
  font-size: 1.1rem; /* Slightly larger */
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-align: center;
}

.hero-content a:first-child {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(26, 83, 85, 0.4); /* More prominent */
  animation: fadeInUp 1s ease 0.4s both; /* New animation */
}

.hero-content a.secondary-cta {
  background: transparent;
  border: 2px solid var(--white); /* Outline style */
  animation: fadeInUp 1s ease 0.5s both; /* New animation */
}

.hero-content a:hover {
  transform: translateY(-2px); /* Subtle lift effect */
}

.hero-slideshow {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  max-width: 650px;
  z-index: 2;
}


.circle-img {
  position: absolute;
  width: 500px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #113f4d;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  opacity: 0;
  transform: scale(0.8) translateY(50px);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Smoother transition */
  filter: blur(3px);
}
.circle-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* ensures full cover while maintaining aspect ratio */
      display: block;
    } 


    .circle-img.active {
      opacity: 1;
      transform: scale(1) translateX(0) translateY(0);
      z-index: 2;
      filter: blur(0);
    }


    .circle-img.above {
      opacity: 0.6;
      filter: blur(4px);
      transform: scale(0.9) translateX(-130px) translateY(-20px);
      z-index: 1;
    }

    .circle-img.below {
      opacity: 0.6;
      filter: blur(4px);
      transform: scale(0.9) translateX(130px) translateY(20px);
      z-index: 1;
    }


    .caption {
      position: absolute;
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0,0,0,0.6);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 2rem;
      font-size: 0.9rem;
      white-space: nowrap;
      opacity: 0;
      transition: opacity 0.6s ease, bottom 0.6s ease;
    }

    .circle-img.active .caption {
      opacity: 1;
      bottom: -10px;
    }


/* New animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive additions */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
    height: auto;
    min-height: 100vh;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
  
  .hero-content p {
    max-width: 100%;
  }
  
  .hero-slideshow {
    height: 400px;
    width: 100%;
    margin-top: 2rem;
  }
  
  .circle-img {
    width: 280px;
    height: 280px;
  }
  
  .cta-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content a {
    width: 100%;
  }
}

@media (max-width: 576px) { /* Typical phone breakpoint */
    .hero-slideshow {
        display: none; /* Hide the entire slideshow on phones */
    }
    
    /* Optional: Adjust hero content to take full width */
    .hero-content {
        max-width: 100%;
    }
}

#typewriter-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
  min-height: 3rem; /* to prevent layout shift */
}

[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Alignments */
.section-header,
.section-title,
.section-subtitle {
  text-align: center;
  display: block;
}


/* Values Section */
.values-section {
  background-color: #89c2c0;
  padding: 4rem 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.value-card {
  background-color: var(--primary-lightest);
  padding: 2rem;
  border-radius: 1rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px) scale(1.03);
  filter: drop-shadow(0 8px 12px var(--primary));
  /*box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15),
              0 0 10px rgba(137, 194, 192, 0.4);*/
}

.value-card.show {
  opacity: 1;
  transform: translateY(0);
}

.value-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.value-card:hover .value-icon {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--gray);
}

/* === About & Process Sections === */

.about-us-section,
.process-section {
  background-color: var(--primary-lightest);
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-us {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}


.about-images {
  position: relative;
  width: 280px;
  height: 260px;
}

.about-images img {
  position: absolute;
  width: 180px;
  height: 240px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

/* First image: top-left, foreground */
.about-images img:first-child {
  top: 0px;
  left: -70px;
  z-index: 2;
}

/* Second image: bottom-right, slight overlap */
.about-images img:last-child {
  top: 70px;
  left: 130px;
  z-index: 1;
}

/* Hover effect: glow and blue tint */
.about-images img:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgb(11, 243, 3);
  filter: hue-rotate(10deg) brightness(1.05);
}

.about-images img:last-child:hover {
  z-index: 3;
}


.about-text {
  flex: 1 1 400px;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #444;"bg-white rounded-xl shadow-md p-6 transition-transform duration-300 ease-in-out transform hover:-translate-y-2 hover:shadow-xl hover:ring-1 hover:ring-blue-500"
}

.highlight {
  color: #26a96c;
}

.stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.stats h3 {
  font-size: 24px;
  margin: 0;
}

.stats p {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}

.stats > div {
  flex: 1;
  min-width: 200px;
}

/* --- PROCESS SECTION --- */

.process-section {
  text-align: center;
}

.process-subtitle {
  font-size: 12px;
  letter-spacing: 1px;
  color: #26a96c;
  margin-bottom: 5px;
}

.process-header h2 {
  font-size: 28px;
  margin-bottom: 50px;
  
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.step {
  position: relative;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding-right: 70px; /* gives space for the image to float */
}

.step-image-float {
  position: absolute;
  top: -50px;   /* was -20px — now higher */
  right: -70px;   /* was -40px — now more right */
  width: 140px;
  height: 180px;
  z-index: 2;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: rotate(3deg); /* Optional flair */
}

.step-image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

@media (max-width: 768px) {
  .step-image-float {
    right: -10px;
    width: 120px;
    height: 140px;
  }
}


.step-green {
  background: #e5f7ec;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 32px;
  color: #26a96c;
  margin: 0;
}

.step h4 {
  margin: 0;
  font-size: 18px;
}

.step a {
  color: #26a96c;
  font-size: 13px;
  text-decoration: underline;
}

.step p {
  font-size: 14px;
  color: #555;
}



/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    flex-direction: row;
    justify-content: center;
  }

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

  .step {
    text-align: center;
  }

  .step-header {
    flex-direction: column;
    align-items: center;
  }
}

/* === Vision Section === */
.vision-section {
  background-color: var(--primary-lightest);
  padding: 6rem 1rem;
}

.vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  max-width: 1140px;
  margin: 0 auto;
}

.vision-image {
  display: flex;
  justify-content: center;
}

.vision-image img {
  width: 90%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.vision-content {
  padding: 0 1rem;
}

.vision-content .section-subtitle {
  font-size: 0.875rem;
  color: var(--primary-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: block;
}

.vision-content .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  
}

.vision-content p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 1rem;
  
}


/* Responsive */
@media (max-width: 768px) {
  .vision-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vision-content {
    padding: 0;
  }

  .vision-image img {
    width: 100%;
    max-width: 320px;
  }

  .vision-content .section-title {
    font-size: 1.75rem;
  }

  .vision-content p {
    font-size: 0.95rem;
  }
}



/* === Mission Section === */
.mission-section {
  background-color: var(--primary-lightest);
  padding: 6rem 1rem;
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-content {
  padding: 1rem;
}

.mission-content .section-subtitle {
  font-size: 0.875rem;
  color: var(--primary-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.mission-content .section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
  color: var(--dark);
}

.mission-content p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 1rem;
}
.mission-image {
  display: flex;
  justify-content: center;
}

.mission-image img {
  width: 90%;
  max-width: 400px;
  border-radius: 1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .mission-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-content {
    padding: 0;
  }

  .mission-content .section-title {
    font-size: 1.75rem;
  }

  .mission-content p {
    font-size: 0.95rem;
  }
}

/* Services Section */
.services-section {
  background-color: var(--primary-lightest);
  padding: 4rem 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: 4rem 1rem;
}

.service-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.service-features {
  margin-top: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.service-features li::before {
  content: '✓';
  color: var(--primary-light);
  margin-right: 0.5rem;
  font-weight: bold;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 600;
}

.link-arrow svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.link-arrow:hover svg {
  transform: translateX(0.25rem);
}

/* Pricing Section */
.pricing-section {
  background-color: var(--primary-lightest);
  padding: 4rem 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.pricing-card {
  border: 1px solid var(--gray-light);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid var(--primary);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.pricing-header {
  padding: 2rem;
  border-bottom: 1px solid var(--gray-light);
}

.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-header p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: flex-end;
  margin-top: 1rem;
}

.price span:first-child {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
}

.price span:last-child {
  color: var(--gray);
  margin-left: 0.5rem;
  margin-bottom: 0.25rem;
}

.pricing-body {
  padding: 2rem;
}

.pricing-features {
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary-light);
  margin-right: 0.75rem;
  font-weight: bold;
}


/* Ensure the section doesn’t hide the background */
.pricing-section {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.95); /* subtle transparency */
  backdrop-filter: blur(3px); /* optional: makes content pop over bg */
}

.pricing-section[data-aos="fade-up"] {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--primary-lightest);
  padding: 4rem 1rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(43, 122, 120, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  margin-right: 1rem;
}

.testimonial-author h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.rating {
  display: flex;
  color: var(--yellow);
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--gray);
  position: relative;
  padding-left: 1rem;
}

.testimonial-card blockquote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -0.5rem;
  font-size: 2rem;
  color: var(--primary-light);
  opacity: 0.3;
}

/* CTA Section */
.cta-section {
  background-color: var(--primary);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.cta-container {
  max-width: 56rem;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-light, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
  cursor: pointer;
}

.btn-light {
  background-color: #f3f4f6;
  color: #111827;
  border: 1px solid #d1d5db;
}

.btn-light:hover {
  background-color: #e5e7eb;
  transform: translateY(-1px);
}

.btn-light svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
  border: 1px solid #2563eb;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons,
  .cta-buttons {
    flex-direction: row;
  }

  .values-grid,
  .services-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .hero-container {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }

  .hero-content {
    text-align: left;
    margin-bottom: 0;
    margin-top: 14px;
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }

}

@media (min-width: 1024px) {
  .values-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section {
    padding: 6rem 1rem;
  }
}

@media (max-width: 768px) {
  section + section {
    margin-top: 3rem;
  }

  .section {
    padding: 4rem 1rem;
  }
}

/* mobile tweaks */
@media (max-width: 576px) {
  .hero-section {
    padding: 3rem 1rem;
    min-height: auto;
  }

  .image-circle {
    width: 220px;
    height: 220px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section-header,
  .section-title,
  .section-subtitle {
    text-align: center !important;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-menu {
    display: block;
  }
}

/* Animation Classes */
[data-aos] {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-aos="fade-up"] {
  transform: translateY(20px);
  opacity: 0;
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos="fade-in"] {
  opacity: 0;
}

[data-aos="fade-in"].aos-animate {
  opacity: 1;
}

