* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fffefc;
  color: #2d2a2a;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: 5rem 0;
}

.light-bg {
  background-color: #fefaf7;
}

h1, h2, h3, h4, .logo h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b2846b;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: #3a2c2a;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: #d9b8a4;
  color: #2d2a2a;
}

.btn-primary:hover {
  background: #c7a18b;
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 1px solid #d9b8a4;
  color: #2d2a2a;
}

.btn-outline:hover {
  background: #d9b8a4;
  transform: translateY(-3px);
}

.btn-small {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background: #d9b8a4;
  color: #2d2a2a;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-small:hover {
  background: #c7a18b;
  transform: translateX(5px);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 254, 252, 0.96);
  backdrop-filter: blur(8px);
  z-index: 1000;
  padding: 0.9rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 200px;
}

.logo h1 {
  font-size: 1.65rem;
  color: #5f3e36;
}

.navbar ul {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.navbar a {
  text-decoration: none;
  font-weight: 500;
  color: #4f3c37;
  transition: color 0.2s;
}

.navbar a:hover, .navbar a.active {
  color: #b6846b;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #5f3e36;
  cursor: pointer;
}


/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* VIDEO BACKGROUND */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* OVERLAY (DARK FOR READABILITY) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.55)
  );
  z-index: 1;
}
/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 1rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* TAGLINE */
.hero-tagline {
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ddd;
}

.hero-brand {
  /* font-size: clamp(2rem, 5vw, 4rem); */
  font-weight: 600;
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.2;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  color: #eee;
  max-width: 500px;
}

/* BUTTON WRAPPER */
.hero-content a {
  display: inline-block;
  margin: 0.3rem;
}

/* PRIMARY BUTTON */
.cta-btn,
.btn-outline {
  /* padding: 0.7rem 1.5rem; */
  border-radius: 30px;
  /* font-size: 0.9rem; */
  padding: 0.8rem 1.6rem;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.3s;
}

/* Primary */
.btn-primary {
  background: #d9b8a4;
  color: #000000;
}

.btn-primary:hover {
  background: #ffffff;
  color: #d9b8a4;
}

/* Outline */
.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* MOBILE RESPONSIVE */
/* @media (max-width: 768px) {
  .hero-brand {
    font-size: 2.5rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-content {
    padding: 0 20px;
    transform: translateY(20px);
  }
} */

/* .hero-desc {
  font-size: 1.1rem;
  margin-bottom: 2rem;
} */

.features-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item, .team-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  transition: all 0.3s;
}

.feature-item:hover, .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-item i {
  font-size: 2.5rem;
  color: #d9b8a4;
  margin-bottom: 1rem;
}


/* Team Card Images - Responsive Height */

/* Base Styles */
.team-card {
  width: 100%;
  max-width: 320px; /* 👈 mobile me width control */
  
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
  overflow: hidden;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center; /* 👈 important */
}

/* Team Card Images - Laptop/Desktop pe height badi */
.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4; 
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}


.team-card:hover img {
  transform: scale(1.02);
}

/* Team Card Typography */
.team-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: #3a2c2a;
  font-family: 'Playfair Display', serif;
}

.team-card p {
  font-size: 0.9rem;
  color: #b2846b;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.team-card .team-bio {
  font-size: 0.85rem;
  color: #6e5349;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* Team Social Icons */
.team-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.team-social a {
  width: 35px;
  height: 35px;
  background: #f3e7e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f3e36;
  transition: all 0.3s;
  text-decoration: none;
}

.team-social a:hover {
  background: #d9b8a4;
  color: white;
  transform: translateY(-3px);
}
/* Social Icons inside Team Card */
.team-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.team-social a {
  width: 35px;
  height: 35px;
  background: #f3e7e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f3e36;
  transition: all 0.3s;
  text-decoration: none;
}

.team-social a:hover {
  background: #d9b8a4;
  color: white;
  transform: translateY(-3px);
}


.page-hero {
  background: linear-gradient(135deg, #f5e6de 0%, #faf0ea 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  color: #3a2c2a;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mission-vision {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.mv-block i {
  font-size: 1.8rem;
  color: #d9b8a4;
  margin-bottom: 0.5rem;
}

.about-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.service-card {
  background: #fff;
  padding: 2rem;
  border-radius: 28px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #f1e6e0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 35px -12px rgba(0,0,0,0.08);
}

.card-icon {
  font-size: 2.4rem;
  color: #c89a82;
  margin-bottom: 1rem;
}

.price {
  font-weight: 700;
  font-size: 1.35rem;
  color: #a77159;
  margin: 1rem 0;
}

.packages-info {
  text-align: center;
  background: #fff0e9;
  border-radius: 60px;
  padding: 1rem;
}

/* GRID BASE */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2rem;
}

/* CARD */
.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5; /* 🔥 KEY FIX */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* HOVER */
.gallery-item:hover {
  transform: translateY(-6px);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.lightbox-img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 20px;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2.8rem;
  color: white;
  cursor: pointer;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details {
  list-style: none;
  margin: 1.5rem 0;
}

.contact-details li {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-details i {
  width: 32px;
  color: #b6846b;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icons a {
  background: #f3e7e1;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #5f3e36;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: #d9b8a4;
  color: white;
  transform: translateY(-3px);
}

.input-group {
  margin-bottom: 1.2rem;
}

input, textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid #e5dbd5;
  border-radius: 28px;
  font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #d9b8a4;
}

.full-width {
  width: 100%;
}

.form-feedback {
  margin-top: 12px;
  font-size: 0.85rem;
}

.footer {
  background: #faf3ef;
  padding: 3rem 0 1.5rem;
  color: #6e5349;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TOP */
.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* LINKS */
.footer-links {
  margin-bottom: 25px;
}

.footer-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #6e5349;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c29b82;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 15px;
  font-size: 0.85rem;
  opacity: 0.7;
}


#insta {
  color: #000;              /* black color */
  text-decoration: none;   /* underline remove */
}