/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #505FF5;
    overflow: hidden;
}

/* Hide mobile content by default */
.mobile-content {
    display: none;
}

/* Hide desktop content on mobile */
@media (max-width: 768px) {
    .desktop-content {
        display: none;
    }

    /* Show mobile content */
    .mobile-content {
        display: block;
    }
}

/* Desktop Styles */
/* Desktop Content */
.desktop-content {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Background Circles */
.background-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.circle-group {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-group.left {
    left: 50%;
    top: 50%;
    transform: translateX(-1024px) translateY(-50%);
}

.circle-group.right {
    right: 50%;
    top: 50%;
    transform: translateX(1024px) translateY(-50%) scaleX(-1);
}

.big-circle {
    width: 1024px;
    height: 1024px;
    border-radius: 50%;
    background: linear-gradient(268deg, #8E76F6 1.79%, #505FF5 36.72%);
}

.small-circle {
    position: absolute;
    width: 462px;
    height: 462px;
    border-radius: 50%;
    background: linear-gradient(268deg, #8E76F6 1.33%, #505FF5 49.07%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Navigation Styling */
.nav {
    position: absolute;
    top: 50px;
    left: 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-link {
    color: #D3D3FA;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
}

.nav-link:hover {
    color: white;
}

/* Logo Styling */
.logo {
    position: absolute;
    top: 50px;
    right: 50px;
}

.logo img {
    width: 106.214px;
    height: 106.214px;
}

/* Center Content Styling */
.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.small-title {
    color: #FFF;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 0px;
}

.big-title {
    color: #FFF;
    font-size: 130px;
    font-weight: 600;
    white-space: nowrap;
    margin: 5px 0;
}

.cta-btn {
    width: 300px;
    height: 75px;
    border-radius: 60px;
    background: linear-gradient(90deg, #F4C4FB 0%, #D1C1FA 100%);
    color: #505FF5;
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
}

.cta-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Bottom Right Text and Icon */
.international {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.international-text {
    color: #D3D3FA;
    font-size: 20px;
    font-weight: 400;
    text-align: right;
    width: 400px;
}

.international-icon {
    width: 49.625px;
    height: 49.625px;
}

/* Mobile Styles */
/* Mobile Content */
.mobile-content {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Menu Button */
.menu-button {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 52px;
    height: 52px;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Mobile Background Circles */
.mobile-content .background-circles {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1248px;
    height: 624px;
    transform: translateX(-624px);
    z-index: -1;
}

.mobile-content .circle-group.left {
    left: 50%;
    top: 0;
}

.mobile-content .circle-group.right {
    left: 50%;
    top: 0;
    transform: scaleX(-1);
}

.mobile-content .big-circle {
    width: 624px;
    height: 624px;
    border-radius: 50%;
    background: linear-gradient(268deg, #8E76F6 1.79%, #505FF5 36.72%);
    position: relative;
    flex-shrink: 0;
}

.mobile-content .small-circle {
    position: absolute;
    width: 281.531px;
    height: 281.531px;
    border-radius: 50%;
    background: linear-gradient(268deg, #8E76F6 1.33%, #505FF5 49.07%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-shrink: 0;
}

/* Title */
.title {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 252px;
    height: 234px;
    color: #FFF;
    text-align: center;
    font-size: 100px;
    font-weight: 800;
    line-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.title p {
    margin: 0;
}

/* Stats */
.stats {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat .number {
    width: 85px;
    height: 40px;
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.stat .subtitle {
    margin-top: 10px;
    width: 121px;
    color: #D3D3FA;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

/* Action Button */
.action-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 30px);
    height: 90px;
    border-radius: 20px;
    background: linear-gradient(90deg, #F4C4FB 0%, #D1C1FA 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-decoration: none;
}

.button-text {
    color: #505FF5;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
    width: 228px;
    height: 26px;
}

/* Responsive Adjustments */
@media (max-width: 430px) {
    /* Adjustments for smaller mobile screens */
    .title {
        top: 180px;
        font-size: 80px;
        line-height: 70px;
    }

    .stats {
        top: 420px;
        gap: 10px;
        width: calc(100% - 40px);
    }

    .stat .number {
        font-size: 40px;
        height: 35px;
    }

    .stat .subtitle {
        margin-top: 8px;
        font-size: 18px;
        width: 110px;
    }

    .action-button {
        top: 620px;
        width: calc(100% - 30px);
    }

    .button-text {
        font-size: 30px;
        width: 250px;
        margin-bottom: 5px;
    }
}

/* Ensure Poppins Font is Used Everywhere */
body, h1, h2, h3, h4, h5, h6, p, a, button, div, span {
    font-family: 'Poppins', sans-serif;
}