* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #f5f8fc;
    line-height: 1.6;
}

/* Navigation */

.navbar {
    background: #071d36;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    min-height: 95px;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
}

.menu {
    display: flex;
    gap: 28px;
}
/* Plan Enquiry Modal */

.plan-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    align-items: center;
    justify-content: center;
}

.plan-form {
    background: white;
    width: 90%;
    max-width: 450px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative;
}

.plan-form h2 {
    text-align: center;
    margin-bottom: 10px;
}

.plan-form p {
    text-align: center;
    color: #079eea;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.plan-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #08aef0;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.close-btn {
    position: absolute;
    right: 18px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.menu a:hover {
    color: #35b7ff;
}


/* Hero */

.hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: linear-gradient(
        135deg,
        #071d36,
        #0b4f8a
    );

    color: white;
    padding: 60px 20px;
}

.hero-content {
    max-width: 850px;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 21px;
    margin-bottom: 35px;
}


/* Buttons */

button {
    background: #00a8ff;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 17px;
    border-radius: 8px;
    cursor: pointer;
    margin: 5px;
}

button:hover {
    background: #0088cc;
}

.secondary-btn {
    background: transparent;
    border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: #071d36;
}


/* Sections */

.section {
    max-width: 1100px;
    margin: auto;
    padding: 70px 25px;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 35px;
}


/* Service Cards */

.cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: white;
    width: 31%;
    min-width: 250px;
    padding: 30px 20px;
    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.card p {
    color: #666;
}


/* About */

.about {
    background: white;
    max-width: 100%;
    padding-left: 12%;
    padding-right: 12%;
}

.about p {
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    color: #555;
}


/* Contact */

.contact {
    background: #eaf6ff;
    max-width: 100%;
}

.contact p {
    margin-bottom: 20px;
}


/* Footer */

footer {
    background: #071d36;
    color: white;
    text-align: center;
    padding: 25px;
}


/* Mobile */

@media (max-width: 700px) {

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }

    .card {
        width: 100%;
    }
}/* Service Icons */

.service-icon {
    font-size: 45px;
    margin-bottom: 15px;
}


/* Plans */

.plans-section {
    background: #f5f8fc;
    max-width: 100%;
}

.section-subtitle {
    color: #666;
    margin-top: -20px;
    margin-bottom: 35px;
}


.plans {
    max-width: 1100px;
    margin: auto;

    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}


.plan-card {
    position: relative;

    background: white;

    width: 31%;
    min-width: 270px;

    padding: 35px 25px;

    border-radius: 14px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.08);

    text-align: center;
}


.plan-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}


.speed {
    font-size: 32px;
    font-weight: bold;
    color: #087fc1;

    margin-bottom: 10px;
}


.price {
    font-size: 30px;
    font-weight: bold;

    margin-bottom: 20px;
}


.price span {
    font-size: 14px;
    color: #777;
    font-weight: normal;
}


.plan-card ul {
    list-style: none;

    text-align: left;

    margin: 25px 0;
}


.plan-card li {
    padding: 7px 0;
    color: #555;
}


.plan-card button {
    width: 100%;
}


.popular {
    border: 3px solid #00a8ff;

    transform: translateY(-10px);
}


.popular-label {
    position: absolute;

    top: -15px;
    left: 50%;

    transform: translateX(-50%);

    background: #00a8ff;
    color: white;

    padding: 6px 18px;

    border-radius: 20px;

    font-size: 12px;
    font-weight: bold;
}
.login-btn {
    background: #00a8ff;
    color: white !important;
    padding: 9px 18px;
    border-radius: 6px;
}

.login-btn:hover {
    background: #0088cc;
}
/* Floating Contact Buttons */

.floating-contact {
    position: fixed;
    right: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    z-index: 1000;
}

.floating-contact a {
    text-decoration: none;
    color: white;

    padding: 12px 20px;

    border-radius: 25px;

    font-weight: bold;

    text-align: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #007bff;
}

.floating-contact a:hover {
    transform: scale(1.05);
}
/* Why Choose Us */

.why-us {
    padding: 70px 8%;
    text-align: center;
    background: white;
}

.why-us h2,
.coverage h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.why-cards {
    max-width: 1100px;
    margin: auto;

    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-card {
    background: #f5f8fc;
    width: 23%;
    min-width: 220px;

    padding: 30px 20px;

    border-radius: 12px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.why-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.why-card p {
    color: #666;
}


/* Coverage */

.coverage {
    padding: 70px 8%;
    text-align: center;

    background: #eaf6ff;
}

.coverage p {
    color: #555;
    margin-bottom: 30px;
}

.coverage-box {
    max-width: 1000px;
    margin: auto;

    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.coverage-box span {
    background: white;

    padding: 12px 22px;

    border-radius: 25px;

    box-shadow: 0 3px 10px rgba(0,0,0,0.08);

    font-weight: bold;
}
/* Contact Section */

.contact-section {
    padding: 80px 8%;
    background: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 45px;
}

.contact-container {
    max-width: 1050px;
    margin: auto;

    display: flex;
    gap: 40px;

    justify-content: center;
    text-align: left;
}

.contact-info,
.contact-form {
    width: 50%;
    padding: 35px;

    border-radius: 14px;

    background: #f5f8fc;

    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.contact-info h3,
.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 22px;
    color: #555;
}

.contact-info a {
    color: #087fc1;
    text-decoration: none;
    font-weight: bold;
}


/* Form */

.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 13px;

    margin-bottom: 15px;

    border: 1px solid #ddd;

    border-radius: 7px;

    font-family: Arial, sans-serif;

    font-size: 15px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}


/* Mobile */

@media (max-width: 700px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}
