/* =======================
   GLOBAL STYLES
======================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #1f2937;
  overflow-x: hidden;
 padding-top: 5px;
}


  .highlight {
      color: #2563eb;
      font-weight: 600;
    }

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =======================
   NAVBAR
======================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 25px 8%; /* taller navbar */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo img {
  height: 90px;
  width: auto;
  transform: scale(3.0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(3.1);
}

/* ================= NAV ================= */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link,
.dropdown-toggle {
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Underline animation */
.nav-link::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: 0.3s ease;
}

.nav-link:hover::after,
.dropdown-toggle:hover::after {
  width: 100%;
}
/* Keep underline for active page link */
.nav-link.active::after,
.dropdown-toggle.active::after {
  width: 100%;
}


/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: 16px;
  padding: 15px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
  padding-left: 30px;
}

/* Desktop hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= LOGIN ================= */
.login-btn {
  padding: 10px 22px;
  border-radius: 25px;
  background: #2563eb;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;

  /* 🔥 pulse animation */
  animation: pulseGlow 2.0s infinite;
}

/* hover overrides animation slightly */
.login-btn:hover {
  background: #1e4fd8;
  transform: translateY(-2px);
  animation: none;
}

/* ================= PULSE ANIMATION ================= */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1f2937;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Animate hamburger into X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    flex-direction: column;
    padding: 120px 30px;
    gap: 25px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: flex;
  }
}



/* =========================
   COLLECTIONS HERO
========================= */

.collections-hero {
  position: relative;

  overflow: hidden;

  padding: 200px 8% 90px;

}

/* subtle grid */
.collections-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);

  background-size: 80px 80px;

  opacity: 0.12;

  pointer-events: none;
}

/* =========================
   CONTAINER
========================= */

.collections-container {
  position: relative;
  z-index: 2;

  max-width: 1350px;

  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 40px;

  align-items: center;
}

/* =========================
   CONTENT
========================= */

.collections-content {
  max-width: 560px;
}

/* TAG */

.collections-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

      background:
    linear-gradient(
      135deg,
      #24354a 0%,
      #5d5b7d 60%,
      #ff5ca7 140%
    );

    border:1px solid     linear-gradient(
      135deg,
      #24354a 0%,
      #5d5b7d 60%,
      #ff5ca7 140%
    );

    color:#fff;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:28px;
}

/* HEADING */

.collections-content h1 {
  font-size: 3rem;

  line-height: 1.05;

color: #1f2937;

  margin-bottom: 24px;

  font-family: "Montserrat", sans-serif;
}

.collections-content h1 span{
    background:
    linear-gradient(
        135deg,
        #38bdf8 0%,
        #60a5fa 35%,
        #818cf8 70%,
        #a855f7 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    filter:drop-shadow(
        0 0 20px rgba(56,189,248,0.2)
    );
}
/* TEXT */

.collections-content p {
  font-size: clamp(15px, 1.2vw, 17px);

  line-height: 1.9;
font-family: "Inter", sans-serif;
  color: #555;

  margin-bottom: 38px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 15px 28px;

  border-radius: 12px;

  text-decoration: none;

  font-weight: 600;

  transition: 0.3s ease;
}

/* PRIMARY */

.primary-btn{
      background:
    linear-gradient(
      135deg,
      #24354a 0%,
      #5d5b7d 60%,
      #ff5ca7 140%
    );

    border:1px solid     linear-gradient(
      135deg,
      #24354a 0%,
      #5d5b7d 60%,
      #ff5ca7 140%
    );

    color:#fff;

 
}

.primary-btn:hover{
    transform:translateY(-5px);
box-shadow: 0 20px 50px rgba(255, 12, 150, 0.334);
}

/* SECONDARY */

.secondary-btn{
    background:rgba(255,255,255,0.03);

    
    border:1px solid #ff3385;

    backdrop-filter:blur(12px);

    color:#ff3385;
}

.secondary-btn:hover{
    transform:translateY(-5px);

     border:1px solid #ff3385;
 box-shadow: 0 20px 50px rgba(255, 12, 150, 0.334);
}

/* =========================
   IMAGE
========================= */

.collections-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.collections-image img {
  width: 100%;
  border-radius: 5%;
  max-width: 620px;

  object-fit: contain;

  filter:
    drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .collections-container {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .collections-content {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .collections-content h1 {
    font-size: 3.2rem;
  }

  .collections-image img {
    max-width: 420px;
  }
}

@media (max-width: 768px) {

  .collections-hero {
    padding: 110px 5% 70px;
  }

  .collections-content h1 {
    font-size: 2.5rem;
  }

  .collections-content p {
    font-size: 0.95rem;
  }

  .hero-btn {
    width: 100%;
  }

  .collections-image img {
    max-width: 320px;
  }
}



/* =========================
   I-LAX SECTION
========================= */

.ilax-section {
  background:
    linear-gradient(
      135deg,
      #24354a 0%,
      #5d5b7d 60%,
      #ff5ca7 140%
    );

  padding: 100px 8%;
  color: #fff;
}

.ilax-block {
  margin-bottom: 100px;
}

/* =========================
   HEADER
========================= */

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  flex: 1;
   font-family: "Montserrat", sans-serif;
}

.section-header h2 span {
  color: #ff6aa8;
  font-style: italic;
}

.accent-line {
  width: 8px;
  height: 60px;
  border-radius: 30px;
  background: #ff6aa8;
}

.ilax-logo {
    width: 300px;
    object-fit: contain;

    position: relative;
    left: 40px;
}

.highlights {
    color: #ff6aa8;
}

/* =========================
TABLET
========================= */

@media (max-width: 992px){

    .section-header{
        gap: 20px;
        margin-bottom: 40px;
    }

    .ilax-logo{
        width: 220px;
        left: 20px;
    }
}


/* =========================
MOBILE
========================= */
@media (max-width: 768px){

    .section-header{
        display: flex;
        flex-wrap: nowrap; /* keep accent + heading together */
        align-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .accent-line{
        flex-shrink: 0;
        width: 6px;
        height: 45px;
    }

    .section-header h2{
        flex: 1;
        font-size: 2rem;
        margin: 0;
    }

    .ilax-logo{
        width: 220px; /* larger logo */
        left: 0;
        flex-shrink: 0;
    }
}
/* =========================
SMALL PHONES
========================= */

@media (max-width: 480px){

    .section-header h2{
        font-size: 1.7rem;
    }

    .ilax-logo{
        width: 180px; /* don't make it tiny */
    }

    .accent-line{
        height: 40px;
    }
}
/* =========================
   CHALLENGE CARDS
========================= */

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.challenge-card {
  padding: 35px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 24px;
  backdrop-filter: blur(8px);
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.card-icon i {
  color: #ffffff;
}

.challenge-card h3 {
  margin-bottom: 18px;
  font-size: 1.6rem;
}

.challenge-card p {
  color: #fff;
  line-height: 1.7;

}

/* =========================
   ABOUT
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-content p {
  margin-bottom: 25px;
  line-height: 1.8;
  font-size: 1.09rem;
    color: #fff;
}

.benefits {
  margin-top: 35px;
}

.benefit {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1.06rem;
}

.benefit strong {
  color: #ffffff;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  display: block;
    box-shadow: 0 20px 50px rgba(255, 12, 150, 0.334);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .challenge-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-wrap: wrap;
  }

  .ilax-logo {
    width: 130px;
  }

  .accent-line {
    height: 45px;
  }

  .challenge-card {
    padding: 28px;
  }
}


/* =========================
   I-LAX SPECTRUM SECTION
========================= */

.ilax-spectrum{
    padding:120px 8%;
    position:relative;
}

.ilax-spectrum-card{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;

    padding:70px;

    border-radius:38px;

    background:
    radial-gradient(circle at top left,
    rgba(236,72,153,0.12),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(56,189,248,0.10),
    transparent 35%),

    linear-gradient(
    145deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
    );

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(18px);

    box-shadow:
    0 35px 90px rgba(0,0,0,0.45);
}

/* =========================
   CONTENT
========================= */

.ilax-badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

      background:
    linear-gradient(
      135deg,
      #24354a 0%,
      #5d5b7d 60%,
      #ff5ca7 140%
    );

    border:1px solid     linear-gradient(
      135deg,
      #24354a 0%,
      #5d5b7d 60%,
      #ff5ca7 140%
    );

    color:#fff;

    font-size:0.85rem;
    font-weight:600;

    margin-bottom:24px;
}

.ilax-spectrum-content h2{
    font-size:3rem;
    line-height:1.1;

    color:#f8fafc;

    margin-bottom:24px;

    font-family:"Montserrat",sans-serif;
}

.ilax-spectrum-content h2 span{
    background:linear-gradient(
    90deg,
    #f472b6,
    #38bdf8
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.ilax-spectrum-content p{
    font-size:1.08rem;
    line-height:1.9;

     color: #555;

    margin-bottom:40px;

    max-width:620px;
}

/* =========================
   FEATURES
========================= */

.ilax-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.feature-item{
    padding:18px 20px;

    border-radius:18px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.08);

     color: #555;

    font-weight:500;

    transition:0.3s ease;
}

.feature-item:hover{
    transform:translateY(-4px);

    border-color:rgba(244,114,182,0.3);

    box-shadow:
    0 15px 35px rgba(244,114,182,0.12);
}



.ilax-spectrum-image{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}



/* BOTH IMAGES SAME SIZE */
.spectrum-image-item1{
    width: 100%;
    max-width: 800px;
    height: 275px; /* same height */

    object-fit: cover;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.12);

box-shadow: 0 0 20px rgba(255, 51, 133, 0.4);

    transition: 0.4s ease;
}

.spectrum-image-item1:hover{
    transform: translateY(-6px);
}




.spectrum-image-item{
    width: 100%;
    max-width: 800px;
    height: 275px; /* same height */

    object-fit: contain;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.12);

box-shadow: 0 0 20px rgba(255, 51, 133, 0.4);

    transition: 0.4s ease;
}

.spectrum-image-item:hover{
    transform: translateY(-6px);
}




/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px){

    .ilax-spectrum-card{
        grid-template-columns:1fr;
        gap:50px;
        padding:50px;
    }

    .ilax-spectrum-content{
        text-align:center;
    }

    .ilax-spectrum-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .ilax-features{
        grid-template-columns:1fr;
    }

    .ilax-spectrum-content h2{
        font-size:2.5rem;
    }
}

@media (max-width: 768px){

    .ilax-spectrum{
        padding:80px 5%;
    }

    .ilax-spectrum-card{
        padding:35px;
    }

    .ilax-spectrum-content h2{
        font-size:2rem;
    }

    .ilax-spectrum-content p{
        font-size:0.95rem;
    }
}



/* =======================
HOW IT WORKS SECTION
======================= */
.how-it-works {
  padding: 100px 8%;
   background:
    linear-gradient(
      135deg,
      #24354a 0%,
      #5d5b7d 60%,
      #ff5ca7 140%
    );
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* soft glow background */
.how-it-works::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 450px;
  height: 450px;
  background: rgba(242, 106, 160, 0.25);
  filter: blur(120px);
  border-radius: 50%;
}

/* =======================
HEADER
======================= */
.hiw-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 10px;
}

.hiw-title {
  display: flex;
  align-items: center;
  gap: 14px;
   font-family: "Montserrat", sans-serif;
}

.hiw-accent {
  width: 6px;
  height: 50px;
  background: linear-gradient(180deg, #f26aa0, #ff8cc6);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(242, 106, 160, 0.4);
}

.hiw-title h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.5px;
   font-family: "Montserrat", sans-serif;
}

/* logo */
.hiw-logo img {
  width: 300px;
  max-width: 100%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  margin-left: 70px;
}



/* =======================
CARDS (VERTICAL LAYOUT)
======================= */
.hiw-cards {
  display: flex;
  flex-direction: column; /* 👈 vertical */
  gap: 25px;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
}

/* vertical line (timeline effect) */
.hiw-cards::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
}

/* =======================
CARD
======================= */
.hiw-card {
  background: rgba(255, 255, 255, 0.95);
  color: #1f2937;
  padding: 28px 28px 28px 70px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.3s ease;
}

/* step circle */
.hiw-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 28px;
  width: 18px;
  height: 18px;
  background: #f26aa0;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(242,106,160,0.15);
}

/* hover */
.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
}

/* ICON */
.hiw-icon {
  font-size: 26px;
  margin-bottom: 10px;
  color: #f26aa0;
}

/* TEXT */
.hiw-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

.hiw-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
}

/* =======================
ICON BASE
======================= */
.hiw-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f26aa0, #ff8cc6);
  position: relative;
  margin-bottom: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

/* =======================
1. OCULAR SHIELD (EYE ICON)
======================= */
.hiw-icon.ocular::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hiw-icon.ocular::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =======================
2. THALAMIC RELAY (BRAIN NODE)
======================= */
.hiw-icon.thalamic::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 6px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* small neural points */
.hiw-icon.thalamic::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  top: 10px;
  left: 10px;
  box-shadow: 12px 0 #fff, 0 12px #fff;
}

/* =======================
3. FLICKER CONTROL (LIGHT / STABILITY)
======================= */
.hiw-icon.flicker::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* stable light rays */
.hiw-icon.flicker::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
}
/* =======================
RESPONSIVE
======================= */
/* =======================
TABLET
======================= */
@media (max-width: 992px){

    .how-it-works{
        padding: 80px 6%;
    }

    .hiw-header{
        max-width: 100%;
    }

    .hiw-logo img{
        width: 220px;
    }

    .hiw-title h2{
        font-size: 32px;
    }

    .hiw-card p{
        font-size: 16px;
    }
}

/* =======================
MOBILE
======================= */
/* =======================
RESPONSIVE
======================= */

/* =======================
TABLET
======================= */
@media (max-width: 992px){

    .how-it-works{
        padding: 80px 6%;
    }

    .hiw-header{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        margin-bottom: 35px;
    }

    .hiw-logo{
        width: 100%;
        text-align: center;
        order: -1;
    }

    .hiw-logo img{
        width: 280px;
        max-width: 90%;
        margin-left: 0;
    }

    .hiw-title{
        justify-content: center;
        gap: 14px;
    }

    .hiw-title h2{
        font-size: 34px;
    }

    .hiw-card p{
        font-size: 16px;
    }
}

/* =======================
MOBILE
======================= */
@media (max-width: 768px){

    .how-it-works{
        padding: 70px 5%;
    }



    .hiw-header{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .hiw-logo{
        order: -1;
        width: 100%;
        text-align: center;
    }

    .hiw-logo img{
        width: 260px;
        margin: 0 auto;
        display: block;
    }

    .hiw-title{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .hiw-title h2{
        font-size: 28px;
        margin: 0;
        text-align: left;
    }
}

    .hiw-accent{
        height: 40px;
    }

    .hiw-cards{
        gap: 18px;
    }

    .hiw-cards::before{
        left: 16px;
    }

    .hiw-card{
        padding: 22px 20px 22px 50px;
    }

    .hiw-card::before{
        left: 8px;
        width: 16px;
        height: 16px;
    }

    .hiw-card h3{
        font-size: 18px;
    }

    .hiw-card p{
        font-size: 15px;
        line-height: 1.6;
    }

    .hiw-icon{
        width: 40px;
        height: 40px;
    }


/* =======================
SMALL PHONES
======================= */
@media (max-width: 480px){

    .how-it-works{
        padding: 60px 5%;
    }

    .hiw-logo img{
        width: 220px;
        max-width: 95%;
    }

    .hiw-title{
        gap: 10px;
    }

    .hiw-title h2{
        font-size: 24px;
    }

    .hiw-card{
        padding: 18px 16px 18px 45px;
        border-radius: 14px;
    }

    .hiw-card h3{
        font-size: 17px;
    }

    .hiw-card p{
        font-size: 14px;
    }

    .hiw-icon{
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .hiw-cards::before{
        left: 14px;
    }

    .hiw-card::before{
        left: 6px;
        width: 14px;
        height: 14px;
    }
}


/* =========================
ILAX BENEFITS SECTION (UPGRADED)
========================= */

.ilax-benefits-section {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 90px 20px;
  line-height: 1.7;
 
  position: relative;
  overflow: hidden;
}

/* soft glow */
.ilax-benefit-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #ff3385;
  border-radius: 50%;

  box-shadow:
    0 0 10px rgba(255, 51, 133, 0.8),
    0 0 20px rgba(255, 51, 133, 0.5),
    0 0 30px rgba(255, 51, 133, 0.3);

  animation: glowPulse 2.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.25);
  }
}

.icon-migraine::before {
  background: #ff4d6d;
  box-shadow:
    0 0 10px rgba(255, 77, 109, 0.8),
    0 0 25px rgba(255, 77, 109, 0.4);
}

.icon-eye::before {
  background: #ff7ab8;
  box-shadow:
    0 0 12px rgba(255, 122, 184, 0.8),
    0 0 28px rgba(255, 122, 184, 0.4);
}

.icon-office::before {
  background: #ff3385;
  box-shadow:
    0 0 10px rgba(255, 51, 133, 0.7),
    0 0 22px rgba(255, 51, 133, 0.35);
}

.icon-health::before {
  background: #ff9ac2;
  box-shadow:
    0 0 14px rgba(255, 154, 194, 0.9),
    0 0 30px rgba(255, 154, 194, 0.5);
}
/* =========================
CONTAINER
========================= */
.ilax-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: start;
  
}

/* =========================
TITLE
========================= */
.ilax-title {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 50px;
  position: relative;
  padding-left: 18px;
   font-family: "Montserrat", sans-serif;
  letter-spacing: -0.5px;
  color: #1f2937;
}



.ilax-brand-italic {
  font-style: italic;
  font-weight: 800;
  color: #ff7ab8;
}

/* =========================
BENEFITS LIST
========================= */
.ilax-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  
}



.ilax-benefit-item {
  position: relative;
  padding: 18px 20px 18px 60px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  
  
}

/* hover lift */
.ilax-benefit-item:hover {
  transform: translateY(-4px);
      background: linear-gradient(
        135deg,
        #24354a 0%,
        #3b4067 50%,
        #5d5b7d 100%
    );
  border-color: rgba(255, 51, 133, 0.25);
}

/* text emphasis */
.ilax-benefit-item strong {
  font-weight: 800;
  color: #ff3385;
  
}

/* =========================
CLEAN SOLID ICON SYSTEM (NO EMOJIS)
========================= */
.ilax-benefit-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  
  background: linear-gradient(135deg, #ff3385, #ff7ab8);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ICON TYPES (meaning-based) */

/* STAR / FEATURE */
.pink-star::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 
    68% 57%, 79% 91%, 50% 70%, 
    21% 91%, 32% 57%, 2% 35%, 39% 35%
  );
  
}

/* OFFICE / WORK */
.office-building::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 14px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 0 0 2px #fff inset;
}

/* EYE / OCULAR */
.ocular-health::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
}

/* SQUARE / SYSTEM */
.white-square::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 2px;
}

.ilax-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

/* LOGO AREA */
.ilax-logo-area {
  text-align: center;
  margin-bottom: 30px;

  /* IMPORTANT: remove forced shifting */
  margin-right: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
}



/* =========================
BASE ICON STYLE
========================= */
.ilax-benefit-item {
  position: relative;
  padding: 18px 20px 18px 60px;
  margin-bottom: 18px;
  font-size: 1.05rem;
    background: linear-gradient(
        135deg,
        #24354a 0%,
        #3b4067 50%,
        #5d5b7d 100%
    );
  border-radius: 14px;
  color: #fff;
}

/* shared icon box */
.ilax-benefit-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff3385, #ff7ab8);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* =========================
BASE GLOW DOT ICON
========================= */
.ilax-benefit-item::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #ff3385;
  border-radius: 50%;
  box-shadow:
    0 0 10px rgba(255, 51, 133, 0.8),
    0 0 20px rgba(255, 51, 133, 0.5),
    0 0 30px rgba(255, 51, 133, 0.3);
}

/* optional soft pulse */
.ilax-benefit-item::before {
  animation: glowPulse 2.5s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    box-shadow:
      0 0 10px rgba(255, 51, 133, 0.7),
      0 0 20px rgba(255, 51, 133, 0.4);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    box-shadow:
      0 0 16px rgba(255, 51, 133, 0.9),
      0 0 30px rgba(255, 51, 133, 0.6);
  }
}

/* =========================
VARIATION (position only = meaning difference)
========================= */

/* Migraine = slightly higher (brain level) */
.icon-migraine::before {
  top: 35%;
}

/* Eye = centered */
.icon-eye::before {
  top: 50%;
}

/* Office = slightly lower (ground/system) */
.icon-office::before {
  top: 65%;
}

/* Health = stable center glow (strongest presence) */
.icon-health::before {
  width: 12px;
  height: 12px;
  box-shadow:
    0 0 14px rgba(255, 51, 133, 0.9),
    0 0 28px rgba(255, 51, 133, 0.6),
    0 0 40px rgba(255, 51, 133, 0.3);
}





/* =========================
TARGET CARD
========================= */
.ilax-card {
  background: rgba(255, 51, 133, 0.95);
  color: #ffffff;
  padding: 63px 28px;
  border-radius: 16px;
  width: 100%;
    margin-top: 80px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.ilax-card:hover {
  transform: translateY(-6px);
}

.ilax-card h3 {
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 800;
  
}

.ilax-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ilax-card li {
  margin-bottom: 12px;
  font-size: 1.09rem;
  position: relative;
  padding-left: 18px;
  font-weight: 600;
}

.ilax-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #fff;
}

/* =========================
RESPONSIVE
========================= */
@media (max-width: 768px) {
  .ilax-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ilax-title {
    font-size: 2rem;
  }

  .ilax-sidebar {
    order: -1;
  }
}

/* =========================
BASE SECTION
========================= */
.ilax-design-section {
  background: linear-gradient(
    135deg,
    #24354a 0%,
    #5d5b7d 60%,
    #ff5ca7 140%
  );
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  padding: 100px 20px;
  line-height: 1.6;
}

/* =========================
CONTAINER GRID
========================= */
.ilax-design-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* =========================
TYPOGRAPHY
========================= */
.ilax-design-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  line-height: 1.2;
}

.ilax-design-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 6px;
  background-color: #ff3385;
  border-radius: 4px;
}

/* =========================
TEXT BLOCKS
========================= */
.ilax-intro-text {
  font-size: 1.15rem;
  color: #f0f0f5;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ilax-details-text {
  font-size: 1.05rem;
  color: #dcdce5;
  margin-bottom: 30px;
}

/* =========================
TESTIMONIAL
========================= */
.ilax-testimonial {
  position: relative;
  margin-top: 30px;
  padding-left: 20px;
  border-left: 4px solid #ff3385;
}

.ilax-testimonial p {
  font-style: italic;
  font-size: 1.15rem;
  color: #f5f5fa;
  margin: 0 0 8px 0;
}

.ilax-author {
  font-size: 0.95rem;
  color: #c5c5d5;
}

/* =========================
IMAGE SIDE
========================= */
.ilax-design-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ilax-image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(255, 12, 150, 0.25);
}

.ilax-featured-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* =========================
TABLET
========================= */
@media (max-width: 1024px) {
  .ilax-design-container {
    gap: 50px;
  }

  .ilax-design-title {
    font-size: 2.2rem;
  }
}

/* =========================
SMALL TABLET / MOBILE LANDSCAPE
========================= */
@media (max-width: 768px) {
  .ilax-design-section {
    padding: 80px 24px;
  }

  .ilax-design-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ilax-design-sidebar {
    order: -1;
  }

  .ilax-design-title {
    font-size: 2rem;
  }
}

/* =========================
MOBILE
========================= */
@media (max-width: 480px) {
  .ilax-design-section {
    padding: 70px 18px;
  }

  .ilax-design-title {
    font-size: 1.8rem;
  }

  .ilax-intro-text {
    font-size: 1rem;
  }

  .ilax-details-text {
    font-size: 0.95rem;
  }

  .ilax-testimonial p {
    font-size: 1rem;
  }

  .ilax-author {
    font-size: 0.85rem;
  }
}

/* =========================
SMALL PHONES
========================= */
@media (max-width: 360px) {
  .ilax-design-title {
    font-size: 1.6rem;
  }

  .ilax-intro-text,
  .ilax-details-text {
    font-size: 0.92rem;
  }
}

/* =========================
COMPARISON SECTION (UPGRADED)
========================= */

.ilax-comparison-section {
  color: #ffffff;
 font-family: "Inter", sans-serif;
  padding: 80px 20px;
}

/* =========================
CONTAINER
========================= */
.ilax-comparison-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
HEADER
========================= */
.ilax-comp-header {
  display: flex;
  justify-content: space-between;
    align-items: flex-start; /* align title and logo at same level */
  margin-bottom: 25px;     /* smaller gap before table */
  
  gap: 30px;
}

.ilax-comp-title{
    font-size:2.6rem;
    font-weight:800;
    margin:0;
    position:relative;
    padding-left:18px;
    font-family:"Montserrat",sans-serif;
    letter-spacing:-0.5px;
    color:#24354a;
    margin-bottom: 50px;
}
/* accent bar upgrade */
.ilax-comp-title::before{
    content:"";
    position:absolute;
    left:0;
    top:10%;
    height:80%;
    width:5px;
    border-radius:10px;
    background:linear-gradient(
        180deg,
        #ff3385,
        #ff7ab8
    );
}
/* =========================
LOGO AREA (cleaner alignment)
========================= */
.ilax-logo-area2 {
  text-align: right;
  margin-top: -120px; /* match title */
}

/* Move table up */
.ilax-table-responsive {
  margin-top: -20px;
}
.ilax-logo {
  font-size: 2.4rem;
  font-weight: 900;
  font-style: italic;
  margin: 0;
  letter-spacing: -1px;
  line-height: 1;
  
}

.ilax-logo::first-letter {
  color: #ff3385;
}

.ilax-tagline{
    font-size:0.75rem;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-top:6px;
    color:#6b7280;
}

/* =========================
TABLE WRAPPER
========================= */
.ilax-table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 14px;
}

/* =========================
TABLE BASE
========================= */
.ilax-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    text-align:left;
    min-width:700px;
}

/* =========================
TABLE HEADER
========================= */
.ilax-table thead tr{
    background:linear-gradient(
        135deg,
        #24354a 0%,
        #5d5b7d 100%
    );
}

.ilax-table th{
    padding:20px 24px;
    font-weight:800;
    color:#ffffff;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.ilax-table th:first-child{
    color:#ff9bc9;
}

.ilax-table th:nth-child(2){
    color:#ffd6e8;
}

.ilax-table th:nth-child(3){
    color:#ffc2dd;
}

.ilax-table th:last-child{
    color:#ffffff;
    background:rgba(255,92,167,0.15);
}

/* rounded corners */
.ilax-table th:first-child{
    border-top-left-radius:16px;
}

.ilax-table th:last-child{
    border-top-right-radius:16px;
}

/* =========================
BODY ROWS
========================= */
.ilax-table tbody tr{
    background:#24354a;
    transition:0.25s ease;
}

.ilax-table tbody tr:nth-child(even){
    background:#2d4058;
}

.ilax-table tbody tr:hover{
    background:#364c68;
}

.ilax-table td{
    padding:22px 24px;
    color:#f3f4f6;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

/* =========================
FEATURE COLUMN
========================= */
.ilax-table td.feature-name{
    font-weight:800;
    color:#ffffff;
}

/* =========================
HIGHLIGHT COLUMN
========================= */
.ilax-table td.highlight-cell{
    position:relative;
    font-weight:700;
    color:#ffffff;
    background:rgba(255,92,167,0.08);
}

.ilax-table td.highlight-cell::before{
    content:"";
    position:absolute;
    left:0;
    top:10%;
    bottom:10%;
    width:3px;
    border-radius:10px;
    background:linear-gradient(
        180deg,
        #ff3385,
        #ff7ab8
    );
}


/* =========================
RESPONSIVE
========================= */
/* =========================
LARGE LAPTOPS
========================= */
@media (max-width: 1200px){

  .ilax-comp-title{
    font-size: 2.3rem;
  }

  .ilax-logo-area2{
    margin-top: -80px;
  }

}

/* =========================
TABLETS
========================= */
@media (max-width: 992px){

  .ilax-comparison-section{
    padding: 70px 24px;
  }

  .ilax-comp-header{
    gap: 20px;
  }

  .ilax-comp-title{
    font-size: 2.1rem;
    margin-top: 0;
  }

  .ilax-logo-area2{
    margin-top: 0;
  }

  .ilax-table th,
  .ilax-table td{
    padding: 18px 18px;
    font-size: 0.95rem;
  }

}

/* =========================
MOBILE
========================= */
@media (max-width: 768px){

  .ilax-comparison-section{
    padding: 60px 20px;
  }

  .ilax-comp-header{
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .ilax-comp-title{
    font-size: 1.9rem;
    margin-top: 0;
    padding-left: 14px;
  }

  .ilax-comp-title::before{
    width: 4px;
  }

  .ilax-logo-area2{
    margin-top: 0;
    text-align: left;
  }

  .ilax-table-responsive{
    margin-top: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ilax-table{
    min-width: 700px;
  }

  .ilax-table th,
  .ilax-table td{
    padding: 14px;
    font-size: 0.9rem;
  }

}

/* =========================
SMALL PHONES
========================= */
@media (max-width: 480px){

  .ilax-comparison-section{
    padding: 50px 16px;
  }

  .ilax-comp-title{
    font-size: 1.6rem;
  }

  .ilax-tagline{
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  .ilax-table th,
  .ilax-table td{
    padding: 12px;
    font-size: 0.85rem;
  }

}

/* =========================
VERY SMALL PHONES
========================= */
@media (max-width: 360px){

  .ilax-comp-title{
    font-size: 1.4rem;
  }

  .ilax-table th,
  .ilax-table td{
    font-size: 0.8rem;
  }

}



/* Base Section Styling & Color Palette */
.ilax-impact-section {
      background:
    linear-gradient(
      135deg,
      #24354a 0%,
      #5d5b7d 60%,
      #ff5ca7 140%
    );
  color: #ffffff;
  font-family: 'Inter',sans-serif;
  padding: 80px 20px;
  line-height: 1.5;
}

.ilax-impact-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Flexbox Header Structure */
.ilax-impact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.ilax-impact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
   font-family: "Montserrat", sans-serif;
  position: relative;
  padding-left: 20px;
}

/* Pink Left Indicator Line */
.ilax-impact-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 6px;
  background-color: #ff3385;
  border-radius: 4px;
}

/* Corporate Brand Area */
.ilax-logo-area {
  text-align: right;
}

.ilax-logo {
  font-size: 3rem;
  font-weight: 800;
  font-style: italic;
  margin: 0;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1;
}


/* Layout Columns */
.ilax-impact-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
 
}

/* Large Stat Layout */
.ilax-stat-block {
  text-align: center;
  padding-top: 10px;
}

.ilax-stat-number {
  font-size: 8rem;
  font-weight: 800;
  color: #e65287;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -2px;
}

.ilax-stat-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.3;
}

/* Text & Content Columns */
.ilax-text-block {
  padding-top: -80px;
  margin-left: 100px;
}

.ilax-subheading {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 12px;
  color: #ffffff;
}

.ilax-description {
  font-size: 1.15rem;
  color: #e0e0e5;
  margin-bottom: 30px;
  max-width: 500px;
}

.ilax-brand-italic {
  font-style: italic;
  font-weight: 700;
}

/* Custom Checkmark Grid List */
.ilax-checkmark-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ilax-checkmark-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 1.15rem;
  color: #ffffff;
}

/* Inline Checkmark Glyph */
.ilax-checkmark-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  color: #e65287;
  font-weight: 900;
  font-size: 1.3rem;
}

/* Responsive Structural Breakpoints */
@media (max-width: 768px) {
  .ilax-impact-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  
  .ilax-logo-area {
    text-align: left;
  }

  .ilax-impact-title {
    font-size: 2rem;
  }

  .ilax-impact-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ilax-stat-number {
    font-size: 6rem;
  }

  .ilax-stat-label {
    font-size: 1.3rem;
  }
}


/* Base Section Layout & Colors */
.ilax-collections-section {
 
  font-family: "Inter", sans-serif;
  padding: 80px 20px;
}

.ilax-collections-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Flex Layout */
.ilax-coll-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.ilax-coll-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  padding-left: 20px;
  margin-bottom: 50px;
}

/* Pink Accent Bar */
.ilax-coll-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 6px;
  background-color: #ff3385;
  border-radius: 4px;
}

/* Brand Identity Styling */
.ilax-logo-area {
  text-align: right;
}

.ilax-logo {
  font-size: 3rem;
  font-weight: 800;
  font-style: italic;
  margin: 0;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1;
}




/* Responsive Product Cards Grid */
.ilax-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
  margin-top: -50px;
}

/* Card Container Styles */
.ilax-product-card {
  background: 
    #f8fafc
;

  border-radius: 12px;
  padding: 15px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  min-height: 280px;
  box-sizing: border-box;
}
/* Image Container */
.ilax-img-frame {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ilax-img-frame img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Card Labels */
.ilax-product-name {
  color: #1b1735;
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin: 15px 0 5px 0;
  line-height: 1.2;
}

/* Footer Range Text Settings */
.ilax-coll-footer {
  text-align: center;
  margin-top: 40px;
}

.ilax-range-info {
  font-size: 2.2rem;
  font-weight: 800;
  font-style: italic;
  margin: 0 0 10px 0;
  color: #1f2937;
  line-height: 1.2;
  letter-spacing: -0.5px;
  
}

.ilax-catalogue-note {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  margin: 0;
  color: #1f2937;
  opacity: 0.9;
  
}

.mobile-break {
  display: none;
}

/* Viewport Adjustments for Tablets and Mobile Screens */
@media (max-width: 992px) {
  .ilax-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .ilax-coll-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  
  .ilax-logo-area {
    text-align: left;
  }

  .ilax-coll-title {
    font-size: 2rem;
  }

  .ilax-range-info {
    font-size: 1.6rem;
  }

  .mobile-break {
    display: block;
  }

  .ilax-catalogue-note {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .ilax-products-grid {
    grid-template-columns: 1fr;
  }
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  background: linear-gradient(135deg, #39FF14, #00FF85);
  color: white;

  font-size: 26px;
  width: 90px;
  height: 90px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 999;

  transition: all 0.3s ease;

  /* 🔥 Glow effect */
  animation: pulse 2s infinite;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* 🔥 PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* TABLET */
@media (max-width: 900px) {
  .whatsapp-float {
    width: 65px;
    height: 65px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    font-size: 22px;
    bottom: 18px;
    right: 18px;
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
}


/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  background: linear-gradient(135deg, #39FF14, #00FF85);
  color: white;

  font-size: 26px;
  width: 90px;
  height: 90px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 999;

  transition: all 0.3s ease;

  /* 🔥 Glow effect */
  animation: pulse 2s infinite;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* 🔥 PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* TABLET */
@media (max-width: 900px) {
  .whatsapp-float {
    width: 65px;
    height: 65px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    font-size: 22px;
    bottom: 18px;
    right: 18px;
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
}
/* --------------------
   FOOTER
-------------------- */

.footer {
  background: #0f172a;
  color: #fff;
  padding: 80px 8% 30px 8%;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-branding img {
  width: 250px;
  margin-bottom: 20px;
}

.footer-tagline {
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: white;
  font-size: 16px;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #2563eb;
  transform: translateX(4px);
}

.footer-column p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
}

.footer-small {
  margin-top: 12px;
  font-size: 13px;
  color: #fff;
}

/* Social Links */
.footer-socials a {
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #2563eb;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 50px 0 25px 0;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #fff;
}

.footer-legal a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-legal a:hover {
  color: #2563eb;
}

/* =============================
   FOOTER RESPONSIVE
============================= */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer {
    padding: 70px 6% 30px 6%;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-branding img {
    margin: 0 auto 20px auto;
  }

  .footer-tagline {
    margin: 0 auto 20px auto;
  }

  .footer-column a {
    transform: none;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-socials a {
    margin: 0 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal a {
    margin: 0 10px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 60px 5% 25px 5%;
  }

  .footer-column h3 {
    font-size: 15px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 13px;
  }
}

/* --------------------
   RESPONSIVE
-------------------- */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

@media (max-width: 768px) {
  .hero {
    padding: 140px 24px 60px 24px;
  }
}
  .features,
  .collections,
  .app {
    padding: 60px 24px;
  }

}

/* ================================
   SCROLL REVEAL BASE (Apple Style)
================================ */

/* Hidden state */
.reveal{
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* When visible */
.reveal.active{
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ================================
   DIRECTION VARIATIONS
================================ */

/* From left */
.reveal-left{
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-left.active{
  opacity: 1;
  transform: translateX(0);
}

/* From right */
.reveal-right{
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active{
  opacity: 1;
  transform: translateX(0);
}

/* Zoom in */
.reveal-zoom{
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s ease;
}

.reveal-zoom.active{
  opacity: 1;
  transform: scale(1);
}


/* ================================
   STAGGER EFFECT (Apple feel)
================================ */

.reveal:nth-child(1){ transition-delay: 0.1s; }
.reveal:nth-child(2){ transition-delay: 0.2s; }
.reveal:nth-child(3){ transition-delay: 0.3s; }
.reveal:nth-child(4){ transition-delay: 0.4s; }
.reveal:nth-child(5){ transition-delay: 0.5s; }





/* ================================
   PERFORMANCE OPTIMIZATION
================================ */

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
  will-change: transform, opacity;
}


/* ================================
   OPTIONAL: DISABLE ON SMALL DEVICES
================================ */

@media (max-width: 600px){
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom{
    transform: none;
    opacity: 1;
    transition: none;
  }
}