:root {
    --primary: #FFD100;
    --dark: #0a0a0a;
    --light-grey: #141414;
    --border: #262626;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --font-main: 'Inter', -apple-system, sans-serif;
}

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

h1,h2,h3{
    color : var(--primary);
}

svg{
        stroke:  #FFD100;
}

.btn > svg{
        stroke:  #000 !important;
}

.img{
    width :100%;
    max-width : 800px;
        border: 1px solid #ffd100;
        border-radius : 30px;
        
}

.mh-scroll-up > svg{
        stroke:  #000 !important;
}


.mh-outcome-content > svg{
     stroke:  #000 !important;
}

body {
    background-color: var(--dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Animations --- */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 209, 0, 0);
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-rotate {
    animation: rotate-slow 8s linear infinite;
}

.animate-pulse {
    animation: pulse-gold 2s infinite;
}

.reveal {
    animation: slideUp 0.8s ease-out forwards;
}

/* --- Header --- */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--primary);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.logo {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.spot-badge {
    background: white;
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

/* --- Hero --- */
.hero-bg {
    position: relative;
    width: 100%;
    min-height: 90vh; /* Screen ki height ka 90% */
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Image Background Settings */
    background-image: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), 
                      url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=2070'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect ke liye */
}

/* Content ko z-index dena taaki overlay ke upar rahe */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* Responsive fix */
@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll; /* Mobile par fixed background performance issue deta hai */
        min-height: 70vh;
    }
}

.hero {
    padding: 120px 5% 80px;
    text-align: center;
}

.hero-icon {
    color: var(--primary);
    margin-bottom: 30px;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5rem);
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-dim);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Grid Section --- */
.section-padding {
    padding: 100px 5%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--light-grey);
    padding: 45px 35px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: #1a1a1a;
}

.card i {
    color: var(--primary);
    margin-bottom: 25px;
    display: block;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-dim);
    font-size: 1rem;
}

/* --- CTA Button --- */
.btn {
    background: var(--primary);
    color: #000;
    padding: 20px 45px;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
    transform: scale(1.02);
}

/* --- Form --- */
.form-section {
    background: #0f0f0f;
    border-radius: 24px;
    padding: 60px;
    max-width: 700px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dim);
}

input,
textarea {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus {
    border-color: var(--primary);
    outline: none;
}

/* Authority Section Styling */
.authority-section {
    background-color: #0f0f0f; /* Slightly lighter than the background */
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-bar {
    text-align: center;
    margin-bottom: 80px;
}

.trust-bar p {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #ffd100;
    margin-bottom: 10px;
}

.logo-carousel {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    opacity: 0.4;
    transition: opacity 0.3s;
}

.trust-logo:hover {
    opacity: 1;
    color: var(--primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.auth-headline {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary);
}

.auth-text {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    max-width: 600px;
}

/* Curiosity Card */
.curiosity-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.curiosity-icon i {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.curiosity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.curiosity-card p {
    color: var(--text-dim);
    font-style: italic;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .auth-headline {
        font-size: 2rem;
    }
}


/* Footer Styling */
.main-footer {
    padding: 80px 5% 40px;
    background-color: #ffd100;
    border-top: 1px solid var(--border);
    margin-top: 50px;
    max-width: 100%;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: black;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-desc {
    color:#141414;
    font-size: 0.95rem;
    max-width: 300px;
    margin-bottom: 25px;
}

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

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

.footer-col ul li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #1a1a1a;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a svg {
    width: 20px !important;
    height: 20px !important;
}

.social-links a:hover {
    color: black;
    transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-bottom p {
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-desc {
        margin: 0 auto 25px;
    }

    .social-links {
        justify-content: center;
    }
}


@media (max-width: 768px) {
    .hero {
        padding: 80px 5%;
    }

    .form-section {
        padding: 30px;
    }
}

@media (max-width: 600px) {
    .card {
        background: var(--light-grey);
        padding: 45px 35px;
        border-radius: 16px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid var(--border);
        position: relative;
        overflow: hidden;
        display: grid;
        justify-items: center;
        justify-content: center;
        align-content: end;
    }
    
    .logo-carousel {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

    header {
    padding: 10px 5%;

    }
    
      header > .logo > img {
        height: 30px;
      }

    .card p {
        color: var(--text-dim);
        font-size: 1rem;
        text-align: center;
    }

    .section-padding>h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 10px;
        line-height: 46px;
    }

    .card>svg {
        width: 32px !important;
        height: 32px !important;
    }
}


/* --- Roadmap Section Theme Update --- */
.mh-roadmap {
    background-color: var(--dark); /* Dark background matching the site */
    border-top: 1px solid var(--border);
}

.mh-header h2 {
    color: var(--text-main);
    font-size: 2.5rem;
    font-weight: 900;
}

.mh-badge {
    color: var(--primary); /* Yellow accent for the badge */
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.mh-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mh-step-card {
    background: var(--light-grey); /* Using your #141414 color */
    padding: 45px 35px;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
}

.mh-step-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.mh-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 209, 0, 1); /* Very subtle yellow glow for the number */
    position: absolute;
    top: 20px;
    right: 30px;
}

.mh-step-card h3 {
    color: var(--text-main);
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.mh-step-card p {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 1rem;
}

.mh-outcome-box {
    background: var(--primary); /* Solid Yellow Box for Impact */
    color: #000;
    padding: 35px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mh-outcome-content {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

.mh-outcome-content i {
    color: #000;
}

@media (max-width: 768px) {
    .mh-grid {
        grid-template-columns: 1fr;
    }
    .mh-header h2 {
        font-size: 2rem;
    }
}


.mh-qual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mh-qual-card {
    background: var(--light-grey);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mh-qual-card.positive {
    border-left: 5px solid var(--primary);
}

.mh-qual-card.negative {
    border-left: 5px solid #333; /* Subdued color for "not for you" */
}

.mh-qual-icon {
    margin-bottom: 25px;
}

.mh-qual-icon i {
    width: 40px;
    height: 40px;
}

.positive .mh-qual-icon i { color: var(--primary); }
.negative .mh-qual-icon i { color: var(--text-dim); }

.mh-qual-card h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--text-main);
}

.mh-qual-card ul {
    list-style: none;
    padding: 0;
}

.mh-qual-card ul li {
    margin-bottom: 18px;
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 25px;
}

.mh-qual-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.negative ul li::before {
    color: #555; /* Less prominent arrow for negative side */
}

@media (max-width: 768px) {
    .mh-qual-card {
        padding: 30px 20px;
    }
    
    .mh-step-card {
    background: var(--light-grey);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-content: space-between;
}
}


/* Floating Scroll Up Button */
.mh-scroll-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary); /* Your Yellow Color */
    color: var(--dark); /* Black Icon */
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0; /* Hidden by default */
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mh-scroll-up.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mh-scroll-up:not(.show) {
    transform: translateY(20px);
}

.mh-scroll-up:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.mh-scroll-up i {
    width: 24px;
    height: 24px;
    stroke-width: 3px;
}

/* Smooth Scroll behavior for the whole page */
html {
    scroll-behavior: smooth;
}



@media (max-width: 768px) {

    .mh-step-card h3 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.mh-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 209, 0, 1);
    position: absolute;
    top: 4px;
    right: 30px;
}

    .mh-step-card {
    background: var(--light-grey);
    padding: 35px 25px;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-content: space-between;
}
}