:root {
    --primary-orange: #FD933D;
    --text-dark: #000000;
    --text-light: #666666;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
p,
a {
    font-family: 'Inter', sans-serif;
}

.hero-content-wrapper {
    width: 95% !important;
    margin: 0 auto !important;
    position: relative;
    z-index: 2;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.6;
    display: block;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.hero-text h1 strong {
    background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h1 span {
    /* display: block;
    color: var(--primary-orange); */
    background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h2 {
    font-size: 45px;
    color: var(--primary-orange);
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary-orange);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(255, 127, 50, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 127, 50, 0.4);
}

.btn-primary .arrow-right {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 15px;
}

/* --- Balloon Styling & Animation --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.balloon-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    perspective: 1000px;
    /* Add perspective for 3D feel */
}





.mobile-bg {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .desktop-bg {
        display: none !important;
    }

    .mobile-bg {
        display: block !important;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
    }

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 50px;
        display: block;
        text-align: left;
        /* Image shows left alignment for text in mobile if I look closer? Wait. */
    }

    /* From the image, the text is actually left-aligned but the content is centered in the viewport or has specific margins. */
    /* Let's look at the image again. Yes, text is left-aligned. */

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

    .hero-text h1 strong,
    .hero-text h1 span {
        background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-text h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .hero-text p {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 100%;
        color: #666;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 15px;
        width: fit-content;
    }

    .hero-visual {
        margin-top: 50px;
        justify-content: center;
    }

    .balloon-container {
        max-width: 320px;
    }
}

.balloon-container:hover {
    transform: rotate(-180deg);
}

.balloon-container {
    transition: all 0.6s ease-in-out;
    width: fit-content;
    height: fit-content;
}

/* --- Partnerships Section --- */
.partnerships-section {
    padding: 0 0 80px 0;
    margin-top: -2%;
    /* Overlap with hero slightly */
    position: relative;
    z-index: 10;
}

.partnerships-box {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
    /* max-width: 1200px; */
    width: 80%;
    margin: 0 auto;
}

.partnerships-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    ;
    margin-bottom: 50px;
    line-height: 1.3;
}

.partnerships-header .gradient-text {
    background: linear-gradient(90deg, #FD933D 0%, #BA7FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Edge fade effect */
    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 15%,
            rgba(0, 0, 0, 1) 85%,
            rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 1) 15%,
            rgba(0, 0, 0, 1) 85%,
            rgba(0, 0, 0, 0) 100%);
}

.logo-marquee {
    display: flex;
    white-space: nowrap;
    width: fit-content;
}

.marquee-content {
    display: flex;
    gap: 70px;
    padding: 10px 50px;
    animation: scroll 30s linear infinite;
}

.marquee-content img {
    height: 35px;
    width: 140px;
    /* Consistent bounding box width */
    object-fit: contain;
    opacity: 1;
    /* Always full opacity */
    transition: transform 0.3s ease;
}

.marquee-content img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 768px) {
    .partnerships-box {
        padding: 40px 20px;
        border-radius: 25px;
        margin-top: -60px;
    }

    .partnerships-header h2 {
        font-size: 24px;
    }

    .marquee-content {
        gap: 50px;
    }

    .marquee-content img {
        height: 30px;
    }
}

/* --- Enhanced Partnerships Section --- */
.enhanced-partners-section {
    padding: 50px 0;
    text-align: center;
    background: radial-gradient(83.08% 83.08% at 50% 52.75%, rgba(253, 147, 61, 0.13) 0%, rgba(254, 184, 127, 0.17125) 17.3%, rgba(254, 221, 193, 0.0826793) 50.49%, rgba(255, 255, 255, 0) 86.46%, rgba(255, 255, 255, 0.62) 100%);
}

.enhanced-partners-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.enhanced-partners-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 45px;
}

.enhanced-partners-header .gradient-text {
    background: linear-gradient(90deg, #FD933D 38.46%, #8464E3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.enhanced-partners-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 20px auto 0;
}

.partner-grid {
    display: flex;
    flex-direction: column;
    gap: 55px;
    align-items: center;
}

.partner-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    flex-wrap: wrap;
}

.partner-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .enhanced-partners-header h2 {
        font-size: 32px;
    }

    .partner-row {
        gap: 40px;
    }

    .partner-logo {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .enhanced-partners-section {
        padding: 60px 0;
    }

    .enhanced-partners-header h2 {
        font-size: 28px;
    }

    .partner-row {
        gap: 30px;
    }
}