/* =======================
   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;
  }
}


/* ================= DIVIDER ================= */

.section-divider {
  border: none;
  height: 1px;
  background: rgba(226, 232, 240, 0.12); /* light grey */
  margin: 40px auto;
  width: 85%;
}








/* =======================
   PRODUCT BADGE
======================= */
.product-badge {
    display: inline-block;
    background: #e0edff;
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* =======================
   HERO SECTION
======================= */



.product-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
   
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;

    background:
        linear-gradient(
            rgba(10, 12, 28, 0.75),
            rgba(10, 12, 28, 0.75)
        ),
        url("Images/young-woman-enjoys-techfilled-moment-smiling.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 30px;
    overflow: hidden;
}

/* LEFT CONTENT */
.product-hero .hero-left {
    flex: 1;
    max-width: 550px;
}
.product-hero .hero-image {
  flex: 1;
  display: flex;
 
  justify-content: flex-end;
}



.product-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;

  color: #f8fafc;
  font-family: "Montserrat", sans-serif;
}


.product-hero p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 25px;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
   font-family: "Inter", sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.45);
}


.product-hero .hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  margin-top: 80px;
}

.product-hero,
.product-section,
.cta-section {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   PRODUCT HERO RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .product-hero {
    padding: 140px 24px 100px;
    gap: 40px;
  }

  .product-hero h1 {
    font-size: 2.4rem;
  }

  .product-hero .hero-image {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .product-hero {
    flex-direction: column;
    padding: 120px 20px 80px;
    text-align: center;
  }

  .product-hero .hero-left {
    text-align: center;
  }

  .product-hero h1 {
    font-size: 2rem;
  }

  .product-hero p {
    font-size: 1.05rem;
  }

  .product-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .product-hero .hero-image {
    justify-content: center;
    text-align: center;
  }

  .product-hero .hero-image img {
    max-width: 320px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .product-hero {
    padding: 100px 16px 70px;
  }

  .product-hero h1 {
    font-size: 1.75rem;
  }

  .product-hero p {
    font-size: 1rem;
  }
}


/* =================================
   CONTENT SECTION
================================= */

.content-block {
  padding: 100px 7%;
  margin-top: -30px;
  overflow: hidden;
}



/* =================================
   CONTAINER
================================= */

.content-container {
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 32px;
}

/* =================================
   TEXT
================================= */

.content-text {
  width: 100%;
  max-width: 900px;
}

.content-text h2 {
  font-size: 2.1rem;
  line-height: 1.2;

  color: #f8fafc;

  margin-bottom: 18px;

  font-family: "Montserrat", sans-serif;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.9;

 color: rgba(226, 232, 240, 0.7);

  margin-bottom: 18px;

  font-family: "Inter", sans-serif;
}

/* =================================
   LIST
================================= */

.content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-list li {
  position: relative;

  padding-left: 26px;
  margin-bottom: 14px;

  font-size: 1rem;
  line-height: 1.75;

  color: rgba(226, 232, 240, 0.7);

  font-family: "Inter", sans-serif;
}

/* bullet */
.content-list li::before {
  content: "";
  position: absolute;

  left: 0;
  top: 11px;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #2563eb;
}

/* =================================
   IMAGE BASE
================================= */

.content-image,
.content-image2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

/* =================================
   IMAGE 1
================================= */

.content-image img {
  width: 100%;
  max-width: 760px;
  height: auto;

  display: block;

  border-radius: 20px;
 box-shadow: 0 25px 60px rgba(0, 106, 255, 0.15);
  object-fit: contain;

  transition: transform 0.35s ease;
}



/* =================================
   IMAGE 2 (FIXED RESPONSIVE)
================================= */

.content-image2 img {
  width: 100%;
  max-width: 1100px;
  height: auto;

  display: block;

  border-radius: 20px;

  object-fit: contain;
}






/* =================================
   TABLET
================================= */

@media (max-width: 768px) {
  .content-block {
    padding: 70px 5%;
  }

  .content-container {
    gap: 24px;
  }

  .content-text h2 {
    font-size: 1.55rem;
  }

  .content-text p,
  .content-list li {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .content-image img,
  .content-image3 img,
  .content-image2 img {
    border-radius: 18px;
  }
}

/* =================================
   MOBILE
================================= */

@media (max-width: 480px) {
  .content-block {
    padding: 55px 5%;
  }

  .content-text h2 {
    font-size: 1.3rem;
    line-height: 1.3;
  }

  .content-text p,
  .content-list li {
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .content-list li {
    padding-left: 22px;
  }

  .content-list li::before {
    width: 8px;
    height: 8px;
    top: 10px;
  }

  .content-image img,
  .content-image2 img,
  .content-image3 img {
    border-radius: 14px;
  }
}




/* SECTION WRAPPER */
.dual-image-section{
  padding: 100px 8%;
  text-align: center;
}

/* HEADING */
.section-title{
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 50px;
  font-family: "Montserrat", sans-serif;

  background: linear-gradient(
    90deg,
    #2563eb,
    #38bdf8,
    #34d399,
    #10b981
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* IMAGE ROW */
.image-row{
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* IMAGE CARD */
.image-card{
  flex: 1;
  max-width: 500px;

  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 25px 60px rgba(0, 106, 255, 0.15);

  transition: 0.4s ease;
}

.image-card img{
  width: 100%;
  height: 330px;
  object-fit: cover;

  display: block;

  transition: 0.4s ease;
}


.image-card2{
  flex: 1;
  max-width: 500px;

  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 25px 60px rgba(2, 187, 55, 0.15);

  transition: 0.4s ease;
}

.image-card2 img{
  width: 100%;
  height: 330px;
  object-fit: cover;

  display: block;

  transition: 0.4s ease;
}


/* RESPONSIVE */
@media (max-width: 768px){
  .image-row{
    flex-direction: column;
  }

  .image-card img{
    height: 250px;
  }
}
/* ================= INFO BLOCK ================= */
.info-block {
  padding: 80px 8%;
  background: #ffffff;
}

.info-block.gray {
  background: #f5f7fb;
}

/* CONTAINER */
.info-container {
  max-width: 900px; /* narrower for readability */
  margin: 0 auto;
}

/* TEXT */
.info-text h2 {
  font-size: 1.9rem;
  margin-bottom: 15px;
  color: #f8fafc;
}

.info-text p {
  margin-bottom: 12px;
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.7;
  font-size: 1rem;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .info-text h2 {
    font-size: 1.7rem;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .info-block {
    padding: 60px 5%;
  }

  .info-text h2 {
    font-size: 1.5rem;
  }

  .info-text p {
    font-size: 0.95rem;
  }
}

/* ================= SMALL ================= */
@media (max-width: 600px) {

  .info-text h2 {
    font-size: 1.3rem;
  }

  .info-text p {
    font-size: 0.9rem;
  }
}



/* ================= VIDEO ================= */
.design-video {
  max-width: 900px;
  margin: 50px auto 0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 120px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  
}

.design-content1 h2 {
  font-size: 2rem;
  margin-bottom: 12px; /* tighter */
  color: #f8fafc;
  text-align: center;
  margin-top: 50px;
}

.design-video iframe {
  width: 100%;
  height: 500px;
  display: block;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .design-video iframe {
    height: 300px;
  }
}


.procto-info{
    padding:120px 8%;
}

.procto-info-inner{
    max-width:1400px;
    margin:auto;

    padding:80px;

    border-radius:40px;

    background:
    radial-gradient(circle at top left,
    rgba(56,189,248,0.08),
    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(20px);

    box-shadow:
    0 35px 90px rgba(0,0,0,0.45);
}

.procto-intro{
    max-width:900px;
    margin-bottom:80px;
}

.procto-label{
    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    border:1px solid rgba(56,189,248,0.25);

    color:#38bdf8;

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;

    margin-bottom:24px;
}

.procto-intro h2{
    font-size:3rem;
    color:#f8fafc;

    margin-bottom:25px;

    line-height:1.15;
}

.procto-intro p{
    font-size:1.15rem;
    line-height:1.9;

    color:rgba(226,232,240,0.75);

    max-width:850px;
}

.procto-features{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.procto-feature{
    display:flex;
    gap:35px;

    padding-bottom:35px;

    border-bottom:
    1px solid rgba(255,255,255,0.08);
}

.feature-number{
    min-width:90px;

    font-size:3rem;
    font-weight:700;

    color:rgba(56,189,248,0.25);

    font-family:"Montserrat",sans-serif;
}

.procto-feature h3{
    color:#f8fafc;

    font-size:1.45rem;

    margin-bottom:12px;
}

.procto-feature p{
    color:rgba(226,232,240,0.72);

    line-height:1.8;
}

@media(max-width:768px){

    .procto-info-inner{
        padding:45px 30px;
    }

    .procto-intro h2{
        font-size:2rem;
    }

    .procto-feature{
        flex-direction:column;
        gap:15px;
    }

    .feature-number{
        font-size:2rem;
    }
}


/* ================= CONTENT BLOCK ================= */
.content-block1 {
  padding: 90px 8%;
 
}



/* CONTAINER (TEXT LEFT / IMAGE RIGHT) */
.content-container1 {
  max-width: 1000px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* TEXT */
.content-text1 {
  flex: 1;
  text-align: left;
}

.content-text1 h2 {
  font-size: 1.9rem;
  color: #f8fafc;
  margin-bottom: 15px;
}

.content-text1 p {
   color: rgba(226, 232, 240, 0.7);
  line-height: 1.7;
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  
}



/* LIST */
.content-text1 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.content-text1 ul li {
  margin-bottom: 10px;
  font-size: 0.98rem;
  position: relative;
  padding-left: 30px;
   color: rgba(226, 232, 240, 0.7);
   font-family: "Inter", sans-serif;
}

.content-text1 ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
}

/* IMAGE RIGHT */
.content-image1 {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.content-image1 img {
  width: 85%;
  max-width: 520px;
  height: auto;
  border-radius: 14px;
  
}

/* IMAGE RIGHT */
.content-image2 {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.content-image2 img {
  width: 980px;
  max-width: 1200px;
  height: auto;
  border-radius: 14px;
 
}



/* ================= REVERSE LAYOUT ================= */


.content-container1.reverse .content-image1 {
  order: 1;
  justify-content: flex-start;
}

.content-container1.reverse .content-text1 {
  order: 2;
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .content-container1,
  .content-container1.reverse {
    flex-direction: column;
    gap: 20px;
  }

  .content-image1,
  .content-container1.reverse .content-image1 {
    justify-content: center;
  }

    .content-text1 h2 {
    font-size: 1.5rem;
  }

  .content-image1 img {
    width: 95%;
  }


}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .content-container1 {
    gap: 30px;
  }

  .content-text1 h2 {
    font-size: 1.7rem;
  }

  .content-image1 img {
    width: 90%;
  }
}




/* ================= SMALL ================= */
@media (max-width: 480px) {
  .content-text1 h2 {
    font-size: 1.3rem;
  }

  .content-image1 img {
    width: 100%;
  }
}





/* =========================
   BLUE LIGHT SECTION
========================= */

.blue-light-section {

  padding: 110px 8%;



  overflow: hidden;

  position: relative;
}

/* =========================
   CONTAINER
========================= */

.blue-light-container {

  max-width: 1350px;

  margin: 0 auto;

  display: grid;

   grid-template-columns: 1.2fr 1.4fr; /* more space for image */

  gap: 70px;

  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.blue-label {

  display: inline-block;

  padding: 7px 18px;

  border-radius: 30px;

  background: rgba(37,99,235,0.08);

  border: 1px solid rgba(37,99,235,0.10);

  color: #2563eb;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 24px;
}

.blue-light-content h2 {

  font-size: 3.4rem;

  line-height: 1.1;

  color: #f8fafc;

  margin-bottom: 24px;

  font-family: "Montserrat", sans-serif;
}

.blue-light-content h2 span {

  background:
    linear-gradient(
      90deg,
      #38bdf8,
      #2563eb,
      #8b5cf6,
      #f97316
    );

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.blue-intro {

    color: rgba(226, 232, 240, 0.7);

  font-size: 1.03rem;

  line-height: 1.9;

  margin-bottom: 42px;

  max-width: 700px;
}

/* =========================
   FEATURE ICONS
========================= */

.blue-features {

  display: flex;

  flex-wrap: wrap;

  gap: 18px;

  margin-bottom: 45px;
}

.blue-feature {

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 14px 18px;

  border-radius: 18px;


  border: 1px solid rgba(13, 71, 195, 0.666);

    color: #0284c7;

  backdrop-filter: blur(12px);

  box-shadow:
    0 10px 25px rgba(15,23,42,0.05);

  transition: 0.3s ease;
}

.blue-feature:hover {

  transform: translateY(-4px);

  box-shadow:
    0 18px 35px rgba(37,99,235,0.10);
}

.blue-icon {
  color: #0284c7;
  font-size: 1.15rem;
}

/* =========================
   INFO GRID
========================= */

.light-grid {

  display: grid;

  grid-template-columns: repeat(2,1fr);

  gap: 24px;
}

/* =========================
   CARDS
========================= */

.light-card {

  padding: 34px;

  border-radius: 28px;


  border: 1px solid rgba(37,99,235,0.08);

  backdrop-filter: blur(18px);

  box-shadow:
    0 20px 45px rgba(15,23,42,0.06);

  transition: 0.35s ease;
}

.light-card:hover {

  transform: translateY(-6px);

  box-shadow:
    0 28px 60px rgba(37,99,235,0.12);
}

/* HARMFUL */

.light-card.harmful {

  border-top: 5px solid #f97316;
}

.light-card.harmful h3 {

  color: #ea580c;
}

/* HEALTHY */

.light-card.healthy {

  border-top: 5px solid #0ea5e9;
}

.light-card.healthy h3 {

  color: #0284c7;
}

/* TEXT */

.light-card h3 {

  font-size: 1.35rem;
 
  margin-bottom: 12px;

  font-family: "Montserrat", sans-serif;
}

.light-card span {

  display: inline-block;

  margin-bottom: 16px;

  color: #f8fafc;

  font-weight: 700;

  font-size: 1rem;
}

.light-card p {

  color: rgba(226, 232, 240, 0.7);

  line-height: 1.85;

  font-size: 0.96rem;
}

.blue-light-image img {
  width: 125%;
  max-width: 1050px;

  transform: translateY(40px) translateX(35px) scale(1.08);

  display: block;
  transition: transform 0.3s ease;

  filter: drop-shadow(0 30px 60px rgba(37,99,235,0.15));
}

.blue-light-image img:hover {
  transform: translateY(38px) translateX(40px) scale(1.12);
}
/* =========================
   BOTTOM BOX
========================= */

.blue-bottom {

  max-width: 1200px;

  margin: 75px auto 0;

  text-align: center;

  padding: 38px;

  border-radius: 30px;

  background:
    linear-gradient(
      135deg,
      rgba(37,99,235,0.08),
      rgba(14,165,233,0.04)
    );

  border: 1px solid rgba(37,99,235,0.08);

  box-shadow:
    0 20px 50px rgba(37,99,235,0.08);
}

.blue-bottom p {

  font-size: 1.3rem;

  line-height: 1.8;

 color: #f8fafc;

  font-family: "Montserrat", sans-serif;
}

.blue-bottom strong {

  color: #2563eb;
}



/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

  .blue-light-section {

    padding: 90px 6%;
  }

  .blue-light-container {

    gap: 50px;
  }

  .blue-light-content h2 {

    font-size: 2.7rem;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .blue-light-section {

    padding: 75px 5%;
  }

  .blue-light-container {

    grid-template-columns: 1fr;

    gap: 50px;
  }

  .blue-light-content {

    text-align: center;
  }

  .blue-features {

    justify-content: center;
  }

  .light-grid {

    grid-template-columns: 1fr;
  }

  .blue-light-content h2 {

    font-size: 2.1rem;
  }

  .blue-bottom p {

    font-size: 1.08rem;
  }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

  .blue-light-content h2 {

    font-size: 1.8rem;
  }

  .blue-intro,
  .light-card p {

    font-size: 0.93rem;
  }

  .blue-bottom {

    padding: 28px 22px;
  }

  .blue-bottom p {

    font-size: 1rem;
  }
}


/* 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;
  }
}