* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #071c39, #0d47a1, #42a5f5);
    color: white;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    width: 90%;
    margin: 20px auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00c3ff;
}

/* Hero */
.hero {
    text-align: left;
    padding: 100px 20px;
	line-height: 1.7;

}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #aaa;
	 text-align: left;
	 line-height: 1.7;
}
hr {
    border: none;
    height: 2px;
    background: #38bdf8;
    box-shadow: 0 0 10px #38bdf8;
    margin: 30px 0;

}ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 12px;
    background: rgba(56,189,248,0.3);
    border: 1px solid #38bdf8;
    box-shadow: 0 0 8px #38bdf8;
}
/* Mid Section */
.mid-section {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 0;
}

.text-content h2 {
    margin-bottom: 15px;
    color: #00c3ff;
}

.text-content p {
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.7;
}

.floating-card {
    padding: 60px;
    text-align: justify;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.4s ease;
	line-height:1.2;
}

.floating-card:hover {
    transform: translateY(-20px);
}

/* Aside */
.stats {
    width: 90%;
    margin: 60px auto;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat-card {
    flex: 1;
    padding: 40px;
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
}

.stat-card h3 {
    font-size: 2rem;
    color: #00c3ff;
}

/* Footer */
footer {
    margin-top: 80px;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

footer h2 {
    margin-bottom: 20px;
}

footer p {
    margin-bottom: 20px;
    color: #aaa;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a {
    color: white;
    text-decoration: none;
}

.socials a:hover {
    color: #00c3ff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .mid-section {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }
}