/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
} */

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #fff;
  color: #101828;
}


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 0 5%;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 42, 33, 0.85) 30%,
    rgba(18, 10, 33, 0.5) 70%
  );
  z-index: -1;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* 👈 move content to right */
  text-align: left;
  padding: 0 8%;
}

.hero-content {
  max-width: 700px;
  color: #fff;
  text-align: left; /* 👈 optional: align text right for aesthetic */
  margin-top: 95px;
  font-weight: bold;
}


.tagline {
  font-size: 0.95rem;
  color: rgb(197, 179, 88);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero h1 span {
  color: #e0a75f;
}

.desc {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

.hero-buttons {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
}

.btn.primary {
  background: linear-gradient(90deg, #b36a2e, #e0a75f, #e0a75f, #e0a75f, #e0a75f, #c47b3c);
  color: rgb(30, 43, 60);
}

.btn.secondary {
  background: transparent;
  border: 2px solid #b8870bbf;
  background: linear-gradient(90deg, #b36a2e, #e0a75f, #e0a75f, #e0a75f, #e0a75f, #c47b3c);
  color: rgb(30, 43, 60);
}

.btn:hover {
  transform: scale(1.05);
}

.stats {
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.stat-item strong {
  display: block;
  font-size: 1.3rem;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid #fff;
}
.fade-in {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/*blog section*/
.stats-section {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(30, 43, 60);
}

/* ===== Heading ===== */
.blog-heading {
  text-align: center;
  background-color: rgb(30, 43, 60);
  margin-bottom: -5px;
}

.blog-heading h2 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b36a2e, #e0a75f, #e0a75f, #e0a75f, #e0a75f, #c47b3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.blog-heading p {
  font-size: 1.1rem;
  color: #d1d1d1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== Stats Grid ===== */
.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.stat-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.stat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay shade */
.stat-card .shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Text overlay */
.stat-card .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20px);
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: all 0.5s ease;
}

.stat-card .text h2 {
  font-size: 2.8rem;
  font-weight: 800;
}

.stat-card .text p {
  font-size: 1.1rem;
  margin-top: 8px;
  letter-spacing: 1px;
}

/* Hover effects */
.stat-card:hover img {
  transform: scale(1.2);
}

.stat-card:hover .shade {
  opacity: 1;
}

.stat-card:hover .text {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-heading h2 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .blog-heading h2 {
    font-size: 1.7rem;
  }

  .blog-heading p {
    font-size: 0.95rem;
    padding: 0 20px;
  }

  .stat-card .text h2 {
    font-size: 2.2rem;
  }

  .stat-card .text p {
    font-size: 1rem;
  }
}
/* Who We Are Section */
.who-we-are {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #faf7ff 0%, #f3f1f7 100%);
  margin-bottom: -28px;
}

/* CONTAINER */
.who-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

/* LEFT IMAGE */
.who-left img {
  width: 100%;
  height: 75vh;
  max-width: 480px;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* RIGHT CONTENT */
.who-right {
  max-width: 575px;
}

.who-subtitle {
  font-size: 1.4rem;
  letter-spacing: 1px;
  font-weight: 600;
  color: #e0a75f;  /* darker blackish purple */
  margin-bottom: 0.7rem;
}

.who-title {
  font-size: 2.5rem;
  color: rgb(30, 43, 60);; /* deep blackish purple */
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.who-desc {
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* 🔸 Trusted Partner + Image beside */
.who-partner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.who-box {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, #0f1a2b, #1e2b3c, #324b68, #1e2b3c);

  color: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(43, 11, 73, 0.25);
  min-width: 250px;
}

.who-box h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.who-box p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.partner-img img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.stats-section p{
  color: #ddd
}

/* CHECKLIST */
.who-list {
  list-style: none;
  margin-bottom: 2rem;
}

.who-list li {
  margin: 10px 0;
  color: #444;
  font-size: 1rem;
}

/* BUTTON */
.who-btn {
  background: linear-gradient(90deg, #b37a37, #c38c4a, #e0b878);

  border: none;
  padding: 14px 40px;
  border-radius: 40px;
  color: rgb(30, 43, 60);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.who-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(75, 31, 101, 0.4);
}

/* FADE-UP ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}


.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 20px 8%;
  background-color: rgb(30, 43, 60);
}

.gallery-card {
  background-color: #12141f;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-content {
  padding: 20px;
  text-align: center;
}

.gallery-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-content p {
  font-size: 0.95rem;
  color: #ccc;
}


/* --- Testimonials Section --- */
.testimonials-section {
  background: linear-gradient(180deg, #faf7ff 0%, #f3f1f7 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
  margin-top: -61px;
}

.section-subtitle {
  color: #c47b3c;
  font-weight: 700;
  letter-spacing: 2px;
  /* text-transform: uppercase; */
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: rgb(30, 43, 60);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-transform: uppercase; */
  margin-bottom: 15px;
}

.section-desc {
  color: #6b6b6b;
  font-size: 1.1rem;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* --- Horizontal Scroller --- */
.testimonial-slider {
  overflow: hidden;
  position: relative;
  margin-bottom: 45px;
  
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scrollLeft 40s linear infinite;
  width: max-content;
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 600px) {
  .section-subtitle {
    padding: 0px;
  }

  
}
/* --- Testimonial Card --- */
.testimonial-card {
  background: #1c2b3a;
  border-radius: 12px;
  padding: 25px;
  width: 320px;
  flex-shrink: 0;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: #c47b3c;
}

.testimonial-card h3 {
  color: #f7d7a3;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.testimonial-card p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* --- Author --- */
.author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #c47b3c;
  margin-right: 40px;
}

.author-info .name {
  color: #f7d7a3;
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: -58px;
}

.date {
  color: #aaa;
  font-size: 0.85rem;
}

/* --- Button --- */
.btn {
  background: linear-gradient(90deg, #b36a2e, #c47b3c, #e0a75f);
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 1rem;
  color: #1e2b3c;
  font-weight: 700;
  cursor: pointer;
  margin-top: 60px;
  transition: all 0.3s ease;
}
.btn-2{
    background: linear-gradient(90deg, #b36a2e, #c47b3c, #e0a75f);
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 1rem;
  color: #1e2b3c;
  font-weight: 700;
  cursor: pointer;
  margin-top: 60px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  width: 100%;
}
/* Button Container */
.gallery-btn-container {
    text-align: center;
    margin-top: -7px;
    margin-bottom: 60px;
    background: rgb(30, 43, 60);
    padding: 40px 0;
    border-radius: 2px
}


/* Button Style */
.gallery-btn {
  background: linear-gradient(90deg, #b37a37, #c38c4a, #e0b878);

  border: none;
  padding: 14px 40px;
  border-radius: 40px;
  color: rgb(30, 43, 60);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover Effect */
.gallery-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 15px rgba(75, 31, 101, 0.4);
}

/* Focus (for accessibility) */
/* .gallery-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(106, 0, 244, 0.4);
} */

/* Responsive */
@media (max-width: 768px) {
  .gallery-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .gallery-btn {
    padding: 10px 24px;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}



.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(196, 123, 60, 0.6);
}

/*form*/


/* --- Responsive --- */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonial-track {
    animation-duration: 60s;
  }

  .testimonial-card {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .testimonial-card {
    width: 250px;
    padding: 20px;
  }

  .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* 🌐 Responsive */
@media (max-width: 768px) {
  .gallery {
    padding: 30px 5%;
    gap: 1rem;
  }

  .gallery-card img {
    height: 200px;
  }

  .gallery-content h3 {
    font-size: 1rem;
  }

  .gallery-content p {
    font-size: 0.9rem;
  }
}
.numbers-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 90%;
}

.numbers-card {
  flex: 1 1 33%;
  position: relative;
  height: 180px; /* ⬅️ Reduced from 250px */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e0a75f;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

/* 🎨 Gradient Backgrounds */
.gradient1 {
  background: linear-gradient(135deg, #7028e4, #e5b2ca);
}

.gradient2 {
  background: linear-gradient(135deg, #f8a1a1, #d9a7c7);
}

.gradient3 {
  background: linear-gradient(135deg, #6a00f4, #a566ff);
}

/* ✨ Hover Effect */
.numbers-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.numbers-content {
  position: relative;
  z-index: 2;
}

.numbers-content h2 {
  font-size: 3rem; /* ⬅️ Slightly reduced for proportion */
  font-weight: 800;
  margin: 0;
}

.numbers-content p {
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin-top: 8px;
  text-transform: uppercase;
}
.gallery-heading {
  text-align: center;
  padding: 35px 20px;
  background: rgb(30, 43, 60);
  color: #fff;
  border-radius: 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Heading style */
.gallery-heading h2 {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b36a2e, #c47b3c, #e0a75f, #f7d7a3, #c47b3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  margin-bottom: 15px;
}

/* Paragraph style */
.gallery-heading p {
  font-size: 1.1rem;
  color: #d9d9d9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
/* 🌌 Reservation Section */
/* .reservation-section {
  position: relative;
  background: #fff;
  background-size: 400% 400%;
  animation: shinyNavy 10s ease infinite;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
  height: 40vh;
} */

/* @keyframes shinyNavy {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.reservation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff
  z-index: 1;
}

.reservation-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.5s ease forwards;
      margin-top: -46px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* ✨ Tag Line */
/* .reservation-tag {
  font-size: 1rem;
  color: #e0a75f;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeIn 2s 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
} */

/* 🌟 Glowing Gold Title */
/* .reservation-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #ffcc80, #e0a75f, #ffcc80);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldGlow 4s linear infinite;
} */

/* @keyframes goldGlow {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 200%;
  }
} */

/* 💬 Description */
/* .reservation-desc {
  font-size: 1.1rem;
  color: #cfd8e3;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeIn 2s 0.5s forwards;
} */

/* 🎇 Buttons */
.reservation-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 3s infinite ease-in-out;
}

.btn-primary {
  background: linear-gradient(90deg, #b36a2e, #c47b3c, #e0a75f);
  border: none;
  color: #1e2b3c;
}

.btn-primary:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #e0a75f, #c47b3c, #b36a2e);
}

.btn-outline {
  border: 2px solid #e0a75f;
  background: transparent;
  color: #e0a75f;
}

.btn-outline:hover {
  background: #e0a75f;
  color: #1e2b3c;
  transform: scale(1.05);
}

/* 💫 Button Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(224, 167, 95, 0);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(224, 167, 95, 0.4);
  }
}

/* 📱 Mobile Responsive Design */
@media (max-width: 768px) {
  .reservation-section {
    padding: 80px 20px;
  }

  .reservation-title {
    font-size: 2rem;
  }

  .reservation-desc {
    font-size: 1rem;
  }

  .reservation-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .reservation-title {
    font-size: 1.6rem;
  }

  .reservation-desc {
    font-size: 0.95rem;
  }

  .btn-primary,
  .btn-outline {
    width: 90%;
    font-size: 0.9rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-heading {
    padding: 40px 15px;
  }

  .gallery-heading h2 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .gallery-heading p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-heading h2 {
    font-size: 1.5rem;
  }

  .gallery-heading p {
    font-size: 0.95rem;
  }
}

/* 🔹 Mobile Responsive */
@media (max-width: 992px) {
  .numbers-card {
    flex: 1 1 50%;
    height: 160px; /* ⬅️ Reduced */
  }

  .numbers-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .numbers-card {
    flex: 1 1 100%;
    height: 140px; /* ⬅️ Reduced */
  }

  .numbers-content h2 {
    font-size: 2rem;
  }

  .numbers-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    margin: 0 auto;
  }
}
/* RESPONSIVE DESIGN */
@media (max-width: 950px) {
  .who-container {
    flex-direction: column;
    text-align: center;
  }

  .who-right {
    max-width: 100%;
  }

  .who-partner {
    justify-content: center;
  }

  .partner-img img {
    width: 120px;
    height: 120px;
  }

  .who-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .who-btn {
    width: 56%;
  }

  .who-left img {
    width: 100%;
    margin-top: -25px;
  }

  .who-title {
    font-size: 1.4rem;
  }

  .who-desc {
    font-size: 0.9rem;
  }

  .who-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}




/* 🔹 Responsive Design */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding: 0 8%;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }
  .hero-video {
    object-fit: cover;
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .desc {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-top: 20px;
  }
}
}