/* Global Reset for this component context */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
}

.header-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    /* Adjust based on content */
    background-image: url('../Images/Group 20.png');
    /* Adjusted path since css is in root */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
    /* Ensure background waves don't cause scroll if they overflow */
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    /* Align to top as implied by consistent top coordinate */
    justify-content: space-between;
    max-width: 1800px;
    /* Increased to accommodate wider design */
    width: 100%;
    gap: 0;
    /* Removing gap effectively since we are using specific widths, or keeping small gap? 1085 starts right after 163+922=1085. So 0 gap. */
    padding-top: 100px;
    /* simulated top padding to match "top: 184px" visual weight roughly, or just rely on container padding */
    padding-left: 163px;
    /* Added left padding as requested */
}

/* Left Content Column */
.header-content {
    flex: 1;
    color: #fff;
    max-width: 922px;
    /* Exact spec */
    z-index: 2;
}

.header-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-style: normal;
    /* "Extra Bold" usually implies just weight 800 */
    font-size: 80px;
    line-height: 100%;
    margin-bottom: 20px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.header-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #FFC107;
    /* Yellow from screenshot */
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.store-badge img {
    height: 40px;
    /* Adjust based on actual image aspect ratio */
    width: auto;
    transition: opacity 0.2s;
}

.store-badge img:hover {
    opacity: 0.8;
}

/* Right Image Column */
.header-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.feature-image {
    width: 785px;
    height: 385px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    border-radius: 40px;
    /* Added curve to match design */
}

/* Responsive Styles */

/* Small Laptops (up to 1280px) */
@media (max-width: 1280px) {
    .header-container {
        padding-top: 50px;
        /* Reduce top padding */
        padding-left: 20px;
        /* Reduce left padding */
        padding-right: 20px;
        gap: 20px;
    }

    .header-title {
        font-size: 38px !important;
        /* Scale down from 80px */
    }

    .feature-image {
        width: 100%;
        /* Make responsive */
        max-width: 600px;
        height: auto;
    }
}

/* Tablets (up to 992px) */
@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding-top: 40px;
    }

    .header-content {
        align-items: center;
        display: flex;
        flex-direction: column;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .header-image-wrapper {
        justify-content: center;
        width: 100%;
    }

    .feature-image {
        max-width: 80%;
    }
}

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
    .header-title {
        font-size: 36px;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .app-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .feature-image {
        max-width: 100%;
        border-radius: 20px;
        /* Smaller radius for mobile */
    }
}


/* Large Laptops/Desktops fitting just under 1500px */
@media (max-width: 1550px) {
    .features-card {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 40px;
        z-index: 20;
        /* Ensure card content is high */
        position: relative;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Switch back to fluid columns */
    }

    .feature-item {
        width: 100%;
        /* Fluid width */
        height: auto;
        /* Fluid height */
        min-height: 152px;
        /* Maintain visual weight but allow expand */
    }

    /* Make ellipses visible on smaller screens by overriding strict offsets */
    /* Removed ellipses */
}

/* Small Laptops (up to 1280px) */
@media (max-width: 1280px) {
    .why-join-container {
        padding: 0 20px;
    }

    .features-card {
        padding: 40px 30px;
    }

    .features-grid {
        gap: 30px;
        /* Ensure columns don't get too squished, might need to switch to 2 cols earlier if items are 351px "ideal" width */
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (up to 992px) */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

}

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
        /* Smaller title */
        margin-bottom: 30px;
    }

    .features-card {
        padding: 30px 15px;
        /* Tighter padding */
        border-radius: 30px;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .join-cta {
        font-size: 1.2rem;
        padding: 12px 30px;
        width: 100%;
        /* Full width button on mobile */
    }

}

/* ============================================
   WHY JOIN SECTION STYLES
   ============================================ */

.why-join-section {
    position: relative;
    width: 100%;
    min-height: auto;
    background: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 5%;
    overflow: hidden;
}

/* Background Ellipses */
.why-join-section::before {
    content: '';
    position: absolute;
    left: -247px;
    top: -23px;
    width: 651.66px;
    height: 605.66px;
    background-image: url('../Images/icons/Ellipse 3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform: rotate(0.43deg);
}

.why-join-section::after {
    content: '';
    position: absolute;
    right: 0%;
    width: 646.66px;
    height: 725.78px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    z-index: 11;
    transform: rotate(0.43deg);
    background-image: url('../Images/icons/Ellipse 4.png');
}

.why-join-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Section Title */
.why-join-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #C62828;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    width: 100%;
    max-width: 922px;
    height: auto;
    line-height: 1.2;
}

/* Features Card - White Container */
.features-card {
    background: #FFFFFF;
    border-radius: 40px;
    padding: 66px 165px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 5px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 1488px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 20;
}

/* Features Grid */
.why-join-section .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    margin-bottom: 40px;
}

/* Individual Feature Item */
.why-join-section .feature-item {
    background: #FFFFFF;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    min-height: 152px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.why-join-section .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Feature Icon */
.why-join-section .feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-join-section .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Feature Title */
.why-join-section .feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #212121;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* Join CTA Button */
.join-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    padding: 16px 50px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.join-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%);
}

/* App Store Badges */
.why-join-section .app-badges {
    align-items: center;
}

.why-join-section .app-badges .store-badge img {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.why-join-section .store-badge:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE STYLES FOR WHY JOIN SECTION
   ============================================ */

/* Large Laptops/Desktops (up to 1550px) */
@media (max-width: 1550px) {
    .why-join-section .features-card {
        max-width: 1488px;
        padding: 50px 60px;
    }

    .why-join-section .features-grid {
        gap: 35px;
    }
}

/* Medium Laptops (up to 1400px) */
@media (max-width: 1400px) {
    .why-join-section {
        padding: 70px 4%;
    }

    .why-join-section .features-card {
        max-width: 100%;
        padding: 45px 50px;
    }

    .why-join-section .features-grid {
        gap: 30px;
    }

    .why-join-section .feature-item {
        min-height: 145px;
        padding: 18px 12px;
    }

    .why-join-section .section-title {
        font-size: 38px;
        margin-bottom: 45px;
    }
}

/* Small Laptops (up to 1280px) */
@media (max-width: 1280px) {
    .why-join-section {
        padding: 60px 4%;
    }

    .why-join-section::before {
        content: '';
        position: absolute;
        left: -246px;
        top: -23px;
        width: 651.66px;
        height: 605.66px;
        z-index: 1;
        transform: rotate(0.43deg);
    }

    .why-join-section::after {
        width: 300px;
        height: 600px;
    }

    .why-join-section .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .why-join-section .features-card {
        padding: 40px 30px;
    }

    .why-join-section .features-grid {
        gap: 30px;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets (up to 991px) */
@media (max-width: 991px) {
    .why-join-section {
        padding: 50px 4%;
    }

    .why-join-section::before,
    .why-join-section::after {
        display: none;
    }

    .why-join-section .section-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .why-join-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-join-section .feature-item {
        min-height: 140px;
        padding: 20px 15px;
    }

    .why-join-section .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .why-join-section .feature-title {
        font-size: 15px;
    }

    .join-cta {
        font-size: 1.1rem;
        padding: 14px 40px;
    }
}

/* Small Tablets (up to 768px) */
@media (max-width: 768px) {
    .why-join-section {
        padding: 45px 3%;
    }

    .why-join-section::before,
    .why-join-section::after {
        width: 180px;
        height: 360px;
    }

    .why-join-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .why-join-section .features-card {
        padding: 30px 20px;
        border-radius: 30px;
    }

    .why-join-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-join-section .feature-item {
        min-height: 130px;
        padding: 18px 12px;
    }

    .why-join-section .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .why-join-section .feature-title {
        font-size: 14px;
    }

    .join-cta {
        font-size: 1rem;
        padding: 12px 35px;
        width: 100%;
        max-width: 235px;
        text-align: center;
    }

    .why-join-section .app-badges .store-badge img {
        height: 40px;
    }
}

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
    .why-join-section {
        padding: 40px 3%;
    }

    .why-join-section::before,
    .why-join-section::after {
        width: 150px;
        height: 300px;
        opacity: 0.5;
    }

    .why-join-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .why-join-section .features-card {
        padding: 25px 15px;
        border-radius: 25px;
    }

    .why-join-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .why-join-section .feature-item {
        min-height: 110px;
        padding: 18px 15px;
        border-radius: 15px;
    }

    .why-join-section .feature-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .why-join-section .feature-title {
        font-size: 14px;
    }

    .join-cta {
        font-size: 0.95rem;
        padding: 12px 30px;
        width: 100%;
        max-width: 280px;
    }

    .why-join-section .app-badges {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .why-join-section .app-badges .store-badge img {
        height: 38px;
    }
}

/* Small Mobile Devices (up to 480px) */
@media (max-width: 480px) {
    .why-join-section {
        padding: 35px 3%;
    }

    .why-join-section::before,
    .why-join-section::after {
        width: 120px;
        height: 240px;
        opacity: 0.4;
    }

    .why-join-section .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .why-join-section .features-card {
        padding: 20px 12px;
        border-radius: 20px;
    }

    .why-join-section .features-grid {
        gap: 12px;
    }

    .why-join-section .feature-item {
        min-height: 100px;
        padding: 15px 12px;
        border-radius: 12px;
    }

    .why-join-section .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .why-join-section .feature-title {
        font-size: 13px;
    }

    .join-cta {
        font-size: 0.9rem;
        padding: 11px 25px;
        margin-bottom: 20px;
    }

    .why-join-section .app-badges .store-badge img {
        height: 35px;
    }
}

/* Extra Small Mobile Devices (up to 400px) */
@media (max-width: 400px) {
    .why-join-section {
        padding: 30px 2.5%;
    }

    .why-join-section::before,
    .why-join-section::after {
        width: 100px;
        height: 200px;
        opacity: 0.3;
    }

    .why-join-section .section-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .why-join-section .features-card {
        padding: 18px 10px;
        border-radius: 18px;
    }

    .why-join-section .features-grid {
        gap: 10px;
    }

    .why-join-section .feature-item {
        min-height: 90px;
        padding: 12px 10px;
        border-radius: 10px;
    }

    .why-join-section .feature-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 6px;
    }

    .why-join-section .feature-title {
        font-size: 12px;
    }

    .join-cta {
        font-size: 0.85rem;
        padding: 10px 22px;
        margin-bottom: 18px;
        border-radius: 40px;
    }

    .why-join-section .app-badges {
        gap: 8px;
    }

    .why-join-section .app-badges .store-badge img {
        height: 32px;
    }
}

/* Ultra Small Mobile Devices (up to 360px) */
@media (max-width: 360px) {
    .why-join-section {
        padding: 25px 2%;
    }

    .why-join-section::before,
    .why-join-section::after {
        display: none;
    }

    .why-join-section .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .why-join-section .features-card {
        padding: 15px 8px;
        border-radius: 15px;
    }

    .why-join-section .features-grid {
        gap: 8px;
    }

    .why-join-section .feature-item {
        min-height: 85px;
        padding: 10px 8px;
        border-radius: 8px;
    }

    .why-join-section .feature-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 5px;
    }

    .why-join-section .feature-title {
        font-size: 11px;
    }

    .join-cta {
        font-size: 0.8rem;
        padding: 9px 20px;
        margin-bottom: 15px;
    }

    .why-join-section .app-badges .store-badge img {
        height: 30px;
    }
}

/* ============================================
   HOW TO JOIN SECTION STYLES
   ============================================ */

.how-to-join-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 456px;
    background: linear-gradient(95.42deg, #C32C35 1%, #5D1519 50.79%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    overflow: hidden;
}

.how-to-join-container {
    display: flex;
    flex-direction: row-reverse;
    /* Video on left, content on right for desktop */
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    gap: 60px;
}

/* Video Container */
.how-to-join-section .video-container {
    position: relative;
    flex: 1;
    max-width: 860px;
    border-radius: 30px;
    overflow: hidden;
}

.how-to-join-section .video-container iframe {
    width: 100%;
    height: 385px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: none;
    display: block;
}

/* Join Content - Right Side on Desktop */
.how-to-join-section .join-content {
    flex: 1;
    color: #FFFFFF;
    max-width: 600px;
}

.how-to-join-section .join-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    line-height: 1.2;
    max-width: 100%;
}

.how-to-join-section .join-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 1.5;
    margin: 0 0 30px 0;
    max-width: 100%;
}

/* Sign Up CTA Button */
.how-to-join-section .signup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 34px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    text-align: center;
}

.how-to-join-section .signup-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%);
}

/* App Store Badges */
.how-to-join-section .join-app-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 25px;
}

.how-to-join-section .join-store-badge img {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.how-to-join-section .join-store-badge:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE STYLES FOR HOW TO JOIN SECTION
   ============================================ */

/* Large Laptops (up to 1400px) */
@media (max-width: 1400px) {
    .how-to-join-section {
        padding: 55px 60px;
    }

    .how-to-join-container {
        gap: 50px;
    }

    .how-to-join-section .join-title {
        font-size: 36px;
    }

    .how-to-join-section .join-description {
        font-size: 20px;
    }
}

/* Small Laptops (up to 1280px) */
@media (max-width: 1280px) {
    .how-to-join-section {
        min-height: auto;
        padding: 50px 40px;
    }

    .how-to-join-container {
        gap: 40px;
    }

    .how-to-join-section .join-title {
        font-size: 32px;
    }

    .how-to-join-section .join-description {
        font-size: 18px;
    }

    .how-to-join-section .video-container iframe {
        height: 340px;
    }
}

/* Tablets (up to 991px) - Stack with content first */
@media (max-width: 991px) {
    .how-to-join-section {
        padding: 50px 30px;
    }

    .how-to-join-container {
        flex-direction: column;
        /* Content first, then video */
        gap: 35px;
        text-align: center;
    }

    .how-to-join-section .video-container {
        display: none;
        /* Hide video on mobile */
    }


    .how-to-join-section .join-title {
        font-size: 30px;
    }

    .how-to-join-section .join-description {
        font-size: 17px;
    }


    .how-to-join-section .join-app-badges {
        justify-content: center;
    }

    .how-to-join-section .signup-cta {
        width: auto;
        max-width: 300px;
    }
}

/* Small Tablets (up to 768px) */
@media (max-width: 768px) {
    .how-to-join-section {
        padding: 45px 25px;
    }

    .how-to-join-container {
        gap: 30px;
    }

    .how-to-join-section .join-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .how-to-join-section .join-description {
        font-size: 16px;
        margin-bottom: 25px;
    }


    .how-to-join-section .signup-cta {
        font-size: 1rem;
        padding: 15px 35px;
    }

    .how-to-join-section .join-store-badge img {
        height: 40px;
    }
}

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
    .how-to-join-section {
        padding: 40px 20px;
    }

    .how-to-join-container {
        gap: 25px;
    }

    .how-to-join-section .join-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .how-to-join-section .join-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 20px;
    }


    .how-to-join-section .signup-cta {
        font-size: 0.95rem;
        padding: 14px 30px;
        width: 100%;
        max-width: 280px;
    }

    .how-to-join-section .join-app-badges {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 20px;
    }

    .how-to-join-section .join-store-badge img {
        height: 38px;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .how-to-join-section {
        padding: 35px 15px;
    }

    .how-to-join-container {
        gap: 20px;
    }

    .how-to-join-section .join-title {
        font-size: 22px;
    }

    .how-to-join-section .join-description {
        font-size: 14px;
    }


    .how-to-join-section .signup-cta {
        font-size: 0.9rem;
        padding: 12px 25px;
    }

    .how-to-join-section .join-store-badge img {
        height: 35px;
    }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .how-to-join-section {
        padding: 30px 12px;
    }

    .how-to-join-section .join-title {
        font-size: 20px;
    }

    .how-to-join-section .join-description {
        font-size: 13px;
    }

    .how-to-join-section .video-container iframe {
        height: 180px;
        border-radius: 8px;
    }

    .how-to-join-section .signup-cta {
        font-size: 0.85rem;
        padding: 11px 22px;
    }

    .how-to-join-section .join-store-badge img {
        height: 32px;
    }
}

/* Ultra Small Mobile (up to 360px) */
@media (max-width: 360px) {
    .how-to-join-section {
        padding: 25px 10px;
    }

    .how-to-join-section .join-title {
        font-size: 18px;
    }

    .how-to-join-section .join-description {
        font-size: 12px;
    }

    .how-to-join-section .video-container iframe {
        height: 160px;
    }

    .how-to-join-section .signup-cta {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .how-to-join-section .join-store-badge img {
        height: 30px;
    }
}

/* ============================================
   SERVICE BLOG SECTION STYLES
   ============================================ */

.service-blog-section {
    position: relative;
    max-width: 100%;
    min-height: 535px;
    background: #C32B34;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    overflow: hidden;
    padding-bottom: 25px;
}

.service-blog-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1600px;
    width: 100%;
}

/* Section Title */
.service-blog-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 40px 0;
    width: 565px;
    height: 60px;
    max-width: 100%;
    opacity: 1;
    line-height: 60px;
}

/* Service Cards Wrapper */
.service-cards-wrapper {
    display: flex;
    gap: 30px;
    width: 1583px;
    max-width: 100%;
    height: 241px;
    margin-bottom: 40px;
    opacity: 1;
}

/* Individual Service Card */
.service-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 23px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: 241px;
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card-title {
    font-family: 'Poppins';
    font-weight: 700;
    font-style: normal;
    font-size: 30px;
    color: #C32C35;
    margin: 0 0 15px 0;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    max-width: 100%;
    opacity: 1;
}

.service-card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    color: #333333;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0 0 20px 0;
    flex-grow: 1;
    max-width: 100%;
    opacity: 1;
    padding-left: 4px;
    padding-right: 4px;
}

.learn-more-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    color: #C32C35;
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: flex-start;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    opacity: 1;
    margin-top: auto;
    position: relative;
    padding-bottom: 9px;
}

.learn-more-link:hover {
    color: #5D1519;
    text-decoration: underline;
}

/* Service Join Button */
.service-join-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 34px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    width: 596px;
    height: 65px;
    max-width: 100%;
    opacity: 1;
}

/* Service App Badges */
.service-app-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    width: 319px;
    height: 44px;
    opacity: 1;
}

.service-store-badge img {
    height: 44px;
    width: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-store-badge:hover img {
    opacity: 0.8;
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE STYLES FOR SERVICE BLOG SECTION
   ============================================ */

/* Large Desktops (up to 1920px) */

/* Medium Desktops (up to 1600px) */
@media (max-width: 1600px) {


    .service-cards-wrapper {
        width: 100%;
        gap: 25px;
    }

    .service-card {
        width: auto;
        min-width: 300px;
    }
}

/* Small Laptops (up to 1280px) */
@media (max-width: 1280px) {
    .service-blog-section {
        height: auto;
    }

    .service-cards-wrapper {
        flex-direction: column;
        height: auto;
        gap: 20px;
        width: 100%;
    }

    .service-card {
        width: 100%;
        height: auto;
        min-height: 180px;
    }

    .service-blog-title {
        font-size: 2rem;
        height: auto;
        width: 100%;
    }

    .service-card-title {
        width: 100%;
        height: auto;
    }

    .service-card-description {
        width: 100%;
        height: auto;
    }

    .learn-more-link {
        width: auto;
        height: auto;
    }
}

/* Tablets (up to 992px) */
@media (max-width: 992px) {


    .service-blog-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 25px;
    }

    .service-card-title {
        font-size: 28px;
    }

    .service-card-description {
        font-size: 18px;
        line-height: 1.4;
    }

    .learn-more-link {
        font-size: 18px;
    }

    .service-join-cta {
        width: 100%;
        max-width: 500px;
    }
}

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {


    .service-blog-title {
        font-size: 1.5rem;
        width: 100%;
        height: auto;
        line-height: 1.3;
    }

    .service-card {
        padding: 20px;
        min-height: auto;
    }

    .service-card-title {
        font-size: 24px;
    }

    .service-card-description {
        font-size: 16px;
        line-height: 1.5;
    }

    .learn-more-link {
        font-size: 16px;
    }

    .service-join-cta {
        width: 100%;
        font-size: 1.1rem;
        height: auto;
        padding: 15px 30px;
    }

    .service-app-badges {
        width: 100%;
        justify-content: center;
    }

    .service-store-badge img {
        height: 40px;
    }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {

    .service-blog-title {
        font-size: 1.3rem;
    }

    .service-card {
        padding: 15px;
    }

    .service-card-title {
        font-size: 20px;
    }

    .service-card-description {
        font-size: 14px;
    }

    .learn-more-link {
        font-size: 14px;
    }

    .service-join-cta {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* ============================================
   WHO JOINED UGO SECTION STYLES
   ============================================ */

.who-joined-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 530px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 167px 253px 152px 253px;
    overflow: hidden;
    background-color: rgba(195, 43, 52, 0.4);
}

/* Background Image with opacity */
.who-joined-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../Images/233961365_xl 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Overlay for better text readability */
.who-joined-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(195, 43, 52, 0.2);
    z-index: 1;
}

.who-joined-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1600px;
    width: 100%;
}

/* Section Title */
.who-joined-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 50px 0;
    opacity: 1;
    line-height: 1.2;
}

/* Testimonial Cards Wrapper */
.testimonial-cards-wrapper {
    display: flex;
    gap: 30px;
    width: 1449px;
    max-width: 100%;
    height: 211px;
    margin-bottom: 40px;
    opacity: 1;
}

/* Individual Testimonial Card */
.testimonial-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 23px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    width: 435px;
    height: 211px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.testimonial-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #C32C35;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 22px;
    color: #333333;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 0;
    flex-grow: 1;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #FFFFFF;
    width: 14px;
    height: 14px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE STYLES FOR WHO JOINED SECTION
   ============================================ */

/* Large Desktops (up to 1920px) */
@media (max-width: 1920px) {
    .who-joined-section {
        padding: 167px 150px 152px 150px;
    }
}

/* Medium Desktops (up to 1600px) */
@media (max-width: 1600px) {
    .who-joined-section {
        padding: 120px 100px 100px 100px;
    }

    .testimonial-cards-wrapper {
        width: 100%;
        height: auto;
    }

    .testimonial-card {
        width: auto;
        height: auto;
        min-height: 211px;
    }
}

/* Small Laptops (up to 1280px) */
@media (max-width: 1280px) {
    .who-joined-section {
        padding: 60px 40px;
        min-height: auto;
    }

    .testimonial-cards-wrapper {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        height: auto;
    }

    .testimonial-card {
        width: 100%;
        max-width: 600px;
        height: auto;
        min-height: 180px;
        margin: 0 auto;
    }

    .who-joined-title {
        font-size: 2rem;
    }

    .testimonial-text {
        line-height: 1.4;
    }
}

/* Tablets (up to 992px) */
@media (max-width: 992px) {
    .who-joined-section {
        padding: 50px 30px;
        min-height: auto;
    }

    .who-joined-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 25px;
        min-height: auto;
    }

    .testimonial-name {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 18px;
        line-height: 1.4;
    }
}

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
    .who-joined-section {
        padding: 40px 20px;
        min-height: auto;
    }

    .who-joined-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-name {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 12px;
        height: 12px;
    }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .who-joined-section {
        padding: 30px 15px;
    }

    .who-joined-title {
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    .testimonial-text {
        font-size: 14px;
    }
}

/* ============================================
   GOT OPTIONS SECTION STYLES
   ============================================ */

.got-options-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 563px;
    background-image: url('../Images/Group 21.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    opacity: 1;
    overflow: hidden;
}

.got-options-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1600px;
    width: 100%;
}

/* Section Title */
.got-options-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #FFFFFF;
    text-align: center;
    margin: 0 0 50px 0;
    opacity: 1;
    line-height: 1.2;
}

/* Video Container */
.options-video-container {
    padding: 20px;
    width: 1114px;
    height: 385px;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

}

/* YouTube Iframe */
.you-got-options-video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    /* Optional inner radius */
}

/* ============================================
   RESPONSIVE STYLES FOR GOT OPTIONS SECTION
   ============================================ */

/* Small Laptops (up to 1280px) */
@media (max-width: 1280px) {
    .got-options-section {
        min-height: auto;
        padding: 33px 20px;
    }

    .got-options-title {
        font-size: 2rem;
    }

    .options-video-container {
        width: 100%;
        max-width: 900px;
        aspect-ratio: 16/9;
    }
}

/* Tablets (up to 992px) */
@media (max-width: 992px) {
    .got-options-section {
        padding: 50px 30px;
    }

    .got-options-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
}

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
    .got-options-section {
        padding: 40px 20px;
    }

    .got-options-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .options-video-container {
        border-radius: 20px;
        padding: 10px;
        max-height: 254px;
    }
}

/* Extra Small Mobile (up to 400px) */
@media (max-width: 400px) {
    .got-options-section {
        padding: 30px 15px;
    }

    .got-options-title {
        font-size: 1.3rem;
    }
}

/* ============================================
   GOT MORE JOBS SECTION STYLES
   ============================================ */

.got-more-section {
    position: relative;
    width: 100%;
    min-height: 360px;
    background-image: url('../Images/Group 22.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    opacity: 1;
}



.got-more-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.got-more-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
}

.got-more-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
    /* Adjusted from 100% for readability on multi-line text */
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
    max-width: 800px;
}

.got-more-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-decoration: none;
    padding: 15px 50px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.got-more-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.got-more-badges img {
    height: 50px;
    width: auto;
    transition: transform 0.2s;
}

.got-more-badges img:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .got-more-title {
        font-size: 32px;
    }

    .got-more-description {
        font-size: 18px;
    }

    .got-more-cta {
        font-size: 20px;
        padding: 12px 40px;
    }

    .got-more-badges img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .got-more-title {
        font-size: 28px;
    }

    .got-more-description {
        font-size: 16px;
    }

    .got-more-badges {
        flex-direction: row;
        /* Keep badges side-by-side if they fit, or wrap */
        flex-wrap: wrap;
    }
}

/* ============================================
   SERVICE BLOG SECTION STYLES
   ============================================ */

.service-blog-section {
    padding: 60px 20px;
}

.service-blog-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.service-blog-title {
    margin-top: 34px;
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.service-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: #f8f8f8;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #C92A2A;
    margin-bottom: 15px;
}

.service-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #C92A2A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #A52020;
}

.service-join-cta {
    display: inline-block;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    padding: 16px 50px;
    border-radius: 50px;
    width: 311px;
    max-width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
    text-align: center;
}

.service-join-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.5);
    background: linear-gradient(135deg, #FFB300 0%, #FFA000 100%);
}

.service-app-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.service-store-badge img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.service-store-badge img:hover {
    transform: scale(1.05);
}

/* Responsive Styles for Service Blog Section */

/* Tablets and Medium Devices (up to 991px) */
@media (max-width: 991px) {
    .service-blog-section {
        padding: 50px 15px;
    }

    .service-blog-container {
        padding: 0 15px;
    }

    .service-blog-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .service-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-join-cta {
        font-size: 1.1rem;
        padding: 14px 40px;
    }
}

/* Small Tablets (up to 768px) */
@media (max-width: 768px) {
    .service-blog-section {
        padding: 40px 12px;
    }

    .service-blog-container {
        padding: 0 12px;
    }

    .service-blog-title {
        font-size: 32px;
        margin-top: 20px;
        margin-bottom: 35px;
    }

    .service-cards-wrapper {
        gap: 20px;
        padding: 0 8px;
    }

    .service-card {
        padding: 22px 18px;
    }

    .service-card-title {
        font-size: 20px;
    }

    .service-card-description {
        font-size: 14px;
    }

    .service-join-cta {
        font-size: 1rem;
        padding: 12px 35px;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Mobile Devices (up to 575px) */
@media (max-width: 575px) {
    .service-blog-section {
        padding: 35px 15px;
    }

    .service-blog-container {
        padding: 0 15px;
    }

    .service-blog-title {
        font-size: 26px;
        margin-top: 15px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .service-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 5px;
    }

    .service-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .service-card-title {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .service-card-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .learn-more-link {
        font-size: 14px;
    }

    .service-join-cta {
        font-size: 0.95rem;
        padding: 12px 30px;
        width: 100%;
        max-width: 280px;
    }

    .service-app-badges {
        gap: 12px;
    }

    .service-store-badge img {
        height: 40px;
    }
}

/* Extra Small Mobile Devices (up to 400px) */
@media (max-width: 400px) {
    .service-blog-section {
        padding: 30px 12px;
    }

    .service-blog-container {
        padding: 0 12px;
    }

    .service-blog-title {
        font-size: 23px;
        margin-top: 12px;
        margin-bottom: 25px;
        padding: 0 8px;
    }

    .service-cards-wrapper {
        gap: 15px;
        padding: 0;
    }

    .service-card {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .service-card-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-card-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .learn-more-link {
        font-size: 13px;
    }

    .service-join-cta {
        font-size: 0.9rem;
        padding: 11px 25px;
        width: 100%;
        max-width: 280px;
    }

    .service-store-badge img {
        height: 38px;
    }
}