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

body {
  font-family: Arial, sans-serif;
}
/* 
.header {
  width: 100%;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

.container {
  max-width: 100%;
  width: 100%;
  height: 90px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 100px;
  height: 81px;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  gap: 40px;
}

.nav-desktop a {
  color: #49516f;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: #dd731b;
}

.btn-desktop {
  background: #dd731b;
  color: white;
  padding: 8px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: opacity 0.3s;
}

.btn-desktop:hover {
  opacity: 0.9;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #49516f;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: white;
  width: 100%;
  padding: 20px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  color: #49516f;
  font-size: 1.1rem;
  text-decoration: none;
}

.mobile-menu a:hover {
  color: #dd731b;
}

.btn-mobile {
  background: #dd731b;
  color: white;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu.active {
  display: block;
}

@media (max-width: 480px) {
  .logo img {
    width: 80px;
    height: auto;
  }
} */

/* Responsive */
/* @media (max-width: 768px) {
  .nav-desktop,
  .btn-desktop {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .container {
    height: auto;
    padding: 10px 20px;
  } */


/* Hero Section */

.hero-section {
  width: 100%;
  padding: 64px 0;
}

.hero-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .hero-wrapper {
    flex-direction: row;
    height: 638px;
  }
  .hero-section {
    padding-top: 100px; /* header ke neeche space */
  }
}

.hero-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 24px;
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-left {
    width: 50%;
    padding: 40px 80px;
  }
}

.hero-left h1 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold;
  color: #1a281f;
  line-height: 1.3;
  font-family: "Playfair Display", serif;
}

@media (min-width: 768px) {
  .hero-left h1 {
    font-size: 3rem; /* text-5xl */
  }
}

.highlight-text {
  position: relative;
  display: inline-block;
}

.highlight-bar {
  display: none;
}

@media (min-width: 640px) {
  .highlight-bar {
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 6px;
    width: 100%;
    background-color: #f9b17a;
    z-index: -10;
    border-radius: 4px;
  }
}

.hero-left p {
  color: #333;
  margin-top: 24px;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .hero-left p {
    font-size: 1.125rem;
  }
}

.hero-button {
  margin-top: 32px;
  background-color: #dd731b;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: fit-content;
}

.hero-button:hover {
  opacity: 0.9;
}

.hero-right {
  width: 100%;
  height: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .hero-right {
    width: 50%;
  }
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  display: none;
}

@media (min-width: 768px) {
  .hero-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent, #fef3e6);
  }
  .hero-right img {
    height: auto;
  }
  .hero-button {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Our Members */

.members-container {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 1rem;
}

.members-header {
  text-align: center;
  margin-bottom: 3rem;
}

.members-header h1 {
  color: #dd731b;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.members-header p {
  color: #4c2203;
  font-size: 2rem;
  max-width: 600px;
  margin: auto;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.member-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 300px;
  cursor: pointer;
}

.member-card.tall {
  grid-row: span 2;
  height: 620px;
}

.member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.member-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.4),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: white;
}

.overlay h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: bold;
}

.details {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem 1rem;
}

.member-card:hover .details {
  max-height: 100px;
}

/* How it Works */

.how-it-works {
  background-color: #fff2dc;
  padding: 64px 24px;
}

.how-header {
  text-align: center;
  margin-bottom: 56px;
}

.how-header h4 {
  color: #dd731b;
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.how-header h2 {
  font-size: 28px;
  color: #4e2600;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .how-header h2 {
    font-size: 36px;
  }
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .steps-container {
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
}

.step-box {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  flex: 1;
  max-width: 300px;
  text-align: center;
}

.step-box.no-bg {
  background: transparent;
  box-shadow: none;
}

.icon-circle {
  background: #dd731b;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon-circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.icon-circle.transparent {
  background: transparent;
}

.step-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: #4e2600;
  margin-top: 12px;
}

.step-box p {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

.arrow-img {
  display: none;
}

@media (min-width: 768px) {
  .arrow-img {
    display: block;
    width: 160px;
    height: auto;
  }

  .arrow-1 {
    margin-top: -40px;
  }

  .arrow-2 {
    margin-top: -20px;
    transform: scaleX(-1);
  }
}

/* Testimonial Section */
.testimonial-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.testimonial-heading {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-heading h2 {
  color: #dd731b;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-heading p {
  color: #4c2203;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 15px;
}

.testimonial-icon {
  width: 60px;
  height: auto;
}

.testimonial-wrapper {
  position: relative;
}

.custom-prev,
.custom-next {
  background: #dd731b;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.3s ease;
}

.custom-prev:hover,
.custom-next:hover {
  background: #b65e16;
}

.custom-prev {
  left: -50px;
}

.custom-next {
  right: -50px;
}

.testimonial-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.testimonial-heading img{
    width: 200px;
display: block;      /* block display zaruri hai auto margin ke liye */
  margin: 0 auto ; /* top 0, bottom 15px, left-right auto */
  object-fit: cover;   /* image distort na ho */
}


.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;      /* block display zaruri hai auto margin ke liye */
  margin: 0 auto 15px ; /* top 0, bottom 15px, left-right auto */
  object-fit: cover;   /* image distort na ho */
}


.testimonial-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 18px;
  color: #4c2203;
  margin-bottom: 5px;
}

.testimonial-card span {
  font-size: 14px;
  color: gray;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 40px 15px;
  }

  .testimonial-heading p {
    font-size: 22px;
  }

  .custom-prev,
  .custom-next {
    width: 32px;
    height: 32px;
  }

  .custom-prev {
    left: -20px;
  }

  .custom-next {
    right: -20px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 30px 10px;
  }

  .testimonial-heading h2 {
    font-size: 16px;
  }

  .testimonial-heading p {
    font-size: 18px;
  }

  .testimonial-card {
    padding: 15px;
  }

  .testimonial-card p {
    font-size: 13px;
  }

  .testimonial-card h4 {
    font-size: 16px;
  }

  .custom-prev,
  .custom-next {
    width: 28px;
    height: 28px;
    font-size: 14px;
    top: auto;
    bottom: -40px;
    transform: none;
  }

  .custom-prev {
    left: 30%;
  }

  .custom-next {
    right: 30%;
  }
}

/* Download Section */

.download-section {
  background-color: #fff7f0;
  padding: 4rem 1.5rem;
}

.download-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2.5rem;
}

.download-image {
  width: 100%;
  text-align: center;
}

.download-image img {
  width: 100%;
  max-width: 600px; /* matches max-w-xl */
  height: auto;
}

.download-text {
  width: 100%;
  text-align: center;
}

.download-text h2 {
  font-size: 1.25rem; /* text-xl */
  font-weight: bold;
  color: #dd731b;
}

.download-text .main-heading {
  font-size: 1.5rem; /* text-2xl */
  font-weight: bold;
  color: #000000;
  margin-top: 1rem;
}

.download-text .description {
  margin-top: 1rem;
  color: #414141;
  font-size: 1rem;
  line-height: 1.6;
}

.app-buttons {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.app-buttons img {
  height: 48px; /* matches h-12 */
  object-fit: contain;
}

/* Responsive */
@media (min-width: 768px) {
  .download-container {
    flex-direction: row;
    padding: 0 5rem; /* md:px-20 */
  }

  .download-text {
    text-align: left;
  }

  .download-text .main-heading {
    font-size: 2.25rem; /* md:text-4xl */
  }

  .download-text .description {
    font-size: 1.125rem; /* md:text-lg */
  }

  .app-buttons {
    justify-content: flex-start;
  }
}

/* Footer section */

.footer {
  background-color: #4c2203;
  color: white;
  font-family: sans-serif;
}

/* Top Section */
.footer-top {
  max-width: 1280px; /* matches max-w-7xl */
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo img {
  width: 8rem; /* w-32 */
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.25rem; /* text-xl */
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.875rem; /* text-sm */
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-store {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-store img {
  height: 40px; /* h-10 */
}

/* Headings in other columns */
.footer-heading {
  font-size: 1.125rem; /* text-lg */
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Links list */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem; /* text-sm */
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f97316; /* orange-400 */
}

/* Social media */
.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social img {
  width: 24px;
  height: 24px;
  transition: opacity 0.2s ease;
}

.footer-social a:hover img {
  opacity: 0.75;
}

/* Bottom Section */
.footer-bottom {
  border-top: 1px solid #6b7280; /* border-gray-500 */
  padding: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .brand {
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #f97316;
}

/* Responsive */
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
  }
}
