:root {
    --title-color: #e0e1e1;
    --description-color: #bdbdbc;
}
body {
  margin: 0;
  padding: 0;
}

* {
    color: white;
}

h2,
h1,
h3 {
    font-family: "Lato";
    color: var(--title-color) !important;
    font-weight: bold !important;
}

p {
    color: var(--description-color) !important;
    font-family: "Poppins";
}

body {
    /* background: black !important; */
    /* background: url(Images/BackgrounImage.png); */
    /* Below is the compressed background */
    background: url(compressed-images/backgrounImagepartial.png);
    background-size: cover;
    /* make it cover the entire area */
    background-repeat: no-repeat;
    /* don’t repeat */
    background-position: center;
    /* center the image */
    background-attachment: fixed;
    /* keep it static */
}


:root {
  --nav-text-color: #ffffff;
  --nav-muted-color: #a1a1a1; /* Slightly more muted to match image */
  --nav-border-color: rgba(255, 255, 255, 0.1);
  --survey-border: rgba(255, 255, 255, 0.988);
  --survey-hover-bg: rgba(255, 255, 255, 0.1);
}

/* Navbar background with the specific dark-to-deep-blue gradient */
.navbar-mentacy {
  min-height: 80px;

  /* 🔥 Dark glass base */
  background:
    linear-gradient(
      120deg,
      rgba(120, 20, 30, 0.35) 0%,
      rgba(20, 35, 70, 0.45) 35%,
      rgba(10, 25, 45, 0.85) 70%
    );

  /* glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Container spacing to match the wide layout */
.navbar-mentacy .container-fluid {
  padding: 0 4rem; 
}

/* Brand Text: Uppercase and spaced */
.navbar-brand-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--nav-text-color);
  font-weight: 500;
  margin-left: 10px;
}

/* Right side "Chrome Extension" link */
.navbar-action-link {
  color: var(--nav-muted-color) !important;
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.navbar-action-link:hover {
  color: #fff !important;
}

.btn.btn-survey {
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
  background: transparent !important;
  box-shadow: inset 0 0 0 0 rgba(255,255,255,0.2);
  padding: 0.7rem 2rem;
  border-radius: 50px;
}

.btn.btn-survey:hover {
  background-color: rgba(255,255,255,0.12) !important;
  box-shadow: 0 0 12px rgba(255,255,255,0.25);
}

/* Pill “Take Survey” button - matches the screenshot weight */
.btn-survey {
  display: inline-flex;
  align-items: center;
  color: #ffffff !important;
  font-weight: 700; /* Bold text in image */
  font-size: 0.9rem;
  transition: all 0.3s ease;
}


/* Responsive fixes */
@media (max-width: 991px) {
  .navbar-mentacy .container-fluid { padding: 0 1.5rem; }
  .navbar-nav { padding-bottom: 1rem; }
}



/* ============================================HERO IMAGE STUFF============================================ */

.hero-container {
    width: 85%;
    margin: 4rem auto;
}


.hero-left {
    max-width: 65%;
    gap: 4rem;
}

.hero-description {
    color: var(--description-color);
    font-size: 1.1rem;
    width: 80%;
    line-height: 2.5rem;
}

.hero-image-wrapper {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;     /* 🔥 STACK IMAGE + BUTTONS */
  align-items: center;
}

.hero-image {
    margin-top: -30px; 
  width: 100%;
  max-width: 520px;
  height: auto;
  flex-shrink: 0;
}

/* Store buttons */
.store-buttons {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.store-buttons img {
  height: 48px;
  width: auto;
  max-width: none;
  cursor: pointer;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
  border-radius: 8px; /* soft corners */
}

.store-buttons img:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  filter: brightness(1.08);
}

.hero-h1 {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 4rem;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Remove underline from links */
.hero-buttons a {
  text-decoration: none;
}


.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  color: #000;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.35);
}

.hero-button-svg {
    width: 14px;   /* reduce arrow size */
  height: 14px;
  transition: transform 0.3s ease;
  color: #000000;
 
}

.hero-button:hover .hero-button-svg {
  transform: translateX(4px);
}
.hero-button:hover .hero-button-svg {
  color: #000;
}

/* ============================================INSIGHT HUB MODULES============================================ */

.insighthub-modules-container {
    width: 90%;
    max-width: 1300px;
    margin: 8rem auto;
}

.header-group {
    margin-bottom: 4rem;
}

.features-label {
    /* Gradient for the text */
    background: linear-gradient(90deg, #4ed5d2 0%, #2bd4d1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.features-label::after {
    content: "";
    display: block;
    width: 48px; /* Slightly wider to match image feel */
    height: 3px;
    /* Gradient for the underline */
    background: linear-gradient(90deg, #3a8483 0%, #4ed5d2 100%);
    margin-top: 8px;
   
}
.insighthub-h1 {
    color: #ffffffc6;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 3rem;
    margin-top: 30px;
}

.insighthub-cards-container {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: stretch; /* Makes all cards same height */
}

.insighthub-card {
    position: relative;
    width: 25%;
    padding: 2.5rem 1.8rem;
    border-radius: 1.2rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    text-align: left;

    /* remove normal border */
    border: none;

    /* smooth hover */
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}
.insighthub-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;                 /* border thickness */
    border-radius: inherit;
background: linear-gradient(
    to bottom,
    #407d5f 0%,   /* green (top) */
    #206b64 50%,  /* teal (middle) */
    #1a4a6e 100%  /* blue (bottom) */
);


    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;

    pointer-events: none;
}
.insighthub-card:hover::before {
    opacity: 0;
}

/* Featured Card Gradient */
.card-featured {
    background: linear-gradient(135deg, #1a4a6e 0%, #1a4a6e 60%, #2d5a44 100%);
    border: none;
}
.insighthub-card {
    transition:
        background 0.4s ease,
        border-color 0.4s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.insighthub-card:hover {
    background: linear-gradient(
        135deg,
        #1a4a6e 0%,
        #296899  0%,
        #2d5a44 80%
    );
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}


.insighthub-card:hover .insighthub-card-description {
    color: white !important;
}


.card-header-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.insighthub-card-image {
    width: 50px; /* Icons are smaller in the screenshot */
    height: 50px;
    object-fit: contain;
}
.insighthub-card:hover .mindspace-icon {
  content: url("images/2-insightHub-modules/MindSpace_Selected.png");
}
/* Sleep Zone */
.insighthub-card:hover .sleepzone-icon {
  content: url("images/2-insightHub-modules/SleepZone_Selected.png");
}

/* Calm Core */
.insighthub-card:hover .calmcore-icon {
  content: url("images/2-insightHub-modules/CalmCore_Selected.png");
}
.inspire-icon {
  content: url("images/2-insightHub-modules/InspireSpace_Selected.png");
  transition: transform 0.3s ease;
}
.insighthub-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.insighthub-card:hover .insighthub-card-title {
    color: #00f2ff !important;
}


.insighthub-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .insighthub-cards-container {
        flex-wrap: wrap;
    }
    .insighthub-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .insighthub-card {
        width: 100%;
    }
}
/* ===================== MindSpace ===================== */
/* ===================== MindSpace ===================== */




.mindspace-main-container {
  position: relative;
  border-radius: 36px;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;

  width: 78%;          /* change this to control width */
  min-height: 360px;   /* change this to control height */

  margin-left: auto;  /* 🔥 pushes container to the RIGHT */
  margin-right: 0;

  overflow: hidden;
  z-index: 1;
}



/* background image */
.mindspace-main-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/3-mind-space/BG.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  border-radius: inherit;
  z-index: -1;
}

/* REMOVE BORDER */
.mindspace-main-container::after {
  display: none;
}


.mindspace-main-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06);

  pointer-events: none;
}


/* White Inner Card */
.mindspace-white-card {
  background: #ffffff;
  border-radius: 18px;
  margin-top: 15px;

  width: 300px;
  min-height: 350px;     /* 🔥 increases height safely */

  padding: 1.6rem;
  flex-shrink: 0;

  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.mindspace-white-card {
  transform: translateX(-28px);  /* 🔥 subtle left shift */
}


.mindspace-white-card .card-image-wrapper {
  background: #fdfdfd;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.mindspace-white-card .card-label {
  color: #3ecdcd !important;
  font-weight: 600;
  font-size: 0.95rem;
}

.mindspace-white-card .card-title {
  color: #000 !important;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.1;
  margin: 0;
}

/* List Styling */
.mindspace-list-content {
    margin-top: 50px;
  flex: 1;
  padding-left: 4rem;
  max-width: 370px;
  transform: translateX(-50px);   /* 🔥 forces text wrapping */
}


.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 1.5rem;
  
}

.feature-list p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.55;
  color:white !important;   /* 👈 clean 2-line spacing */
}


.icon-circle img {
  width: 32px;
  height: 32px;
}
/* ===================== MindSpace Navigation ===================== */

.mindspace-nav {
  position: absolute;
  left: 60px;          /* outside the card */
  bottom: 30px;
  display: flex;
  gap: 14px;
  z-index: 20;
}

/* ================= Arrow Navigation ================= */

.mindspace-nav {
  display: flex;
  gap: 14px;
}

/* Base button */
.nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Arrow */
.nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* LEFT arrow */
.nav-btn.prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

/* ACTIVE / RIGHT button */
.nav-btn.active {
  background: #ffffff;
  border-color: #2bd4d1;   /* 🔥 small blue border */
}

/* Active arrow becomes dark */
.nav-btn.active::before {
  border-color: #2b2b2b;
}

/* Hover (subtle like design) */
.nav-btn:hover {
  transform: translateY(-1px);
}



/* ============================================Sleep Zone Stuff============================================ */
/* ================= Sleep Zone Cards ================= */
/* ================= SleepZone Image Only ================= */

.sleepzone-image-section {
  padding: 8rem 0;
}

.sleepzone-image-wrapper {
  width: 85%;
  display: flex;
  justify-content: center; /* center image */
  align-items: center;
}

.sleepzone-core-image {
  width: 100%;
margin-top: 150px;
  max-width: 1100px;   /* 🔥 controls image size */
  height: auto;
  display: block;
  margin-left: 200px;
}


/* ================= DIGITAL MENTACY (FINAL) ================= */

.digital-mentacy-section {
  padding: 10rem 0;
}

.digital-mentacy-container {
  width: 85%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6rem;
}

/* LEFT SIDE */
.digital-mentacy-left {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.product-label {
  font-size: 0.9rem;
  letter-spacing: 2px;
  position: relative;
  font-weight: 600;

  background: linear-gradient(90deg, #4ed5d2 0%, #2bd4d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-label::after {
 content: "";
    display: block;
    width: 48px; /* Slightly wider to match image feel */
    height: 3px;
    /* Gradient for the underline */
    background: linear-gradient(90deg, #3a8483 0%, #4ed5d2 100%);
    margin-top: 8px;
}

.product-title {
  font-size: 2.2rem;
  font-weight: 100;
  color: #ffffff;
}

.product-description {
  font-size: 1rem;
  line-height: 1.9;
  color: #bdbdbc;
  max-width: 420px;
}

/* FEATURES */
.product-feature {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
}

.product-feature img {
  width: 48px;
  height: 48px;
}

.product-feature h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #ffffff;
}

.product-feature p {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bdbdbc;
}

/* BUTTON */
.product-btn {
  margin-top: 2rem;
  width: fit-content;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px 34px;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  color: #000;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.35);
  
}

/* RIGHT IMAGE */
.digital-mentacy-right {
  width: 50%;
  position: relative;
}

.digital-mentacy-right img {
  width: 100%;
  border-radius: 20px;
 
  box-shadow:
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}
/* ================= TESTIMONIAL SECTION ================= */
/* ================= TESTIMONIAL SECTION ================= */

.testimonial-section {
  padding: 9rem 0 11rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(59,130,246,0.15), transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(168,85,247,0.12), transparent 40%),
    #0a0a0a;
  color: white;
  font-family: 'Inter', sans-serif;
}

.testimonial-container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================= TOP TEXT ================= */

.testimonial-top {
  max-width: 380px;
  margin-bottom: 3.5rem;
}

.testimonial-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #5eead4, #2bd4d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-bottom: 4px;
  position: relative;
}

.testimonial-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(90deg, #5eead4, #2bd4d1);
}

.testimonial-heading {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.35;
  margin-top: 1.2rem;
}

/* ================= DOTS ================= */

.testimonial-dots {
  display: flex;
  gap: 8px;
  margin-top: 1.2rem;
}

.testimonial-dots span {
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
}

.testimonial-dots span.active {
  background: #5eead4;
}

/* ================= CENTER AREA ================= */

.testimonial-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 2rem;
}


/* ================= ARROWS ================= */
.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.8);
  background: transparent;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav.left {
  left: 110px;   /* 🔥 push more left */
}

.testimonial-nav.right {
  right: 100px;  /* 🔥 push more right */
  background: white;
  color: #0a0a0a;
}

.testimonial-nav:hover {
  transform: translateY(-2px);
}

/* ================= CARDS ================= */

.testimonial-cards {
  position: relative;
  width: 460px;
  height: 260px;
}

.testimonial-card {
  position: absolute;
  width: 100%;
  padding: 2.5rem;
  border-radius: 24px;
  box-sizing: border-box;
  color: white;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* BACK CARD */
.card-back {
  background: linear-gradient(145deg, #7c2d12, #991b1b);
  transform: translate(42px, 58px);
  z-index: 1;
  opacity: 0.95;
}

/* FRONT CARD */
.card-front {
  background: linear-gradient(145deg, #1e3a8a, #312e81);
  z-index: 2;
  box-shadow: 0 35px 70px rgba(0,0,0,0.55);
}

/* ================= AVATAR & QUOTE ================= */

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: absolute;
  top: -32px;
  left: -32px;
  border: 3px solid #0a0a0a;
  object-fit: cover;
}

.quote-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 2rem;
  opacity: 0.85;
}

/* ================= CARD CONTENT ================= */

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.testimonial-name {
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
}

.testimonial-role {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 4px;
}

.stars {
  color: #facc15;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
/* THEMES */
.theme-blue {
  background: linear-gradient(145deg, #1e3a8a, #312e81);
}

.theme-red {
  background: linear-gradient(145deg, #7c2d12, #991b1b);
}
/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 10rem 0;
  background:
    radial-gradient(circle at 70% 20%, rgba(59,130,246,0.12), transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(168,85,247,0.1), transparent 40%),
    #0a0a0a;
  color: white;
  font-family: "Inter", sans-serif;
}

.faq-container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  flex-direction: column;   /* 🔥 stack vertically */
  align-items: center; 
}
.faq-top {
  width: 100%;
  max-width: 520px;

  margin-bottom: 3.5rem;
  align-self: flex-start;   /* 🔥 keeps it left-aligned visually */
}
.faq-right {
  width: 100%;
  max-width: 760px;   /* 🔥 matches screenshot width */
  margin: 0 auto;     /* 🔥 centered */
}

/* LEFT */
.faq-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #5eead4, #2bd4d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.faq-heading {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.4;
}

/* RIGHT */
.faq-item {
  border: 1px solid rgba(94,234,212,0.25);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: border 0.3s ease;
}

.faq-item.active {
  border-color: #5eead4;
  background: linear-gradient(
    145deg,
    rgba(14,165,233,0.18),
    rgba(99,102,241,0.15)
  );
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.2rem;
  color: #090909;
   background: #ffffff; 

  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;

  flex-shrink: 0;
}
.faq-item {
  border-radius: 14px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}
.faq-item.active {
  

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 20px 40px rgba(0,0,0,0.45);
}


.faq-answer p {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ============================================ Unlock Premium ============================================ */
/* ================= UPGRADE SECTION ================= */

.upgrade-section {
  position: relative;
  width: 100%;
  min-height: 340px;

  /* 🔥 Your background image */
  background: url("images/9-unlock-premium/PremiumCard.png") center / cover no-repeat;

  display: flex;
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;  
  overflow: hidden;
}

/* dark overlay for readability */
.upgrade-section::before {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 0;
}

/* ================= CONTENT ================= */

.upgrade-content {
  position: relative;
  z-index: 2;
  max-width: 800px; 
  padding: 4rem 4.5rem;
  color: #ffffff;
}

/* ================= TEXT ================= */

.upgrade-title {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 1.2rem;
}

.upgrade-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.2rem;
  
}

/* ================= BUTTON ================= */
.upgrade-btn {
  position: relative;
  display: inline-block;
  width: 180px;            /* control button size */
  cursor: pointer;
  text-decoration: none;
}

/* IMAGE */
.upgrade-btn img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.upgrade-btn::before {
  content: "";
  position: absolute;
  inset: -12px;

  border-radius: 999px;

  background: rgba(213, 176, 27, 0.66);
  filter: blur(40px);

  z-index: 0;
  transition: all 0.35s ease;
}


/* 🔥 subtle overall glow */
.upgrade-btn::before {
  content: "";
  position: absolute;
  inset: -6px;

  border-radius: inherit;

  background: rgba(250, 204, 21, 0.15);
  filter: blur(22px);
  z-index: -2;
}
.upgrade-btn:hover::after {
  bottom: -16px;
  filter: blur(18px);
  opacity: 1;
}

.upgrade-btn:hover::before {
  opacity: 0.35;
}

.upgrade-btn {
  transition: transform 0.25s ease;
}

.upgrade-btn:hover {
  transform: translateY(-2px);
}


/* TEXT OVER IMAGE */
.upgrade-btn .btn-text {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-size: 1rem;
  font-weight: 600;

  /* 🔥 YELLOW GRADIENT TEXT */
 background: linear-gradient(
  90deg,
  #fff7c2 0%,
  #fafa6fd5 40%,
  #f3d426 50%
);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  pointer-events: none;
}

/* ARROW */
.upgrade-btn .arrow {
  font-size: 1.8rem;

  /* 🔥 force white arrow */
  color: #ffffff;

  /* make sure gradient does NOT affect it */
  -webkit-text-fill-color: #ffffff;
  background: none;
  padding-bottom: 6px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .upgrade-content {
    padding: 3rem 2.5rem;
  }

  .upgrade-title {
    font-size: 1.6rem;
  }
}
/* ================= GET IN TOUCH ================= */

.contact-section {
  padding: 8rem 0 5rem;

  background:
    radial-gradient(circle at 70% 30%, rgba(59,130,246,0.12), transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(16,185,129,0.12), transparent 40%),
    #0a0a0a;

  color: white;
  font-family: "Inter", sans-serif;
}

.contact-container {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* TITLE */
.contact-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* SUBTEXT */
.contact-subtitle {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 3rem;
}

/* ================= INPUT ================= */

.contact-input-wrapper {
  position: relative;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.contact-input {
  width: 100%;
  padding: 1.1rem 4.2rem 1.1rem 1.6rem;
  border-radius: 999px;
  border: none;

  background: #0f2a22;
  color: white;
  font-size: 0.95rem;

  outline: none;
}

.contact-input::placeholder {
  color: rgba(255,255,255,0.6);
}

/* SEND ICON BUTTON */
.send-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);

  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;

  background: linear-gradient(135deg, #22c55e, #4ade80);
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.send-btn img {
  margin-top: 2.5px;
  margin-left: 1px;
  width: 20px;
  height: 20px;
}

.send-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 10px 25px rgba(34,197,94,0.45);
}

/* ================= CONTACT BUTTON ================= */

.contact-btn {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  border-radius: 999px;

  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.95rem;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255,255,255,0.35);
}



/* ============================================ Footer Stuff ============================================ */
/* ================= FOOTER ================= */

.footer-section {
  background:
    radial-gradient(circle at 70% 30%, rgba(59,130,246,0.15), transparent 45%),
    radial-gradient(circle at 30% 80%, rgba(168,85,247,0.15), transparent 40%),
    #0a0a0a;

  color: white;
  font-family: "Inter", sans-serif;
}

/* MAIN CONTAINER */
.footer-container {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;

  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 4rem;
}

/* LOGO */
.footer-logo {
  width: 140px;
}

/* LINKS AREA */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

/* COLUMN */
.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5eead4;
  margin-bottom: 1.2rem;
}

.footer-column a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}



/* ================= BOTTOM BAR ================= */

/* ================= BOTTOM BAR ================= */

.footer-bottom {
  width: 100%;
  padding: 2rem 0;
}

/* PILL BACKGROUND */
.footer-bottom-pill {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;

  padding: 1.4rem 2.4rem;
  border-radius: 999px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* TEXT */
.footer-bottom-pill p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* SOCIAL ICONS (IMAGE ONLY) */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-socials img {
  width: 38px;
  height: 38px;
  object-fit: contain;

  cursor: pointer;
  opacity: 0.7;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

/* HOVER */
.footer-socials img:hover {
  transform: translateY(-2px);
  opacity: 1;
}
footer {
  margin: 0;
  padding-bottom: 0;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}



/* ============================================IMAGE & FONT============================================ */
/* ==============Decreasing Width of All Images and Decreasing Font Size of all Texts================== */
/* ============================================IMAGE & FONT============================================ */
:root {
    font-size: 14px;
}



.cyan-green-background {
    width: 40%;
    height: 50rem;
}

.mindspace-main-image-1,
.sleepzone-main-image-1,
.calmcore-main-image-1,
.inspirespace-main-image-1 {
    width: 30%;
}

.mindspace-container2,
.sleepzone-container2,
.calmcore-container2,
.inspirespace-container2 {
    justify-content: center;
}

.inspirespace-container1,
.calmcore-container1,
.sleepzone-container1,
.mindspace-container1 {
    margin-bottom: 0;
}

.inspirespace-container2,
.calmcore-container2,
.sleepzone-container2,
.mindspace-container2 {
    gap: 5rem;
    justify-content: space-between;
}
.contact-section {
  padding-bottom: 2rem !important;
}

/* ============================================0VVVVVVVVVV0============================================ */