* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Kumbh Sans', sans-serif;

}

body {
    background: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgb(61, 61, 55) 100%);
    padding-top: 160px;
    overflow-x: hidden;
}


.navbar {
    height: 150px;
    width: 100%;
    display: flex;
    margin-top: 0px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    font-size: 1rem;
    z-index: 999;
    background: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);

}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;

}

#navbar_logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.7rem;
}

.logo-text-container {
    display: flex;
    flex-direction: column;  /* stacks the text */
    margin-left: 1px; 
    color: #ffffff;
    text-shadow: 0 0 10px #020024, 
                 0 0 20px #020024;
}

.logo-title {
    font-weight: bold;
    font-size: 1.5rem;
    white-space: nowrap;    /* This prevents 'Profit' and 'Harvester' from splitting */
    line-height: 1;
    padding-top: 80px;       
}

.logo-subtitle {
    font-size: 1.0rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #D3D3D3;         
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar_menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar_item {
    height: 80px;
}

.navbar_links {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
    padding-top: 80px;       

}

.navbar_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    margin-top: 80px;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    color: white;
}

.button:hover {
    transition: all 0.3s ease;
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);

}

.navbar_links:hover {
   color: #FF32F0
}

.my_logo {
  width: 50%;
  height: 140%;
  position: relative;
  top: 10px;
}


   .hero {
  width: 100vw;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-left: 80px;
  background-image: url("images/img_image8.png");
  background-size: cover;        /* fills the area */
  background-position: center;   
  background-repeat: no-repeat;
}

.hero h1 {
    margin-bottom: -10px;
}

.hero, #changing-text, #first-text {
    margin-top: 5px;
}

h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;        
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}

#changing-text {
  color: lime; 
  transition: opacity 0.5s ease;
  margin-bottom: 20px;
}

.hero p {
  margin-top: 30px;
  font-size: 2.2rem;
  color: white;
  font-weight: bold;
}

.trade-text {
  display: flex;
  gap: 10px; /* space between Trade and Smarter */
  font-size: 2rem; /* optional */
  font-weight: bold;
  color: white;
}

#sub-text {
  font-weight: medium;
  font-size: 1.8rem; 
  background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  margin-top: 10px;
  margin-bottom: 20px;
}

.main_button {
    font-size: 1rem;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(0deg,rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
    cursor: pointer;
    margin-top: 0.1rem;
    position: relative;
    transition: all 0.35s;
    outline: none;
    text-decoration: none;
}



.main_button a {
    background: linear-gradient(41deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(41, 46, 51, 1) 100%);
    color: #020024;
    text-decoration: none;
    -webkit-background-clip: text;
    position: relative;
    z-index: 2;
}


.main_button::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: radial-gradient(circle,rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    transition: all 0.3s;
    border-radius: 4px;
}


.main_button:hover::after {
    width: 100%;
    color: #ffffff;
}


.sub-button {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-right: 165px;
    margin-top: -100px;

}

.main_button_second {
     font-size: 1rem;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    background: linear-gradient(0deg,rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
    text-decoration: none;  
}



.main_button_second a {
    background: linear-gradient(41deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(41, 46, 51, 1) 100%);
    color: #020024;
    text-decoration: none;
    -webkit-background-clip: text;
    position: relative;
    z-index: 2;
}


.main_button_second::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: radial-gradient(circle,rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%);
    transition: all 0.3s;
    border-radius: 4px;
}


.main_button_second:hover::after {
    width: 100%;
    color: #ffffff;
}


.body_image {
    width: 50%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-top: -20%;
}

.second_main_head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;    
    margin: 50px auto;  
    width: 90%;
    height: 190px;
    border-radius: 20px;
    padding-left: 55px;
    padding-top: 30px;
    background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
    margin-bottom: 120px;

}

 .sub-headline {
   /* display: flex;
    flex-direction: column; */
   font-size: 1.9rem;
  font-weight: bold;
  color: lightgrey;
  
}

.second_main_head p {
    font-size: 1.2rem;
    font-weight: normal;
    color:lightgray;
    letter-spacing: 1px;
    margin-top: 30px;
}

.second_main_head img {
    display: inline;
    width: 40px;
    height: 40px;
}

.wrong {
    margin-left: 15px;
    margin-bottom: -5px;
}

.correct {
    margin-left: 17px;
    margin-bottom: -10px;
}

.third_main_head {
    display: flex;
    justify-content: center;
    font-size: 1.8rem;
    padding-bottom: 10px;
  position: relative;
  text-decoration: none;
  color: #D3D3D3;
}

.third_main_head::after {
  content: '';
  position: absolute;
  width: 0; /* Start with no width */
  height: 2px;
  display: block;
  margin-top: 40px; /* Adjust vertical position */
  background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  transition: width 0.3s ease; /* Animation effect */
}

.third_main_head:hover::after {
  width: 50%; /* Expand on hover */
}

h3 {
    color: #fff;
    text-shadow: 0 0 10px #020024, 
                 0 0 20px #020024;
    padding-bottom: 5px;
    display: inline-block;
    
}

/* FEATURES SECTION */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 90%;
  margin: 40px auto;
}

.feature-box {
  background: linear-gradient(135deg, #020024, #090979, #00d4ff);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 1rem;
  color: lightgray;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ============================= */
/* Get Started Section CSS       */
/* ============================= */

.get-started-section {
    width: 90%;
    margin: 50px auto;
}

.get-started-section .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px #020024, 0 0 20px #020024;
    margin-bottom: 50px;
    margin-top: 100px;
    text-align: center;
}

.section-title {
    display: flex;
    justify-content: center;
    font-size: 1.8rem;
  position: relative;
  text-decoration: none;
  color: #D3D3D3;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 0; /* Start with no width */
  height: 2px;
  display: block;
  margin-top: 40px; /* Adjust vertical position */
  background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  transition: width 0.3s ease; /* Animation effect */
}

.section-title:hover::after {
  width: 20%; /* Expand on hover */
}

/* Horizontal steps container */
.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* allows wrapping on very small screens */
}

/* Individual step boxes */
.step-box {
    flex: 1;            /* Equal width */
    min-width: 250px;   /* prevents too narrow boxes */
background: radial-gradient(circle,rgba(71, 71, 71, 1) 0%, rgba(64, 140, 227, 1) 100%);
    border-radius: 20px;
    padding: 30px 20px;
    color: lightgray;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Step title and description */
.step-box .sub-headline {
    font-size: 1.3rem;
    font-weight: bold;
    color: lightgray;
    margin-bottom: 10px;
}

.step-box p {
    font-size: 1.2rem;
    color: lightgray;
    line-height: 1.4;
}



/* Center the text and container */
.proof {
    text-align: center;
    margin-top: 135px; 
    margin-bottom: 0px; 
}

/* Add spacing specifically for h2 elements */
.proof h2 {
    text-align: left;
    margin-top: 6px; 
    margin-left: 64px;   
    color: #ffffff;
    font-size: 2rem;
    text-shadow: 0 0 5px #020024, 
                 0 0 15px #020024;
    cursor: pointer;

}


/* Container for images below text */
.proof-images {
    display: flex;               /* flexible row layout */
    justify-content: flex-start; /* align images to the left */
    gap: 10px;                   /* spacing between images */
    flex-wrap: wrap;             /* wrap to next line on smaller screens */
    margin-top: 50px;
    margin-left: 60px;
    cursor: pointer;
}

.proof-images img {
    max-width: 250px;            
    height: auto;               
    border-radius: 8px;
}

.underline {
  position: relative;
}


.underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;                 /* space between text and underline */
    width: 0;                      /* start hidden */
    display: block;
    height: 3px;                   /* thickness of the line */
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    transition: width 0.3s ease;   /* smooth animation */
    border-radius: 2px;            /* optional rounded edges */
}

/* Expand underline on hover */
.underline:hover::after {
    width: 40%;                  
}


.now-public {
  position: absolute;
  bottom: -230px;
  left: 70px;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  /* correct way to show gradient text */
  margin: 20px 0;
  animation: blink 2s infinite;
}

/* Blinking animation */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

.qa-section {
    margin: 80px 0;
    padding-left: 20px;
    text-align: left;
    margin-left: 50px;
    margin-top: 150px;
   line-height: 1.7;
}

.qa-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #111;
}

.qa-section p {
    font-size: 16px;
    color: #131313;
    margin-bottom: 15px;
    word-spacing: 0.2rem;
}

.faq-section {
    margin: 80px auto;
    padding: 0 20px;
    width: 90%;
    max-width: 900px;
    text-align: left;
}

.faq-section .faq-title {
    font-size: 2rem;
    color: #1D12B3;
    margin-bottom: 35px;
    text-align: center;
    text-shadow: none;
}


.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 15px;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 15px 0;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    line-height: 1.9rem;
    word-spacing: 1.7rem;
}

.faq-question.active::after {
    content: "–";
}

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

.faq-answer p {
    color: black;
    font-size: 1rem;
    padding-bottom: 15px;
}


.footer {
    background-color: #f9f9f9; /* The upper part is light in the video */
    padding: 40px 20px;
    font-family: 'Kumbh Sans', sans-serif;
    text-align: center;
    box-shadow: none !important;
    text-shadow: none !important;

}

.footer-grid {
    display: flex;
    flex-direction: column; /* Matches the mobile scroll view in video */
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3, .footer-community h3 {
    color: #2e7d6b; /* Teal color for headers */
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: none;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    filter: invert(48%) sepia(13%) saturate(1200%) hue-rotate(120deg) brightness(95%) contrast(80%); /* Makes icons match brand teal */
}

/* The Grey Disclaimer Bar */
.disclaimer-bar {
    background-color: #e0e0e0;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 40px auto 20px auto;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
}

/* Legal Text */
.legal-disclaimer-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 0.8rem;
    color: #999;
    line-height: 1.6;
    box-shadow: none;
}

.legal-disclaimer-text p {
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.pricing-page {
background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);  color: white;
}

/* SECTION */
.pricing {
  width: 90%;
  max-width: 900px;
  margin: 100px auto;
  text-align: center;
}

.pricing-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* TABLE */
.pricing-table {
  display: flex;
  flex-direction: column;
  border: 1px solid #444;
  border-radius: 10px;
  overflow: hidden;
}

/* ROW */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px;
  border-bottom: 1px solid #444;
  background: #1a1a1a;
  transition: 0.3s;
}

.pricing-row div {
  font-size: 1.2rem;
}

/* HEADER */
.header {
  background: #111;
  font-weight: bold;
  font-size: 1.3rem;
}

/* HOVER EFFECT */
.pricing-row:hover {
  background: #262626;
  transform: scale(1.01);
}

/* HIGHLIGHT PLAN */
.highlight {
  background: linear-gradient(90deg, #090979, #00d4ff);
  color: white;
  font-weight: bold;
}

/* PREMIUM PLAN */
.premium {
  background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045);
  font-weight: bold;
}

/* CTA BUTTON */
.cta-button {
  margin-top: 40px;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
background: linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);
  color: black;
  transition: 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
}

.payment-methods {
    text-align: center;
    padding: 50px 20px;
    color: #fff;
}

.payment-icons img {
    height: 50px;
    margin: 0 15px;
}

.faq {
    width: 90%;
    max-width: 900px;
    margin: 50px auto 80px auto; /* spacing above and below */
    padding: 50px 20px;
    text-align: left;
    background-color: #111; /* dark background to match pricing table */
    border-radius: 10px;
    color: white;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
}

.faq-question {
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    cursor: pointer;
    padding: 15px 0;
    color: #00d4ff;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #00ffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding-left: 10px;
}

.faq-item.open .faq-answer {
    max-height: 500px; /* big enough to show content */
    padding: 10px 0;
}

.faq-answer p {
    margin: 0;
    color: lightgray;
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 200px; /* adjust if answer is longer */
}

.section-title {
    margin-bottom: 40px;
}


/* ABOUT HERO SECTION */
.about-hero {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    color: white;
    padding: 80px 20px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ABOUT CONTENT */
.about-content {
    width: 90%;
    max-width: 900px;
    margin: 60px auto;
    padding: 40px 30px;
    background: rgba(10, 10, 10, 0.6); /* semi-transparent overlay */
    border-radius: 12px;
    color: #fff;
    line-height: 1.7;
    font-family: 'Kumbh Sans', sans-serif;
}

.about-content h2 {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 20px;
    border-bottom: 2px solid #00d4ff;
    display: inline-block;
    padding-bottom: 5px;
}

.about-content h3 {
    font-size: 1.6rem;
    color: #00aaff;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 20px;
}

.about-content strong {
    color: #ffffff;
    font-weight: 700;
}


/* PRIVACY */
.container {
            max-width: 900px;
            margin: auto;
            padding: 40px 20px;
        }

        h1 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .effective-date {
            text-align: center;
            margin-bottom: 40px;
            color: #94a3b8;
        }

        h2 {
            margin-top: 30px;
            color: #38bdf8;
        }

        ul {
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
        }

            .card {
            background: #1e293b;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }


/* ABOUT STATS */
.about-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px auto;
    width: 90%;
    max-width: 900px;
}

.stat-box {
    flex: 1 1 200px;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    text-align: center;
    padding: 30px 20px;
    margin: 10px;
    transition: transform 0.3s;
}

.stat-box h3 {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.stat-box p {
    color: #ccc;
    font-size: 1rem;
}

.stat-box:hover {
    transform: scale(1.05);
}

/* ABOUT ROADMAP */
.about-roadmap {
    width: 90%;
    max-width: 900px;
    margin: 60px auto 100px auto;
    padding: 40px 30px;
    background: rgba(10, 10, 10, 0.6);
    border-radius: 12px;
    color: #fff;
}

.about-roadmap h2 {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 20px;
    border-bottom: 2px solid #00d4ff;
    display: inline-block;
    padding-bottom: 5px;
}

.about-roadmap ul {
    list-style-type: none;
    padding-left: 0;
}

.about-roadmap li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ccc;
}

/* PRODUCT HERO */
.product-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    color: white;
    gap: 40px;
}

.product-hero h1 { font-size: 2.8rem; margin-bottom: 15px; }
.product-hero p { font-size: 1.25rem; margin-bottom: 25px; max-width: 600px; }

.primary-cta {
    background: #00d4ff;
    color: #000;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}
.primary-cta:hover { transform: scale(1.05); }

/* FEATURES */
.product-features {
    padding: 60px 10%;
    text-align: center;
}
.product-features h2 { font-size: 2.2rem; margin-bottom: 35px; color: #00d4ff; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}
.feature-card {
    background: #111;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #222;
}
.feature-card h3 { color: #00d4ff; margin-bottom: 12px; }
.feature-card p { color: #ccc; font-size: 1rem; }

/* HOW IT WORKS */
.product-how {
    padding: 60px 10%;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
}
.product-how h2 { color: #00d4ff; font-size: 2rem; margin-bottom: 30px; }
.steps-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.step {
    flex: 1 1 200px;
    background: #111;
    border-radius: 10px;
    padding: 20px;
}
.step h3 { color: #00aaff; margin-bottom: 10px; }
.step p { color: #ccc; }

/* BENEFITS */
.product-benefits {
    padding: 80px 10%;
    background: #111;
    color: #fff;
}

/* Title */
.product-benefits h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #00d4ff;
    text-align: center;
}

/* List container */
.product-benefits ul {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

/* Each item */
.product-benefits li {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

/* Custom bullet (clean modern look) */
.product-benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* GALLERY */
.product-gallery {
    padding: 60px 10%;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}
.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #222;
}

/* CTA */
.product-cta {
    padding: 60px 10%;
    text-align: center;
    background: #0a1f2c;
    color: #fff;
}
.product-cta h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #00d4ff;
}

.container-login {
    margin: auto;
    background: #111827;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 150px;
    margin-bottom: 40px;
    margin-top: 160px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.signup {
    margin-top: 160px;
}

    
h2 {
    text-align: center;
}
input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
}
.btn-sign {
    width: 100%;
    padding: 12px;
    background: #22c55e;
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}
button:hover {
    background: #16a34a;
}
.link {
    text-align: center;
    margin-top: 50px;
    padding: 2px;
}
a {
    color: #38bdf8;
    text-decoration: none;
}

/* WRAPPER */
.login-wrapper {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 80px; 
    padding: 80px 40px;
    margin-top: -190px;
}

/* LEFT SIDE */
.image-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

/* IMAGE */
.chart-img {
    width: 100%; 
    max-width: 550px;
    height: auto;
    transform: translateY(20px);
}


/* RIGHT SIDE */
.container-login {
    width: 100%;
    max-width: 380px;
}

/* HERO TEXT STYLING */
.hero-text {
    margin-top: 5px;
    color: #fff;
    text-align: center;      /* centers all text inside */
    width: 100%;             /* optional: ensure it spans the container */
    margin: 0 auto; 
    transform: translateY(-30px);
}

.hero-text .h1-text {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: -20px;
}

.hero-text h2 {
    font-size: 20px;
    font-weight: 500;
    color: #00ffcc; 
}

.hero-text .p-text {
    font-size: 16px;
    opacity: 0.9;
}

.bull {
    color: lime;
}

.bear {
    color: red;
}

.bear-two {
    color: lime;
}

.bull-two {
    color: red;
}







/* sign-up page */



/*Start of @media*/
@media screen and (max-width: 960px) {

.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;      
  text-align: center;       
  padding-left: 0;          
  margin: 0 auto;
  background-image: url("images/img_image8.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

    .navbar-container {
    display: flex;
    justify-content: space-between;
    height: 100px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
   }

   .navbar_menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 0;
    transition: all 0.5s ease;
    height: 70vh;
    z-index: -1;
    background: #131313;
    left: 0;
   }

   .navbar_menu.active {
    background: #ffffff;
    top: 100%;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 99;
    height: 68vh;
    font-size: 1.2rem;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    
   }

   #navbar_logo {
    margin-left: -32px;
    margin-bottom: 16px;
    /*font-size: 5.2rem;*/
   }

   .navbar_toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: gray;
    
   }

   .navbar_item {
    width: 100%;
    font-size: 1.2rem; 
    margin: -5px 0;
    
   }

   .navbar_links {
    text-align: center;
    padding-top: 1rem;
    width: 100%;
    display: table;
    color: #020024;
    font-weight: medium;
    
   }

   #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
    padding-top: 40px;       

   }

   .navbar_btn {
    margin-top: -8px;
   }

   .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
    
   }

   .navbar_toggle .bar {
    display: block;
    cursor: pointer;
   }

   #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
   }

   #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
   }

    #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
   }


   .my_logo {
  width: 30%;
  height: auto;
  position: relative;
  top: 30px;
}


.logo-text-container {
    display: flex;
    flex-direction: column; 
    margin-left: 1px; 
    color: #ffffff;
}

.logo-title {
    font-weight: bold;
    font-size: 1.5rem;
    white-space: nowrap;    /* This prevents 'Profit' and 'Harvester' from splitting */
    line-height: 1;
    padding-top: 80px;       
}

.logo-subtitle {
    font-size: 1.0rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #D3D3D3;       
}



   .hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("images/img_image8.png");
  background-size: cover;        /* fills the area */
  background-position: center;   
  background-repeat: no-repeat;
}



.hero h1, .hero h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
}

#changing-text {
  color: lime; 
  transition: opacity 0.5s ease;
}

.hero p {
  margin-top: 30px;
  font-size: 2.2rem;
  color: white;
  font-weight: bold;
}

#first-text {
  display: flex;
  gap: 10px; /* space between Trade and Smarter */
  font-size: 1.7rem; 
  font-weight: bold;
  color: white;
}

#changing-text {
    font-size: 1.7rem;
}

.hero h1 {
    margin-bottom: -10px;
}

.hero, #changing-text, #first-text {
    margin-top: 5px;
}

#sub-text {
  font-weight: medium;
  font-size: 1.8rem; 
    background: linear-gradient(90deg, rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);  margin-top: 10px;
  margin-bottom: 10px;
}

.body_image {
    width: 70%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-top: -20%;
}



.second_main_head {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    text-align: start;    
    margin: 50px auto;  
    width: 90%;
    height: 190px;
    border-radius: 20px;
    padding-left: 55px;
    padding-top: 30px;
    margin-bottom: -300px;
    background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);

}

.second_main_head p {
    font-size: 1.0rem;
    font-weight: normal;
    color:lightgray;
    letter-spacing: 1px;
    margin-top: 30px;
}

.sub-button {
  position: relative;
  left: 100px;
  bottom: 20px;
}

 .sub-headline {
   /* display: flex;
    flex-direction: column; */
   font-size: 1.3rem;
  font-weight: bold;
  color: lightgrey;
}


.second_main_head {
    font-size: 1.2rem;
    font-weight: normal;
    color:lightgray;
    letter-spacing: 1px;
    margin-top: 30px;
}

.second_main_head img {
    display: inline;
    width: 40px;
    height: 40px;
}

.wrong {
    margin-left: 15px;
    margin-bottom: -5px;
}

.correct {
    margin-left: 15px;
    margin-bottom: -10px;
}

.second_main_subtext {
    color: black;
}

  .third_main_head {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    margin-top: 400px;
    clear: both;
  }

  .third_main_head h3 {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .third_main_head::after {
  content: '';
  position: absolute;
  width: 0; /* Start with no width */
  height: 2px;
  display: block;
  margin-top: 40px; /* Adjust vertical position */
  background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  transition: width 0.3s ease; /* Animation effect */
  }

  .third_main_head:hover::after {
    width: 70%;
  }


  .section-title {
    display: flex;
    justify-content: center;
    font-size: 1.2rem;
  position: relative;
  text-decoration: none;
  color: #D3D3D3;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 0; /* Start with no width */
  height: 2px;
  display: block;
  margin-top: 40px; /* Adjust vertical position */
  background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  transition: width 0.3s ease; /* Animation effect */
}

.section-title:hover::after {
  width: 45%; /* Expand on hover */
}

.underline {
  position: relative;
}


.underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;                 /* space between text and underline */
    width: 0;                      /* start hidden */
    display: block;
    height: 3px;                   /* thickness of the line */
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    transition: width 0.3s ease;   /* smooth animation */
    border-radius: 2px;            /* optional rounded edges */
}

/* Expand underline on hover */
.underline:hover::after {
    width: 80%;                   /* expand full width of text */
}

.step-box .sub-headline {
  display: inline-block;
  margin-bottom: 20px;
}

.now-public {
  display: inline;
    position: absolute;
    bottom: -200px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 10px;
    animation: blink 2s infinite;
}

/* Blinking animation */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

  /* Center the images */
  .proof-images {
    justify-content: center; /* overrides left alignment */
    margin-left: 0;          /* removes extra left margin */
    gap: 15px;
  }

  /* Center the text/content below images */
  .qa-section {
    text-align: center;
    margin-left: 0;          /* remove left margin */
    padding-left: 10px;      /* optional small padding */
  }


    .faq-section .faq-title {
        font-size: 1.5rem;
    }



    .faq-section .faq-title {
        font-size: 1.2rem;
    }


    .faq-section {
        margin-top: 20px; /* even tighter on very small screens */
    }


.faq-question {
    padding-left: 10px; /* reduce or set to 0 */
}

/* FOOTER FULL WIDTH ON SMALL SCREENS */
.footer {
    width: 100vw;           /* full viewport width */
    padding: 40px 20px;     /* top/bottom and small side padding */
    margin: 0;              /* remove top margin */
    box-sizing: border-box;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr; /* stack all sections vertically */
    gap: 30px;                  /* space between footer sections */
    width: 100%;                 /* full width */
    text-align: center;          /* center content for small screens */
    margin: 0 auto;
    padding: 0 15px;             /* controlled inner padding */
}

.footer-section h2,
.footer-section h3 {
    text-align: center;
}

.footer-section p,
.footer-section ul li a {
    font-size: 0.9rem;
}

.container-login {
    margin: auto;
    background: #111827;
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 150px;
    margin-bottom: 40px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}





} /* End of @media */



@media screen and (max-width: 768px) {
    .main_container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        height: 90vh;
    }



    .main_content {
        text-align: center;
        margin-bottom: 2rem;

    }

    .main_content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main_content h2 {
        font-size: 3rem;
    }

    .main_content p {
        margin: 2rem 30px;
        font-size: 1.5rem;
    }

    .body_image {
    width: 70%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-top: -20%;
}

.hero h1 {
    margin-bottom: -30px;
}

.second_main_head {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    text-align: start;    
    margin: 50px auto;  
    width: 90%;
    height: 300px;
    border-radius: 20px;
    padding-left: 30px;
    padding-top: 20px;
    background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
}


.second_main_head p {
    font-size: 1.2rem;
    font-weight: normal;
    color:lightgray;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-left: -2px;
}

.main_button_second {
    display: inline-block;
    width: auto;
}

.sub-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    padding-right: 0;
}

  .third_main_head {
    font-size: 1.5rem;
    text-align: center;
    padding: 0 20px;
  }

  .third_main_head h3 {
    display: block;
    width: 100%;
    text-align: center;
  }

  .third_main_head::after {
    margin: 10px auto 0;
    left: 0;
    right: 0;
      content: '';
  position: absolute;
  width: 0; /* Start with no width */
  height: 2px;
  display: block;
  margin-top: 40px; /* Adjust vertical position */
  background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  transition: width 0.3s ease; /* Animation effect */
  }

  .features {
  grid-template-columns: repeat(1, 1fr);
}

.get-started-section {
    margin-top: 80px; /* pushes it down evenly */
}

.get-started-section .section-title {
    text-align: center;
    margin-top: 0; /* prevents double spacing */
}

.section-title {
    display: flex;
    justify-content: center;
    font-size: 1.8rem;
  position: relative;
  text-decoration: none;
  color: #D3D3D3;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 0; /* Start with no width */
  height: 2px;
  display: block;
  margin-top: 80px; /* Adjust vertical position */
  background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  transition: width 0.3s ease; /* Animation effect */
}

.section-title:hover::after {
  width: 70%; /* Expand on hover */
}


  .proof {
    text-align: center;
    margin-top: 80px;
    padding: 0 20px; /* adds nice side spacing */
  }

  .proof h2 {
    text-align: center;
    margin-left: 0;
    font-size: 1.6rem;
  }

  .proof-images {
    justify-content: center;
    gap: 15px;
  }

  .proof-images img {
    max-width: 100px;
  }

  .underline {
  position: relative;
}


.underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;                 /* space between text and underline */
    width: 0;                      /* start hidden */
    display: block;
    height: 3px;                   /* thickness of the line */
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    transition: width 0.3s ease;   /* smooth animation */
    border-radius: 2px;            /* optional rounded edges */
}

/* Expand underline on hover */
.underline:hover::after {
    width: 80%;                   /* expand full width of text */
}

.step-box .sub-headline {
  display: inline-block;
  margin-bottom: 20px;
}


.now-public {
    position: absolute;
    bottom: -200px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: -10px 0;
    animation: blink 2s infinite;
}

/* Blinking animation */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}


  .proof-images {
    justify-content: center; /* overrides left alignment */
    margin-left: 0;          /* removes extra left margin */
    gap: 15px;
  }

  /* Center the text/content below images */
  .qa-section {
    text-align: center;
    margin-left: 0;          /* remove left margin */
    padding-left: 10px;      /* optional small padding */
  }


    .faq-section .faq-title {
        font-size: 1.5rem;
    }


    .faq-section .faq-title {
        font-size: 1.2rem;
    }

    .faq-section {
        margin-top: 20px; /* even tighter on very small screens */
    }

    .logo-text-container {
        margin-bottom: 0.5rem;
    }




.footer-section h2,
.footer-section h3 {
    text-align: center;
}

.footer-section p,
.footer-section ul li a {
    font-size: 0.9rem;
}

.footer-bottom {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
}

.hero-text {
    margin-bottom:-70px;
     
}

    .about-hero h1 {
        font-size: 2.2rem;
    }
    .about-hero p {
        font-size: 1.1rem;
    }
    .about-content h2, .about-roadmap h2 {
        font-size: 1.8rem;
    }
    .about-content h3 {
        font-size: 1.4rem;
    }
    .about-content p, .about-roadmap li {
        font-size: 1rem;
    }
    .about-stats {
        flex-direction: column;
        align-items: center;
    }

        .navbar_menu {
        display: none;
        flex-direction: column;
        background: #2a7b9b;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
    }

    .navbar_menu.active {
        display: flex;
        flex-direction: column;
    }

    /*   
    .navbar_btn,
    .signin-btn {
        display: block;
        margin: 10px 0;
        background-color: red;
    }
    */

    .pricing-row > div {
        flex: 1 1 100%;
        margin-bottom: 0.5rem;
    }

    .payment-icons img {
        width: 50px;
        margin: 5px;
    }

    .footer {
    width: 100vw;   
    padding: 40px 20px;
    position: absolute;
    left: 0;
    right: 0;
}

    .product-hero {
        flex-direction: column;   /* stack text + image */
        text-align: center;
        padding: 60px 20px;
    }

    .hero-image {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        max-width: 90%;   /* shrink nicely */
    }

        .product-benefits {
        padding: 60px 20px;
    }

    .product-benefits h2 {
        font-size: 1.6rem;
    }

    .product-benefits li {
        font-size: 1rem;
        line-height: 1.6;
    }

    .product-cta {
    display: flex;
    flex-direction: column;  /* stacks items vertically */
    align-items: center; /* centers button horizontally */
    justify-content: center;
}



    /* PRIVACY */
.container {
            max-width: 900px;
            margin: auto;
            padding: 40px 20px;
        }

        h1 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .effective-date {
            text-align: center;
            margin-bottom: 40px;
            color: #94a3b8;
        }

        h2 {
            margin-top: 30px;
            color: #38bdf8;
            font-size: 1rem;
            margin-bottom: 10px;
        }

        ul {
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
        }

         .card {
            background: #1e293b;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }


    .login-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .chart-img,
    .container-login {
        width: 100%;
    }


    /* WRAPPER */
.login-wrapper {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 80px; 
    padding: 80px 40px;
    margin-top: -90px;
}

.signup {
    margin-top: 5px;
}

/* LEFT SIDE */
.image-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

/* IMAGE */
.chart-img {
    width: 100%; 
    max-width: 550px;
    height: auto;
    transform: translateY(20px);
}


/* RIGHT SIDE */
.container-login {
    width: 100%;
    max-width: 380px;
}

/* HERO TEXT STYLING */
.hero-text {
    margin-top: 5px;
    color: #fff;
    text-align: center;      /* centers all text inside */
    width: 100%;             /* optional: ensure it spans the container */
    margin: 0 auto; 
    transform: translateY(30px);
}

.hero-text .h1-text {
    white-space: nowrap;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: -20px;
    margin-left: -80px;
    
}


.hero-text .p-text {
    text-align: center;
    white-space: nowrap;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

.bull {
    color: lime;
}

.bear {
    color: red;
}

.bull-two {
    color: lime;
}

.bear-two {
    color: red;
}

.p-text {
    display: inline;
    margin-left: -15px;
}

.hero-text h2 {
    font-size: 20px;
    font-weight: 500;
    color: #00ffcc; 
    margin-bottom: 15px;
    white-space: nowrap;
    margin-left: -20px;
}

.hero-text .p-text {
    font-size: 16px;
    opacity: 0.9;
    margin-left: -35px;


}

        
    

        

} /* end of @media */


@media screen and (max-width: 400px) {
        .main_content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main_content h2 {
        font-size: 2rem;
    }

    .main_content p {
        margin: 2rem 30px;
        font-size: 1.5rem;
    }

    .main_button {
        padding: 12px 36px;
        margin: 2.5rem 36px;
    }

    .body_image {
    width: 70%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-top: -20%;
}

.second_main_head {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    text-align: start;    
    margin: 50px auto;  
    width: 95%;
    height: 260px;
    border-radius: 20px;
    padding-left: 30px;
    padding-top: 20px;
    background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);

}


.second_main_head p {
    font-size: 1rem;
    font-weight: normal;
    color:lightgray;
    letter-spacing: 1px;
    margin-top: 30px;
    margin-left: 2px;
}



.sub-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    left: -14px;
    padding-right: 0;


}

.main_button_second {
    position: relative;
    display: inline-block;
    width: auto;
    margin-left: 0  ;
    margin-top: 10px;
}

.sub-headline {
   /* display: flex;
    flex-direction: column; */
   font-size: 1.2rem;
  font-weight: bold;
  color: lightgrey;
  
}

.second_main_head img {
    display: inline;
    width: 20px;
    height: 20px;
}

.wrong {
    position: relative;
    left: -7px;
    top: -4px;
}

 .correct {
    position: relative;
    left: -7px;
    top: -7px;   
}

  .third_main_head {
    font-size: 1.2rem;
    padding: 0 10px;
  }

  .third_main_head h3 {
    text-align: center;
    line-height: 1.4;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .third_main_head::after {
   width: 30%; /* smaller underline */
   content: '';
   position: absolute;
   width: 0; /* Start with no width */
   height: 2px;
   display: block;
   margin-top: 55px; /* Adjust vertical position */
   background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
   transition: width 0.3s ease; /* Animation effect */
  }

  .get-started-section {
    margin-top: 50px; /* slightly more space for very small screens */
}

.get-started-section .section-title {
    text-align: center;
    margin-top: 0;
}

  .features {
  grid-template-columns: repeat(1, 1fr);
}

.section-title {
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  position: relative;
  text-decoration: none;
  color: #D3D3D3;
}



.section-title::after {
  content: '';
  position: absolute;
  width: 0; /* Start with no width */
  height: 2px;
  display: block;
  margin-top: 80px; /* Adjust vertical position */
  background: linear-gradient(90deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  transition: width 0.3s ease; /* Animation effect */
}

.section-title:hover::after {
  width: 60%; /* Expand on hover */
}

.underline {
  position: relative;
}


.underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;                 /* space between text and underline */
    width: 0;                      /* start hidden */
    display: block;
    height: 3px;                   /* thickness of the line */
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
    transition: width 0.3s ease;   /* smooth animation */
    border-radius: 2px;            /* optional rounded edges */
}

/* Expand underline on hover */
.underline:hover::after {
    width: 80%;                   /* expand full width of text */
}

.step-box .sub-headline {
  display: inline-block;
  margin-bottom: 30px;
}

.now-public {
    position: absolute;
    bottom: -190px;
    margin-left: -40px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    background: linear-gradient(90deg,rgba(131, 58, 180, 1) 0%, rgba(253, 29, 29, 1) 50%, rgba(252, 176, 69, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: blink 2s infinite;
}

/* Blinking animation */
@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

  .proof-images {
    justify-content: center; /* overrides left alignment */
    margin-left: 0;          /* removes extra left margin */
    gap: 15px;
  }

  /* Center the text/content below images */
  .qa-section {
    text-align: center;
    margin-left: 0;          /* remove left margin */
    padding-left: 10px;      /* optional small padding */
  }




/* FOOTER FULL WIDTH ON SMALL SCREENS */
.footer {
    width: 100vw;   
    padding: 40px 20px;
    position: absolute;
    left: 0;
    right: 0;

}

.footer-container {
    display: grid;
    grid-template-columns: 1fr; /* stack all sections vertically */
    gap: 30px;                  /* space between footer sections */
    width: 100%;                 /* full width */
    text-align: center;          
    margin: 0 auto;
}

.footer-section h2,
.footer-section h3 {
    text-align: center;
}

.footer-section p,
.footer-section ul li a {
    font-size: 0.9rem;
}

.footer-bottom {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
}

    .cta-button {
        width: 90%;
        padding: 1rem;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

        .product-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .product-cta .primary-cta {
        margin-top: 20px;
    }
    
        .product-hero {
        flex-direction: column;   /* stack text + image */
        text-align: center;
        padding: 60px 20px;
    }

    .hero-image {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        max-width: 90%;   /* shrink nicely */
    }

        .product-benefits {
        padding: 60px 20px;
    }

    .product-benefits h2 {
        font-size: 1.6rem;
    }

    .product-benefits li {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* PRIVACY */
.container {
            max-width: 900px;
            margin: auto;
            padding: 40px 20px;
        }

        h1 {
            text-align: center;
            font-size: 1.0rem;
            margin-bottom: 10px;
        }

        .effective-date {
            text-align: center;
            margin-bottom: 40px;
            color: #94a3b8;
        }

        h2 {
            margin-top: 30px;
            color: #38bdf8;
        }

        ul {
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
        }

            .card {
            background: #1e293b;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        

     .container {
    margin: auto;           /* centers inside flex */
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    }

    h2 {
        font-size: 20px;
    }

    input, button {
        padding: 12px;
        font-size: 15px;
    }
    
    .bull {
    color: lime;
    }

    .bear {
    color: red;
    }

    .bull-two {
    color: lime;
    }

    .bear-two {
    color: red;
    }
}

   