* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: linear-gradient(90deg, #001f5e, #000);
    color: white;
    overflow-x: hidden;
    position: relative;
}

header {
    z-index: 100;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo a {
    margin-left: 10px;
    color: #58b1ff !important;
    font-weight: bold !important;
}

.logo img {
    border-radius: 50%;
    width: 40px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    margin-left: auto;
    background-color: black;
}

.nav ul {
    list-style-type: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav li {
    margin: 0 16px;
    padding: 0 8px;
}

.nav a {
    color: #ada5b6;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
}

.support-btn {
    background-color: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    gap: 8px;
    flex-direction: row;
    align-items: center;
}

.support-btn img {
    width: 20px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu img {
    width: 30px;
    height: auto;
}

.sidebar.active {
    background: linear-gradient(to bottom, black, #60a3d9);
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar li {
    list-style-type: none;
    padding: 0 20px;
    margin: 0;
}

.sidebar a {
    color: #58b1ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

a.support-btn {
    color: #5865f2 !important;
    padding: 6px 10px;
    background-color: white;
    border-radius: 25px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    color: white;
    overflow-x: hidden;
    position: relative;
    margin: auto;
    &:before {
        background: no-repeat 23vw 28vh
                url("https://assets.codepen.io/518555/sparkles1.svg"),
            no-repeat 45vw 40vh url("./Images/bgicon1.svg");
        content: "";
        height: 100vh;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -1;
    }
    &:after {
        background: linear-gradient(
                135deg,
                rgb(0, 51, 153),
                rgba(0, 0, 0, 0.58),
                rgb(0, 0, 0)
            ),
            url("./Images/bg.png") no-repeat center center/cover;
        content: "";
        height: 100vh;
        left: 0;
        opacity: 1;
        position: absolute;
        top: 0;
        width: 100%;
        z-index: -2;
    }
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
    text-align: center;
    background-color: transparent;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo {
    margin: 20px 0;
    border-radius: 50%;
    border: 2px solid;
    width: 150px;
}

.home-text {
    margin: 0 auto;
    font-size: 40px;
    padding: 0 10%;
}

.hero-section p {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ada5b6;
}

.invite-btn {
    background-color: #ff6f61;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
}
.invite-btn:hover {
    background-color: #ff3d30;
}

.feature-container {
    background: linear-gradient(
            45deg,
            rgb(0, 51, 153),
            rgb(0, 30, 89),
            rgb(0, 0, 0)
        ),
        url("./Images/music-note-l.png");
    background-repeat: no-repeat;
    background-position: left 10%;
    opacity: 1;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-container::before {
    content: "";
    background: url("./Images/music-note.png") no-repeat center center/cover;
    opacity: 0.3;
    pointer-events: none;
}

.feature-section {
    text-align: center;
    padding: 50px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.feature-section h2 {
    color: #fff;
    font-size: 40px;
    margin: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background-color: #1c3a80;
    z-index: 1;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box h3 {
    color: #fff;
    font-size: 20px;
    margin: 7px 0;
}

.feature-box p {
    font-size: 16px;
    color: #b0c4ff;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    background-color: #023896;
}
.feature-box p:hover {
    color: #e0e0e0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 40px;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

.stat-box {
    background-color: #001f5e;
    color: #fff;
    border-radius: 10px;
    padding: 15px;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.stats {
    display: flex;
    flex-direction: column;
}
.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    background-color: #023896;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #58b1ff;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-align: left;
}

.stat-icon svg {
    fill: #d15e8f;
    width: 50px;
    height: 50px;
}

.footer-container {
    background-color: #0d1f44;
    padding-bottom: 50px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.footer-call-to-action-outer {
    position: relative;
    background: linear-gradient(270deg, #d15e8f -12.5%, #6959cb 109.17%);
    text-align: center;
    margin: 0;
    padding: 0;
    font-size: 100%;
    color: #fff;
}

.footer-call-to-action {
    padding-bottom: 20px !important;
    width: 70%;
    margin: 0 auto;
    font-size: 100%;
    text-align: center;
    padding-top: 0px !important;
}

.footer-call-to-action h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
    color: #f1f1f1;
    padding: 40px 0;
}

.footer-invite-btn {
    display: inline-block;
    vertical-align: baseline;
    line-height: 1;
}

.footer-invite-btn .invite-btn {
    border: 2px solid #05d3e0;
    background-color: #05d3e0;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.5;
    font-size: 15px;
    display: inline-block;
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}
.footer-call-to-action .invite-btn:hover {
    background-color: #4a9de0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    padding: 0 80px;
}

.footer-section h4 {
    color: #b0c4ff;
    margin-bottom: 15px;
}

.footer-section a,
.footer-section p {
    color: #ada5b6;
    font-size: 14px;
    text-decoration: none;
}

.footer-section ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}
.footer-section a:hover {
    color: #58b1ff;
}

.copyright-content {
    color: #ada5b6;
    font-size: 13px;
}
@media (max-width: 1000px) {
    .hero-container:before {
        background: none;
    }

    .hero-logo {
        width: 150px;
        margin: 20px 0;
    }

    .home-text {
        padding: 0 40px;
        font-size: 30px;
    }

    .hero-section p {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .invite-btn {
        font-size: 15px;
    }

    .feature-container {
        height: fit-content;
        min-height: 100vh;
    }

    .feature-section {
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .feature-section h2 {
        font-size: 35px;
        margin: 20px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        box-sizing: border-box;
    }

    .feature-box {
        padding: 15px;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
    }

    .feature-box h3 {
        font-size: 18px;
    }

    .feature-box p {
        font-size: 14px;
    }

    .stats-container {
        gap: 10px;
        padding: 20px 10px;
    }

    .stat-box {
        padding: 15px;
    }

    .stat-label {
        font-size: 20px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-icon svg {
        width: 50px;
        height: 50px;
    }

    .footer-call-to-action {
        width: 85%;
    }

    .footer-call-to-action-outer {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-call-to-action h2 {
        font-size: 25px;
    }

    .footer-invite-btn .invite-btn {
        padding: 12px 20px;
        font-size: 15px;
        font-weight: bold;
    }

    .footer-section {
        padding: 0 10px;
    }

    .footer-section h4 {
        font-size: 15px;
    }

    .footer-section a,
    .footer-section p {
        font-size: 14px;
    }

    .footer-section li {
        margin-bottom: 15px;
        line-height: 17px;
    }
}
@media (max-width: 800px) {
    .nav {
        padding: 10px 20px;
    }

    .logo img {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .nav ul {
        display: flex;
        flex-direction: column;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -50%;
        width: 30%;
        height: 100vh;
        background-color: #000;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 100;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar ul {
        padding: 20px;
    }

    .sidebar li {
        padding: 20px;
    }

    .sidebar a {
        color: white;
    }

    .support-btn img {
        width: 30px;
    }

    .support-btn {
        gap: 10px;
        padding: 5px;
        justify-content: center;
    }

    .home-text {
        font-size: 25px;
    }

    .hero-section p {
        padding: 0 40px;
    }

    .invite-btn {
        padding: 12px 20px;
    }

    .feature-section {
        padding: 20px;
    }

    .feature-section h2 {
        font-size: 30px;
        margin: 15px 0;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-box {
        gap: 5%;
    }

    .feature-box h3 {
        font-size: 15px;
    }
    .stat-box {
        padding: 10px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-value {
        font-size: 16px;
    }

    .stat-icon svg {
        width: 40px;
        height: 40px;
    }

    .footer-call-to-action h2 {
        font-size: 20px;
        padding: 20px 0;
    }

    .footer-invite-btn .invite-btn {
        font-size: 12px;
    }

    .footer-section h4 {
        font-size: 13px;
    }

    .footer-section a,
    .footer-section p {
        font-size: 12px;
    }
}
@media screen and (max-width: 530px) {
    .sidebar {
        width: 40%;
    }
    .sidebar a {
        font-size: 15px;
    }
    .hero-section p {
        font-size: 17px;
    }

    .invite-btn {
        font-size: 12px;
    }

    .features-grid {
        gap: 12px;
    }

    .feature-box h3 {
        font-size: 14px;
    }

    .stat-label {
        font-size: 13px;
    }

    .stat-value {
        font-size: 13px;
    }

    .stat-icon svg {
        width: 30px;
        height: 30px;
    }
}
