* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0a0f;
  color: white;
   font-family: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
/* TOPBAR */
.topbar {
  background: linear-gradient(90deg, #ff2a75, #ff0066);
  display: flex;
  justify-content: space-around;
  padding: 8px;
  font-size: 14px;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(15px);
  background: rgba(20, 0, 40, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #ff2a75;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
  position: relative;
}
nav a::after {
  display: none;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff2a75;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
nav a {
  text-decoration: none !important;
  outline: none;
}
a {
  outline: none;
}

a:hover {
  text-decoration: none;
}
nav a:focus,
nav a:active {
  outline: none;
  text-decoration: none;
}
/* HERO */
.hero {
  height: 70vh;
  background: url('images/hero.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10,0,30,0.9), rgba(0,0,0,0.5));
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  max-width: 600px;
}

.hero .hello {
  font-size: 50px;
  line-height: 1.2;
}

.hero .hello span {
  color: #ff2a75;
  text-shadow: 0 0 10px #ff2a75;
}

.hero p {
  margin: 20px 0;
  font-size: 18px;
  color: #ccc;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.call {
  background: #ff2a75;
}

.whatsapp {
  background: #25D366;
}

.available {
  background: #ff0066;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 42, 117, 0.6);
}

/* MOBILE */
@media(max-width: 768px) {

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #140028;
    width: 100%;
    flex-direction: column;
    display: none;
    text-align: center;
    padding: 20px;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero {
    height: auto;
    padding: 80px 20px;
  }
}

nav a:focus {
  outline: none;
}

nav a:active {
  outline: none;
}


/* 📱 MOBILE CONTROL */
@media (max-width: 768px) {
  .hero {
    height: auto;          /* let content decide height */
    min-height: 40vh;      /* control minimum */
    padding: 80px 20px;    /* more spacing */
  }
}

/* Hide on mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}


.logo img {
  height: 50px;   /* desktop size */
  width: auto;
  object-fit: contain;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}
@media (max-width: 768px) {
.content-section p {
  max-width: 650px;
  text-align: justify;
  text-justify: inter-word;
}
}

/* SECTION */
.content-section {
  padding: 10px 10px;
  background: #850040;
}

/* CONTAINER */
.container {
  max-width: 900px;
  margin: auto;
}

/* HEADING */
.content-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
  color: #fff;
}
.content-section h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
  color: #fff;
}

.content-section p {
  font-size: 17px;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.3px;

  text-align: justify;        /* 🔥 makes both edges equal */
  text-align-last: left;    /* optional: center last line */
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  .content-section {
    padding: 50px 15px;
  }

  .content-section h2 {
    font-size: 24px;
  }

  .content-section p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* SECTION */
.why-genz {
  padding: 20px 20px;
  background: linear-gradient(135deg, #1a0033, #4b0082, #0a0a0f);
  text-align: center;
}

/* TITLE */
.why-genz h2 {
  font-size: 36px;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #ff2a75, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.genz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.genz-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 30px 20px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* GLOW BORDER */
.genz-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 25px;
  padding: 1px;
  background: linear-gradient(45deg, #ff2a75, #8a2be2, #00f0ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ff2a75, #8a2be2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* TEXT */
.genz-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.genz-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* HOVER EFFECT 🔥 */
.genz-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 42, 117, 0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .genz-grid {
    grid-template-columns: 1fr;
  }

  .why-genz h2 {
    font-size: 26px;
  }
}

/* SECTION */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0a0a0f;
  color: #fff;
}

/* SECTION */
.profiles {
  padding: 80px 20px;
  text-align: center;
 background: linear-gradient(135deg, #1a0033, #4b0082, #0a0a0f);
}

/* TITLE */
.profiles h2 {
  font-size: 36px;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #ff2a75, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GRID */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.profile-card {
  background: rgba(20, 0, 40, 0.9);
  border-radius: 20px;
 overflow: visible; 
  transition: 0.4s;
  text-align: center;
  position: relative;
}

.carousel-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.profile-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
}

/* IMAGE OVERLAY */
.profile-img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none; 
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* CONTENT */
.profile-content {
  padding: 20px;
}

.profile-content h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

/* BUTTON GROUP */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* BUTTON */
.btn {
  padding: 12px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  color: #fff;
}

/* CALL */
.call {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
}

/* WHATSAPP */
.whatsapp {
  background: linear-gradient(90deg, #ff2a75, #ff0066);
}

/* HOVER */
.profile-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 30px rgba(255, 42, 117, 0.3);
}

.btn:hover {
  transform: scale(1.05);
}

/* TABLET */
@media (max-width: 992px) {
  .profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .profiles h2 {
    font-size: 26px;
  }
}

.insight-section {
  padding: 32px 20px;
  text-align: center;
  color: white;
  background: radial-gradient(circle at center, #a8005a 0%, #850040 40%, #2a0015 100%);
  position: relative;
  overflow: hidden;
}

/* BACKGROUND GLOW EFFECT */
.insight-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,46,99,0.25), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  z-index: 0;
}

h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

p {
  color: #ffc1d6;
 
}

/* GRAPH AREA */
.graph-wrapper {
  position: relative;
  max-width: 900px;
  margin: auto;
  z-index: 2;
}

/* GLOW BEHIND GRAPH */
.glow-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,46,99,0.4), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: -1;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  margin-top: 60px;
  padding: 16px 40px;
  background: linear-gradient(45deg, #ff2e63, #ff6b9d);
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 25px rgba(255,46,99,0.7);
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255,46,99,1);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .content-section {
    padding: 80px 15px; /* reduce side spacing */
  }

  .container {
    max-width: 100%;
    padding: 0 10px; /* control left-right space */
  }

  .content-section h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .content-section h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  .subtext {
    font-size: 14px;
    padding: 0 5px;
  }

  .glow-box {
    padding: 20px; /* reduce inner spacing */
  }

  .content-section p {
    font-size: 14px;
  }

  .divider {
    margin-bottom: 20px;
  }

}

/* SECTION */
.premium-links {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #a8005a, #850040, #3a001c);
  color: white;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADLINE */
.section-title {
  font-size: 42px;
  margin-bottom: 15px;
}

.section-sub {
  color: #ffc1d6;
  margin-bottom: 60px;
}

/* GRID */
.links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* PILL STYLE */
.link-pill {
  padding: 16px 20px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  position: relative;
  transition: all 0.3s ease;
}

/* GRADIENT BORDER */
.link-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px;
  background: linear-gradient(45deg, #ff2e63, #ff6b9d, transparent);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* HOVER EFFECT */
.link-pill:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 25px rgba(255, 46, 99, 0.6);
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.cat-section {
  position: relative;
  padding: 100px 20px;

  /* YOUR IMAGE */
  background: url('images/gfgfg.jpg') center/cover no-repeat;

  text-align: center;
  overflow: hidden;
}

/* OVERLAY (IMPORTANT — MATCH YOUR THEME) */
.cat-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(75, 0, 130, 0.85),
    rgba(133, 0, 64, 0.9)
  );

  z-index: 0;
}

/* KEEP CONTENT ABOVE IMAGE */
.cat-section * {
  position: relative;
  z-index: 2;
}
.cat-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #4b0082, #850040);
  text-align: center;
}

/* TITLE */
.cat-title {
  color: #fff;
  font-size: 36px;
  margin-bottom: 50px;
}

/* GRID */
.cat-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* PILLS */
.cat-pill {
  display: block;
  padding: 14px 20px;
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 15px;

  background: linear-gradient(90deg, #ff0055 0%, #6a00ff 100%);
  border: 2px solid rgba(255,255,255,0.3);

  transition: all 0.3s ease;
}

/* HOVER */
.cat-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-title {
    font-size: 24px;
  }
}


.editorial {
  position: relative;
  padding: 140px 20px;
  background: url('images/84993843.jpeg') center/cover no-repeat;
}

/* SUBTLE OVERLAY */
.editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 0, 10, 0.92),
    rgba(133, 0, 64, 0.65)
  );
}

/* CONTAINER */
.editorial-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

/* LEFT CONTENT */
.editorial-left h2 {
  font-size: 29px;
  color: #fff;
  margin-bottom: 25px;
  line-height: 1.2;
}

.editorial-left .lead {
  font-size: 18px;
  color: #ffb6c1;
  margin-bottom: 25px;
}

.editorial-left p {
  color: #e8d4dc;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* RIGHT SIDE */
.editorial-right {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* VERTICAL LINE */
.editorial-right .line {
  width: 3px;
  height: 160px;
  background: linear-gradient(to bottom, #ff2e63, transparent);
}

/* LIST */
.editorial-right ul {
  list-style: none;
  padding: 0;
}

.editorial-right li {
  color: #fff;
  margin-bottom: 18px;
  font-size: 15px;
  position: relative;
}

/* SMALL DOT */
.editorial-right li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ff2e63;
  border-radius: 50%;
  position: absolute;
  left: -15px;
  top: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .editorial-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .editorial-left h2 {
    font-size: 28px;
  }

  .editorial-right {
    flex-direction: column;
  }

  .editorial-right .line {
    height: 2px;
    width: 60px;
  }
}

.featured {
  padding: 120px 20px;
  background: #0a0a0f;
  text-align: center;
}

/* TITLE */
.featured-title {
  color: white;
  font-size: 40px;
  margin-bottom: 60px;
}

/* GRID */
.featured-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.featured-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.featured-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: 0.5s;
}

/* OVERLAY */
.featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    transparent
  );
}

/* INFO */
.featured-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  text-align: left;
}

.featured-info h3 {
  color: #fff;
  margin: 0;
}

.featured-info p {
  color: #ccc;
  font-size: 14px;
}

/* HOVER */
.featured-card:hover img {
  transform: scale(1.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-title {
    font-size: 26px;
  }
}

.cta-exact {
  padding: 60px 20px;
  background: #f2f2f2;
  position: relative;
}

.cta-ribbon {
  position: absolute;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);

  background: #a00080;
  color: #fff;

  padding: 10px 40px;
  font-size: 14px;
  font-weight: 500;

  border-radius: 4px;

  white-space: nowrap; /* 🔥 IMPORTANT */
  max-width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;

  z-index: 5;
}

/* BOX */
.cta-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  padding: 5px 1px;
  background: #fff;
  border-radius: 15px;
  border: 2px solid #ccc;
  text-align: center;
  overflow: hidden;
}

/* LEFT IMAGE */
.cta-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
}

.cta-left img {
  width: 100%;
}

/* RIGHT IMAGE */
.cta-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 180px;
}

.cta-right img {
  width: 100%;
}

/* CONTENT */
.cta-content {
  max-width: 600px;
  margin: auto;
}

/* HEADING */
.cta-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  margin-top: 40px;
}

/* CALL BUTTON */
.btn-call {
  display: inline-block;
  padding: 10px 25px;
  background: #800080;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 20px;
}

/* TEXT (FIXED VISIBILITY) */
.cta-text {
  color: #555; /* IMPORTANT FIX */
  font-size: 15px;
  margin-bottom: 15px;
}

/* WHATSAPP */
.btn-wa {
  display: inline-block;
  padding: 10px 25px;
  background: #25D366;
  color: white;
  border-radius: 6px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .cta-left,
  .cta-right {
    position: absolute;
    bottom: 0;
    width: 140px;
    z-index: 1;
    opacity: 0.15; /* 🔥 KEY PART (fade effect) */
  }

  .cta-left {
    left: 0;
  }

  .cta-right {
    right: 0;
  }

  /* Make sure content stays above */
  .cta-content {
    position: relative;
    z-index: 2;
  }

  /* Optional: reduce image size slightly */
  .cta-left img,
  .cta-right img {
    width: 100%;
  }

}

.story-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #4b0082, #850040);
}

/* CONTAINER */
.story-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-container {
  min-height: 269px;
}
/* IMAGE */
.story-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* CONTENT */
.story-content h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
}

.story-content p {
  color: #f5d6e0;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .story-container {
    grid-template-columns: 1fr;
  }

  .story-content h2 {
    font-size: 24px;
  }
}

.cinema-section {
  position: relative;
  padding: 160px 20px;

  /* BACKGROUND IMAGE */
  background: url('images/cinema.jpg') center/cover no-repeat;

  overflow: hidden;
}

/* DARK OVERLAY */
.cinema-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85),
    rgba(133,0,64,0.6)
  );
}

/* CONTENT */
.cinema-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* TEXT */
.cinema-content h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cinema-content p {
  color: #f5d6e0;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.cinema-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(45deg, #ff0055, #7b2fff);
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.cinema-btn:hover {
  transform: translateY(-3px);
}

/* MOBILE */
@media (max-width: 768px) {
  .cinema-section {
    padding: 100px 20px;
  }

  .cinema-content h2 {
    font-size: 26px;
  }
}

/* ===== SECTION ===== */
.story-section {
  position: relative;
  padding: 140px 60px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* BACKGROUND */
.story-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,10,15,0.9), rgba(10,10,15,0.95)),
              url('your-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

/* WRAPPER */
.story-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* ===== CONTENT (75%) ===== */
.story-content {
  flex: 0 0 70%;
  max-width: 750px;
}

/* HEADING */
.story-content h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

/* INTRO */
.story-content .intro {
  font-size: 18px;
  color: #ff4da6;
  margin-bottom: 20px;
}

/* PARAGRAPHS */
.story-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 15px;
}

/* HIGHLIGHT */
.highlight {
  margin: 25px 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border-left: 3px solid #ff007a;
  padding-left: 15px;
}

/* SMALL ACCENT LINE */
.story-content::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #ff007a;
  margin-top: 25px;
}

/* ===== IMAGE AREA (25%) ===== */
.story-img {
  flex: 0 0 30%;
  display: flex;
  justify-content: center;
  position: relative;
}

/* STACK CONTAINER */
.image-stack {
  position: relative;
  width: 240px;
  height: 320px;
}

/* ALL IMAGES */
.image-stack img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  transition: all 0.4s ease;
}

/* BACK IMAGE */
.image-stack img:nth-child(1) {
  transform: rotate(-8deg);
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: 1;
}

/* MIDDLE IMAGE */
.image-stack img:nth-child(2) {
  transform: rotate(6deg);
  top: 15px;
  left: 15px;
  z-index: 2;
}

/* FRONT IMAGE */
.image-stack img:nth-child(3) {
  transform: rotate(-2deg);
  top: 30px;
  left: 5px;
  z-index: 3;
}

/* HOVER EFFECT */
.image-stack:hover img:nth-child(1) {
  transform: rotate(-12deg) translateY(-5px);
}

.image-stack:hover img:nth-child(2) {
  transform: rotate(10deg) translateY(-10px);
}

.image-stack:hover img:nth-child(3) {
  transform: rotate(0deg) translateY(-15px) scale(1.05);
}

/* GLOW BEHIND STACK */
.image-stack::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  background: #ff007a;
  filter: blur(120px);
  opacity: 0.2;
  top: 40px;
  left: 20px;
  z-index: 0;
}

/* SECTION GLOW */
.story-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: #ff007a;
  filter: blur(150px);
  opacity: 0.15;
  top: -100px;
  left: -100px;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .story-section {
    padding: 80px 20px;
  }

  .story-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .story-content {
    flex: 100%;
  }

  .story-img {
    margin-top: 40px;
  }

  .image-stack {
    width: 200px;
    height: 260px;
  }

  .highlight {
    border-left: none;
    border-top: 3px solid #ff007a;
    padding-left: 0;
    padding-top: 10px;
  }
}

@media (max-width: 768px) {

  .story-content {
    max-width: 100%;
    padding: 0 10px;
  }

  .story-content h2 {
    font-size: 36px;
    line-height: 1.3;
  }

  .story-content p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .story-content .intro {
    font-size: 16px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .highlight {
    font-size: 16px;
    line-height: 1.6;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
}



.locations-section {
  padding: 70px 20px;
  background: linear-gradient(180deg, #0a0a0f, #1a0033);
  color: #fff;
  text-align: center;
}

.locations-section h2 {
  font-size: 30px;
  margin-bottom: 30px;
  font-weight: 600;
}
.nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 9999; /* 🔥 VERY IMPORTANT */
}
/* CAROUSEL */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* CARD */
.card {
  min-width: 260px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
  transform: scale(0.92);
  opacity: 0.6;
}

/* ACTIVE */
.card.active {
  transform: scale(1);
  opacity: 1;
}

/* IMAGE */
.area-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* CLEAN DARK OVERLAY */
.area-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85) 25%,
    rgba(0,0,0,0.4) 55%,
    rgba(0,0,0,0) 80%
  );
}

.overlay {
  position: absolute;
  bottom: 0;              /* 👈 push fully down */
  left: 0;
  right: 0;
  z-index: 2;

  padding: 18px 15px;
  text-align: left;

  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* 👈 important */
}

.overlay h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.meta {
  font-size: 13px;
  color: #00ff9f;
}

/* ONLINE DOT */
.online-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 9px;
  height: 9px;
  background: #00ff9f;
  border-radius: 50%;
}

/* ARROWS */
.nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
}
.carousel-track {
  scroll-snap-type: x mandatory;
}

.card {
  scroll-snap-align: center;
}
.prev { left: 10px; }
.next { right: 10px; }

.fullwidth-content {
  width: 100%;
  padding: 120px 80px; /* control spacing only from top-bottom + slight sides */
  background: linear-gradient(135deg, #0a0a0f, #140022);
  color: #fff;
}

/* heading */
.fullwidth-content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

/* lead */
.fullwidth-content .lead {
  font-size: 22px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 1200px; /* IMPORTANT: keeps readability */
}

/* paragraph */
.fullwidth-content p {
  font-size: 18px;
  color: #aaa;
  line-height: 1.9;
  margin-bottom: 20px;
  max-width: 1200px;
}

.ngb-theme-content {
  padding: 15px 10px;
  background: linear-gradient(180deg, #d1005c, #2a003f);
  display: flex;
  justify-content: center;
}

/* CENTER BOX */
.ngb-theme-box {
  max-width: 1100px;
  text-align: left;
}

/* HEADINGS */
.ngb-theme-heading {
  font-size: 30px;
  font-weight: 600;
   text-align: center;
  margin: 25px 0 12px;
  color: #ffffff;
}

/* TEXT */
.ngb-theme-text {
    text-align: justify; 
  font-size: 16px;
  line-height: 1.8;
  color: #f5f5f5;
  margin-bottom: 18px;
  opacity: 0.95;
}

/* MOBILE */
@media (max-width: 768px) {
  .ngb-theme-content {
    padding: 40px 15px;
  }

  .ngb-theme-heading {
    font-size: 28px;
  }

  .ngb-theme-text {
    font-size: 13.5px;
  }
}

.pro-footer {
  background: #06010c;
  color: #aaa;
  padding: 90px 0 0;
  font-family: 'Poppins', sans-serif;
}

/* LAYOUT */
.pro-footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding: 0 20px;
}

/* BRAND */
.pro-footer-brand h2 {
  font-size: 28px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

.pro-footer-brand span {
  color: #ff2c7d;
}

.pro-footer-brand p {
  margin-top: 20px;
  line-height: 1.8;
  font-size: 14px;
  max-width: 380px;
  color: #888;
}

/* HEADINGS */
.pro-footer h4 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* LINKS */
.pro-footer-links ul {
  list-style: none;
  padding: 0;
}

.pro-footer-links li {
  margin-bottom: 12px;
}

.pro-footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.pro-footer-links a:hover {
  color: #fff;
}

/* CONTACT */
.pro-footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #888;
}

/* CTA BUTTON */
.pro-footer-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 26px;
  border: 1px solid #ff2c7d;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.pro-footer-cta:hover {
  background: #ff2c7d;
  color: #fff;
}

/* DIVIDER */
.pro-footer-bottom {
  margin-top: 70px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pro-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .pro-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pro-footer-brand p {
    margin: 20px auto;
  }

  .pro-footer-cta {
    width: 100%;
  }
}

.ultra-footer {
  position: relative;
  background: #050008;
  color: #aaa;
  padding: 10px 0 0;
  overflow: hidden;
}

/* 🔥 BACKGROUND GLOW (DEPTH) */
.ultra-footer::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #ff2c7d33, transparent);
  filter: blur(100px);
}

/* CONTAINER */
.ultra-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* GRID */
.ultra-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* BRAND */
.ultra-brand h2 {
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

.ultra-brand span {
  color: #ff2c7d;
}

.ultra-brand p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.9;
  color: #888;
  max-width: 400px;
}

/* HEADINGS */
.ultra-footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

/* NAV LINKS */
.ultra-nav ul {
  list-style: none;
  padding: 0;
}

.ultra-nav li {
  margin-bottom: 14px;
}

.ultra-nav a {
  text-decoration: none;
  color: #888;
  font-size: 14px;
  transition: 0.3s;
}

.ultra-nav a:hover {
  color: #fff;
  padding-left: 6px;
}

/* CONTACT */
.ultra-contact p {
  margin-bottom: 12px;
  font-size: 14px;
  color: #888;
}

/* BUTTON (PREMIUM STYLE) */
.ultra-btn {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.4s;
  position: relative;
}

/* HOVER EFFECT (SUBTLE GLOW) */
.ultra-btn:hover {
  border-color: #ff2c7d;
  color: #ff2c7d;
}

/* DIVIDER LINE */
.ultra-bottom {
  margin-top: 25px;
  padding: 25px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: #666;
}

/* MOBILE */
@media (max-width: 992px) {
  .ultra-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .ultra-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ultra-brand p {
    margin: 20px auto;
  }

  .ultra-btn {
    width: 100%;
  }
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Base */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Icon size */
.btn i {
  font-size: 16px;
}

/* Hover lift */
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Call (luxury gradient) */
.btn.call {
  background: linear-gradient(135deg, #3044a5, #007bff);
}

/* WhatsApp (REAL BRAND COLOR) */
.btn.whatsapp {
  background: #25D366;
}

.btn.whatsapp:hover {
  background: #1ebe5d;
}

/* Glass style */
.btn.available {
  background: rgb(255 48 118);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}

/* Shine effect (premium feel) */
.btn::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.5s;
}

.btn:hover::before {
  left: 100%;
}

.menu-toggle {
  font-size: 24px;
  cursor: pointer;
  display: block;
}

@media(min-width: 768px) {
  #navMenu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
  }

  .menu-toggle {
    display: none;
  }
}

/* BUTTON GROUP */
.cta-buttons {
  display: flex;
  flex-direction: column;
  
  margin-top: 15px;
}

/* BASE BUTTON */
.btn-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.btn-modern i {
  font-size: 16px;
}

/* CALL BUTTON */
.btn-call {
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  color: #fff;
  box-shadow: 0 5px 15px rgba(142, 45, 226, 0.4);
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 5px 15px rgba(18, 140, 126, 0.4);
}

/* HOVER EFFECT 🔥 */
.btn-modern:hover {
    
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    text-decoration: none !important;
}

/* CLICK EFFECT */
.btn-modern:active {
  transform: scale(0.98);
}
