/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    line-height: 1.6;
}

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

/* Hero Section */
.hero-section {
    background: #000; /* Black background */
    color: #fff; /* White text */
    text-align: center;
    padding: 50px 20px;
}

.logo {
    display: block;
    margin: 0 auto 20px;
    max-width: 200px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 20px;
}

.cta-btn {
    background: #007bff; /* Blue highlight */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid #007bff;
    font-size: 1rem;
}

.cta-btn:hover {
    background: #0056d2; /* Darker blue */
    border-color: #0056d2;
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* VPS Hosting Info Section */
.vps-hosting-info {
    background: #111; /* Dark gray background */
    padding: 40px 20px;
    text-align: center;
}

.vps-hosting-info h2 {
    font-size: 2rem;
    color: #007bff; /* Blue highlight */
    margin-bottom: 20px;
}

.vps-hosting-info .highlight {
    color: #007bff; /* Blue highlight for keywords */
    font-weight: bold;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-row.reverse {
    flex-direction: row-reverse; /* Reverse layout for alternating rows */
}

.info-text {
    flex: 1;
    text-align: left;
    color: #ddd; /* Light gray text */
    font-size: 1rem;
    line-height: 1.6;
}

.info-image {
    flex: 1;
    text-align: center;
}

.info-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Add-Ons Section */
.addons {
    background: #000; /* Black background */
    padding: 40px 20px;
    text-align: center;
}

.addons h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #007bff;
}

.addon-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap; /* Makes it responsive */
}

.addon-box {
    background: #111; /* Dark gray background for boxes */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 20px;
    flex: 1;
    text-align: left;
    color: #ddd;
    min-width: 280px; /* Ensures boxes don’t shrink too much */
}

.addon-box h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.addon-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.6;
}

.addon-box ul li {
    font-size: 1rem;
    margin-bottom: 10px;
}

.addon-box ul li:before {
    content: "➤ ";
    color: #007bff;
    margin-right: 5px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .addon-row {
        flex-direction: column; /* Stacks the boxes vertically on smaller screens */
        gap: 20px;
    }
}


/* Pricing Section */
.pricing {
    background: #111; /* Dark gray background */
    padding: 40px 20px;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 20px;
    color: #007bff; /* Blue heading */
}

.pricing-plans {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.plan {
    background: #222; /* Slightly lighter gray */
    padding: 20px;
    border: 1px solid #444; /* Gray border */
    border-radius: 5px;
    width: calc(25% - 20px);
    text-align: center;
    position: relative;
}

.plan.featured {
    border: 2px solid #007bff; /* Blue border for featured plan */
}

.plan h3 {
    font-size: 1.2rem;
    color: #007bff; /* Blue heading */
    margin-bottom: 10px;
}

.plan .price {
    font-size: 1.5rem;
    color: #fff; /* White price text */
    margin: 10px 0;
}

.plan .price span {
    font-size: 0.8rem;
    color: #ddd;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    line-height: 1.6;
}

.plan ul li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ddd;
}

.plan ul li:before {
    content: "➤ ";
    color: #007bff; /* Blue icon */
}

.cta-btn {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #007bff;
    display: inline-block;
}

.cta-btn:hover {
    background: #0056d2;
    border-color: #0056d2;
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
    }

    .info-row.reverse {
        flex-direction: column;
    }

    .addon-box {
        width: 100%;
    }

    .plan {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .plan {
        width: 100%;
    }
}

/* Free Trial Section */
.free-trial {
    background: #007bff; /* Blue background */
    color: #fff; /* White text */
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.free-trial h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.free-trial p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    margin-top: 20px;
}

.call-btn, .whatsapp-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
}

.call-btn {
    background: #fff; /* White button */
    color: #007bff; /* Blue text */
    border: 2px solid #fff;
}

.call-btn:hover {
    background: #0056d2; /* Darker blue on hover */
    border-color: #0056d2;
    color: #fff;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.whatsapp-btn {
    background: #25d366; /* WhatsApp green */
    color: #fff; /* White text */
    border: 2px solid #25d366;
}

.whatsapp-btn:hover {
    background: #1da851; /* Darker green */
    border-color: #1da851;
    color: #fff;
    transition: background 0.3s ease, border-color 0.3s ease;
}




/* Happy Clients Section */
.happy-clients {
    background: #007bff; /* Blue background to match theme */
    color: #fff; /* White text */
    text-align: center;
    padding: 40px 20px;
    border-radius: 10px;
    margin-top: 40px;
}

.happy-clients h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.happy-clients p {
    font-size: 1.2rem;
    margin-bottom: 0;
    font-weight: bold;
}

#client-count {
    font-size: 2rem;
    font-weight: bold;
    color: #ff9900; /* Highlight color for the number */
}
