/* =======================
   GLOBAL STYLES (PRISMA LUXURY REDESIGN)
======================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #1f2937;
  overflow-x: hidden;
  padding-top: 120px;

  /* NEW BLACK PRISMA BACKGROUND (safe, no layout impact) */
  background: linear-gradient(135deg, #000000 0%, #050505 60%, #0a0a0f 100%);
}

/* IMAGE */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* TEXT */
p {
  color: rgba(226, 232, 240, 0.72);
  line-height: 1.7;
}

h1, h2, h3 {
  color: #f8fafc;
  font-weight: 500;
}



/* =======================
   NAVBAR
======================= */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
 
  display: flex;
  align-items: center;

  justify-content: space-between; /* KEY CHANGE */

  padding: 12px 8%;

  background: rgba(10, 12, 28, 0.55);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}



/* ================= LOGO BRAND BLOCK ================= */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  flex: 0 0 auto;
   margin-right: 40px;
}


/* circular logo */
.logo img {
  width: 130px;
  height: 130px;

  border-radius: 50%;
  object-fit: contain;
}

/* brand text container */
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  margin-top: 40px;
}

/* brand name */
.brand-name {
  font-size: 28px;
  font-weight: 700;
  color: #f8fafc;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}

/* tagline */
.brand-tagline {
  font-size: 17px;
  color: rgba(226, 232, 240, 0.65);
  letter-spacing: 1px;
  margin-top: 4px;
}

@media (max-width: 900px) {

  .logo {
    gap: 8px;
    margin-right: 0;
  }

  .logo img {
    width: 90px;
    height: 90px;
  }

  .brand-text {
    margin-top: 20px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-tagline {
    font-size: 14px;
  }

}
@media (max-width: 480px) {

  .logo img {
    width: 70px;
    height: 70px;
  }

  .brand-name {
    font-size: 18px;
  }

  .brand-tagline {
    font-size: 12px;
    letter-spacing: 0.5px;
  }

}
/* ================= NAV (CENTERED) ================= */

.nav {
  
  display: flex;
 justify-content: flex-end; /* KEY CHANGE */
  align-items: center;

  gap: 28px; /* 👈 spacing between links */
}

/* ================= NAV LINKS ================= */

.nav-link,
.dropdown-toggle {
  background: none;
  border: none;

  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;

  color: rgba(226, 232, 240, 0.75);
  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: linear-gradient(90deg, #38bdf8, #2563eb);
  transition: 0.3s ease;
}

.nav-link:hover::after,
.dropdown-toggle:hover::after {
  width: 100%;
}

.nav-link.active::after,
.dropdown-toggle.active::after {
  width: 100%;
}

/* ================= BADGES ================= */

.nav-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;

  border-radius: 999px;
  text-transform: uppercase;

  vertical-align: middle;
}

.nav-badge.new {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #fff;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.35);
}

.nav-badge.kids {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.25);
}

/* =======================
   DROPDOWN
======================= */

.dropdown {
  position: relative;
}

/* button */
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between; /* pushes arrow right */
  gap: 8px;
}

/* arrow */
.dropdown-toggle::before {
  content: "⌄";
  content: none; /* remove old arrow */
  font-size: 12px;

  color: rgba(226,232,240,0.65);

  transition: 0.3s ease;
}

/* rotate arrow */
.dropdown:hover .dropdown-toggle::before {
  transform: rotate(180deg);
}

/* =======================
   DROPDOWN MENU
======================= */

.dropdown-menu {
  position: absolute;

  top: calc(100% + 20px);
  left: 0;

  min-width: 260px;

  padding: 14px;

  border-radius: 20px;

  background: rgba(10,12,28,0.92);

  backdrop-filter: blur(24px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.45);

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: 0.35s ease;

  z-index: 100;
}

/* show menu */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

/* links */
.dropdown-menu a {
  display: flex;
  align-items: center;

  padding: 14px 16px;

  border-radius: 14px;

  color: rgba(226,232,240,0.78);

  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  transition: 0.3s ease;
}

/* hover */
.dropdown-menu a:hover {
  background: rgba(56,189,248,0.08);

  color: #38bdf8;

  transform: translateX(4px);
}



/* =======================
MOBILE
======================= */

@media (max-width: 1200px) {

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    margin-top: 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(255,255,255,0.03);
    border-radius: 18px;
    box-shadow: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* ================= LOGIN BUTTON ================= */
.login-btn {
  flex: 0 0 auto;

  padding: 10px 22px;
  border-radius: 10px;

  background: linear-gradient(135deg, #2563eb, #38bdf8);
  color: white;

  font-weight: 600;
  text-decoration: none;

  transition: 0.3s ease;

  animation: pulseGlow 2.5s infinite;
}

.login-btn:hover {

  animation: none;
  box-shadow: 0 15px 35px rgba(56, 189, 248, 0.25);
}

/* pulse */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.35);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(56, 189, 248, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

/* ================= HAMBURGER ================= */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;

  background: rgba(226, 232, 240, 0.8);
  border-radius: 3px;

  transition: 0.3s ease;
}

.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);
}


@media (max-width: 1200px){

  .logo img{
    width:90px;
    height:90px;
  }

  .brand-text{
    margin-top:20px;
  }

  .brand-name{
    font-size:22px;
  }

  .brand-tagline{
    font-size:14px;
  }
}


/* ================= MOBILE ================= */

@media (max-width: 1200px) {

  .main-header {
    justify-content: space-between;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;

    height: 100vh;
    width: 280px;

    background: rgba(10, 12, 28, 0.92);
    backdrop-filter: blur(25px);

    flex-direction: column;
    justify-content: flex-start;

    padding: 120px 30px;
    gap: 25px;

    border-left: 1px solid rgba(255, 255, 255, 0.08);

    transition: 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}



/* =========================
   COLLECTIONS HERO
========================= */

.collections-hero{
    position:relative;
    overflow:hidden;

    padding:100px 8% 110px;

    background:


    radial-gradient(circle at bottom right,
    rgba(168,85,247,0.08),
    transparent 30%),


}

/* grid texture */

.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.15;
    pointer-events:none;
}

/* blue glow */
.collections-hero::after{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(56,189,248,0.16),
        transparent 70%
    );

    filter:blur(80px);

    pointer-events:none;
}


.collections-hero .hero-glow{
    position:absolute;
    bottom:-250px;
    left:-250px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(168,85,247,0.12),
        transparent 70%
    );

    filter:blur(90px);

    pointer-events:none;
}

/* =========================
   CONTAINER
========================= */

.collections-container{
    position:relative;
    z-index:2;

    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.1fr 1fr;

    gap:80px;
    align-items:center;
}

/* =========================
   CONTENT
========================= */

.collections-content{
    max-width:650px;
}

/* 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:3.5rem;
    line-height:0.95;
    letter-spacing:-2px;
    color:#fff;
    margin-bottom:30px;
    font-family:"Montserrat",sans-serif;
    font-weight:800;
}

.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:1.2rem;
    line-height:1.9;

    color: #fff;

    margin-bottom:42px;

    max-width:600px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:16px 30px;

    border-radius:12px;

    font-weight:600;
    text-decoration:none;

    transition:0.35s 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     linear-gradient(
      135deg,
      #24354a 0%,
      #5d5b7d 60%,
      #ff5ca7 140%
    );

    backdrop-filter:blur(12px);

    color:#f8fafc;
}

.secondary-btn:hover{
    transform:translateY(-5px);

    border-color:rgba(56,189,248,0.35);
 box-shadow: 0 20px 50px rgba(255, 12, 150, 0.334);
}

/* =========================
   IMAGE
========================= */

.collections-image{
    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

.collections-image::before{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(56,189,248,0.18),
    transparent 70%
    );

    filter:blur(55px);

    z-index:0;
}

.collections-image img{
    position:relative;
    z-index:2;

    width:100%;
    max-width:620px;

    border-radius:32px;

    border:1px solid rgba(255,255,255,0.08);

    box-shadow:
    0 40px 90px rgba(0,0,0,0.45);

    transition:0.4s ease;
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width:992px){

    .collections-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:60px;
    }

    .collections-content{
        max-width:100%;
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .collections-content h1{
        font-size:3.3rem;
    }

    .collections-image img{
        max-width:500px;
    }
}

@media (max-width:768px){

    .collections-hero{
        padding:120px 5% 80px;
    }

    .collections-content h1{
        font-size:2.5rem;
    }

    .collections-content p{
        font-size:1rem;
    }

    .hero-btn{
        width:100%;
    }

    .collections-image img{
        max-width:350px;
    }
}

@media (max-width:480px){

    .collections-content h1{
        font-size:2rem;
    }

    .collections-tag{
        font-size:11px;
    }

    .collections-content p{
        font-size:0.95rem;
    }
}

/* =========================
   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:rgba(226,232,240,0.75);

    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:#e2e8f0;

    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;
}



.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: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 51, 133, 0.25);
}

/* text emphasis */
.ilax-benefit-item strong {
  font-weight: 800;
  color: #ffffff;
}

/* =========================
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: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

/* 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;
  }
}

/* =========================
LAYOUT
========================= */

.ilax-design-section{
    background: linear-gradient(
        135deg,
        #24354a 0%,
        #5d5b7d 60%,
        #ff5ca7 140%
    );
    padding: 90px 20px;
    color: #fff;
}

.ilax-design-container{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

/* =========================
LEFT CONTENT
========================= */

.ilax-design-title{
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    padding-left: 22px;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

.ilax-design-title::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    width: 6px;
    height: 80%;
    border-radius: 20px;
    background: #ff3385;
}

.ilax-intro-text{
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #f5f5f5;
}

.ilax-details-text{
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 45px;
    color: #e0e0e0;
}

.ilax-brand-italic{
    font-style: italic;
    font-weight: 700;
    color: #ff7ab8;
}

/* =========================
TESTIMONIAL
========================= */

.ilax-testimonial{
    border-left: 4px solid #ff3385;
    padding-left: 22px;
}

.ilax-testimonial p{
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 12px;
}

.ilax-author{
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
}

/* =========================
RIGHT IMAGE
========================= */

.ilax-design-sidebar{
    display: flex;
    justify-content: center;
    align-items: center;
}

.ilax-image-wrapper{
    width: 100%;
    max-width: 540px;

    border-radius: 22px;
    overflow: hidden;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.35),
        0 0 40px rgba(255,51,133,0.25);

    transform: translateY(-40px);
}

.ilax-featured-img{
    width: 100%;
    display: block;
    object-fit: cover;
}

/* =========================
TABLET
========================= */

@media (max-width: 992px){

    .ilax-design-container{
        gap: 40px;
    }

    .ilax-design-title{
        font-size: 2.3rem;
    }

    .ilax-image-wrapper{
        transform: translateY(-20px);
    }
}

/* =========================
MOBILE
========================= */

@media (max-width: 768px){

    .ilax-design-container{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ilax-design-sidebar{
        order: -1;
    }

    .ilax-image-wrapper{
        max-width: 600px;
        transform: none;
    }

    .ilax-design-title{
        font-size: 2rem;
    }

    .ilax-intro-text{
        font-size: 1.05rem;
    }

    .ilax-details-text{
        font-size: 1rem;
    }
}

/* =========================
SMALL MOBILE
========================= */

@media (max-width: 480px){

    .ilax-design-section{
        padding: 70px 20px;
    }

    .ilax-design-title{
        font-size: 1.8rem;
    }

    .ilax-testimonial p{
        font-size: 1.05rem;
    }

    .ilax-image-wrapper{
        border-radius: 16px;
    }
}

/* =========================
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;
 margin-top: 20px;
}

/* accent bar upgrade */
.ilax-comp-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 5px;
  background: linear-gradient(180deg, #ff3385, #ff7ab8);
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(255, 51, 133, 0.4);
}

/* =========================
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: #cfcfcf;
}

/* =========================
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;
  font-size: 1.05rem;
}

/* =========================
HEADER ROW
========================= */
.ilax-table thead tr {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.ilax-table th {
  padding: 20px 24px;
  font-weight: 800;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* rounded header corners */
.ilax-table th:first-child {
  border-top-left-radius: 12px;
  color: #ff3385;
}

.ilax-table th:last-child {
  border-top-right-radius: 12px;
  color: #ff3385;
  font-style: italic;
}

/* middle headers */
.ilax-table th:nth-child(2) {
  color: #f07fa6;
}
.ilax-table th:nth-child(3) {
  color: #e65287;
}

/* =========================
BODY ROWS
========================= */
.ilax-table tbody tr {
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ilax-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* cells */
.ilax-table td {
  padding: 22px 24px;
  color: #e6e6e6;
  vertical-align: middle;
}

/* feature column */
.ilax-table td.feature-name {
  font-weight: 800;
  color: #ffffff;
}

/* =========================
HIGHLIGHT COLUMN (i-Lax)
========================= */
.ilax-table td.highlight-cell {
  font-weight: 700;
  color: #ffffff;
  position: relative;
}

/* subtle vertical highlight glow */
.ilax-table td.highlight-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 2px;
  background: linear-gradient(180deg, #ff3385, #ff7ab8);
  border-radius: 10px;
}

/* =========================
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;
}

/* 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: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  
}

.ilax-catalogue-note {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 400;
  margin: 0;
  color: #f0f0f5;
  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;
  }
}
/* =========================
   PREMIUM FOOTER
========================= */

.premium-footer {
  position: relative;

  overflow: hidden;

  padding: 100px 8% 40px;

  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.06), transparent 28%),
    radial-gradient(circle at bottom right, rgba(168,85,247,0.06), transparent 28%),
    linear-gradient(
      135deg,
      #050816 0%,
      #0b1120 45%,
      #020617 100%
    );
}

/* subtle texture */
.premium-footer::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.2;

  pointer-events: none;
}

/* =========================
   GRID
========================= */

.footer-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns: 1.3fr 1fr 1fr 1fr;

  gap: 60px;

  max-width: 1500px;

  margin: auto;
}

/* =========================
   BRAND
========================= */

.footer-logo {
  width: 320px;
  margin-bottom: 35px;
  transition: 0.35s ease;
}

/* =========================
   SOCIALS
========================= */

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 10px;
}

.footer-socials a {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);

  color: #fff;
  text-decoration: none;

  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

/* hover */
.footer-socials a:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.06);
}

/* =========================
   LOGO WRAP
========================= */

.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo-wrap img {
  width: 300px;
  height: auto;
  object-fit: contain;

  margin-right: 110px;

  filter: brightness(1.05) contrast(1.1);
  opacity: 0.95;

  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

/* hover */
.footer-logo-wrap img:hover {
  transform: translateY(-3px) scale(1.03);
  opacity: 1;
  filter: brightness(1.1) contrast(1.15);
}
/* =========================
   TAGS
========================= */

.footer-tag {
  display: inline-block;

  padding: 12px 20px;

  border-radius: 18px;

  margin-bottom: 28px;

  font-size: 1rem;

  font-weight: 700;

  letter-spacing: 2px;

  border: 1px solid;
}

.footer-tag.orange {
  color: #f97316;
  border-color: rgba(249,115,22,0.4);
}

.footer-tag.purple {
  color: #a855f7;
  border-color: rgba(168,85,247,0.4);
}

.footer-tag.blue {
  color: #38bdf8;
  border-color: rgba(56,189,248,0.4);
}

.footer-tag.green {
  color: #84cc16;
  border-color: rgba(132,204,22,0.4);
}

.second-tag {
  margin-top: 40px;
}

/* =========================
   LINKS
========================= */

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 18px;
}

.footer-column a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #38bdf8;
}

/* =========================
   CONTACT
========================= */

.footer-contact p {
  color: rgba(255,255,255,0.82);

  line-height: 1.7;

  margin-bottom: 28px;
}

.contact-item {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 18px;

  color: rgba(255,255,255,0.82);
}

.contact-item i {
  width: 46px;
  height: 46px;

  border-radius: 50%;

  border: 1px solid rgba(255,255,255,0.1);

  display: flex;

  align-items: center;
  justify-content: center;

  color: #fff;

  background: rgba(255,255,255,0.03);
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: #38bdf8;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  position: relative;
  z-index: 2;

  margin-top: 80px;

  padding-top: 30px;

  border-top: 1px solid rgba(255,255,255,0.08);

  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.6);

  font-size: 0.95rem;
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* LARGE TABLET */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .footer-logo-wrap img {
    max-width: 220px;
    margin-right: 0;
  }
}

/* SMALL TABLET */
@media (max-width: 768px) {
  .premium-footer {
    padding: 80px 5% 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .footer-logo-wrap {
    justify-content: center;
    text-align: center;
  }

  .footer-logo-wrap img {
    max-width: 200px;
    margin-right: 0;
  }

  .footer-column {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .footer-logo-wrap img {
    max-width: 160px;
    margin-right: 0;
  }

  .footer-column a {
    font-size: 0.95rem;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}


/* ================================
   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;
  }
}
