* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}


.content-body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #3a5aff 0%, #2e008b 100%);
  min-height: 90vh;
  color: white;
  position: relative;

}

/* Navbar Fixes */
/* --- HEADER WRAPPER --- */
.header-wrapper {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center; /* Centers the whole group */
  gap: 100px; /* Space between logo and navbar bar */
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

/* --- LOGO --- */
.main-logo {
  height: 70px; /* Adjust as needed */
  width: auto;
  filter: drop-shadow(0 0 10px rgba(58, 90, 255, 0.3));
  transition: 0.3s;
}

/* --- THE NAVBAR BAR --- */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  flex: 1; /* Allow the bar to take remaining space up to max-width */
  max-width: 1100px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #000000;
}

.call-btn {
  background: #fffffe;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
  margin-left: 20px;
}

/* ------------------ */
/* Burger icon styling */
.burger {
  display: none; /* hidden on desktop */
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile menu hidden by default */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

@media (max-width: 768px) {
  .burger {
    display: flex; /* show burger on mobile */
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    display: none; /* hidden until toggled */
  }

  .nav-links.active {
    display: flex; /* show when toggled */
  }

  .nav-links a {
    color: #fff;
    font-size: 16px;
  }

  .call-btn {
    display: none; /* hide call button on mobile, optional */
  }
}

.burger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.toggle span:nth-child(2) {
  opacity: 0;
}
.burger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


                                           /* Hero Section Fixes */
.hero {
  padding: 0px 5% 0px 5%;
  display: flex;
  justify-content: center;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.hero-text {
  flex: 1;
  color: white;
}

.hero-text h1 {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 24px;
  font-style: italic;
}

.highlight {
  background: #ffffff;
  color: #4d0909;
  padding: 0 10px;
  border-radius: 4px;
  font-style: normal;
  font-weight: bold;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
  max-width: 800px;
}


/* ----animation--- */
/* 1. The Entrance Animation (When page loads) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 1s ease-out forwards;
}

.reveal-text {
  animation: fadeInUp 0.8s ease-out 0.2s backwards; /* delayed */
}

.reveal-subtext {
  animation: fadeInUp 0.8s ease-out 0.5s backwards; /* longer delay */
}

/* 2. Continuous Floating Animation (Up and Down) */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.floating-animation {
  animation: float 4s ease-in-out infinite;
}

/* 3. The Hover Effect (Image moves when you touch it) */
.hover-move {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.hover-move:hover {
  transform: scale(1.05) rotate(-2deg) translateY(-10px);
  filter: drop-shadow(0 30px 20px rgba(0,0,0,0.3));
}

/* 4. Navbar Hover Animation */
.nav-links a {
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}


/* Ensure the wrapper is the reference point */
.content_body_wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #d73939 0%, #3c0101 100%);
  overflow: hidden;
}

/* Make the particles fill the background */
#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Layer 1: Background Stars */
}

/* Lift your content above the stars */
.navbar, .hero {
  position: relative;
  z-index: 2; /* Layer 2: Text and Buttons */
}


:root {
  --brand-red: #e50914;
  --brand-white: #ffffff;
  --brand-black: #0a0a0b;
  --card-w: 250px;
  --card-g: 30px;
}

.brand-showcase {
  padding: 100px 0;
  background-color: var(--brand-white);
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* --- Refined Typography --- */
.brand-header {
  text-align: center;
  margin-bottom: 60px;
}

.brand-tagline {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--brand-red);
  font-weight: 800;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 15px;
}

.brand-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--brand-black);
  line-height: 1;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.red-highlight {
  color: var(--brand-red);
  font-style: italic;
}

/* --- Infinite Scroll Container --- */
.brand-scroll {
  position: relative;
  width: 100%;
  padding: 40px 0;
  /* Masking the edges for a fade-out effect */
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.scroll-track {
  display: flex;
  width: calc((var(--card-w) + var(--card-g)) * 8); /* Change 8 to your total card count */
  gap: var(--card-g);
  animation: scrollInfinite 20s linear infinite;
}

.scroll-track:hover {
  animation-play-state: paused;
}

/* --- Brand Cards (Glassmorphism & Red Accents) --- */
.brand-card {
  flex: 0 0 var(--card-w);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcfcfc;
  border: 1px solid #eee;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: crosshair;
  padding: 20px;
}

.brand-card img {
  max-width: 70%;
  max-height: 60px;
  filter: grayscale(100%); /* Grayscale by default for high-end feel */
  opacity: 0.5;
  transition: all 0.4s ease;
}

/* --- Interaction States --- */
.brand-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: var(--brand-white);
  border-color: var(--brand-red);
  box-shadow: 0 20px 40px rgba(229, 9, 20, 0.1);
}

.brand-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* --- The Animation Logic --- */
@keyframes scrollInfinite {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * (var(--card-w) + var(--card-g)) * 4)); } /* Adjust 4 to half your card count */
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  :root { --card-w: 180px; }
  .brand-showcase { padding: 60px 0; }
  .brand-title { font-size: 1.8rem; letter-spacing: -1px; }
  .scroll-track { animation-duration: 12s; } /* Faster scroll on mobile for energy */
}
/* ===========about-us-section================= */



/* ------------pricing------- */


/* Container Background to make Glass Pop */
.whfy-pricing-section {
    padding: 100px 20px;
    background: radial-gradient(circle at center, #ece6ff 0%, #f5f7ff 100%);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.whfy-pricing-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Glass Card Design */
.whfy-glass-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    width: 320px;
    position: relative;
    padding-bottom: 35px;
    overflow: hidden; /* Important for the shine */
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.whfy-glass-card.active {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 50px rgba(100, 100, 255, 0.15);
}

/* THE SHINY EFFECT */
.whfy-shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent
    );
    transition: 0.6s;
    z-index: 5;
}

.whfy-glass-card:hover .whfy-shine {
    left: 150%; /* Sweeps the light across on hover */
}

/* Floating Ribbons */
.whfy-ribbon {
    position: absolute;
    top: 30px;
    left: -10px;
    right: -10px;
    padding: 12px;
    color: white;
    font-weight: 800;
    font-size: 22px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.pink { background: linear-gradient(90deg, #ff33cc, #ff66ff); }
.cyan { background: linear-gradient(90deg, #00d2ff, #3a7bd5); }
.orange { background: linear-gradient(90deg, #ff9966, #ff5e62); }

/* Card Content */
.whfy-price-body {
    padding-top: 100px;
    text-align: center;
}

.whfy-amount {
    font-size: 42px;
    font-weight: 800;
    color: #4b42cc;
}

.whfy-period {
    font-size: 12px;
    color: #888;
    font-weight: 700;
    margin-bottom: 20px;
}

.whfy-divider {
    width: 80%;
    height: 1px;
    background: rgba(0,0,0,0.05);
    margin: 0 auto 25px;
}

.whfy-list {
    list-style: none;
    padding: 0 40px;
    text-align: left;
    margin-bottom: 30px;
}

.whfy-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.whfy-dot {
    width: 8px;
    height: 8px;
    background: #ffec3d; /* Yellow dot from reference */
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 8px rgba(255, 236, 61, 0.8);
}

/* Shiny Button */
.whfy-buy-btn {
    width: 80%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.pink-btn { background: #ff33cc; box-shadow: 0 10px 20px rgba(255, 51, 204, 0.3); }
.cyan-btn { background: #00d2ff; box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3); }
.orange-btn { background: #ff9966; box-shadow: 0 10px 20px rgba(255, 153, 102, 0.3); }

.whfy-buy-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}
/* -----------changing card section------------------ */


/* ---------footer-------------- */
.site-footer {
        background-color: #08080c; /* Deep space black */
        color: #ffffff;
        padding: 100px 0 40px;
        position: relative;
        overflow: hidden; /* Important: keeps stars inside */
        z-index: 1;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* 2. INTENSE STARFIELD SYSTEM */
    .footer-stars-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
    }

    .f-star {
        position: absolute;
        background: white;
        border-radius: 50%;
        opacity: 0;
        animation: orionRise linear infinite, twinkle 3s ease-in-out infinite;
    }

    /* Moving upwards animation */
    @keyframes orionRise {
        0% { transform: translateY(100vh); opacity: 0; }
        10% { opacity: 0.8; }
        90% { opacity: 0.8; }
        100% { transform: translateY(-10vh); opacity: 0; }
    }

    /* Twinkling (blinking) animation */
    @keyframes twinkle {
        0%, 100% { opacity: 0.3; }
        50% { opacity: 1; }
    }

    /* Randomizing a large batch of stars */
    .f-star:nth-child(1) { width: 2px; height: 2px; left: 10%; animation-duration: 15s; }
    .f-star:nth-child(2) { width: 1px; height: 1px; left: 25%; animation-duration: 25s; animation-delay: 2s; }
    .f-star:nth-child(3) { width: 3px; height: 3px; left: 40%; animation-duration: 12s; animation-delay: 5s; }
    .f-star:nth-child(4) { width: 1px; height: 1px; left: 60%; animation-duration: 30s; }
    .f-star:nth-child(5) { width: 2px; height: 2px; left: 85%; animation-duration: 18s; animation-delay: 7s; }
    .f-star:nth-child(6) { width: 1px; height: 1px; left: 5%;  animation-duration: 22s; }
    .f-star:nth-child(7) { width: 2px; height: 2px; left: 50%; animation-duration: 14s; animation-delay: 3s; }
    .f-star:nth-child(8) { width: 3px; height: 3px; left: 75%; animation-duration: 20s; animation-delay: 1s; }
    .f-star:nth-child(9) { width: 1px; height: 1px; left: 95%; animation-duration: 28s; }
    .f-star:nth-child(10){ width: 2px; height: 2px; left: 33%; animation-duration: 16s; animation-delay: 4s; }

    /* 3. PLANET STYLING */
    .f-planet {
        position: absolute;
        z-index: 1;
        opacity: 0.5;
        filter: drop-shadow(0 0 20px rgba(58, 90, 255, 0.2));
        animation: planetDrift 25s ease-in-out infinite;
    }
    .p1 { width: 130px; top: 15%; left: 5%; }
    .p2 { width: 100px; bottom: 20%; right: 5%; animation-delay: -5s; }

    @keyframes planetDrift {
        0%, 100% { transform: translate(0, 0) rotate(0deg); }
        50% { transform: translate(30px, -40px) rotate(8deg); }
    }

    /* 4. CONTENT LAYOUT (FROM YOUR IMAGE) */
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 10;
    }

    .footer-main-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 50px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 50px;
    }

    .f-col h4 {
        font-size: 20px;
        margin-bottom: 25px;
        color: #fff;
    }

    .f-text {
        color: #aaa;
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .f-contact-item { margin-bottom: 10px; color: #fff; font-size: 15px; }
    .f-contact-item i { color: #8e3dff; margin-right: 10px; }

    /* Newsletter Input */
    .f-newsletter-box {
        display: flex;
        background: #1c1c1c;
        border-radius: 50px;
        padding: 5px;
        margin-top: 25px;
    }
    .f-newsletter-box input {
        background: transparent;
        border: none;
        padding: 10px 15px;
        color: white;
        flex: 1;
        outline: none;
    }
    .f-newsletter-box button {
        background: #8e3dff;
        border: none;
        color: white;
        padding: 10px 25px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: bold;
    }

    /* Tweets */
    .f-tweet { display: flex; gap: 12px; margin-bottom: 20px; color: #aaa; font-size: 14px; }
    .f-tweet i { color: #fff; font-size: 16px; margin-top: 4px; }

    /* Insta Grid */
    .f-insta-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .f-insta-grid img { width: 100%; border-radius: 5px; transition: 0.3s; }
    .f-insta-grid img:hover { transform: scale(1.05); }

    .footer-bottom { text-align: center; padding-top: 30px; color: #555; font-size: 13px; }

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



/* --------------faq------------ */




/* -------founder-section--- */
/* --- FOUNDER SECTION --- */
/* Container Fix */
.team-section {
  padding: 100px 5%;
  background: #ffffff;
}

.team-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr; /* Forces two distinct columns */
  max-width: 1300px;
  margin: 0 auto;
  gap: 60px;
}

/* LEFT SIDE STYLING */
.team-left-content {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.main-title { font-size: 40px; color: #000; font-weight: 800; margin: 0; }
.sub-title { font-size: 36px; color: #111; margin-bottom: 10px; }
.accent-line { width: 80px; height: 5px; background: #ccd2d9; margin-bottom: 40px; }

.info-box-wrapper {
  transition: all 0.4s ease;
}

#display-name { color: #3a5aff; font-size: 24px; margin-bottom: 5px; }
#display-role { color: #888; font-size: 16px; margin-bottom: 20px; text-transform: uppercase; }
#display-bio { color: #555; font-size: 18px; line-height: 1.6; margin-bottom: 30px; }

.get-in-touch-btn {
  background: #bcc4ce;
  color: #fff;
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

/* RIGHT SIDE GRID FIX */
.team-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* FORCES 2 COLUMNS */
  gap: 30px;
}

.member-card {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.member-card.active {
  background: #f8f9fb; /* Light highlight from image */
}

.img-circle {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f0f2f5;
}

.img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-card h4 { font-size: 18px; margin: 10px 0 5px; color: #000; }
.member-card p { font-size: 14px; color: #666; }
.social-icons i { font-size: 14px; margin: 10px 8px 0; color: #333; }

/* Responsive Mobile Fix */
@media (max-width: 992px) {
  .team-container {
    grid-template-columns: 1fr;
  }
  .team-right-grid {
    grid-template-columns: 1fr; /* Stacks cards on mobile */
  }
}


@media (max-width: 768px) {
  .team-section {
    padding: 60px 20px; /* reduce padding */
  }

  .main-title {
    font-size: 28px; /* smaller heading */
  }

  .sub-title {
    font-size: 22px;
  }

  #display-name {
    font-size: 20px;
  }

  #display-role {
    font-size: 14px;
  }

  #display-bio {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .team-container {
    grid-template-columns: 1fr; /* single column */
    gap: 30px;
  }

  .team-left-content {
    position: static; /* remove sticky for mobile */
    top: auto;
  }

  .team-right-grid {
    grid-template-columns: 1fr; /* stack cards */
  }
}

@media (max-width: 768px) {
  .member-card {
    padding: 20px 15px;
  }

  .img-circle {
    width: 120px;
    height: 120px;
  }

  .member-card h4 {
    font-size: 16px;
  }

  .member-card p {
    font-size: 13px;
  }

  .social-icons i {
    font-size: 12px;
    margin: 8px 6px 0;
  }
}

#display-bio {
  word-wrap: break-word;
}









/* --- LOGO STYLING --- */
.main-logo.animated-logo {
  /* Adjust this width to make the logo exactly the size you want */
  width: 180px; 
  height: auto;
  display: block;
  transition: transform 0.4s ease-in-out, filter 0.4s ease;
  
  /* Apply the floating animation */
  animation: floatLogo 4s ease-in-out infinite;
  
  /* Optional: Add a subtle glow/drop shadow to make it pop */
  filter: drop-shadow(0 0 5px rgba(58, 90, 255, 0.3));
}

/* --- HOVER EFFECT --- */
.logo-box:hover .animated-logo {
  transform: scale(1.1); /* Logo grows slightly on hover */
  filter: drop-shadow(0 0 15px rgba(58, 90, 255, 0.6)); /* Glow intensifies */
}

/* --- FLOATING ANIMATION KEYFRAMES --- */
@keyframes floatLogo {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px); /* Moves up 8px */
  }
  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 768px) {
  .main-logo.animated-logo {
    width: 140px; /* Slightly smaller on phones to save space */
  }
}