/* ===== MOON: PREMIUM TYPOGRAPHY UNIFICATION ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Font Families */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Consistency Colors */
    --text-main: #000000;
    --text-dim: rgba(0, 0, 0, 0.55);
    --text-white: #ffffff;
    --text-white-dim: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased; /* Makes fonts look smoother on Mac/iPhone */
}

body {
    background-color: #fff;
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fix for all headings across the page */
 h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 800; /* Apple-style bold */
    letter-spacing: -0.03em;
}

/* Fix for all paragraphs and labels */
p, span, label, li {
    font-family: var(--font-main);
    font-weight: 300; /* Elegant light weight */
    letter-spacing: -0.01em;
}













/* --- HERO FIX --- */
.hero-content h1 {
    font-weight: 800; 
    letter-spacing: -0.04em; /* Tighter bold for premium look */
}

.hero-content p {
    font-weight: 300;
    color: var(--text-white-dim); /* Dimmed description */
}

/* --- SECTION TITLES FIX --- */
.section-title, .obg__heading, .diff__main-heading, .section-heading {
    font-weight: 800 !important;
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    letter-spacing: -0.04em !important;
}

/* --- DESCRIPTION TEXT FIX --- */
.points-list p, .obg__para, .diff__text, .cta-text, .step-card p {
    font-weight: 400 !important;
    color: var(--text-dim) !important; /* Professional Dimming */
    font-size: 1.1rem;
}

/* --- SUB-HEADINGS FIX --- */
.diff__sub-heading, .step-card h3 {
    font-weight: 600 !important;
    color: var(--text-main);
}

/* --- BUTTON CONSISTENCY --- */
.ultra-premium-btn, .redirect-btn, .apple-btn {
    font-family: var(--font-main) !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
}












/* 1. GLOBAL RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff; /* Base background for the page */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #000;
    overflow-x: hidden;
    overflow-y: auto; /* Allows scrolling after the full-screen hero */
}

/* 2. HERO SECTION (Emerging Effect) */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #000; /* Keeps the transition dark and premium */
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/aboutuspagehero.jpg') no-repeat center center/cover;
    
    /* Initial state for "Emerge" animation */
    transform: scale(1.15);
    filter: blur(15px);
    opacity: 0;
    
    transition: transform 2s cubic-bezier(0.2, 0, 0.2, 1), 
                filter 2s ease-out, 
                opacity 1.5s ease-in;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Dark overlay for text contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    width: 100%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 7rem); 
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* 3. REVEAL ANIMATIONS (Triggered by JS) */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.bg-image.emerge {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
}

.reveal-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for hero description */
#desc.show {
    transition-delay: 0.4s;
}

/* 4. PROBLEM SECTION (Below the Hero) */
.problem-section {
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 80px;
    color: #000;
    letter-spacing: -1px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.problem-card {
    display: flex;
    flex-direction: column;
}

.image-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #9b9393;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.image-box:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-label {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 40px;
    text-transform: lowercase;
}

.points-list p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
}

.points-list strong {
    font-weight: 700;
    color: #000;
}

/* 5. RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: 1fr; /* Stacks columns on tablet/mobile */
        gap: 80px;
    }
}

@media (max-width: 480px) {
    .problem-section {
        padding: 60px 15px;
    }
    
    .image-box {
        border-radius: 20px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
}

























/* ===== ABOUT US HERO SECTION ===== */

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background Image Layer */
.hero-wrapper .bg-image {
    position: absolute;
    inset: 0;
    background-image: url("/assets/aboutuspagehero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.15);
    filter: blur(18px);
    opacity: 0;

    transition:
        transform 2s cubic-bezier(0.2, 0, 0.2, 1),
        filter 2s ease,
        opacity 1.5s ease;
    z-index: 0;
}

/* Visible State */
.hero-wrapper .bg-image.emerge {
    transform: scale(1);
    filter: blur(0);
    opacity: 1;
}

/* Overlay */
.hero-wrapper .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
}

/* Heading */
.hero-content h1 {
    font-size: clamp(3rem, 9vw, 7.8rem); /* slightly bigger */
    font-weight: 700;                   /* dimmed boldness */
    letter-spacing: 0.1em;              /* tighter = premium */
    margin-bottom: 18px;
}


/* Description */
.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 300;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Reveal Animation */
.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.4s ease, transform 1.4s ease;
}

.reveal-item.show {
    opacity: 1;
    transform: translateY(0);
}

#desc.show {
    transition-delay: 0.4s;
}




















/* 1. GLOBAL RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #000;
    overflow-x: hidden;
    overflow-y: auto;
}

/* 2. HERO SECTION */
.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #000;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/wwd.png') no-repeat center center/cover;
    transform: scale(1.15);
    filter: blur(15px);
    opacity: 0;
    transition: transform 2s cubic-bezier(0.2, 0, 0.2, 1), 
                filter 2s ease-out, 
                opacity 1.5s ease-in;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
    width: 100%;
    max-width: 900px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 8vw, 7rem); 
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* 3. REVEAL ANIMATIONS */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease, transform 1.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.bg-image.emerge {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
}

.reveal-item.show {
    opacity: 1;
    transform: translateY(0);
}

#desc.show {
    transition-delay: 0.4s;
}

/* 4. COMMON SECTION STYLES */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* 5. PROBLEM SECTION */
.problem-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 5;
}

.problem-section .section-title {
    margin-bottom: 80px;
    text-transform: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.problem-card {
    display: flex;
    flex-direction: column;
}

.image-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #9b9393;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.image-box:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-label {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 40px;
    text-transform: lowercase;
}

.points-list p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
}

.points-list strong {
    font-weight: 700;
    color: #000;
}

/* 6. MOON VIDEO SECTION */
.moon-section {
    padding: 80px 0 120px;
    background-color: #f9f9f9; /* Slightly different bg for contrast */
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 60px;
    font-weight: 400;
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background-color: #000;
}

.video-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.corner-heading {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    text-align: right;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for readability */
    padding: 10px 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px); /* Adds a modern blur effect behind the text */
}

/* 7. RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
}

@media (max-width: 480px) {
    .problem-section { padding: 60px 0; }
    .moon-section { padding: 60px 0 80px; }
    
    .image-box, .video-box {
        border-radius: 20px;
    }
    
    .problem-section .section-title,
    .moon-section .section-title {
        margin-bottom: 40px;
    }
    
    .corner-heading {
        bottom: 15px;
        right: 15px;
        padding: 8px 15px;
    }
}














/* ================= OUR BACKGROUND – REFINED WHITE UI ================= */

.obg {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 5vw;
  background: #ffffff; /* Total Crisp White */
  color: #1a1a1a;
  overflow: hidden;
}

/* Subtle background image/pattern - Optional */
.obg__texture {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); /* Very faint pattern */
}

.obg__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.obg__heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 50px;
  text-transform: capitalize;
}

.obg__stage {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* CARD BASE */
.obg__card {
  position: relative;
  border: none;
  padding: 0;
  background: #f4f4f4;
  cursor: pointer;
  border-radius: 24px; /* Smoother corners */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  outline: none;
}

.obg__card-inner {
  width: 100%;
  height: 100%;
}

.obg__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* BIG CARD */
.obg__card.is-active {
  grid-row: 1 / span 3;
  height: clamp(350px, 50vw, 550px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* SMALL CARDS */
.obg__card:not(.is-active) {
  height: 160px;
  opacity: 0.8;
  filter: grayscale(20%);
}

.obg__card:not(.is-active):hover {
  transform: translateY(-8px) scale(1.02);
  opacity: 1;
  filter: grayscale(0%);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* TEXT */
.obg__para {
  max-width: 65ch;
  margin-top: 48px;
  line-height: 1.8;
  font-size: 18px;
  color: #555;
}

.obg__para strong {
  color: #000;
}

/* RESPONSIVE & CENTER ALIGNMENT */
@media (max-width: 900px) {
  .obg {
    text-align: center;
  }

  .obg__heading {
    margin-bottom: 30px;
  }

  .obg__stage {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .obg__card.is-active {
    grid-row: auto;
    height: 300px;
    border-radius: 20px;
  }

  .obg__card:not(.is-active) {
    height: 140px;
    border-radius: 16px;
  }

  .obg__para {
    margin: 40px auto 0;
    font-size: 16px;
  }
}




















/* ================= HOW MOON IS DIFFERENT – VISUAL SYSTEM (WORDPRESS) ================= */

.diff {
    position: relative; /* Needed for background layering */
    background-color: #ffffff; /* Fallback if image fails */
    
    /* 🔹 Background Image (Change URL as needed) */
    background-image: url('/assets/bg\ in\ aboutus.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: clamp(80px, 12vw, 160px) 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden;
}

/* 🔹 Soft white overlay to keep premium readability */
.diff::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92); /* Adjust opacity if needed */
    z-index: 0;
}

/* ================= CONTAINER ================= */

.diff__container {
    position: relative; /* Keeps content above overlay */
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ================= MAIN HEADING ================= */
/* 
   Heading explains:
   - This visual system is recent
   - It is built using WordPress
   - It follows structured design principles
*/
.diff__main-heading {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700; /* Slightly reduced from 800 for elegance */
    color: #0a0a0a;
    letter-spacing: -0.03em;
    margin-bottom: clamp(60px, 10vw, 100px);
}

/* ================= GRID ================= */

.diff__grid {
    display: flex;
    flex-direction: column;
    gap: clamp(50px, 8vw, 80px);
}

.diff__item {
    max-width: 700px;
    margin: 0 auto;
}

/* ================= SUB HEADINGS ================= */

.diff__sub-heading {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

/* ================= BODY TEXT ================= */

.diff__text {
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.7;
    color: #555555;
    font-weight: 400;
}

/* ================= ANIMATIONS ================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {
    .diff {
        padding: 60px 20px;
    }

    .diff__main-heading {
        margin-bottom: 50px;
    }

    .diff__grid {
        gap: 45px;
    }
}




















@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --primary-yellow: #f1c40f; 
    --progress-red: #ff4757;
    --progress-green: #2ecc71;
}

.process-section {
    background-color: var(--bg-white);
    padding: 120px 20px;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: var(--text-dark);
    letter-spacing: -1px;
}

/* --- Premium Yellow Shine Button --- */
.ultra-premium-btn {
    position: relative;
    padding: 22px 60px;
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--primary-yellow);
    color: #000;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.3);
    text-transform: uppercase;
}

.ultra-premium-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.6);
    transform: rotate(30deg);
    animation: shineBtn 3s infinite;
}

@keyframes shineBtn {
    0% { left: -60%; }
    20% { left: 120%; }
    100% { left: 120%; }
}

.ultra-premium-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 45px rgba(241, 196, 15, 0.5);
}

/* --- Timeline Styling --- */
.timeline-container {
    max-width: 900px;
    margin: 80px auto 0;
    position: relative;
    display: none;
    padding-bottom: 100px;
}

.vertical-line {
    position: absolute;
    left: 45px;
    top: 0;
    width: 8px;
    height: 100%;
    background: #f4f4f4;
    border-radius: 20px;
}

.progress-fill {
    position: absolute;
    top: 0;
    width: 100%;
    height: 0%;
    background: var(--progress-red);
    border-radius: 20px;
    transition: background 0.8s ease; /* Color change speed */
    box-shadow: 0 0 30px rgba(255, 71, 87, 0.4);
}

/* --- Step Cards --- */
.steps-column {
    display: flex;
    flex-direction: column;
    gap: 150px; /* Increased gap for slower scroll feel */
}

.step-card-wrapper {
    display: flex;
    align-items: center;
    opacity: 0.15;
    transform: translateX(-30px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.step-card-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.node-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 3px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    flex-shrink: 0;
    transition: all 0.8s ease;
}

.step-card {
    background: #fff;
    margin-left: 50px;
    padding: 45px;
    border-radius: 40px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    flex-grow: 1;
    transition: all 0.8s ease;
}

.step-card h3 { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; transition: color 0.5s; }
.step-card p { font-size: 1.3rem; color: #555; line-height: 1.6; transition: color 0.5s; }

/* Active & Colored State */
.step-card-wrapper.active .node-icon {
    border-color: var(--step-clr);
    box-shadow: 0 0 35px var(--step-clr);
    transform: scale(1.1);
}

.step-card-wrapper.active .node-icon svg { color: var(--step-clr); }

.step-card-wrapper.active .step-card {
    background-color: var(--step-clr);
    transform: translateX(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.step-card-wrapper.active .step-card h3,
.step-card-wrapper.active .step-card p { color: white; }

/* Final Green State */
.all-green .progress-fill { 
    background: var(--progress-green) !important;
    box-shadow: 0 0 40px var(--progress-green);
}
.all-green .step-card-wrapper .node-icon { border-color: var(--progress-green) !important; }
.all-green .step-card-wrapper .step-card { background-color: var(--progress-green) !important; }

/* Blast Effect */
#blast-overlay {
    position: absolute;
    top: 50%; left: 50%; width: 0; height: 0;
    background: var(--progress-green);
    border-radius: 50%;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.blast-animate { animation: blastEffect 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

@keyframes blastEffect {
    0% { width: 0; height: 0; opacity: 1; }
    40% { opacity: 1; }
    100% { width: 4500px; height: 4500px; opacity: 1; } /* Stays solid longer for reset */
}

@media (max-width: 768px) {
    .section-heading { font-size: 2.5rem; }
    .node-icon { width: 70px; height: 70px; }
    .step-card { margin-left: 20px; padding: 30px; }
}







































/* ========================================================================= */
/* ========================= CONTACT REDIRECT SECTION ====================== */
/* ========================================================================= */

.contact-us {
  background: url('/IMAGE/brandconatactusbg.png') center center/cover no-repeat;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 150px; /* Adjust spacing from section above */
}

.contact-window {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  width: 95%;
  max-width: 1050px;
  overflow: hidden;
  color: #fff;
  transition: transform 0.3s ease;
}

/* --- Window Top Bar (Dots) --- */
.window-header {
  background-color: rgba(107, 106, 106, 0.2);
  padding: 15px 20px;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  display: inline-block;
}
.red { background-color: #ff5f56; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #27c93f; }

/* --- Content Layout --- */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 40px;
  gap: 40px;
}

.left-box {
  flex: 1.2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-box h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #000; /* Matching your black text style */
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 30px 0;
  letter-spacing: -0.5px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info {
  font-size: 1rem;
  color: #000;
  font-weight: 600;
  margin: 0;
  opacity: 0.85;
}

/* --- Right Side CTA --- */
.right-box {
  flex: 1;
  min-width: 300px;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}

.cta-text {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.6;
  color: #000;
  margin-bottom: 35px;
  font-weight: 400;
}

/* --- The Glass Button (Redirect) --- */
.redirect-btn {
  text-decoration: none;
  display: inline-block;
  color: #e60000; /* Your brand red */
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.redirect-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.redirect-btn:active {
  transform: translateY(-1px);
}

/* ---------- Responsive Optimization ---------- */
@media screen and (max-width: 768px) {
  .contact-us {
    padding: 60px 15px;
    margin-top: 80px;
  }

  .contact-content {
    flex-direction: column;
    padding: 35px 25px;
    gap: 30px;
    text-align: center;
  }

  .left-box, .right-box {
    align-items: center;
    text-align: center;
  }

  .cta-wrapper {
    align-items: center;
  }

  .contact-info-wrap {
    align-items: center;
    margin-bottom: 10px;
  }

  .left-box h1 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .contact-window {
    border-radius: 15px;
  }
  
  .redirect-btn {
    width: 100%;
    padding: 14px 20px;
  }
}