* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    padding: 30px 0;
    justify-content: center;
    align-items: center;
}

.back-vid {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.main-section {
    width: 90%;
    height: 90%;
    background-color: #0e1217; /* Fallback for browsers that don't support backdrop-filter */
    background-color: rgba(74, 208, 238, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 5px 5px 20px 1px #4acfee;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

nav h1 {
    color: white;
    font-size: 30px;
    font-weight: 900;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    padding: 0 25px;
}

nav a:hover {
    .active {
        color: #4acfee;
        text-decoration: underline;
    }
}

.hero {
    display: flex;
    align-items: center;
    height: 70%;
    padding: 0 10%;
    color: white;
    justify-content: space-between;
}

.hero h1 {
    font-size: 60px;
}

.hero h2 {
    margin-top: 20px;
    font-size: 30px;
    text-transform: uppercase;
    color: #4acfee; /* Fallback for browsers not supporting text-fill-color */
    background: linear-gradient(to right, #4acfee, #53f8c9, #6070fd, #5bbdff, #4acfee);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: animate-gradient 2.5s linear infinite;
    animation: animate-gradient 2.5s linear infinite;
}

.hero p {
    max-width: 450px;
    margin-top: 7px;
    margin-bottom: 20px;
}

@-webkit-keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

@keyframes animate-gradient {
    to {
        background-position: 200%;
    }
}

.Buttons {
    display: flex;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #4acfee;
    border: 2px solid #4acfee;
    border-radius: 40px;
    box-shadow: 0 0 10px #4acfee;
    font-size: 16px;
    font-weight: 900;
    color: #0e1217;
    cursor: pointer;
    margin-right: 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-wrap: nowrap;
}

.btn:hover {
    background-color: transparent;
    box-shadow: none;
    color: #4acfee;
}

.ul-icons {
    display: flex;
    align-items: center;
}

.ul-icons li {
    list-style: none;
    margin-right: 10px;
}

.ul-icons li a {
    display: inline-flex;
    padding: 8px;
    border: 2px solid #4acfee;
    border-radius: 50%;
    font-size: 20px;
    color: #4acfee;
    text-decoration: none;
    margin: 0 7px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.ul-icons a:hover {
    background: #4acfee;
    color: #0e1217;
    box-shadow: 0 0 10px #4acfee;
}

.hero-img {
    width: 400px;
    height: 400px;
    position: relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 10px #4eddfd;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.hero-img:hover {
    box-shadow: 0 0 25px #4acfee;
}

.hero-img img {
    position: absolute;
    width: 85%;
    height: auto;
    object-fit: cover;
    mix-blend-mode: lighten;
}

.info-sec {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0 10%;
    flex-wrap: wrap;
    justify-content: space-between;

}

.info-card {
    display: flex;
    width: 100%;
    align-items: center;
    max-width: fit-content;
}

.info-sec h1 {
    font-size: 55px;
    text-transform: uppercase;
    color: #4acfee; /* Fallback */
    background: linear-gradient(to right, #4acfee, #53f8c9, #6070fd, #5bbdff, #4acfee);
    background-size: 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-animation: animate-gradient 2.5s linear infinite;
    animation: animate-gradient 2.5s linear infinite;
    margin-right: 10px;
}

.info-sec p {
    color: white;
    font-size: 20px;
}

@media (min-width: 981px) {
    body {
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .info-sec {
        margin-top: 30px;
    }
}

.menu-icon {
    display: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 980px) {
    body {
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
        padding: 20px 0;
    }

    .main-section {
        width: 95%;
        height: auto;
        min-height: 90vh;
        border-radius: 30px;
        margin: 20px auto;
        padding-bottom: 40px;
    }

    nav {
        padding: 20px;
    }

    .menu-icon {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0e1217; /* Fallback */
        background: rgba(14, 18, 23, 0.95);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    nav ul.active {
        right: 0;
    }

    nav a {
        font-size: 24px;
        margin: 20px 0;
        padding: 10px;
    }

    .hero {
        flex-direction: column-reverse;
        height: auto;
        padding: 40px 5%;
        text-align: center;
        gap: 30px;
    }

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

    .hero h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-img {
        width: 300px;
        height: 300px;
        margin-bottom: 30px;
    }

    .Buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .btn {
        margin-right: 0;
    }

    .info-sec {
        justify-content: center;
        padding: 0 5%;
        margin-top: 50px;
    }

    .info-card {
        max-width: 150px;
    }

    .info-sec h1 {
        font-size: 40px;
    }

    .info-sec p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        font-size: 20px;
    }

    .nav-logo img {
        width: 30px;
        height: 30px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-img {
        width: 250px;
        height: 250px;
    }

    .info-card {
        max-width: 120px;
    }
}
