:root {
  --wave-light: #fdfdfe;   /* airy off‑white */
  --wave-mid:   #a0e7e5;   /* pastel teal / mint */
  --wave-deep:  #d8b4f8;   /* pastel lavender */
  --wave-dark:  #555;      /* softer gray for text */

}

body {
  margin: 0;
  font-family: Arial, sans-serif;
 padding-top: 70px;
  scroll-behavior: auto;
 background-color: #F8F5F0;
}

html{

  margin: 0;
  scroll-padding-top: 70px;
}

/* HERO SECTION */
#hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  flex-direction: column;
  min-height: 85vh;
   padding-top: 220px;
   padding-bottom: 20px;
    background: linear-gradient(
    to right,
    rgba(174, 239, 255, 0.3),
    rgba(216, 180, 248, 0.3)
  );
}

header {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

header .buttons button {
  margin-left: 10px;
  padding: 8px 14px;
  border: none;
 background: linear-gradient(135deg, var(--wave-mid), var(--wave-deep));
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

header .buttons button:hover {
   background: linear-gradient(135deg, var(--wave-light), var(--wave-mid));
}

.flower-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.flower {
  position: absolute;
  width: 800px;
  height: 800px;
  opacity: 0;
  transform: scale(0.1) rotate(var(--rotation, 0deg));
  filter: blur(1px) brightness(1.1);
  opacity: 0.6;
  transition: opacity 0.5s ease;
  animation: appear 1.6s ease-out forwards,
             bloom 3.5s ease-in-out infinite alternate 1.6s,
             float 6s ease-in-out infinite,
             slowSpin 60s linear infinite;
}
@keyframes slowSpin {
  0%   { transform: rotate(0deg) scale(1); }
  100% { transform: rotate(360deg) scale(1); }
}

.flower,
.petal,
.center-text,
.center-inner,
.raha-logo {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}
/* Stronger left column */
.f1  { top: 5%;   left: 0%;   --rotation: 15deg; }
.f2  { top: 12%;  left: 0%;   --rotation: -10deg; }
.f3  { top: 20%;  left: -2%;  --rotation: 20deg; }
.f4  { top: 28%;  left: 1%;   --rotation: -15deg; }
.f5  { top: 36%;  left: 0%;   --rotation: 8deg; }
.f6  { top: 44%;  left: -1%;  --rotation: -5deg; }
.f7  { top: 52%;  left: 2%;   --rotation: 12deg; }
.f8  { top: 60%;  left: 0%;   --rotation: -8deg; }
.f9  { top: 70%;  left: -2%;  --rotation: 10deg; }
.f10 { top: 78%;  left: 1%;   --rotation: -12deg; }
.f11 { top: 86%;  left: 0%;   --rotation: 14deg; }
.f12 { top: 94%;  left: -1%;  --rotation: -6deg; }
.f13 { top: 2%;  left: 35%; --rotation: -8deg; }
.f14 { top: 0%;  left: 50%; --rotation: 12deg; }
.f15 { top: 3%;  left: 65%; --rotation: -10deg; }

.f16 { top: 8%;  left: 40%; --rotation: 15deg; }
.f17 { top: 7%;  left: 55%; --rotation: -12deg; }
.f18 { top: 10%; left: 45%; --rotation: 10deg; }
.f19 { top: 12%; left: 60%; --rotation: -6deg; }
.f20 { top: 14%; left: 52%; --rotation: 18deg; }

.f21 { top: 18%; left: 30%; --rotation: -8deg; }
.f22 { top: 20%; left: 48%; --rotation: 12deg; }
.f23 { top: 22%; left: 65%; --rotation: -10deg; }
.f24 { top: 19%; left: 80%; --rotation: 14deg; }

.f25 { top: 25%; left: 25%; --rotation: 10deg; }
.f26 { top: 28%; left: 47%; --rotation: -12deg; }
.f27 { top: 26%; left: 68%; --rotation: 16deg; }
.f28 { top: 29%; left: 85%; --rotation: -9deg; }
/* Lighter bottom */
.f29 { top: 55%; left: 22%; --rotation: -7deg; }
.f30 { top: 58%; left: 46%; --rotation: 15deg; }
.f31 { top: 60%; left: 70%; --rotation: -11deg; }
.f32 { top: 62%; left: 90%; --rotation: 12deg; }

.f33 { top: 70%; left: 20%; --rotation: 10deg; }
.f34 { top: 72%; left: 44%; --rotation: -12deg; }
.f35 { top: 74%; left: 68%; --rotation: 18deg; }
.f36 { top: 76%; left: 88%; --rotation: -8deg; }
.f1, .f6, .f11 { transform: scale(1.2) rotate(var(--rotation)); }
.f37 { top: 82%; left: 25%; --rotation: -10deg; }
.f38 { top: 84%; left: 50%; --rotation: 12deg; }
.f39 { top: 86%; left: 72%; --rotation: -6deg; }
.f40 { top: 88%; left: 92%; --rotation: 14deg; }




.petal {
  
  width: 600px;
  height: 600px;
  transform-origin: 190px 190px;
  position: absolute;
    background: radial-gradient(
    circle at 40% 40%,
    color-mix(in srgb, var(--wave-mid) 20%, transparent
),
    color-mix(in srgb, var(--wave-deep)10%, transparent )
  ) !important;
;
  border-radius: 50%;
  opacity: 0;
}

/* Animations */
@keyframes appear {
  0%   { opacity: 0; transform: scale(0.1); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes bloom {
  0%   { transform: scale(1); }
  100% { transform: scale(var(--bloom-scale, 1.25)); }
}


@keyframes float {
  0%   { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-10px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes petalBloom {
  0% {
    transform: rotate(var(--angle)) translateX(0px) scale(0.1);
    opacity: 0;
  }
  50% {
    transform: rotate(var(--angle)) translateX(25px) scale(0.6);
    opacity: 1;
  }
  100% {
    transform: rotate(var(--angle)) translateX(50px) scale(1);
    opacity: 1;
  }
}

@keyframes petalBloomA {
  0%   { transform: rotate(var(--angle)) translateX(0) scale(0.1); opacity: 0; }
  50%  { transform: rotate(var(--angle)) translateX(20px) scale(0.7); opacity: 1; }
  100% { transform: rotate(var(--angle)) translateX(40px) scale(1); opacity: 1; }
}

@keyframes petalBloomB {
  0%   { transform: rotate(var(--angle)) translateY(0) scale(0.1); opacity: 0; }
  50%  { transform: rotate(var(--angle)) translateY(-20px) scale(0.8); opacity: 1; }
  100% { transform: rotate(var(--angle)) translateY(-40px) scale(1); opacity: 1; }
}

@keyframes petalBloomC {
  0%   { transform: rotate(var(--angle)) scale(0.1); opacity: 0; }
  100% { transform: rotate(var(--angle)) scale(1); opacity: 1; }
}

@keyframes petalBloomD {
  0%   { transform: rotate(var(--angle)) translateX(0) scale(0.1) rotate(0deg); opacity: 0; }
  100% { transform: rotate(var(--angle)) translateX(50px) scale(1) rotate(15deg); opacity: 1; }
}



/* Center everything in the viewport */
.center-text {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.center-inner {
  /* no */
}


.raha-logo {
  font-family: 'Source Serif Pro', serif;
  font-weight: 700;
  font-size: 9rem;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 30px;
  background: linear-gradient(270deg, #00bfa6, #40c9ff, #7b2ff7, #40c9ff, #00bfa6);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
   margin-top: 150px;
  opacity: 0;
  transform: scale(0.8);
   filter: blur(3px);
  animation: bloomIn 1.2s ease forwards,
             gradientMove 12s ease-in-out infinite;
  animation-delay: 0.3s, 2.5s;
    animation-fill-mode: forwards;
  position: relative;
  z-index: 2;
}

/* Subtitle */
.subtitle {
  font-family:'Petrona normal';
  font-size: 1.3rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.8s;
    animation-fill-mode: forwards;
      position: relative;
  z-index: 2;
}

/* Call-to-action button */
.cta-btn {
  padding: 14px 36px;
  font-size: 1.1rem;
   font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #00bfa6, #40c9ff, #7b2ff7);
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 191, 166, 0.3);
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1s ease forwards;
  animation-delay:1.5s;
    position: relative;
  z-index: 2;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #7b2ff7, #40c9ff, #00bfa6);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 191, 166, 0.4);
}

/* Keyframes */
@keyframes bloomIn {
  0% { opacity: 0; transform: scale(0.8); filter: blur(8px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}




/* this is the part for the hero mobile */

@media (max-width: 768px) {
  #hero {
    min-height: 75vh;
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .raha-logo {
    font-size: 3rem;
    margin-top: 60px;
  }

  .subtitle {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 90%;
    margin-bottom: 20px;
  }

  .cta-btn {
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 30px;
  }

  .flower {
    width: 300px;
    height: 300px;
    opacity: 0.4;
  }

  .petal {
    width: 200px;
    height: 200px;
    transform-origin: 80px 80px;
  }

  .center-text {
    top: auto;
    transform: none;
    margin-top: 20px;
  }
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
section, header, footer, .flower-container {
  max-width: 100%;
  overflow-x: hidden;
}

/* Sections below hero */
section {
  padding: 80px 20px;
   background: #F8F5F0;
}

section:nth-of-type(even) {
  background: #FFFFFF;
}

section h2 {
  color: var(--wave-mid); /* sage green */
  margin-bottom: 20px;
}

section ul {
  list-style: none;
  padding: 0;
}

section ul li {
  margin-bottom: 10px;
}


/* Modals */
/* Overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10000;
}
/* Animation */
@keyframes modalFadeIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Form groups */
.form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  text-align: left;}
/* Inputs */
.modal input {
  width: 90%;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  border: 1px solid #aaa;
  font-size: 0.9rem;
  background: #fafafa;
  color: #222;
  text-align: center;
}
.modal input:focus {
  border-color: #000;
  outline: none;
}
/* Modal heading */
.modal h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #222;
}
/* Actions row */
.modal-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
  justify-content: center;
}

/* Modal container */
.modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffffc4;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  z-index: 10000;
  width: 90%;
  max-width: 380px;
  text-align: center;
}
.modal p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}



#overlay {
  display: none;
}
/* Buttons (shared) */
.modal-actions button {
  flex: 1;
  padding: 0.5rem 0.7rem;
  border-radius:10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid  #aaa;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
  width: 40%;
}

/* Primary action (Login/Register) */
.form-btn {
  background: #000;
  color: #fff;
  width: 50%;
}
.form-btn:hover {
  background: #333;
}

/* Secondary action (Close) */
.closeBtn {
  background: #eee;
  color: #000;
}
.closeBtn:hover {
  background: #ccc;
}

@keyframes modalFadeIn {
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
#services {
  padding: 60px 20px;
  
}

#services h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 50px;
  background: linear-gradient(135deg, #7b5ea7, #40c9ff);
  -webkit-background-clip: text;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0 auto 60px auto;
  max-width: 1000px;
  opacity: 0;
  transform: translateY(40px);
}

.service-row.show {
  animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-image {
  flex: 1;
}
.service-image img {
  width: 100%;
  height: 650px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-text {
  flex: 1;
  padding: 20px;
}
.service-text h3 {
  font-family: 'Source Serif Pro', serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 15px;
 color: #cd99fa;
 
}
.service-text p {
  font-family: 'Petrona', serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.service-row:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .service-row {
    flex-direction: column !important;
    text-align: center;
  }
}



/* Contact Section */
#contact{
  background-image: linear-gradient(to right, #d8b4f8, #b1c7ff, #94d6ff, #8ee0f7, #a0e7e5);
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 4rem 10%;
  background-color: #e0e0e0;
   font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #222;
}

.contact-info h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #5b6166;
}

.contact-info p {
  margin: 0.4rem 0;
  font-family: 'Petrona', serif;
  font-weight: 600;
  font-size: 1rem;
   color: #5b6166;
}
.contact-info strong {
  color: rgb(255, 255, 255);
   font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.contact-info a {
 color: #5b6166;
  text-decoration: none;
  font-family: 'Petrona', serif;
  font-weight: 600;
  font-size: 1rem;
}
.contact-info a:hover {
  text-decoration: underline;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 500;
  font-family: 'Petrona', serif;
 
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #bbb;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  background: #fff;
  color: #111;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--wave-mid);
  box-shadow: 0 0 0 3px rgba(163,177,138,0.2);
  background: #fff;
}

/* Button */
.send-btn {
  background: #bb83ec;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
   font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.send-btn:hover {
  background: #7b2ff7;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}
/* Navbar container */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 9999;
}

/* Logo */
.nav-left {
  display: flex;
  align-items: center;
  margin-right: 40px;
}

.nav-logo {
  height: 45px;
  width: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 6px rgba(200, 200, 255, 0.4));
}

/* Links container */
.nav-links {
  list-style: none;
  display: flex;
  gap: 60px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 8px;
  color: #5a7d9a;
  text-decoration: none;
  line-height: 1.2;
  height: auto;
  font-size: 1.1rem;
  line-height: 1;
  padding-top: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.nav-links a:hover {
  color: #7b5ea7;
}

/* Auth buttons */ .nav-auth {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  align-items: center;
  
}

.nav-auth .btn {
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  white-space: nowrap;
  line-height: 1;
  display: flex;
  align-items: center;
  
}
/* Logout button */

.btn.logout {
  background: linear-gradient(135deg, #a0e7e5, #b0cbe9, #d8b4f8);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  padding: 8px 18px;
  text-decoration: none;
  display: inline-block;
}

.btn.logout:hover {
  background: linear-gradient(135deg, #d8b4f8, #b0cbe9, #a0e7e5);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(176, 203, 233, 0.4);
}


/* Login button */
.btn.login {
  background: linear-gradient(135deg, #a0e7e5, #b0cbe9, #d8b4f8);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn.login:hover {
  background: linear-gradient(135deg, #d8b4f8, #b0cbe9, #a0e7e5);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(176, 203, 233, 0.4);
}

/* Sign Up button */
.btn.signup {
  border-radius: 30px;
  background: linear-gradient(135deg, var(--wave-mid), var(--wave-deep));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.btn.signup:hover {
  background: linear-gradient(135deg, #d8b4f8, #b0cbe9, #a0e7e5);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(176, 203, 233, 0.4);
}

/* this is for the nav in mobile  */
.nav-toggle {
  display: none;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.3s;
}
.nav-toggle:hover {
  background: rgba(90, 125, 154, 0.1);
}

/* === Mobile Navbar Styles === */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 0.5rem 1rem;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    padding: 1rem 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-auth {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
    order: 2;
  }

  .nav-auth .btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .nav-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
    margin-left: auto;
    color: #5a7d9a;
    user-select: none;
    margin-right: 10px;
  }

  .nav-left {
    flex: 1;             /* let logo take left space */
  }

  .nav-links,
  .nav-auth {
    width: 100%;         /* dropdown fills width */
  }
}



/* Push page content down */
body {
  margin: 0;
  padding-top: 70px;
}



/* About Section */
.about-section {
   background: linear-gradient(135deg, #a0e7e5, #b0cbe9, #d8b4f8) !important;
  padding: 100px 60px;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50px;
  background: linear-gradient(to bottom, #fff, #fdfdfe);
}


.about-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.about-heading h1 {
  font-family: 'Source Serif Pro', serif;
  font-size: 9rem;
  font-weight: 800;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #5fdaf8, #be80f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Cards */
.about-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(160,231,229,0.2);
  box-shadow: 0 4px 12px rgba(216,180,248,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.about-card h3 {
   font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color:var(--wave-dark)
}

.about-card p {
   font-family: 'Petrona', serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}


/* === ABOUT US MOBILE FIXES === */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-heading h1 {
    font-size: 3rem;
     text-align: center;
    margin-bottom: 30px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-card {
    padding: 20px;
  }

  .about-card h3 {
    font-size: 1.2rem;
  }

  .about-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Section */
.testimonials-section {
  padding: 100px 60px;
  background: var(--wave-light);
}

.testimonials-heading {
  text-align: center;
  font-size: 2.2rem;
   font-family: 'Source Serif Pro', serif;
  font-weight: 700;
  margin-bottom: 50px;
  background: linear-gradient(135deg, var(--wave-mid), var(--wave-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
 
}

/* Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Card */
.testimonial-card {
  position: relative;
  background: rgba(227, 226, 231, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(160, 231, 229, 0.25);
  box-shadow: 0 6px 16px rgba(216, 180, 248, 0.18);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.308);
}
.animate-once.visible .testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1;
  color: rgba(160, 231, 229, 0.6);
  pointer-events: none;
}
.testimonial-img {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.testimonial-img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--wave-mid);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.quote {
  margin: 0 0 14px;
  color: var(--wave-dark);
   font-family: 'Petrona', serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  text-indent: 24px;
}


.author {
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card::before { font-size: 56px; left: 14px; }
}

/* Download Section */
.download-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #a0e7e5, #b0cbe9, #d8b4f8) !important;
  color: #333;
  margin-top: -1px;
}

.download-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 20px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(123, 94, 167, 0.15);
}

.download-text {
  flex: 1;
  min-width: 300px;
}

.download-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #7b5ea7, #40c9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   font-family: 'Source Serif Pro', serif;
  font-weight: 700;
}

.download-text p,
.download-text ul li {
  color: #444;
  font-family: 'Petrona', serif;
  font-weight: 400;
  font-size: 1.2rem;
}
.store-buttons {
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  margin-right: 8px;
}

.store-btn:last-child {
  margin-right: 0;
}

.store-btn img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

.store-btn img:hover {
  transform: scale(1.12);
}

.download-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}


.download-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(123, 94, 167, 0.25));
  margin-bottom: 60px;
}


.welcome {
  font-family: 'Courgette', cursive;
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 12px;
    animation-fill-mode: forwards;
  background: linear-gradient(270deg, #00bfa6, #40c9ff, #7b2ff7, #40c9ff, #00bfa6);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: scale(0.8);
  filter: blur(4px);
  animation: welcomeBloom 1.2s ease forwards,
             gradientMove 6s ease-in-out infinite;
  animation-delay: 0.5s, 1.7s;
}


@keyframes welcomeBloom {
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.switch-form {
  margin-top: 10px;
  font-size: 0.9rem;
  text-align: center;
}

.switch-form a {
  color: var(--wave-deep);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.switch-form a:hover {
  color: #7b2ff7;
}

/* Shared scroll reveal for all non-hero sections */
.animate-once {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.animate-once.visible {
  opacity: 1;
  transform: translateY(0);
}

#hero {
  opacity: 0;
  animation: fadeInHero 0.8s ease-out forwards;
}

@keyframes fadeInHero {
  from { opacity: 0; }
  to { opacity: 1; }
}

.author {
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
}

.author .occupation {
  display: block;
  font-size: 0.85rem;
   font-family:'Petrona normal';
  font-weight: 400;
  color: #6c757d;
  margin-top: 0.2rem;
}