/* 
=================================================
  RemoteRef - Custom Stylesheet
=================================================
*/
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

:root {
    --primary-green: #00D084;
    --primary-green-hover: #00b070;
    --dark-bg: #020202;
    --dark-card: #151515;
    --light-gray: #F7F7F7;
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: "Geist", sans-serif;
    letter-spacing: -0.01em;
    background-color: var(--dark-bg);
    color: #333;
}

/* Typography Utilities */
.text-primary-green {
    background: linear-gradient(180deg, #00C983 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-right: 5px;
}

/* Navbar */
.header-nav {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    border-bottom: 1px solid;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-weight: 700;
    color: #fff;
    font-size: 1.25rem;
}

.logo-highlight {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.25rem;
}

.nav-links {
    gap: 40px;
    margin-bottom: 0;
}

.nav-links .nav-link {
    font-family: Geist;
    font-weight: 700;
    font-size: 16px;
    line-height: 28.24px;
    letter-spacing: -0.03px;
    text-transform: uppercase;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.nav-links .nav-link.active {
    color: #fff;
}

.container-fluid {
    padding: 0 50px;
}

.btn-schedule {
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 223px;
    height: 46px;
    opacity: 1;
    gap: 10px;
    border-radius: 10px;
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-schedule:hover {
    background-color: var(--primary-green);
    color: #fff;
}

/* Hero Section */
.hero-section {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 1;
    padding-top: 3rem;
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 69.75px;
    letter-spacing: -4.65px;
    position: relative;
    font-size: 88px;
    z-index: 999;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    padding-right: 2rem;
    font-weight: 200;
    font-size: 20px;
    line-height: 37px;
    letter-spacing: -0.03px;
    text-transform: capitalize;
    width: 88%;
}

.store-links {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.store-links a {
    display: inline-block;
    transition: transform 0.3s;
}

.store-links a:hover {
    transform: translateY(-3px);
}

.store-links img {
    height: 63px;
}

.video-popup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    margin-bottom: 3rem;
    cursor: pointer;
    background: transparent;
    border-radius: 50%;
    transition: transform 0.3s;
    animation: rotateText 10s linear infinite;
}

.video-popup:hover {
    transform: translateY(-3px);
}

.play-btn-layered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.play-ring.ring-1 {
    width: 80px; height: 80px;
    background: rgba(0, 208, 132, 0.2);
}
.play-ring.ring-2 {
    width: 60px; height: 60px;
    background: rgba(0, 208, 132, 0.5);
}
.play-ring.ring-3 {
    width: 45px; height: 45px;
    background: rgba(0, 208, 132, 1);
}

.play-btn-layered i {
    color: #fff;
    font-size: 1.1rem;
    z-index: 3;
    position: relative;
    margin-left: 3px;
}

.play-text-ring {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    animation: rotateText 10s linear infinite;
}

.play-text-ring svg {
    width: 100%; height: 100%;
    overflow: visible;
}

.play-text-ring text {
    font-family: inherit;
    font-size: 11px;
    letter-spacing: 5px;
    fill: #fff;
    font-weight: 500;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.ref-stats {
    display: flex;
    align-items: end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stats-text {
    display: flex;
    flex-direction: column;
}

.stats-label {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 200;
    font-size: 20px;
    line-height: 37px;
    letter-spacing: -0.03px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.stats-number {
    margin-bottom: 0;
    font-weight: 900;
    font-size: 65px;
    line-height: 100%;
    letter-spacing: -6px;
    text-transform: capitalize;
}

.avatar-group {
    display: flex;
}
.avatar:nth-child(2), .avatar:nth-child(4) {
    margin-left: -15px;
}
.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #000;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.2s;
}

.avatar:nth-child(2),
.avatar:nth-child(3) {
    margin-left: -15px;
}

.avatar:hover {
    transform: translateY(-5px);
    z-index: 10;
}

/* Hero Right Column */
.hero-video-col {
    position: unset !important;
    display: none;
}

@media (min-width: 992px) {
    .hero-title {
        /* font-size: 4.5rem; */
    }

    .hero-video-col {
        display: block;
    }
}

/* Slider Customizations */
.hero-image-slider .slick-slide {
    outline: none;
}

.hero-image-slider .slick-dots {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 10;
    text-align: left;
}

.hero-image-slider .slick-dots li button:before {
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    font-size: 10px;
}

.hero-image-slider .slick-dots li.slick-active button:before {
    color: var(--primary-green);
    opacity: 1;
}

/* Video/Image Slide Up Animation from Bottom Right */
.hero-video-col {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-image-slider {
    position: absolute;
    bottom: -3rem; /* Offset container-fluid height paddings directly to stick strictly to native banner edge */
    right: 60px; /* Offset container-fluid right paddings to make flush horizontally */
    width: 920px;
    max-width: 48vw;
    z-index: 10;
    opacity: 0;
    transform: translate(150px, 100px);
}

.hero-video-wrapper {
    /* position: relative; */
}

.hero-video-wrapper img {
    max-width: 100%;
    height: 740px;
    display: block;
    width: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 208, 132, 0.2);
    border: 2px solid rgba(0, 208, 132, 0.4);
}

.hero-section.is-animating .hero-image-slider {
    animation: slideUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(150px, 100px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Wave Text Animation */
.hero-word-wrap {
    display: inline-block;
    /* overflow: hidden; */
    vertical-align: bottom;
    padding-bottom: 5px;
    margin-bottom: -5px;
}

.wave-text-container .hero-word-wrap > span {
    display: inline-block;
    opacity: 0;
    transform: translate(-30px, 100%);
}
a.nav-link:hover {
    background: linear-gradient(180deg, #00C983 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-section.is-animating .wave-text-container .hero-word-wrap > span {
    animation: heroRise 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.hero-video-wrapper.banner-img1 img {
    object-fit: unset;
}
.stats-number i {
    color: #00C983;
}

@keyframes heroRise {
    0% {
        opacity: 0;
        transform: translate(-30px, 100%);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Hero Decor */
.hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 208, 132, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

/* Layout Padding Utility for Custom CSS approach */
.container-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .container-padding {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

/* Features Section */
.features-section {
    background-color: #fff;
    padding: 3rem 0;
}

.features-header {
    margin-bottom: 3rem;
    align-items: flex-end;
}

.section-label {font-weight: 200;font-size: 20px;line-height: 37px;letter-spacing: 0px;text-transform: capitalize;color: #20353E;display: flex;align-items: center;gap: 10px;}

.section-label i {
    margin-right: 0.5rem;
}

.section-title {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 70px;
    line-height: 100%;
    letter-spacing: -2px;
}

.section-desc {
    color: #6c757d;
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.feature-card {
    padding: 20px 20px;
    border-radius: 1rem;
    height: 100%;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    height: 483px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}

.feature-icon {
    font-size: 1.75rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.feature-text-wrapper {
    position: relative;
}

.feature-content-front,
.feature-content-back {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-content-front {
    transform: translateY(0);
    opacity: 1;
}

.feature-content-back {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card:hover::before {
   height: 0;
}
.feature-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-gray);
    z-index: -1;
    border-radius: 10px;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--primary-green);
}

.feature-card:hover .feature-icon {
    color: #fff;
}

.feature-card:hover .feature-content-front {
    transform: translateY(20px);
    opacity: 0;
}

.feature-card:hover .feature-content-back {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.15s;
}

.feature-card-title {
    color: #4B4747 !important;
    margin-bottom: 0.5rem;
    font-family: Geist;
    font-weight: 700;
    font-size: 51px;
    letter-spacing: -3.27px;
    line-height: 52px;
}

.feature-card-desc {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -1px;
    color: #4B4747 !important;
}

@media (min-width: 1200px) {
    .feature-card {
    }
}

/* Benefits Section */
.benefits-section {
    background-color: var(--dark-bg);
    color: #fff;
    padding: 3rem 0;
}

.benefit-highlight-card {
    background: #0A0A0A;
    padding: 30px 15px;
    border-radius: 1rem;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
    align-content: space-between;
    width: 90%;
}

.benefit-highlight-card .logo-box {
    margin-bottom: 3rem;
}

.benefit-highlight-card .logo-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-highlight-card .logo-highlight {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-title {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 58px;
    line-height: 100%;
    letter-spacing: -4.67px;
    line-height: 65px;
}

.benefits-list {
    padding-top: 0.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item .icon-box {
    background-color: rgba(0, 208, 132, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 79px;
    height: 76px;
    opacity: 1;
    border-radius: 15.43px;
}

.benefit-item p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: -1.64px;
    color: #FFFFFF;
}

@media (min-width: 992px) {
    .benefits-left {
        margin-bottom: 0;
    }

    .benefits-right {
        /* padding-top: 1.5rem; */
        /* padding-left: 3rem; */
    }
}

/* Video Section */
.video-section {
    position: relative;
}

.video-bg-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, var(--dark-bg) 50%, #fff 50%);
}

.video-box {
    background-color: var(--dark-bg);
    border: 2px solid #09CA88;
    box-shadow: 0 0 40px rgba(0, 208, 132, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    min-height: 715px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.video-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
}

.video-play-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.75);
    font-size: 4rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-play-center:hover {
    color: #fff;
}

.video-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-text-group {
    margin-bottom: 1.5rem;
    color: #fff;
    max-width: 400px;
}

.video-text-group h3 {
    margin-bottom: 0.5rem;
    font-family: Geist;
    font-weight: 700;
    font-size: 47.83px;
    line-height: 50.92px;
    letter-spacing: -2.19px;
    text-align: unset;
    color: #F2F2F2C9;
}

.video-text-group p {
    color: #F7F7F7;
    margin-bottom: 0;
    font-family: Geist;
    font-weight: 200;
    font-size: 12.68px;
    line-height: 20.29px;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: #F7F7F7;
}

.video-store-links {
    display: flex;
    gap: 1rem;
}

.video-store-links a {
    transition: transform 0.3s;
}

.video-store-links a:hover {
    transform: translateY(-3px);
}

.video-store-links img {
    height: 64px;
}
img.solar_football-bold {
    position: absolute;
    bottom: -20px;
    left: -120px;
    z-index: 0;
}
@media (min-width: 768px) {
    .video-box {
        padding: 3rem;
    }

    .video-content {
        flex-direction: row;
        align-items: flex-end;
    }

    .video-text-group {
        margin-bottom: 0;
    }
}

/* Testimonials Section */
.testimonial-section {
    background-color: #fff;
    padding: 100px 0;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
}

.quote-wrapper {
    position: relative;
    margin-bottom: 3rem;
}

.quote-text {
    color: #020202;
    font-weight: 700;
    font-style: ;
    font-size: 78px;
    line-height: 81px;
    letter-spacing: -4.45px;
}

.quote-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--primary-green);
    opacity: 0.25;
    font-size: 5rem;
    transform: translateY(-30%);
    z-index: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-details h6 {
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}

.author-details small {
    color: #6c757d;
}

.testimonial-controls {
    display: flex;
    gap: 0.5rem;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    background: transparent;
    color: #6c757d;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #f8f9fa;
}

.nav-arrow.outline-dark {
    border-color: #000;
    color: #000;
}

.nav-arrow.outline-dark:hover {
    background: #000;
    color: #fff;
}

.testi-anim-wrapper {
    padding: 10px 0;
}

.word-wrapper {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: 5px;
    margin-bottom: -5px;
}

.anim-word {
    display: inline-block;
    transform: translateY(0);
    opacity: 0;
    /* Outgoing slide only fades out, stays in place */
    transition: opacity 0.2s ease;
}

.slick-active .anim-word {
    /* Incoming slide animates from bottom to top */
    animation: slideUpWord 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: calc(var(--i) * 0.03s + 0.1s);
}
.testimonial-slider-wrap {
    position: relative;
}

img.qoute {
    position: absolute;
    top: -30px;
    right: -50px;
}

.testi-img img {
    width: 96px;
    height: 96px;
    opacity: 1;
    border-radius: 63.4px;
    border: 1.81px solid #00C983;
}

.testi-img {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testi-img-text h6 {
    00;
    font-family: Geist;
    font-weight: 500;
    font-size: 25px;
    line-height: 20px;
    letter-spacing: -1px;
    margin: 0;
}

.testi-img-text p {
    margin: 0;
    font-weight: 500;
    font-size: 25px;
    line-height: 39.97px;
    letter-spacing: -1.48px;
    color: #02020269;
}

.testi-author-slider {
    border-top: 1px solid #00000024;
    padding-top: 40px;
    margin-top: 10px;
}
.testi-btn span {
    width: 92px;
    height: 92px;
    opacity: 1;
    border-radius: 60px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    font-size: 30px;
}

.testi-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: end;
    width: 70%;
    margin: 0 0 0 auto;
    margin-top: -100px;
    position: relative;
    z-index: 999;
}

.testi-btn span:hover {
    background: #00C983;
    color: #fff;
}
@keyframes slideUpWord {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.testi-quote-slider .slick-slide {
    outline: none !important;
}

.testi-author-slider .slick-slide {
    outline: none !important;
}

@media (min-width: 992px) {
    .quote-text {
    }

    .quote-icon {
        right: -80px;
    }
}

/* Sign Up Section */
.signup-section {
    position: relative;
    color: #fff;
    padding: 3rem 0;
    overflow: hidden;
}

.signup-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Initially positioned at bottom for animation */
    background: url('images/form-back.png') bottom/cover no-repeat;
    z-index: 0;
    transition: background-position 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.signup-section.in-view .signup-bg-image {
    background-position: center;
}

.signup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.9); */
    z-index: 1;
}

.signup-container {
    position: relative;
    z-index: 2;
}

.signup-header {
    margin-bottom: 12px;
    align-items: flex-end;
}

.signup-title {
    margin-top: 0.5rem;
    margin-bottom: 0;
/* Frame 1410129060 */
    px;
/* Welcome to RemoteRef 22 */
    /* height: 91px; */
    font-weight: 700;
    font-size: 70px;
    line-height: 91px;
/* identical to box height */
    letter-spacing: -4px;
}
h2.signup-title span {
    background: linear-gradient(180deg, #00C983 0%, #FFFFFF 76.92%), #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.badge-pill {
    display: inline;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.8em;
    vertical-align: middle;
    margin-top: 0.5rem;
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset !important;
    background: unset;
}

.signup-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .badge-pill {
        margin-top: 0;
    }
}

.form-wrapper {
}

.form-instruction {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -2px;
    color: #fff;
}

.signup-form {
    background: rgba(25, 25, 25, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
/* Frame 1410129048 */
    left: calc(50% - 1768px/2 - 10px);
    top: 198px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
}

.form-row {
    margin-bottom: 1.5rem;
}

.custom-input {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    padding: 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    height: 50px;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-green);
    outline: none;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-upload-row {
    margin-bottom: 1.5rem;
}

.upload-box {
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
/* Frame 1410129056 */
    box-sizing: border-box;
    height: 165px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #FFFFFF;
    border-radius: 10px;

/* Inside auto layout */
    flex: none;
    order: 8;
    flex-grow: 0;
}

.upload-box i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.upload-box p {
    margin-bottom: 0;
    
    
/* Upload Business registration certificate */
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
/* identical to box height */
    letter-spacing: -1px;
    text-transform: capitalize;
    color: #FFFFFF;
}

.upload-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-green);
}

.upload-box:hover i {
    color: var(--primary-green);
}

.form-actions {
    margin-top: 1.5rem;
}

.btn-submit {
    color: #000;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
/* Frame 1410129059 */

/* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    gap: 10px;
    height: 46px;
    top: 414px;
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF), #00C983;
    border-radius: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-green);
    color: #fff;
}

@media (min-width: 992px) {
    .signup-form {
    }
}

/* ======== Custom Footer ======== */
.custom-footer {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 2rem;
    overflow: hidden;
    background: #fff;
    color: var(--dark-text); /* Charcoal */
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-details {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0.9s; /* waits for massive text to arrive */
    padding-bottom: 1rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.custom-footer.is-animating .footer-details {
    opacity: 1;
    transform: translateY(0);
}

.footer-heading {
    margin-bottom: 1.5rem;
    
/* Welcome to RemoteRef 18 */
    font-style: normal;
    font-weight: 700;
    font-size: 27.1463px;
    line-height: 41px;
/* identical to box height, or 150% */
    letter-spacing: -0.07em;
    text-transform: capitalize;
    color: #00C983;
}

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

.footer-list li {
    margin-bottom: 1rem;
    color: #2F3C43;
    font-family: Geist;
    font-weight: 300;
    font-size: 24.43px;
    line-height: 40.72px;
    letter-spacing: -7%;
    text-transform: capitalize;
}

.footer-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--primary-green);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}
a {
    text-decoration: unset;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #20353E;
    color: #fff;
    border-radius: 50%;
    transition: transform 0.3s, background-color 0.3s;
    font-size: 0.95rem;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background-color: var(--primary-green);
}

/* Massive Bottom Text */
span.custom-o-ball img {
    object-fit: contain;
    width: 160px;
}
.footer-massive-text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 18.8vw;
    font-weight: 800;
    line-height: 0.75;
    color: #263339;
    letter-spacing: -1.5vw;
    margin-bottom: -5vw; /* Stick flush overlapping the bottom edge */
    opacity: 0;
    transform: translateY(200px) rotate(8deg) scaleY(1.3);
    transform-origin: bottom left;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    position: relative;
    user-select: none;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(200px) rotate(8deg) scaleY(1.3);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-footer.is-animating .footer-massive-text {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scaleY(1);
}

.custom-o-ball {
    justify-content: center;
    
    position: relative;
    left: 15px;
}

.custom-o-ball i {
    font-size: 0.85em;
    color: #8C969C; /* approximate soccer panel gray */
    padding-bottom: 0.08em; /* Align optically with font baseline */
}
.hero-word-wrap img {
    margin-top: -30px;
    position: relative;
    top: 30px;
}
.section-label span {
    width: 11px;
    height: 11px;
    display: block;
    background: #00C983;
    border-radius: 50%;
}

.features-header span.text-primary-green {
/* Welcome to RemoteRef 23 */font-weight: 700;font-size: 70px;line-height: 91px;
/* identical to box height */letter-spacing: -4px;background: linear-gradient(180deg, #00C983 0%, #00D38A 100%), #ffffff;-webkit-text-fill-color: transparent;background-clip: text;}

p {
    font-weight: 200;
    font-size: 20px;
    line-height: 37px;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: #20353E;
}

.row.features-header p {
    margin: 0;
}

.benefit-highlight-card:before {
    content: '';
    position: absolute;
    bottom: -60%;
    right: -50%;
    /* background: linear-gradient(180deg, #33d49c 0%, #FFFFFF 100%); */
    width: 447px;
    height: 447px;
    opacity: 36%;
    border-radius: 50%;
    backdrop-filter: blur(50px);
    box-shadow: 0px 0px 200px 40px #33d49c;
    background: #33d49c9c;
}
section.signup-section.in-view .section-label {
    color: #fff;
    margin: 0;
}

.row.signup-header p {
    font-weight: 200;
    font-size: 20px;
    line-height: 37px;
    letter-spacing: 0px;
    text-transform: capitalize;
    color: #F7F7F7;
}
.row.signup-header .col-md-4 p {
    font-size: 17px;
}
.custom-footer.is-animating .footer-massive-text {
}

/* Step 2: Details (delay ke saath) */
.custom-footer.is-animating .footer-details {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s; /* ye magic hai */
}
.custom-footer.is-animating .footer-massive-text {
    animation: footerReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes footerReveal {
    0% {
        opacity: 0;
        transform: translateY(220px) rotate(8deg) scaleY(1.25);
    }
    70% {
        opacity: 1;
        transform: translateY(-10px) rotate(-1deg) scaleY(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scaleY(1);
    }
}
.custom-footer.is-animating .custom-o-ball img {
    animation: ballRoll 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes ballRoll {
    0% {
        transform: translateX(-60px) rotate(-720deg);
    }
    60% {
        transform: translateX(8px) rotate(40deg);
    }
    100% {
        transform: translateX(0) rotate(0deg);
    }
}
.footer-massive-text,
.custom-o-ball img {
    will-change: transform, opacity;
    backface-visibility: hidden;
    padding-bottom: 30px;
}
.custom-footer.is-animating .footer-details {
    animation: footerDetailsReveal 1s ease forwards;
    animation-delay: 1.4s;
}
.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    z-index: 2;
}
.logo-box img {
    width: 72%;
}

.logo-box {
    position: relative;
}

img.logo-round {
    width: auto;
    position: absolute;
    top: -1px;
    left: 102px;
    animation: rotateBackForth 2s ease-in-out infinite;
    right: 0;
}
.benefit-title span {
    font-weight: 700;
}
@keyframes rotateBackForth {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
section.testimonial-section .section-label {
    margin-bottom: 40px;
}
div#text span:nth-child(1) {transform: rotate(-6.79deg);}

div#text span:nth-child(2) {
    transform: rotate(-4.91deg) translate(0px, -42px);
}

div#text span:nth-child(3) {
    transform: rotate(-4.91deg) translate(0px, -42px);
}

div#text span:nth-child(4) {
    transform: rotate(-4.91deg) translate(0px, -42px);
}

div#text span:nth-child(6) {
    transform: translate(0px, -40px);
}

div#text span:nth-child(7) {
    transform: rotate(4.21deg);
    color: #00C983;
}

div#text span:nth-child(8) {
    transform: translate(0px, -40px);
    color: #00C983;
}

div#text span:nth-child(9) {
    color: #00C983;
}
.show-details div#text span {
    transform: unset;
}