/* Reset and base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #e0e0e0;
    line-height: 1.6;
}

/* Navbar */
#navbar {
    width: 100%;
    position: st;
    top: 0;
    left: 0;
    background: rgba(0, 20, 60, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem 2rem;
}
.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 700px;
}

.logo-text {
    font-weight: 6px;
    color: #00d4ff;
    margin-right: 2px;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #00d4ff;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 80px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-text h1 {
    font-size: 3rem;
    color: #00d4ff;
}

.hero-text p {
    font-size: 1.2rem;
    color: #cceeff;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

.btn-primary:hover {
    background: rgba(233,123, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid #00d4ff;
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.2);
}

/* Stats Section */
.stats {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
}

.stat-item {
    background: rgba(21, 0, 60, 0.5);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    flex: 1 1 200px;
    transition: 0.3s;
}

.stat-item:hover {
    background: rgba(0, 20, 60, 0.7);
}

.stat-item h3 {
    font-size: 2rem;
    color: #00dfff;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #cdeebb
}

/* Features Section */
.features {
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #00d4ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(0, 20, 60, 0.5);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    background: rgba(0, 20, 60, 0.7);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.feature-card h3 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #cceeff;
}

/* About Section */
.about {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1 1 400px;
    background: rgba(0, 20, 60, 0.5);
    padding: 2rem;
    border-radius: 15px;
}

.about-text h3 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.about-text p {
    color: #cceeff;
}

/* Contact Section */
.contact {
    padding: 4rem 2rem;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form,
.contact-info {
    flex: 1 1 400px;
    background: rgba(0, 20, 60, 0.5);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h2,
.contact-info h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #00d4ff;
}

.submit-btn {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid #00d4ff;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: rgba(0, 212, 255, 0.4);
}

/* Footer */
footer {
    background: rgba(0, 20, 60, 0.6);
    text-align: center;
    padding: 2rem;
    color: #cceeff;
}
.Footer-logo{
    width:90px;
    height: 90px;
    align-items: flex-end;
}

footer h3 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    .about-content, .contact-container {
        flex-direction: column;
    }
}
