/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #1b1f3a;
    color: #e0e0e0;
}
/* Header */
header {
    background: #14172b;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
.logo img {
    width: 40px;
    margin-right: 10px;
    border-radius: 50px;
}
/* Navigation */
nav {
    display: flex;
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
nav a i {
    font-size: 18px;
}
nav a:hover {
    color: #00c2cb;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
/* Hero Section */
/* .hero {
    background: linear-gradient(to right, #14172b, #284b63);
    color: white;
    text-align: center;
    padding: 80px 20px;
} */
 .hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden; /* keep video inside */
}

/* Video inside hero */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* crop video nicely */
    z-index: 0;
}

/* Text content over video */
.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 42px;
}
.hero p {
    font-size: 18px;
    max-width: 650px;
    margin: auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 20px;
    background: #22253e;
}
.service-card {
    background: #2d3155;
    padding: 25px;
    margin: 15px;
    width: 320px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-card h3 {
    color: #00c2cb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.service-card i {
    font-size: 22px;
}
.service-card p {
    line-height: 1.6;
}
/* Call to Action */
.cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #284b63, #00c2cb);
    color: white;
}
.cta h2 {
    margin-bottom: 20px;
    font-size: 28px;
}
.cta a {
    display: inline-block;
    background: #00c2cb;
    color: #14172b;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease-in-out;
}
.cta a:hover {
    background: #008a92;
}
/* Contact Section */
.contact {
    text-align: center;
    padding: 60px 20px;
    background: #22253e;
}
.contact h2 {
    font-size: 28px;
    color: #00c2cb;
    margin-bottom: 15px;
}
.contact p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #e0e0e0;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #2d3155;
    border-radius: 6px;
    background: #14172b;
    color: #e0e0e0;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #00c2cb;
}
.form-group textarea {
    resize: vertical;
}
.submit-btn {
    display: inline-block;
    background: #00c2cb;
    color: #14172b;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}
.submit-btn:hover {
    background: #008a92;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal.active {
    display: flex;
}
.modal-content {
    background: #2d3155;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease-in-out;
}
.modal-content h2 {
    font-size: 24px;
    color: #00c2cb;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.modal-content h2 i {
    font-size: 28px;
}
.modal-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.modal-content .modal-link {
    display: inline-block;
    background: #00c2cb;
    color: #14172b;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease-in-out;
}
.modal-content .modal-link:hover {
    background: #008a92;
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #e0e0e0;
    cursor: pointer;
    transition: color 0.3s;
}
.modal-close:hover {
    color: #00c2cb;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
/* Footer */
footer {
    background: #14172b;
    color: white;
    padding: 40px 20px;
    font-size: 14px;
}
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer-section {
    margin: 15px;
    max-width: 300px;
}
.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #00c2cb;
}
.footer-section p {
    line-height: 1.6;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: #00c2cb;
}
.footer-section.contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.footer-section.contact i {
    font-size: 16px;
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d3155;
}
/* Responsive Styles */
@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #14172b;
        padding: 20px;
        z-index: 1000;
    }
    nav.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .contact-form {
        padding: 0 20px;
    }
    .modal-content {
        width: 95%;
        padding: 20px;
    }
}
.hosting-plans {
    text-align: center;
    padding: 60px 20px;
    background: #22253e;
}
.hosting-plans h2 {
    font-size: 28px;
    color: #00c2cb;
    margin-bottom: 15px;
}
.hosting-plans p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.plans-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.plan-card {
    background: #2d3155;
    padding: 25px;
    width: 300px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.plan-card:hover {
    transform: translateY(-5px);
}
.plan-card h3 {
    font-size: 22px;
    color: #00c2cb;
    margin-bottom: 10px;
}
.plan-card i {
    font-size: 32px;
    color: #00c2cb;
    margin-bottom: 15px;
}
.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.plan-card ul li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #e0e0e0;
}
.plan-card .price {
    margin-bottom: 20px;
}
.plan-card .original-price {
    font-size: 16px;
    color: #888;
    margin-right: 10px;
}
.plan-card .offer-price {
    font-size: 20px;
    font-weight: bold;
    color: #00c2cb;
}
.plan-card .monthly-fee {
    font-size: 14px;
    color: #e0e0e0;
    margin-top: 5px;
}
.plan-card .plan-btn {
    display: inline-block;
    background: #00c2cb;
    color: #14172b;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease-in-out;
}
.plan-card .plan-btn:hover {
    background: #008a92;
}
.request-quote {
    text-align: center;
    padding: 60px 20px;
    background: #1b1f3a;
}
.request-quote h2 {
    font-size: 28px;
    color: #00c2cb;
    margin-bottom: 15px;
}
.request-quote p {
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.quote-form {
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #e0e0e0;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #2d3155;
    border-radius: 6px;
    background: #14172b;
    color: #e0e0e0;
    outline: none;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #00c2cb;
}
.form-group textarea {
    resize: vertical;
}
.submit-btn {
    display: inline-block;
    background: #00c2cb;
    color: #14172b;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}
.submit-btn:hover {
    background: #008a92;
}
@media (max-width: 768px) {
    .plan-card {
        width: 100%;
        max-width: 300px;
    }
    .quote-form {
        padding: 0 20px;
    }
}