* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* ------------------------------------------------BANNER SECTION------------------------------------ */
.luxury-hero {
  position: relative;
  height: 100vh;
  background: url("../assets/images/cosmic-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* overlay */
.luxury-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}

/* content */
.hero-content {
  position: relative;
  z-index: 2; /* 👈 text upar ayega */
  color: #fff;
  max-width: 900px;
}

/* heading */
.animated-text {
  font-size: 62px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
}

/* animation */
.animated-text span {
  opacity: 0;
  display: inline-block;
  transform: translateY(30px);
  animation: reveal 0.4s ease forwards;
  animation-delay: calc(0.08s * var(--i));
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.zodiac-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  z-index: 2;

  box-shadow: 
    0 0 40px rgba(212,175,55,0.3),
    inset 0 0 30px rgba(212,175,55,0.2);

  animation: rotateZodiac 25s linear infinite;
}

.zodiac-ring::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(212,175,55,0.4);
}

@keyframes rotateZodiac {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===================== */
/* STARS */
/* ===================== */
.stars {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stars::before,
.stars::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;

  box-shadow:
    100px 200px white,
    300px 400px white,
    500px 150px white,
    700px 300px white,
    900px 100px white;

  animation: moveStars 10s linear infinite;
}

.stars::after {
  animation-duration: 15s;
  opacity: 0.5;
}

@keyframes moveStars {
  from { transform: translateY(0); }
  to { transform: translateY(-1200px); }
}

.btn-glow {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(45deg, #d4af37, #b8962e);
  color: #fff;
  font-weight: 400px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.4s ease;
  margin: 20px 300px 0px 300px;
}

/* hover effect */
.btn-glow:hover {
  transform: scale(1.08);
    background: #fff;
    color: #000;
  box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* ===================== */
/* RESPONSIVE DESIGN */
/* ===================== */

/* Tablets */
@media (max-width: 992px) {
  .animated-text {
    font-size: 40px;
    letter-spacing: 2px;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
            padding-top: 48px;
  }

  .zodiac-ring {
    width: 250px;
    height: 250px;
  }

  .btn-glow {
    margin: 20px auto 0;
    display: block;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .luxury-hero {
    height: auto;
    padding: 80px 20px;
  }

  .animated-text {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .zodiac-ring {
    width: 180px;
    height: 180px;
  }

  .btn-glow {
   width: 52%;
    padding: 12px;
    margin: 20px 0 0 0;
            margin-left: 76px;
  }

  .stars::before,
  .stars::after {
    box-shadow:
      50px 100px white,
      150px 200px white,
      250px 150px white,
      350px 300px white;
  }
}
/* ----------------------------------------------------------------------------------------------------------- */
/* ABOUT SECTION */
.about {
  padding: 80px 0;
  position: relative;
  z-index: 1; /* ensures it stays above other sections */
}

/* Container */
.about .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* important fix */
}

/* Text */
.about-text {
  flex: 1 1 500px;
}

/* Heading */
.about-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #d4af37;
  position: relative;
}



/* Paragraph */
.about-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 15px;
      text-align: justify;
}

/* Image */
.about-image {
  flex: 1 1 500px;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
      border-radius: 43px;
}

/* Button */
.about-btn {
  display: inline-block;
  margin-top: 15px;
  background: #d4af37;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.about-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
        box-shadow: 0 0 25px #d4af37;

}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .about .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /*  tight gap */
  }

  /* image wrapper */
  .about-image {
    order: -1;
    margin: 0;
    padding: 0;
    line-height: 0; /* hidden gap killer */
  }

  .about-image img {
    display: block;
    margin: 0 auto;
  }

  /* text wrapper */
  .about-text {
    margin: 0;
    padding: 0;
  }

  /* MAIN FIX */
  .about-text h2 {
    margin: 5px 0 8px;
    text-align: center;
  margin-left: auto;
  margin-right: auto;
          font-size: 32px;
  }
  .about-text h2::after {
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
    .about-text h2::after {
        left: 50%;
        transform: translateX(-13%);
    }
}

  .about-text p {
    margin: 0 0 10px;
    margin-top: 20px;
        text-align: justify;

  }

}
.about-btn {
  display: block;        /*  inline-block remove */
  width: fit-content;    /*  width according content */
  margin: 15px auto 0;   /* auto = center */
  text-align: center;
}
@keyframes zoomFade {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.about-image img {
  animation: zoomFade 1s ease forwards;
  opacity: 0;
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

p {
  text-align:center;
  padding-top: 16px;
}

h1, h2, h3 {
    text-align: center;
  }

/* -------------------------------------------testimonial-section ---------------------------------*/
/* SECTION */
.google-reviews-carousel {
  padding: 60px 0;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.google-reviews-carousel h2 {
  font-size: 34px;
  color: #d4af37;
  margin-bottom: 40px;
}

/* OUTER CONTAINER (for side spacing) */
.carousel-container {
  width: 90%;
  margin: auto;
  overflow: hidden;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: 25px; /* better spacing */
  width: max-content;
  animation: scroll 35s linear infinite;
}

/* CARD */
.review-card {
  flex: 0 0 280px;
  min-height: 160px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background: #000;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1.5px solid #d4af37;
  border-radius: 18px;
  padding: 20px;

  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
  transition: 0.3s ease;

  position: relative;
  overflow: hidden;
    padding-top: 30px; /* space for image */

}


/* HOVER */
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: 0.6s;
}

.review-card:hover::before {
  left: 100%;
}

/* TOP SECTION */
.review-top {
  display: flex;
  align-items: center;   /*  ye main fix hai */
  justify-content: space-between;
  gap: 10px;
}
/* force same line */
.review-top img {
  vertical-align: middle;
}

/* GOOGLE LOGO */
.google-logo {
  width: 65px;
  height: auto;
  display: block;
}

/* CLIENT IMAGE */
.client-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  display: block; 
}

/* STARS */
.stars {
  color: #d4af37;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 10px;
}

/* TEXT */
.review-card p {
  color: #eaeaea;
  font-size: 14px;
  line-height: 1.5;
  margin: 15px 0;
}

/* NAME */
.review-card h4 {
  color: #d4af37;
  font-size: 14px;
  margin-top: 10px;
}

/* SMOOTH INFINITE SCROLL */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*  MOBILE (up to 576px) */
@media (max-width: 576px) {

  .google-reviews-carousel {
    padding: 40px 0;
  }

  .google-reviews-carousel h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .carousel-container {
    width: 95%;
  }

  .review-card {
    flex: 0 0 220px;
    min-height: 140px;
    padding: 15px;
  }

  .google-logo {
    width: 50px;
  }

  .client-img {
    width: 32px;
    height: 32px;
  }

  .stars {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .review-card p {
    font-size: 12px;
    margin: 10px 0;
  }

  .review-card h4 {
    font-size: 12px;
  }

  .carousel-track {
    gap: 15px;
    animation: scroll 25s linear infinite;
  }
}


/* 📲 TABLET (577px - 991px) */
@media (min-width: 577px) and (max-width: 991px) {

  .google-reviews-carousel {
    padding: 50px 0;
  }

  .google-reviews-carousel h2 {
    font-size: 26px;
  }

  .carousel-container {
    width: 92%;
  }

  .review-card {
    flex: 0 0 250px;
    min-height: 150px;
    padding: 18px;
  }

  .google-logo {
    width: 55px;
  }

  .client-img {
    width: 36px;
    height: 36px;
  }

  .stars {
    font-size: 13px;
  }

  .review-card p {
    font-size: 13px;
  }

  .review-card h4 {
    font-size: 13px;
  }

  .carousel-track {
    gap: 20px;
    animation: scroll 30s linear infinite;
  }
}

/* ----------------------------------------gallery________________________ */
.gallery {
  padding: 60px 20px;
  background: #fff; /* dark premium background */
  text-align: center;
  
}
.gallery-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #d4af37;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
  transition: transform 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  width: 100%;
  padding: 15px;
  color: #d4af37;
  text-align: left;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-card:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.overlay p {
  font-size: 13px;
  color: #fff8dc;
}

/* ========================================== ACHIEVEMENTS (GLOW) ============================================================== */
.achievements {
    position: relative;
    width: 90%;          /* size control karo */
    max-width: 1100px;   /* optional limit */
    margin: 60px auto;   /* center me aa jayega */
    padding: 60px 20px;
    border-radius: 20px;
    text-align: center;
}

.achievements h2 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d4af37;
}

/* OUTER GLOW */
.achievements::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 25px;
    background: linear-gradient(
        45deg,
        #ff0000,
        #ff9900,
        #d4af37,
        #00ffcc,
        #0066ff,
        #cc00ff,
        #000
    );
    background-size: 300% 300%;
    filter: blur(18px);
    opacity: 0.6;
    z-index: -1;
    animation: glowMove 8s linear infinite;
}

/* INNER BOX */
.achievements::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 20px;
    z-index: -1;
}

/* ANIMATION */
@keyframes glowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px){

    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    
    .about-image img {
        width: 351px;
    }

    .services {
        flex-wrap: wrap;
        gap: 30px;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px){
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}


.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.ach-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.ach-card h3 {
    color: #d4af37;
    font-size: 28px;
    margin-bottom: 8px;
}

.ach-card p {
    font-size: 14px;
    color: #555;
}

/* hover */
.ach-card:hover {
    transform: translateY(-8px);
}

@media(max-width: 768px){
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px){
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------------------------------- cta -----------------------------*/
/* SECTION */
.cta {
    padding: 80px 20px;
    background: #f9f7f3;
    display: flex;
    justify-content: center;
}

/* BOX */
.cta-box {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 50px 30px;
    border-radius: 16px;
    background: #fff;
    position: relative;
}

/* GOLDEN BORDER EFFECT */
.cta-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(135deg, #d4af37, #f7e7a1, #d4af37);

    -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none; /* ✅ FIX: prevents hover blocking */
}

/* SECTION */
.cta {
  padding: 100px 20px;
  background: linear-gradient(135deg, #dfac13, #f9f3e6);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* BOX */
.cta-box {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 70px 30px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(212,175,55,0.3);
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* FLOAT ANIMATION */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* GLOW BORDER ANIMATION */
.cta-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  background: linear-gradient(45deg, #d4af37, transparent, #d4af37);
  z-index: -1;
  animation: rotate 6s linear infinite;
  display: none;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* TEXT */
.cta-box h2 {
  color: #b8962e;
  font-size: 32px;
  margin-bottom: 15px;
}


.cta-box p {
  color: #555;
  margin-bottom: 25px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(45deg, #d4af37, #b8962e);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

/* BUTTON HOVER */
.cta-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px #d4af37;
  background: #fff;
  color: #000;
}

/* Desktop pe hide */
.cta-box::before {
  display: none;
}

/* Mobile aur small tablets tak show */
@media (max-width: 991px) {
  .cta-box::before {
    display: block;
  }
}
.astro-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* WhatsApp button background glow */
.astro-whatsapp {
  background: linear-gradient(135deg, #25d366, #8a2be2);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6),
              0 0 35px rgba(138, 43, 226, 0.4);
  animation: float 2.5s ease-in-out infinite;
}

/* real icon */
.wa-icon {
  width: 32px;
  height: 32px;
  z-index: 2;
}

/* pulse ring */
.pulse-ring {
  position: absolute;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: green;
  animation: pulse 2s infinite;
  z-index: 1;
}

/* floating effect */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* pulse animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}