﻿body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff7f5;
  color: #333;
}
.price-card {
  background: linear-gradient(135deg, var(--pink), var(--teal));
  color: white;
  text-align: center;
  padding: 40px;
  border-radius: 30px;
  max-width: 400px;
  margin: 0 auto 50px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
/* Order page layout */
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  align-items: center;
}

/* Price card */
.price-card {
  background: white;
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.price-card h2 {
  margin-bottom: 10px;
}

.price {
  font-size: 3rem;
  font-weight: 600;
  color: var(--pink);
  margin: 10px 0;
}

.price-note {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Order info text */
.order-info p {
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Form section */
.order-form {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 20px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .order-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.price {
  font-size: 3rem;
  font-weight: 600;
  margin: 15px 0;
}

.price-note {
  font-size: 1.05rem;
  opacity: 0.95;
}

:root {
  --purple: #2e2459;
  --teal: #2ec4b6;
  --pink: #ff5fa2;
  --yellow: #ffd166;
  --bg: #fafafa;
}
.order-info {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  text-align: center;
}

.product-image {
  max-width: 800px;
  margin: 50px auto;
  text-align: center;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg);
  color: var(--purple);
}

.site-header {
  background: white;
  border-bottom: 4px solid var(--pink);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}


.header-container {
  max-width: 1100px;
  margin: auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 45px;
  width: auto;
}


.brand-name {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--pink);
}


.nav a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--purple);
  font-weight: 500;
}

.nav a:hover {
  color: var(--pink);
}
.container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 30px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.team-card {
  background: white;
  padding: 40px 25px 30px; /* more space at the top */
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}


.team-card h3 {
  margin-bottom: 5px;
}

.team-card p {
  color: var(--teal);
  font-weight: 500;
}



.hero {
  background: linear-gradient(135deg, var(--pink), var(--teal));
  color: white;
  padding: 120px 30px;
  text-align: center;
  border-radius: 0 0 50px 50px;
}



.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: white;
}

.hero p,
.product-highlight p {
  max-width: 650px;
  margin: 20px auto 25px; /* centered + nice spacing */
  line-height: 1.6;
}

h1, h2 {
  color: var(--purple);
}

h2 {
  position: relative;
}
.card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  margin: 40px 0;
}

h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--teal);
  display: block;
  margin-top: 8px;
  border-radius: 10px;
}

.btn {
  background: var(--yellow);
  color: var(--purple);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 20px;
}

.btn:hover {
  background: var(--pink);
  color: white;
}


section {
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
}


.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 35px;
}

.feature {
  background-color: white;
  padding: 25px;
  border-radius: 18px;
  font-weight: 500;
  text-align: center;
}

iframe {
  width: 100%;
  height: 600px;
  border: none;
  margin-top: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #ffb3a7;
  margin-top: 40px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #666;
}
/* Meet the Team Hero */
.team-hero {
  background: linear-gradient(135deg, var(--pink), var(--teal));
  color: white;
  text-align: center;
  padding: 80px 20px 60px;
  border-radius: 0 0 40px 40px;
}

.team-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: white;
}

.team-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Team cards upgrade */
.team-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

/* Team photo */
.team-photo-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 30px;
}
.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.team-photo-section img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Pastel circle behind photos */
.team-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 95, 162, 0.15); /* soft pink */
  display: flex;
  align-items: center;
  justify-content: center;
 margin: 10px auto 20px;
}

.team-photo img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  object-position: center top; /* THIS is the key line */
  border-radius: 50%;
  transition: transform 0.3s ease;
}


/* Hover zoom effect */
.team-card:hover .team-photo img {
  transform: scale(1.08);
}
.team-card:nth-child(even) .team-photo {
  background: rgba(46, 196, 182, 0.18);
}
.team-card h3 {
  margin-top: 10px;
  font-size: 1.1rem;
}


@media (max-width: 600px) {
  .team-hero h1 {
    font-size: 2rem;
  }

  .team-card {
    padding: 20px;
  }
}
.product-highlight {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.feature {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
section {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  section {
  padding: 80px 20px; /* more breathing room */
  max-width: 1000px;
  margin: 0 auto 60px; /* extra space below each section */
}
}
.btn {
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
}
/* Order steps */
.order-steps {
  max-width: 900px;
  margin: 60px auto;
  text-align: center;
}

.order-steps h2 {
  margin-bottom: 25px;
}


.order-trust {
  max-width: 800px;
  margin: 40px auto 80px;
  padding: 25px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: center;
  font-size: 0.95rem;
  color: #555;
}
/* Soft background shapes */
.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  z-index: -1;
}

/* Pink shape */
.bg-shape-1 {
  width: 320px;
  height: 320px;
  background: var(--pink);
  top: 15%;
  left: -120px;
}

/* Teal shape */
.bg-shape-2 {
  width: 380px;
  height: 380px;
  background: var(--teal);
  bottom: 10%;
  right: -150px;
}
/* Product visual section */
.product-visual {
  text-align: center;
  margin: 80px auto;
  padding: 0 20px;
}

.product-visual h2 {
  margin-bottom: 10px;
}

/* Arrow styling */
.arrow {
  font-size: 2rem;
  color: var(--pink);
  margin-bottom: 25px;
  animation: bounce 1.8s infinite;
}

/* Subtle arrow animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Product image card */
.product-image-card {
  display: inline-block;
  background: white;
  padding: 25px;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Image itself */
.product-image-card img {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
}
