* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #151515;
  background: #fffaf7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  min-height: 100vh;
  padding: 120px 8%;
  position: relative;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 32px));
  z-index: 1000;
  padding: 1px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.151);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: 0.4s ease;
}

.navbar.scrolled {
  padding: 1px 18px;
  background: rgba(255, 255, 255, 0.199);
}

.logo {
  height: 90px;
}

.logo span {
  background: linear-gradient(135deg, #ff007a, #ffb000, #00c2ff, #7c3cff);
  -webkit-background-clip: text;
  color: transparent;
}

.desktop-nav {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #ffffff;
  transition: 0.35s ease;
  position: relative;
}

.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #da015b, #dfb600);
  transform: scale(1.13);
  box-shadow: 0 12px 28px rgba(255, 0, 122, 0.28);
}


/* Hamburger */

.hamburger {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 34px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  margin: 6px 0;
  border-radius: 10px;
  background: #111;
}

/* Mobile progress stamps */

.mobile-progress {
  display: none;
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 42px);
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  z-index: 998;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.mobile-progress.open {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.stamp {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  font-size: 0.72rem;
  border-radius: 999px;
  background: #f2f2f2;
  color: #555;
  transition: 0.35s ease;
}

.stamp.active {
  color: #fff;
  background: linear-gradient(135deg, #da015b, #dfb600);
  transform: translateY(-4px) scale(1.04);
}

/* HERO */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 122, 0.22), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0, 194, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #100017, #16121f 45%, #07121f);
  color: #fff;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: #ffd36b;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.eyebrow.dark {
  color: #9b4dff;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -3px;
}

.hero h1 span {
  display: block;
  font-size: 5rem;
  padding-bottom: 1rem;
  background: linear-gradient(135deg, #ff007a, #ffb000, #00c2ff, #7c3cff);
  -webkit-background-clip: text;
  color: transparent;
}

.slogan {
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  margin-top: 24px;
  font-family: "Playfair Display", serif;
  color: #fff4c9;
}

.hero-text {
  margin: 24px auto 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.35s ease;
}

.primary-btn {
  background: linear-gradient(135deg, #0011ff3f, #ff00ea31);
  border-style: solid;
  color: #fff;
  box-shadow: 0 20px 45px rgba(255, 0, 122, 0.3);
}

.glass-btn {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn:hover {
  transform: translateY(-4px);
}

.colour-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
  animation: float 7s ease-in-out infinite;
}

.orb-one {
  width: 260px;
  height: 260px;
  background: #ff007a;
  top: 16%;
  left: 8%;
}

.orb-two {
  width: 220px;
  height: 220px;
  background: #00c2ff;
  right: 10%;
  bottom: 18%;
  animation-delay: 1.5s;
}

.orb-three {
  width: 180px;
  height: 180px;
  background: #ffb000;
  right: 22%;
  top: 18%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-28px) scale(1.08);
  }
}

/* STORY */

.story-section {
  background: linear-gradient(135deg, #000000, #000000);
  display: flex;
  align-items: center;
}

.story-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  width: 100%;
}

.story-text h2,
.section-intro h2,
.contact-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 24px;
}

.story-text h2 {
  color: white;
}

.story-text p {
  color: #888888;
  line-height: 1.9;
  margin-bottom: 18px;
}

.story-card {
  padding: 7px;
  border-radius: 36px;
  background: linear-gradient(135deg, #ff007a, #ffb000, #00c2ff, #7c3cff);
  box-shadow: 0 30px 80px rgba(60, 20, 90, 0.18);
}

.story-card-inner {
  min-height: 420px;
  border-radius: 30px;
  padding: 38px;
  background:
    url("https://images.unsplash.com/photo-1618005198919-d3d4b5a92ead?auto=format&fit=crop&w=900&q=80");
  background-size: cover;
  background-position: center;
}

.story-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.story-card p {
  color: #555;
  line-height: 1.7;
}

.story-stats {
  margin-top: 52px;
  display: grid;
  gap: 18px;
}

.story-stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
}

.story-stats strong {
  display: block;
  font-size: 1.55rem;
}

.story-stats span {
  color: #666;
  font-size: 0.88rem;
}

/* SOLUTIONS */

.solutions {
  background-color: rgb(0, 0, 0);
}

.solutions h2 {
  color: white;
  font-size: 70px;
}

.solutions p {
  color: rgb(153, 153, 153);
}

.section-heading {
  max-width: 780px;
  text-align: center;
  margin: 0 auto 36px;
}

.filter-bar {
  max-width: 1050px;
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #333;
  font-weight: 700;
  transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  background: linear-gradient(135deg,  #01b97c, #008eb9);
  transform: translateY(-2px);
}

/* 
  Desktop:
  3 columns x 4 rows visible.
  Extra items scroll vertically.
*/
.solutions-scroll {
  max-width: 1080px;
  margin: 0 auto;
  max-height: 720px;
  overflow-y: auto;
  padding: 8px 12px 8px 4px;
  scrollbar-width: thin;
  scrollbar-color: #ff007a #f1f1f1;
}

.solutions-scroll::-webkit-scrollbar {
  width: 8px;
}

.solutions-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
}

.solutions-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(#ff007a, #00c2ff);
  border-radius: 20px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-card {
  min-height: 165px;
  padding: 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: left;
  color: white;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.solution-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.solution-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.solution-card span {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  opacity: 0.9;
}

.solution-category {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.2);
}


/* CONTACT */

.contact-section {
  background:
    linear-gradient(135deg, rgba(13, 13, 20, 0.9), rgba(8, 5, 18, 0.9)),
    radial-gradient(circle at 20% 20%, #ff007a, transparent 28%),
    radial-gradient(circle at 80% 40%, #00c2ff, transparent 32%),
    radial-gradient(circle at 50% 80%, #ffb000, transparent 28%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content {
  text-align: center;
  max-width: 850px;
}

.contact-content p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.contact-person {
  margin: 34px auto;
  padding: 24px;
  max-width: 360px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-person h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.contact-person span {
  color: #ffd36b;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}


.contact-btn {
    width: 150px;
    height: 100px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}


.contact-btn i {
    font-size: 2rem;
}

.contact-btn span {
    font-size: 0.75rem;
}

.contact-btn:hover {
    transform: translateY(-8px) scale(1.08);
}

.whatsapp {
    background: #25D366;
}

.call {
    background: #ff007a;
}

.facebook {
    background: #1877F2;
}

.email {
    background: #FFB000;
    color: #111;
}
.small-note {
  margin-top: 24px;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* MODAL */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.show {
  display: flex;
}

.solution-modal {
  width: min(950px, 100%);
  max-height: 70vh;
  overflow-y: auto;
  border-radius: 36px;
  background: #fff;
  padding: 36px;
  position: relative;
  animation: modalEnter 0.35s ease;
}

@keyframes modalEnter {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 18px;
  right: 22px;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.modal-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 12px;
}

.modal-header p {
  color: #555;
  line-height: 1.8;
  max-width: 760px;
}


.modal-images {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.modal-images img {
  width: 100%;
  height: 140px; /* Reduced from 240px */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.modal-images img:hover {
  transform: scale(1.03);
}

.modal-image-card {
  border-radius: 26px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex;
  align-items: end;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  box-shadow: inset 0 -90px 100px rgba(0, 0, 0, 0.22);
}

.footer {
    background: #0f0f14;
    padding: 30px 8%;
    text-align: center;
}

.footer-line {
    width: 100%;
    height: 1px;
    margin-bottom: 25px;
    background: linear-gradient(
        90deg,
        transparent,
        #ff007a,
        #ffb000,
        #00c2ff,
        transparent
    );
}

.footer-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    margin: 6px 0;
    letter-spacing: 0.5px;
}

.footer-credit {
    margin-top: 10px;
}

.footer-credit span {
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #ffffff,
        #020092
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 110px 6%;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    top: 14px;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-card {
    min-height: 132px;
    padding: 18px;
  }

  .modal-images {
    grid-template-columns: 1fr;
  }

  .story-card-inner {
    min-height: 340px;
    padding: 26px;
  }

  .section-heading-pop {
    top: 150px;
  }
}

@media (max-width: 480px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
  }

  .btn,
  .contact-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .modal-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .modal-images img {
    height: 80px;
    border-radius: 12px;
  }
}