* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    background: url("https://destzone.com/dz-assets/images/beach.jfif");
    background-size: cover;
    background-position: center;
    color: white;
    overflow-x: hidden;
}

.overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .55);
    z-index: -1;
    backdrop-filter: blur(3px);
}

nav {
    display: flex;
    justify-content: space-between;
    padding: 25px 80px;
    align-items: center;
}

.logo {
    font-size: 30px;
    font-weight: 700;
}

.logo span {
    color: #00d4ff;
}

ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
}

.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.glass-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    width: 900px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 0 60px rgba(0, 0, 0, .4);
}

.tag {
    background: #00d4ff;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    color: black;
    font-weight: bold;
    cursor: help;
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 15px;
}

.hero h2 {
    color: #ffd000;
    font-size: 32px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.hero p {
    line-height: 1.8;
    opacity: .9;
}

.buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.buttons a {
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: .5s;
}

.primary-btn {
    background: linear-gradient(90deg, #00d4ff, #0aff99);
    color: #fff;
}

.secondary-btn {
    background: #00d4ff;
    color: #000;    
}

.tertiary-btn {
    background: #fff;
    color: #000;
}

.buttons a:hover {
    transform: translateY(-8px);
}


.stats {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.box {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
}

.box h3 {
    font-size: 50px;
    margin-bottom: 10px;
    color: #00d4ff;
}


.vision {
    padding: 100px 10%;
    text-align: center;
}

.vision h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.vision p {
    line-height: 1.8;
    opacity: .9;
    max-width: 800px;
    margin: 0 auto;
}

.cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 300px;
    padding: 30px;
    background: rgba(255, 255, 255, .1);
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.card i {
    font-size: 45px;
    margin-bottom: 20px;
    color: #00d4ff;
}

.funding {
    padding: 80px 15%;
    text-align: center;
}

.progress {
    height: 30px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50px;
    margin: 30px 0;
    overflow: hidden;
}

.fill {
    width: 15%;
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0aff99);
    animation: load 3s;
}


.founder {
    padding: 120px 10%;
}

.founder-card {
    display: flex;
    gap: 50px;
    background: rgba(255, 255, 255, .1);
    padding: 50px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    align-items: center;
}

.founder h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.founder h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.founder img {
    width: 180px;
    height: auto;
}

.founder .description {
    font-size: 18px;
    line-height: 1.6;
    opacity: .9;
}

.founder .emaillink {
    display: inline-block;
    margin-top: 10px;
}

footer {
    padding: 50px;
    text-align: center;
    background: black;
}

@keyframes pulse {
    50% {
        transform: scale(1.05);
    }
}

@keyframes load {
    0% {
        width: 0;
    }
}

@media (max-width: 768px) {

    nav {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        margin-top: 20px;
        gap: 15px;
    }

    .hero {        
        height: auto;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 40px;
        margin-top: 20px;
    }

    .hero h2 {
        font-size: 24px;
        margin-top: 20px;
    }

    .hero p {
        font-size: 16px;
        margin-top: 20px;
    }

    .glass-card {
        width: 100%;
        padding: 30px;
    }

    .vision {
        padding: 50px 5%;
    }

    .vision h2 {
        font-size: 28px;
    }

    .founder-card {
        flex-direction: column;
        text-align: center;
    }

    .founder img {
        width: 150px;
    }
}

@media (max-width: 650px) {
    .buttons {
        flex-direction: column;
    }

    .buttons a {
        width: 100%;
        padding: 16px 0;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-direction: column;
    }

    .buttons {
        flex-direction: column;
    }

    .buttons a {
        width: 100%;
        padding: 16px 0;
    }
}