

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}


/* * HEADER */ 
.spa-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6%;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.logo img {
  height: 48px;
  width: auto;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAV LINKS */
.nav {
  display: flex;
  align-items: center; /* ensures same line */
  gap: 20px;
}

.nav a {
  text-decoration: none;
  color: #145a32;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.nav a:hover {
  color: #2a6b4f;
}

.cta {
  padding: 10px 22px;
  background: #145a32;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
}

/* HAMBURGER */
#menuToggle {
  display: none;
}

.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background: #145a32;
  border-radius: 2px;
}

/* MOBILE SIDEBAR */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  transition: 0.3s;
  z-index: 999;
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-sidebar a {
  text-decoration: none;
  color: #145a32;
  font-size: 16px;
  padding: 10px 0;
  display: block;
}

.mobile-sidebar a.cta {
  background: #145a32;
  color: #fff;
  text-align: center;
  border-radius: 30px;
}

.mobile-sidebar .mobile-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.mobile-sidebar .call-btn {
  background: #145a32;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
}

.mobile-sidebar .whatsapp-btn {
  background: #25D366;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
}

/* Close Sidebar Button */
.close-sidebar {
  font-size: 30px;
  color: #145a32;
  align-self: flex-end;
  cursor: pointer;
  padding: 5px;
}

/* Show Mobile Sidebar when toggle checked */
#menuToggle:checked ~ .mobile-sidebar {
  right: 0;
}

/* FIXED CONTACT BUTTONS */
.fixed-contact {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.fixed-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50px 0 0 50px;
  color: #fff;
  font-size: 18px;
  position: relative;
  transition: all 0.3s ease;
}

.fixed-contact a::after {
  content: attr(data-label);
  position: absolute;
  right: 100%;
  background: rgba(0,0,0,0.8);
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  font-size: 14px;
}

.fixed-contact a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { display: none; }
  .menu-icon { display: flex; }
}

.ritual-banner {
  position: relative;
  min-height: calc(100vh - 80px); /* header ke liye safe space */
  margin-top: 80px; /* agar header fixed hai */
  display: flex;
  overflow: hidden;
  font-family: 'Playfair Display', serif;
  background: #0f1f1c;
}

/* Background Image */
.ritual-image {
  width: 60%;
  background: url("https://images.unsplash.com/photo-1540555700478-4be289fbecef")
    center/cover no-repeat;
  animation: spaDrift 28s ease-in-out infinite alternate;
  filter: brightness(0.9) saturate(1.05);
}

/* Overlay */
.ritual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.75)
  );
  pointer-events: none;
}

/* Text Section */
.ritual-text {
  width: 40%;
  color: #eaf2ed;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Decorative Vertical Line */
.ritual-line {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 240px;
  background: linear-gradient(to bottom, #9be7c4, transparent);
  animation: breatheLine 4s ease-in-out infinite;
}

/* Title */
.ritual-title {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeSlide 1.3s ease forwards;
  animation-delay: 0.6s;
}

.ritual-title strong {
  color: #9be7c4;
  font-weight: 600;
}

/* Description */
.ritual-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0;
  margin-bottom: 45px;
  max-width: 420px;
  animation: fadeSlide 1.3s ease forwards;
  animation-delay: 1.1s;
}

/* CTA */
.ritual-link {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  color: #9be7c4;
  font-size: 0.9rem;
  letter-spacing: 2.5px;
  position: relative;
  width: fit-content;
  opacity: 0;
  animation: fadeSlide 1.3s ease forwards, pulse 3.5s ease-in-out infinite;
  animation-delay: 1.6s;
}

.ritual-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #9be7c4;
  transition: 0.4s ease;
}

.ritual-link:hover::after {
  width: 100%;
}

/* Animations */
@keyframes spaDrift {
  from {
    transform: scale(1.05) translateX(0);
  }
  to {
    transform: scale(1.18) translateX(-60px);
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breatheLine {
  0%,
  100% {
    opacity: 0.4;
    height: 220px;
  }
  50% {
    opacity: 1;
    height: 280px;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .ritual-banner {
    flex-direction: column;
    margin-top: 70px;
  }

  .ritual-image,
  .ritual-text {
    width: 100%;
  }

  .ritual-text {
    padding: 80px 40px;
    text-align: center;
  }

  .ritual-line {
    display: none;
  }

  .ritual-desc {
    margin: 0 auto 35px;
  }
}

.spa-mist {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(155,231,196,0.15), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12), transparent 50%);
  animation: mistFloat 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes mistFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-40px) scale(1.08);
    opacity: 0.9;
  }
}


/* about */


.about-breathe {
  display: flex;
  align-items: center;
  padding: 120px 8%;
  gap: 80px;
  background: #f6faf8;
  font-family: 'Poppins', sans-serif;
}

/* Image */
.about-breathe-img {
  position: relative;
  width: 45%;
  height: 520px;
  background: url("assets/Relax Signature.jpeg")
    center/cover no-repeat;
  border-radius: 30px;
  animation: imgFloat 10s ease-in-out infinite;
}

/* Floating Words */
.float-word {
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  animation: wordFloat 6s ease-in-out infinite;
}

.w1 {
  top: 15%;
  left: 12%;
}
.w2 {
  bottom: 20%;
  right: 18%;
  animation-delay: 2s;
}
.w3 {
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

/* Content */
.about-breathe-text {
  width: 55%;
}

.about-breathe-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #1f3d35;
}

.about-breathe-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4f6f66;
  max-width: 480px;
  margin-bottom: 22px;
}

.about-breathe-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 34px;
  border-radius: 50px;
  text-decoration: none;
  background: #1f8f6a;
  color: #fff;
  font-size: 0.95rem;
  transition: 0.4s ease;
}

.about-breathe-btn:hover {
  background: #146c52;
}

/* Animations */
@keyframes imgFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes wordFloat {
  0%,
  100% {
    opacity: 0.6;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-14px);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .about-breathe {
    flex-direction: column;
    gap: 50px;
  }

  .about-breathe-img,
  .about-breathe-text {
    width: 100%;
  }

  .about-breathe-text h2 {
    font-size: 2.4rem;
  }
}

/* Initial hidden state */
.about-breathe-img,
.about-breathe-text {
  opacity: 0;
  transition: all 1.2s ease;
}

/* Image from left */
.about-breathe-img {
  transform: translateX(-80px);
}

/* Content from right */
.about-breathe-text {
  transform: translateX(80px);
}

/* When visible */
.about-breathe.show .about-breathe-img {
  opacity: 1;
  transform: translateX(0);
}

.about-breathe.show .about-breathe-text {
  opacity: 1;
  transform: translateX(0);
}


/* Services */


.spa-services-premium {
  padding: 110px 8%;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.spa-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 70px;
  font-family: 'Playfair Display', serif;
  color: #1f3d35;
}

.spa-title span {
  color: #1f8f6a;
}

/* Grid */
.spa-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* Card Box */
.spa-card-box {
  background: #f6faf8;
  border-radius: 14px; /* minimal radius – premium look */
  overflow: hidden;
  aspect-ratio: 1 / 1; /* square card */
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
  display: flex;
  flex-direction: column;
}

.spa-card-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.18);
}

/* Image */
.spa-card-box img {
  width: 100%;
  height: 45%;
  object-fit: cover;
}

/* Content */
.spa-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 55%;
}

.spa-card-info h3 {
  font-size: 1.25rem;
  color: #1f3d35;
  margin-bottom: 10px;
}

.spa-card-info p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4f6f66;
  margin-bottom: 18px;
}

/* Buttons */
.spa-card-buttons {
  display: flex;
  gap: 12px;
}

.btn-call-red,
.btn-whatsapp-green {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px; /* rectangular */
  transition: 0.3s ease;
}

/* Red Call */
.btn-call-red {
  background: #d32f2f;
  color: #fff;
}

.btn-call-red:hover {
  background: #b71c1c;
}

/* Green WhatsApp */
.btn-whatsapp-green {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp-green:hover {
  background: #1ebe5b;
}

/* Responsive */
@media (max-width: 768px) {
  .spa-title {
    font-size: 2.4rem;
  }
}



/* Footer Styles */
.spa-footer {
  background: #ffffff;
  color: #2a6b4f;  /* dark green */
  padding: 60px 6% 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.footer-about h2 {
  font-size: 24px;
  color: #2a6b4f;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2a6b4f;
  border-bottom: 2px solid #2a6b4f;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #555;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #3fa066; /* lighter green on hover */
  transform: translateX(5px);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  transition: transform 0.3s ease;
  font-size: 20px;
  color: #2a6b4f;
}

.social-icons a:hover {
  transform: scale(1.3);
  color: #3fa066;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #d1e3d1;
  padding-top: 20px;
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 1000px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-about,
  .footer-links,
  .footer-contact {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}


/* Contact Us Section */
.contact-us {
  padding: 80px 6%;
  background: #f7fdf8; /* light greenish-white */
}

.contact-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-section {
  display: flex;
  gap: 30px;
  align-items: stretch; /* important */
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-right iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 12px;
}



.contact-left select {
  padding: 16px 15px;
  border: 1px solid #2a6b4f;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  background: #fff;
  resize: none;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

/* Left: Form */
.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left h2 {
  font-size: 32px;
  color: #2a6b4f;
  margin-bottom: 10px;
}

.contact-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-left input,
.contact-left textarea {
  padding: 12px 15px;
  border: 1px solid #2a6b4f;
  border-radius: 8px;
  font-size: 14px;
  resize: none;
  transition: all 0.3s ease;
}

.contact-left input:focus,
.contact-left textarea:focus {
  border-color: #3fa066;
  box-shadow: 0 0 8px rgba(63,160,102,0.2);
  outline: none;
}

.contact-left button {
  padding: 12px 20px;
  border: none;
  background: #2a6b4f;
  color: #fff;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-left button:hover {
  background: #3fa066;
  transform: translateY(-3px);
}

/* Right: Map */
.contact-right {
  flex: 1;
  min-width: 300px;
  height: 680px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Animations */





/* Responsive */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
}

/* Left: Form */
.contact-left input,
.contact-left textarea {
  padding: 18px 20px;       /* increased padding */
  border: 1px solid #2a6b4f;
  border-radius: 12px;      /* slightly bigger radius */
  font-size: 16px;          /* larger font */
  resize: none;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.contact-left input {
  height: 50px;             /* bigger input height */
}

.contact-left textarea {
  height: 150px;             /* bigger textarea */
}

/* Button */
.contact-left button {
  padding: 16px 25px;        /* bigger clickable area */
  font-size: 18px;           /* larger text */
  border-radius: 12px;
}


.header-actions {
  display: flex;
  gap: 12px;
  margin-left: 20px;
}

.call-btn,
.whatsapp-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.call-btn {
  background: #2d7cff;
}

.whatsapp-btn {
  background: #25d366;
}

.call-btn:hover,
.whatsapp-btn:hover {
  opacity: 0.85;
}


.why-choose {
  padding: 80px 6%;
  background: #fff;
}

.why-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 60px;
  color: #222;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.why-col {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.why-card {
  background: #7fc1e3;
  color: #fff;
  padding: 35px 32px;
  border-radius: 18px;
  min-height: 170px;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 600;
}

.why-card p {
  font-size: 16px;
  line-height: 1.6;
}

.why-image {
  display: flex;
  justify-content: center;
}

.why-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    order: -1;
  }
}
   

/* Therapy center */
  h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

h1 span {
  color: purple;
}

/* Gallery container */
.gallery {
  display: flex;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; /* vertically center */
  max-width: 1000px;
  margin: 0 auto; /* horizontally center gallery in page */
}

/* Individual gallery item */
.gallery-item {
  position: relative;
  width: 220px;
  height: 140px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* First image overlay with plus icon */
.gallery-item.add::after {
  content: "+";
  position: absolute;
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.6);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pagination dots */
.dots {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  justify-content: center; /* center dots */
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  transition: background 0.3s;
}

.dot.active {
  background: purple;
}

/* Modal (lightbox) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  padding: 20px; /* spacing for small screens */
  box-sizing: border-box;
}

.modal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: block;
  margin: 0 auto; /* center image in modal */
}

.modal.show {
  display: flex;
}

/* Responsive Gallery Items */
@media(max-width: 900px){
  .gallery-item {
    width: 180px;
    height: 120px;
  }
}

@media(max-width: 600px){
  .gallery-item {
    width: 140px;
    height: 100px;
  }
}


/* Section Styling */
.why-choose-us {
  padding: 100px 6%;
  background: #f2f9f6; /* soft spa-green */
  font-family: 'Poppins', sans-serif;
}

/* Container */
.container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Image */
.image-side {
  flex: 1 1 450px;
  animation: slideInLeft 1s ease forwards;
  opacity: 0;
}

.image-side img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.image-side img:hover {
  transform: scale(1.05);
}

/* Right Content */
.content-side {
  flex: 1 1 450px;
  animation: slideInRight 1s ease forwards;
  opacity: 0;
}

.content-side h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #023e8a;
}

.content-side h2 span {
  color: #00b894;
}

.content-side p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: white;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #00b89433; /* translucent green circle */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}

.feature-card:hover .icon {
  background: #00b894;
}

.feature-card .icon img {
  width: 35px;
  height: 35px;
}

.feature-card .text h4 {
  margin-bottom: 5px;
  color: #023e8a;
  font-size: 1.2rem;
}

.feature-card .text p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* Animations */
@keyframes slideInLeft {
  0% { transform: translateX(-60px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  0% { transform: translateX(60px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media(max-width: 950px){
  .container {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .features {
    gap: 20px;
  }
}

@media(max-width: 600px){
  .content-side h2 {
    font-size: 2rem;
  }
  .feature-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-card .icon {
    margin-bottom: 10px;
  }
}
