/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0a0a0a, #1b1b1b);
    color: white;
    text-align: center;
}

/* Header */
header {
    padding: 30px;
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

h1 {
    font-weight: bold;
    font-size: 2.8em;
    text-transform: uppercase;
    color: #ffcc00;
}

h2 {
    font-weight: bold;
    font-size: 2.5em;
    text-transform: uppercase;
    color: #00eaff;
}

p {
    font-size: 1.2em;
    opacity: 0.8;
}

/* Services Section */
#services {
    padding: 50px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-plan {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    width: 30%;
    min-width: 280px;
    text-align: left;
    box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.2);
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

.service-plan:hover {
    transform: scale(1.05);
    border-color: #ffcc00;
    box-shadow: 0px 0px 18px rgba(255, 204, 0, 0.5);
}

.service-plan h3 {
    text-align: center;
    font-size: 1.6em;
    color: #ffcc00;
}

.service-plan ul {
    list-style: none;
    padding: 0;
}

.service-plan li {
    margin: 12px 0;
    font-size: 1.1em;
}

/* About Us Section */
#about {
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.3);
}

input, textarea {
    width: 90%;
    padding: 12px;
    margin: 12px 0;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1em;
    outline: none;
}

input::placeholder, textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

button {
    padding: 12px 25px;
    background: linear-gradient(90deg, #ffcc00, #ff9900);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    color: black;
    box-shadow: 0px 4px 10px rgba(255, 204, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

button:hover {
    background: linear-gradient(90deg, #ff9900, #ff6600);
    box-shadow: 0px 6px 12px rgba(255, 153, 0, 0.6);
}

/* Footer */
footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }

    h2 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }

    /* Stack service plans vertically */
    .service-container {
        flex-direction: column;
        align-items: center;
    }

    .service-plan {
        width: 90%;
    }

    /* Adjust form width */
    form {
        width: 90%;
    }

    input, textarea {
        width: 100%;
    }

    /* Adjust button size */
    button {
        width: 100%;
        font-size: 1em;
    }
}
