* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #000;
    color: white;
    overflow-x: hidden;
}


.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.logo {
    font-size: 26px;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    opacity: 0.7;
    transition: 0.2s;
}

.nav-links a:hover,
.nav-links .active {
    opacity: 1;
    font-weight: 600;
}


.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 60px;
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: -1;
    filter: brightness(65%);
}

.hero-text {
    max-width: 600px;
}

.hero-text h2 {
    font-size: 58px;
    font-weight: 700;
}

.sub {
    letter-spacing: 6px;
    margin-bottom: 15px;
    opacity: 0.8;
    font-size: 14px;
}

.bio {
    margin-top: 15px;
    max-width: 550px;
    line-height: 1.7;
    font-size: 17px;
    opacity: 0.9;
}


.content {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
}

.content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.content p {
    line-height: 1.7;
    font-size: 18px;
    opacity: 0.9;
}



.scroll {
    padding: 60px 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.container {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px; 
}

.card {
    flex: 1 1 250px; 
    max-width: 300px; 
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    scroll-snap-align: start;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}


.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.scroll::-webkit-scrollbar {
    height: 8px;
}

.scroll::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}

.scroll::-webkit-scrollbar-track {
    background: transparent;
}

.goals {
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}

.goals h3 {
    font-size: 32px;
    margin-bottom: 40px;
}

.goals-container {
    display: flex;
    flex-direction: column;
    gap: 25px; 
}

.goal-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: left;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.goal-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 8px 25px rgba(255,255,255,0.1);
}

.goal-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.goal-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

footer {
    position: relative;
    padding: 20px 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}


