/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Segoe UI', sans-serif;
    background-color: #111;
    color: #eee;
    scroll-behavior: smooth;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.header {
    background-color: #000;
    padding: 1rem 0;
    border-bottom: 1px solid #222;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: #00ff88;
    font-weight: bold;
}

.nav a {
    margin: 0 10px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: #00ff88;
}

/* Hero */
.hero {
    height: 90vh;
    background: url('https://cdn.pixabay.com/photo/2020/06/15/09/14/hacker-5296569_1280.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content h2 span {
    color: #00ff88;
}

.hero-content p {
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-button {
    background-color: #00ff88;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #00cc6a;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        margin-top: 10px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }
/* Services Section */
.services {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #00ff88;
}

.section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #ccc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.service-box {
    background-color: #262626;
    border-radius: 12px;
    padding: 25px 20px;
    transition: transform 0.3s, background-color 0.3s;
    border: 1px solid #333;
}

.service-box h3 {
    font-size: 1.2rem;
    color: #00ff88;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 0.95rem;
    color: #aaa;
}

.service-box:hover {
    transform: translateY(-5px);
    background-color: #2d2d2d;
}

    .hero-content p {
        font-size: 1rem;
    }
}
/* Community Section */
.community {
    background-color: #111;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 40px 0;
    padding: 0 20px;
}

.community-box {
    background-color: #1d1d1d;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: background-color 0.3s ease;
}

.community-box h3 {
    color: #00ff88;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.community-box p {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.community-box a {
    color: #00ccff;
    text-decoration: none;
    font-weight: bold;
}

.community-box:hover {
    background-color: #232323;
}

.btn-community {
    display: inline-block;
    padding: 12px 25px;
    background-color: #00ff88;
    color: #000;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-community:hover {
    background-color: #00e67e;
}
/* Trust / Success Stories Section */
.trust {
    background-color: #f8f8f8;
    color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
}

.trust .section-title {
    color: #1a1a1a;
}

.trust .section-description {
    color: #555;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 20px;
    margin-top: 40px;
}

.trust-card {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #00a36c;
}

.trust-card p {
    font-size: 0.95rem;
    color: #333;
}
/* Newsletter Section */
.newsletter {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.newsletter .section-title {
    margin-bottom: 10px;
}

.newsletter .section-description {
    color: #ccc;
    margin-bottom: 30px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.signup-form input[type="text"],
.signup-form input[type="email"] {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    width: 100%;
}

.signup-form button {
    background-color: #00ff88;
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: #00e67e;
}

/* Footer */
.footer {
    background-color: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer a {
    color: #00ff88;
    text-decoration: none;
}
/* Why Choose Us Section */
.why-us {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    padding: 0 20px;
    margin-top: 40px;
}

.why-card {
    background-color: #262626;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-card h3 {
    font-size: 1.1rem;
    color: #00ff88;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.95rem;
    color: #ccc;
}
