* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

.navbar {
  width: 100%;
  background: white;
  padding: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  width: 60%;
  /* max-width: 150px; */
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 5px 0;
  position: relative;
}

.nav-links a:hover {
  color: #05716c;
}

.nav-links a.active {
  color: #05716c;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #05716c;
  border-radius: 2px;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 998;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    padding: 80px 20px 20px;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .nav-links.open {
    right: 0;
  }

  .overlay.active {
    display: block;
  }
}

.about-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px; /* Reduced padding for mobile */
  background: #69b4b1;
  min-height: calc(100vh - 70px); /* Changed from height to min-height */
  width: 100%;
}

.about-hero .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px; /* Reduced padding for mobile */
  width: 100%;
}

.about-hero .hero-content {
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.about-hero .hero-content h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.about-hero .hero-content p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.about-hero .hero-content .btn {
  display: inline-block;
  background: #fff;
  color: #045b58;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-hero .hero-content .btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-hero .hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-hero .hero-image img {
  max-width: 100%;
  max-height: 500px; /* Prevent image from being too tall */
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .about-hero {
    padding: 60px 20px;
    min-height: auto; /* Auto height on tablet */
  }
  
  .about-hero .container {
    padding: 0 40px;
    gap: 30px;
  }
  
  .about-hero .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .about-hero .hero-content p {
    font-size: 1.05rem;
  }
  
  .about-hero .hero-image img {
    max-height: 450px;
  }
}

/* Mobile: 480px - 768px */
@media (max-width: 768px) {
  .about-hero {
    padding: 40px 15px;
    min-height: auto;
  }
  
  .about-hero .container {
    flex-direction: column; /* Stack content vertically */
    padding: 0 20px;
    gap: 40px;
    text-align: center; /* Center align on mobile */
  }
  
  .about-hero .hero-content {
    text-align: center;
    order: 1; /* Content first on mobile */
  }
  
  .about-hero .hero-image {
    order: 2; /* Image second on mobile */
    max-width: 400px;
    margin: 0 auto;
  }
  
  .about-hero .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .about-hero .hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .about-hero .hero-content .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  
  .about-hero .hero-image img {
    max-height: 350px;
  }
}

/* Small Mobile: < 480px */
@media (max-width: 480px) {
  .about-hero {
    padding: 30px 10px;
  }
  
  .about-hero .container {
    padding: 0 15px;
    gap: 30px;
  }
  
  .about-hero .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .about-hero .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .about-hero .hero-content .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  
  .about-hero .hero-image img {
    max-height: 280px;
  }
}

/* Extra Small Mobile: < 360px */
@media (max-width: 360px) {
  .about-hero .hero-content h1 {
    font-size: 1.4rem;
  }
  
  .about-hero .hero-content p {
    font-size: 0.9rem;
  }
  
  .about-hero .hero-content .btn {
    padding: 9px 20px;
    font-size: 0.85rem;
  }
  
  .about-hero .hero-image img {
    max-height: 250px;
  }
}

/* Landscape mode for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .about-hero {
    min-height: auto;
    padding: 20px 15px;
  }
  
  .about-hero .container {
    flex-direction: row; /* Keep side-by-side in landscape */
    gap: 30px;
    align-items: center;
  }
  
  .about-hero .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .about-hero .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .about-hero .hero-image img {
    max-height: 200px;
  }
}

/* Large desktop screens */
@media (min-width: 1400px) {
  .about-hero .container {
    max-width: 1400px;
  }
  
  .about-hero .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-hero .hero-content p {
    font-size: 1.2rem;
  }
}

/* Remove hover effects on touch devices */
@media (hover: none) {
  .about-hero .hero-content .btn:hover {
    transform: none;
    box-shadow: none;
  }
}

/* Accessibility: Focus styles */
.about-hero .hero-content .btn:focus {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Loading optimization */
.about-hero .hero-image img {
  background: rgba(255, 255, 255, 0.1); /* Loading background */
  border-radius: 12px;
}

.about-us {
  width: 100%;
  padding: 40px 20px; /* Reduced padding for mobile */
  background: #f9fafc;
  margin-top: 0; /* Remove top margin */
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 600; /* Changed from 400 to 600 */
  margin-bottom: 20px;
  color: #333;
  line-height: 1.2;
}

.about-text p {
  font-size: 17px; /* Increased from 16px */
  color: #555;
  margin-bottom: 40px;
  line-height: 1.7; /* Increased from 1.6 */
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  border-radius: 15px;
  overflow: hidden; /* For better image containment */
}

.about-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
  object-fit: cover; /* Changed to cover for better filling */
}

.about-image img:hover {
  transform: scale(1.03);
}

.features {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.feature {
  background: #fff;
  padding: 25px 20px; /* Increased padding */
  border-radius: 15px;
  flex: 1 1 180px;
  min-width: 200px; /* Increased min-width */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature:hover {
  transform: translateY(-8px); /* Increased from -5px */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature .icon {
  width: 60px; /* Fixed size for icons */
  height: 60px;
  background: #e6f4f2; /* Added background to icons */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px; /* Center and add margin */
  padding: 10px;
}

.feature .icon svg {
  width: 32px;
  height: 32px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.feature p {
  font-size: 15px; /* Increased from 14px */
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ========== MOBILE RESPONSIVE STYLES ========== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .about-us {
    padding: 50px 30px;
  }
  
  .about-container {
    gap: 40px;
  }
  
  .about-text h2 {
    font-size: 32px;
  }
  
  .about-text p {
    font-size: 16px;
  }
  
  .features {
    gap: 20px;
  }
  
  .feature {
    flex: 1 1 200px;
    padding: 22px 18px;
  }
}

/* Mobile: 480px - 768px */
@media (max-width: 768px) {
  .about-us {
    padding: 40px 20px;
  }
  
  .about-container {
    flex-direction: column; /* Stack everything */
    gap: 40px;
    text-align: center;
  }
  
  .about-text, 
  .about-image {
    width: 100%;
    min-width: auto;
  }
  
  .about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .about-text p {
    font-size: 16px;
    margin-bottom: 35px;
  }
  
  .features {
    gap: 20px;
    justify-content: center;
  }
  
  .feature {
    flex: 1 1 100%;
    min-width: 250px;
    max-width: 350px;
    padding: 25px 20px;
  }
  
  .feature .icon {
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
  }
  
  .feature .icon svg {
    width: 28px;
    height: 28px;
  }
  
  .feature h3 {
    font-size: 17px;
  }
  
  .feature p {
    font-size: 14px;
  }
  
  /* Remove hover effects on touch devices */
  .feature:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
}

/* Small Mobile: < 480px */
@media (max-width: 480px) {
  .about-us {
    padding: 30px 15px;
  }
  
  .about-container {
    gap: 30px;
  }
  
  .about-text h2 {
    font-size: 24px;
  }
  
  .about-text p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .features {
    gap: 15px;
  }
  
  .feature {
    padding: 20px 15px;
    min-width: 100%;
  }
  
  .feature .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  
  .feature .icon svg {
    width: 24px;
    height: 24px;
  }
  
  .feature h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .feature p {
    font-size: 13px;
  }
}

/* Extra Small Mobile: < 360px */
@media (max-width: 360px) {
  .about-us {
    padding: 25px 10px;
  }
  
  .about-text h2 {
    font-size: 22px;
  }
  
  .about-text p {
    font-size: 14px;
  }
  
  .features {
    gap: 12px;
  }
  
  .feature {
    padding: 18px 12px;
  }
  
  .feature .icon {
    width: 45px;
    height: 45px;
  }
  
  .feature .icon svg {
    width: 22px;
    height: 22px;
  }
}

/* Landscape mode for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .about-us {
    padding: 20px 15px;
  }
  
  .about-container {
    flex-direction: row; /* Keep side-by-side in landscape */
    gap: 30px;
  }
  
  .about-text h2 {
    font-size: 20px;
  }
  
  .about-text p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .features {
    gap: 10px;
  }
  
  .feature {
    padding: 15px 10px;
    min-width: 120px;
  }
  
  .feature .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }
  
  .feature .icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Large desktop screens */
@media (min-width: 1400px) {
  .about-container {
    max-width: 1300px;
  }
  
  .about-text h2 {
    font-size: 42px;
  }
  
  .about-text p {
    font-size: 18px;
  }
}

/* Accessibility: Focus styles */
.feature:focus-within {
  outline: 2px solid #05716c;
  outline-offset: 2px;
}

/* Loading optimization */
.about-image img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.why-choose-us {
  padding: 80px 20px;
  text-align: center;
  margin: 40px 0;
  background: #f9fafc; /* Added subtle background */
}

.why-choose-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-us h2 {
  color: #333;
  font-size: 2.5rem; /* Increased from 2.2rem */
  font-weight: 600; /* Changed from 400 to 600 */
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-choose-us .intro {
  color: #555;
  font-size: 1.2rem; /* Increased from 1.1rem */
  margin-bottom: 60px; /* Increased from 40px */
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.choose-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 0; /* Removed horizontal padding */
}

.choose-feature {
  background: white;
  flex: 1 1 300px; /* Increased from 250px */
  min-width: 280px; /* Increased from 220px */
  padding: 35px 25px; /* Increased padding */
  border-radius: 16px; /* Increased from 12px */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.choose-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #05716c, #69b4b1);
}

.choose-feature h3 {
  color: #05716c;
  margin-bottom: 15px; /* Increased from 10px */
  font-size: 1.3rem; /* Increased from 1.2rem */
  font-weight: 600;
}

.choose-feature p {
  color: #555;
  font-size: 1rem; /* Increased from 0.95rem */
  line-height: 1.6;
  margin: 0;
}

.choose-feature:hover {
  transform: translateY(-8px); /* Increased from -5px */
  box-shadow: 0 15px 40px rgba(5, 113, 108, 0.15);
}

/* Optional: Add icons to features */
.choose-feature::after {
  content: "✓";
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: #e6f4f2;
  font-size: 24px;
  font-weight: bold;
  opacity: 0.7;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .why-choose-us {
    padding: 60px 20px;
  }
  
  .why-choose-us h2 {
    font-size: 2.2rem;
  }
  
  .why-choose-us .intro {
    font-size: 1.1rem;
    margin-bottom: 50px;
  }
  
  .choose-features {
    gap: 25px;
  }
  
  .choose-feature {
    flex: 1 1 280px;
    padding: 30px 20px;
  }
  
  .choose-feature h3 {
    font-size: 1.25rem;
  }
  
  .choose-feature p {
    font-size: 0.95rem;
  }
}

/* Mobile: 480px - 768px */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 50px 15px;
    margin: 20px 0;
  }
  
  .why-choose-us h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .why-choose-us .intro {
    font-size: 1rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }
  
  .choose-features {
    gap: 20px;
    flex-direction: column; /* Stack features vertically on mobile */
    align-items: center;
  }
  
  .choose-feature {
    width: 100%;
    max-width: 400px;
    flex: 1 1 auto;
    min-width: auto;
    padding: 25px 20px;
    margin-bottom: 0;
  }
  
  .choose-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .choose-feature p {
    font-size: 0.95rem;
  }
  
  /* Remove hover effects on touch devices */
  .choose-feature:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  }
}

/* Small Mobile: < 480px */
@media (max-width: 480px) {
  .why-choose-us {
    padding: 40px 10px;
  }
  
  .why-choose-us h2 {
    font-size: 1.6rem;
  }
  
  .why-choose-us .intro {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .choose-features {
    gap: 15px;
  }
  
  .choose-feature {
    padding: 22px 18px;
    border-radius: 12px;
  }
  
  .choose-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .choose-feature p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Extra Small Mobile: < 360px */
@media (max-width: 360px) {
  .why-choose-us h2 {
    font-size: 1.4rem;
  }
  
  .why-choose-us .intro {
    font-size: 0.9rem;
  }
  
  .choose-feature {
    padding: 20px 15px;
  }
  
  .choose-feature h3 {
    font-size: 1rem;
  }
  
  .choose-feature p {
    font-size: 0.85rem;
  }
}

/* Landscape mode for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  .why-choose-us {
    padding: 30px 15px;
  }
  
  .why-choose-us h2 {
    font-size: 1.5rem;
  }
  
  .why-choose-us .intro {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }
  
  .choose-features {
    flex-direction: row; /* Keep side-by-side in landscape */
    gap: 15px;
  }
  
  .choose-feature {
    flex: 1 1 180px;
    padding: 20px 15px;
  }
  
  .choose-feature h3 {
    font-size: 1rem;
  }
  
  .choose-feature p {
    font-size: 0.8rem;
  }
}

/* Large desktop screens */
@media (min-width: 1400px) {
  .why-choose-us .container {
    max-width: 1300px;
  }
  
  .why-choose-us h2 {
    font-size: 3rem;
  }
  
  .why-choose-us .intro {
    font-size: 1.3rem;
  }
  
  .choose-feature {
    padding: 40px 30px;
  }
  
  .choose-feature h3 {
    font-size: 1.4rem;
  }
  
  .choose-feature p {
    font-size: 1.1rem;
  }
}

/* Accessibility improvements */
.choose-feature:focus-within {
  outline: 2px solid #05716c;
  outline-offset: 2px;
}

/* Animation for feature cards on load */
.choose-feature {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.choose-feature:nth-child(1) { animation-delay: 0.1s; }
.choose-feature:nth-child(2) { animation-delay: 0.2s; }
.choose-feature:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: Add number indicators */
.choose-feature {
  counter-increment: feature-counter;
}

.choose-feature h3::before {
  content: counter(feature-counter) ". ";
  color: #69b4b1;
  font-weight: 700;
}

.reviews-scroll {
  padding: 60px 0;
  background: #f9f9f9;
  text-align: center;
}

.reviews-scroll h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  /* color: #05716c; */
  font-weight: 400;
}

.scroll-container {
  display: flex;
  overflow: hidden;
  width: 90%;
  /* height: 200px; */
  margin: auto;
}

.scroll-track {
  display: flex;
  gap: 20px;
  animation: scroll 25s linear infinite;
  /* height: 200px; */
}

.review-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.review-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}

.review-card h4 {
  font-size: 0.85rem;
  color: #555;
}

.stars {
  color: #ffb400;
  margin-bottom: 8px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.scroll-container:hover .scroll-track {
  animation-play-state: paused;
}

/* CTA Section */
.cta {
  background: #045b58;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  /* border-radius: 12px; */
  margin-top: 0;
}

.cta .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta .btn {
  background-color: #fff;
  color: #05716c;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 2rem;
  }
  .cta p {
    font-size: 1rem;
  }
  .cta .btn {
    padding: 10px 25px;
  }
}
