/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    background-color: #1f1f1f;
    padding: 1rem 0;
    text-align: center;
}

.header .logo {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: bold;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.nav-list li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-list li a:hover {
    background-color: #00ff7f;
    color: #121212;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #1f1f1f, #282828);
}

.hero h1 {
    color: #00ff7f;
    font-size: 2.5rem;
}

.hero p {
    color: #cccccc;
    font-size: 1.2rem;
    margin: 1rem 0;
}

.btn {
    background-color: #00ff7f;
    color: #121212;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #00e673;
}

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

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #ffffff;
}

.grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
    background-color: #1f1f1f;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.feature-card img {
    width: 50px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #00ff7f;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 1rem 0;
    color: #cccccc;
}

.footer-nav {
    margin-top: 1rem;
}

.footer-nav a {
    color: #00ff7f;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 500;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* Contact Form Styling */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background-color: #1f1f1f;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #00ff7f;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #00ff7f;
    box-shadow: 0 0 5px rgba(0, 255, 127, 0.5);
}

.contact-form button {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #00ff7f;
    color: #121212;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #00e673;
}

/* Refinements */
.contact-form {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 0;
}

.contact-form input[readonly] {
    background-color: #3a3a3a;
    color: #cccccc;
    cursor: not-allowed;
}

/* Pricing Page Refinements */
.pricing-section {
    text-align: center;
    margin: 2rem auto;
}

.pricing-section h1, .pricing-section h2 {
    color: #00ff7f;
    margin-bottom: 1rem;
}

.pricing-section p {
    margin-bottom: 2rem;
    color: #cccccc;
    font-size: 1.1rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-bottom: 4rem;
}

.feature-card {
    background-color: #1f1f1f;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #00ff7f;
    font-size: 1.5rem;
}

.feature-card .price {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card .plan-features p {
    margin: 0.5rem 0;
    color: #cccccc;
    font-size: 1rem;
}

.feature-card .plan-features p strong {
    color: #ffffff;
}

.feature-card .btn {
    margin-top: 1rem;
    display: block;
    text-align: center;
}

.pricing-details {
    margin-bottom: 2rem;
    text-align: center;
    color: #cccccc;
}

.vps-section {
    margin-top: 3rem;
}
.vps-section h2 {
    color: #00ff7f;
    margin-bottom: 1rem;
}
.vps-section .grid {
    margin-bottom: 4rem;
}

/* Thank You Section Centering */
.thank-you {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh; /* Ensures vertical centering on larger screens */
    background: linear-gradient(135deg, #1f1f1f, #282828);
    animation: fadeIn 0.5s ease-in-out;
}

.thank-you h1 {
    color: #00ff7f;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Button Styling */
.thank-you a {
    display: inline-block;
    text-decoration: none;
    color: #121212;
    background-color: #00ff7f;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.thank-you a:hover {
    background-color: #00e673;
}

@media (max-width: 768px) {
    .thank-you h1 {
        font-size: 2rem;
    }
    .thank-you a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
}

