/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;500;600&display=swap');

html, body {
  overflow-x: hidden;
}
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ROOT */
:root {
  --purple-dark: #2d1b4e;
  --purple-main: #7c3aed;
  --gold: #d4af37;
  --white: #ffffff;
  --bg: #faf5ff;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: #333;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 15px 60px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--purple-main);
}
.nav-logo {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  object-fit: contain;
  vertical-align: middle;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: var(--purple-main);
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4c1d95, #db2777);
  padding: 0 5%;
}

.container {
  display: flex;
  align-items: center;
  max-width: 1300px;
  width: 100%;
  gap: 80px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.video-container {
  width: 100%;
  max-width: 450px;
  height: 550px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HERO TEXT */
.hero-content {
  flex: 1.2;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.amp {
  color: var(--gold);
  font-style: italic;
}

.tagline {
  font-size: 1.1rem;
  letter-spacing: 1px;   /* 🔥 reduce from 4px */
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  margin-bottom: 20px;

  display: flex;          /* 🔥 add this */
  flex-wrap: wrap;        /* 🔥 add this */
  justify-content: center;
  gap: 6px 10px;          /* 🔥 spacing between items */
}

.tagline span {
  white-space: nowrap;    /* 🔥 MOST IMPORTANT FIX */
}




.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 35px;
}

/* BUTTON */
.hero-btns {
  display: flex;
  gap: 15px;
}
.btn-main {
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  background: white;
  color: var(--purple-dark);
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  
}


.btn-main:hover {
  background: var(--gold);
  color: white;
}



/* ================= MOBILE FIX ================= */


/* SECTIONS */
/* ABOUT SECTION PREMIUM */
.about-container {
    margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 180px;

   max-width: 1300px;     /* 🔥 ADD */
  margin-left: auto;     /* 🔥 ADD */
  margin-right: auto;    /* 🔥 ADD */
  padding: 0 5%;
}

section {
  width: 100%;
  overflow: visible; /* prevents shift */
}

/* IMAGE */
.about-image img {
  width: 100%;
  max-width: 420px;
  height: 500px;
  border-radius: 25px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
  margin-left: 10px;
}

/* TEXT SIDE */
.about-content {
  max-width: 550px;
}

/* SMALL LABEL (LIKE TAGLINE) */
.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple-main);
  margin-bottom: 15px;
}

/* BIG TITLE (HERO STYLE) */
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  color: var(--purple-dark);
  margin-bottom: 20px;
}

/* DESCRIPTION */
.about-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
}

/* SERVICES */
/* SECTION TITLE */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--purple-dark);
  margin-bottom: 40px;
  margin-top: 25px;
  text-align: center;
}

/* SERVICES GRID */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* CARD (PREMIUM STYLE) */
/* CARD WITH VIDEO */
/* SECTION TITLE */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
  color: var(--purple-dark);
  margin-bottom: 40px;
}

/* WRAPPER */
.services-wrapper {
  overflow: hidden;
  position: relative;
}

/* FADE EDGES (PREMIUM LOOK) */
.services-wrapper::before,
.services-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 30px;
  height: 100%;
  z-index: 3;
}

.services-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #faf5ff, transparent);
}

.services-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #faf5ff, transparent);
}

/* TRACK */
.services-track {
  display: flex;
  gap: 30px;
  width: max-content;

  animation: scrollX 30s linear infinite;
}

/* PAUSE ON HOVER */
.services-wrapper:hover .services-track {
  animation-play-state: paused;
}

/* CARD */
.card {
  position: relative;
  min-width: 260px;
  height: 310px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

/* VIDEO BACKGROUND */
.card-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.7)
  );
}

/* CONTENT */
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  color: white;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* TEXT */
.card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* HOVER EFFECT */
.card:hover .card-overlay {
  background: linear-gradient(
    rgba(0,0,0,0.2),
    rgba(124,58,237,0.5)
  );
}
.card-img {
  inset: 0;
  position:absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* SCROLL ANIMATION */
@keyframes scrollX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* TESTIMONIAL */
.testimonials {
  text-align: center;
  background: #fdf4ff;
}

/* CONTACT */
form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

input, textarea {
  padding: 12px;
  margin-bottom: 10px;
}

button {
  background: var(--purple-main);
  color: white;
  border: none;
  padding: 12px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: black;
  color: white;
  margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);

}
footer p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* phone styling */
.phone {
  font-weight: 600;
  white-space: nowrap;
}


/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
}

/* RESPONSIVE */
@media (max-width: 968px) {
  .container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .video-content {
    padding: 20px;
    text-align: center;
  }
}
/* SCROLL ANIMATION BASE */
.scroll-animate {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE */
.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* LEFT SLIDE (for image) */
.slide-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease;
}

.slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* RIGHT SLIDE (for text) */
.slide-right {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease;
}

.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}
.cta-section {
  padding: 120px 10% 140px; /* extra bottom space to prevent collision */
}

/* CTA SECTION */
.cta-section {
  padding: 20px 10% 50px;
  margin-top: 20px;
  background: linear-gradient(135deg, #4c1d95, #db2777);
  color: white;
  text-align: center;
}

/* CONTAINER */
.cta-container {
  max-width: 900px;
  margin: auto;
}

/* LABEL */
.section-label {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 650;
  margin-bottom: 15px;
  opacity: 1;
  color: var(--gold);
}

/* TITLE */
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

/* DESCRIPTION */
.cta-desc {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 30px;
}

/* DETAILS GRID */
.cta-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.cta-details h4 {
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.cta-details p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* HIGHLIGHT LINE */
.cta-highlight {
  margin-top: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

/* BUTTONS */
.cta-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-main.outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn-main.outline:hover {
  background: white;
  color: var(--purple-dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-details {
    flex-direction: column;
    text-align: center;
  }
}

/* CONNECT TEXT */
.connect-text {
  margin-top: 25px;
  font-size: 1rem;
  opacity: 0.85;
}

/* SOCIAL BUTTONS WRAPPER */
.social-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* BUTTON STYLE */
.social-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: white;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

/* ICON */
.social-btn img {
  width: 26px;
  height: 26px;
}

/* HOVER EFFECT */
.social-btn:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--gold);
}

/* ===== GLOBAL FIX ===== */
section {
  padding: 80px 3%;
}

/* ===== HEADER MOBILE ===== */
@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  nav {
    gap: 15px;
    font-size: 14px;
  }
}

/* ===== HERO MOBILE ===== */
@media (max-width: 768px) {
  .container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .video-container {
    height: 350px;
  }

  .brand-title {
    font-size: 2rem;
  }

  .tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .btn-main {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

/* ===== VIDEO SECTION MOBILE ===== */
@media (max-width: 768px) {
  .video-content {
    justify-content: center;
    text-align: center;
    padding: 20px;
  }

  .video-text h2 {
    font-size: 2.2rem;
  }

  .video-text p {
    font-size: 0.95rem;
  }
}

/* ===== ABOUT MOBILE ===== */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-image img {
    height: 350px;
    max-width: 280px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-desc {
    font-size: 0.95rem;
    
  }
}

/* ===== SERVICES MOBILE ===== */
@media (max-width: 768px) {
  .services-track {
    gap: 20px;
  }

  .card {
    min-width: 220px;
    height: 260px;
  }

  .card h4 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.85rem;
  }
}

/* ===== CTA MOBILE ===== */
@media (max-width: 768px) {
  .cta-section {
    padding: 50px 3%;
  }

  .cta-title {
    font-size: 2.2rem;
    margin-top: 20px;
  }

  .cta-desc {
    font-size: 0.95rem;
  }

  .cta-details {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .cta-highlight {
    font-size: 1rem;
  }
}

/* ===== SOCIAL BUTTONS MOBILE ===== */
@media (max-width: 768px) {
  .social-btn {
    width: 45px;
    height: 45px;
  }

  .social-btn img {
    width: 22px;
    height: 22px;
  }
}

/* ===== FOOTER MOBILE ===== */
@media (max-width: 768px) {
  footer p {
    gap: 10px;
    font-size: 0.85rem;
    text-align: center;
  }
}

/* ===== WHATSAPP BUTTON MOBILE ===== */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 768px) {

  header {
    flex-direction: column;
    gap: 8px;
    padding: 12px 15px;
  }

  .logo {
    font-size: 18px;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 13px;
  }
}

/* ===== MOBILE FIX FINAL ===== */

header {
  position: sticky;
  top: 0;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  header {
    position: static; /* 🔥 key fix */
  }
}

@media (max-width: 768px) {

  /* Fix hero height */
  .hero {
    height: auto;
    padding: 40px 5%;
  }

  /* Fix video block */
  .video-container {
    height: 300px;
    max-width: 260px;
    margin: 0 auto;
  }

  /* Add spacing so text doesn’t stick */
  .hero-content {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {

  .hero-btns {
    display: flex;
    flex-direction: column; /* stack vertically */
    align-items: center;   /* center them */
    gap: 12px;             /* 🔥 space between buttons */
  }

  .btn-main {
    width: 80%;            /* makes them look clean & uniform */
    max-width: 250px;
  }
}
/* ===== VISION SECTION ===== */
.vision-section {
  padding: 100px 8%;
  position: relative;
  overflow: visible;
  background: #faf5ff;
}

/* PURPLE GLOW */
.vision-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #7c3aed;
  filter: blur(150px);
  opacity: 0.4;
  top: -100px;
  left: -100px;
}

/* PINK GLOW */
.vision-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #db2777;
  filter: blur(150px);
  opacity: 0.4;
  bottom: -100px;
  right: -100px;
}

.vision-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
}

/* ===== IMAGES ===== */
.vision-images {
  position: relative;
  width: 400px;
  height: 450px;
  flex-shrink: 0;
}

.vision-images .img {
  position: absolute;
  width: 220px;
  height: 300px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  transition: transform 0.5s ease;
}

/* CROSS EFFECT */
.img-1 {
  top: 0;
  left: 0;
  transform: rotate(-10deg);
  z-index: 2;
}

.img-2 {
  bottom: 0;
  right: 0;
  transform: rotate(10deg);
}

/* HOVER PREMIUM EFFECT */
.vision-images:hover .img-1 {
  transform: rotate(-5deg) scale(1.05);
}

.vision-images:hover .img-2 {
  transform: rotate(5deg) scale(1.05);
}

/* ===== TEXT ===== */
.vision-text {
  max-width: 500px;
}

.vision-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #2d1b4e;
  margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .vision-container {
    flex-direction: column;
    text-align: center;
  }

  .vision-images {
    width: 300px;
    height: 420px; /* 🔥 more space */
    margin: auto;
  }

  .vision-images .img {
    width: 180px;
    height: 260px;
  }

  /* 🔥 FIX POSITIONING */
  .img-1 {
    top: 30px;
    left: -23px;
  }

  .img-2 {
    top: 120px;   /* 🔥 instead of bottom */
    left: 130px;  /* 🔥 instead of right */
  }
}


@media (max-width: 768px) {

  #services {
    padding-top: 20px;   /* 🔥 reduce top gap */
    padding-bottom: 40px;
  }

  #services .section-title {
    margin-top: 5px;       /* 🔥 remove extra space */
  }

}

@media (max-width: 768px) {

  /* 🔥 FIX VISION SECTION */
  .vision-section {
    padding: 5px 5%;   /* reduce big top-bottom space */
  }

  .vision-images {
    height: 350px;      /* reduce empty image space */
  }

  .vision-images {
    margin-bottom: 10px;  /* bring text closer */
  }

  /* 🔥 OPTIONAL (extra tight look) */
  .vision-text h2 {
    margin-top: 0;
  }

}

.section-label {
  text-decoration: none;   /* remove underline */
  display: inline-block;   /* keeps layout same */
}
.section-label:hover {
  opacity: 0.8;
  cursor: pointer;
}