* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a1e24;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display-heading {
    font-family: 'Space Grotesk', monospace;
    font-weight: 600;
    letter-spacing: -0.02em;
}


/* Navbar */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    background-color: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #2463eb, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #2d3748 !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    /* padding: 8px 14px !important; */
}

/* Hover & Active */
.nav-link:hover,
.nav-link.active {
    color: #2463eb !important;
}

/* Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #2463eb, #a855f7);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Active Link Background */
.nav-link.active {
    background: rgba(36, 99, 235, 0.08);
    border-radius: 8px;
}

.btn-gradient {
    background: linear-gradient(105deg, #2463eb 0%, #7c3aed 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -8px rgba(37, 99, 235, 0.4);
    background: linear-gradient(105deg, #1e4fce 0%, #6d28d9 100%);
    color: white;
}

.btn-outline-custom {
    border: 2px solid #2463eb;
    color: #2463eb;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.6rem 1.6rem;
    transition: all 0.2s;
}

.btn-outline-custom:hover {
    background: #2463eb;
    color: white;
    transform: translateY(-2px);
}

.hero-section {
    padding: 7rem 0 6rem;
    background: linear-gradient(135deg, #08184400 0%, #12182600 100%),
        url('img/hero.png');
    background-size: cover, auto;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-blend-mode: overlay;
}

.hero-badge {
    background: #eef2ff;
    color: #2463eb;
    border-radius: 40px;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .display-4 {
        font-size: 4rem;
    }
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #eef2ff, #f3e8ff);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #2463eb;
    margin-bottom: 1.5rem;
    transition: 0.2s;
}

.card-feature {
    border: none;
    border-radius: 2rem;
    transition: all 0.3s;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02), 0 5px 12px rgba(0, 0, 0, 0.03);
    padding: 1.8rem 1.2rem;
    height: 100%;
}

.card-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid #a855f7;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonial-card {
    background: #fafcff;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02);
    transition: 0.2s;
}

.rating i {
    color: #fbbf24;
    font-size: 1rem;
    margin-right: 2px;
}

.avatar {
    width: 48px;
    height: 48px;
    background: #e0e7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #2463eb;
}

.cta-section {
    background: linear-gradient(115deg, #14285a 0%, #182544 100%);
    border-radius: 3rem;
    margin: 3rem 0 4rem;
    padding: 4rem 2rem;
}

footer {
    background: linear-gradient(115deg, #0b1120 0%, #111827 100%);
    border-top: 1px solid #eef2ff;
    padding: 3rem 0 2rem;
}

.social-icon {
    background: white;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #1f2937;
    transition: 0.2s;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.social-icon:hover {
    background: #2463eb;
    color: white;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 3rem;
        text-align: center;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    /* center buttons on mobile */
    .hero-section .d-flex.flex-wrap.gap-3 {
        justify-content: center !important;
    }
}

/* Reviews */
.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    height: 100%;
    transition: .3s;
}

.review-card:hover {
    transform: translateY(-8px);
}

.stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.review-card h6 {
    margin: 0;
    font-weight: 700;
}


/* bundles */
.bundle-section {
    background: #f5f5f5;
    padding: 60px 0;
}

.bundle-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.bundle-card {
    background: #fff;
    border: 1px solid #d9d9d9;
    margin-bottom: 35px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.bundle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: #fff;
}

.bundle-icon img {
    max-width: 100px;
}

.bundle-content {
    padding: 30px;
    border-left: 1px solid #e5e5e5;
}

.bundle-content h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bundle-content ul {
    margin: 0;
    padding-left: 18px;
}

.bundle-content li {
    margin-bottom: 8px;
    font-size: 16px;
}

.bundle-actions {
    padding: 30px;
    border-left: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.btn-call {
    background: linear-gradient(105deg, #1e4fce 0%, #6d28d9 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
}

.btn-call:hover {
    background: linear-gradient(105deg, #2463eb 0%, #7c3aed 100%);
    color: #fff;
}

.btn-order {
    border: 2px solid #2463eb;
    color: #2463eb;
    font-size: 18px;
    font-weight: 700;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
}

.btn-order:hover {
    background: #2463eb;
    color: #fff;
}

@media (max-width: 991.98px) {

    .bundle-content,
    .bundle-actions {
        border-left: none;
        border-top: 1px solid #e5e5e5;
    }

    .bundle-icon {
        min-height: 160px;
    }

    .bundle-content {
        text-align: center;
    }

    .bundle-content ul {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 767.98px) {

    .bundle-content h4 {
        font-size: 22px;
    }

    .btn-call,
    .btn-order {
        font-size: 20px;
        padding: 14px;
    }
}


/* --------Contact Page) -------- */
.contact-card {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    padding: 2.5rem 2.2rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    height: 100%;
}

.contact-card .form-control,
.contact-card .form-select {
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    border: 1.5px solid #eef2f6;
    background: #e6eef9;
    font-weight: 400;
    transition: 0.2s;
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: #2463eb;
    box-shadow: 0 0 0 4px rgba(36, 99, 235, 0.15);
}

.contact-card .btn-submit {
    background: linear-gradient(135deg, #2463eb, #a855f7);
    border: none;
    border-radius: 60px;
    padding: 0.8rem 2rem;
    font-weight: 600;
    color: #fff;
    width: 100%;
    transition: 0.25s;
}

.contact-card .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -8px rgba(36, 99, 235, 0.5);
}

.info-item {
    background: #f2f6fe;
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    transition: 0.2s;
    border: 1px solid rgba(36, 99, 235, 0.06);
}

.info-item:hover {
    background: #eaf0fe;
    transform: translateY(-2px);
}

.info-item i {
    font-size: 1.8rem;
    color: #2463eb;
    width: 3rem;
}

.info-item .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4e5b7c;
    font-weight: 600;
}

.info-item .value {
    font-weight: 700;
    color: #0b1a33;
    font-size: 1.1rem;
}

.info-item .value a {
    color: #0b1a33;
    text-decoration: none;
}

.info-item .value a:hover {
    color: #2463eb;
}

.mini-badge {
    background: #eef4ff;
    border-radius: 30px;
    padding: 0.2rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #2463eb;
    display: inline-block;
}

/* responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 2.5rem 0 2.5rem 0;
    }

    .contact-card {
        padding: 1.8rem 1.2rem;
    }

    .info-item {
        padding: 1rem;
    }
}


/* disclaimer Starts */
.disclaimer-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.disclaimer-card {
    border-radius: 20px;
    transition: all .3s ease;
}

.disclaimer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(36, 99, 235, .12) !important;
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2463eb, #4f8cff);
    color: #fff;
    font-size: 1.3rem;
}

.disclaimer-card p {
    padding-left: 14px;
    border-left: 3px solid #e9ecef;
    margin-bottom: 16px;
}

/* disclaimer Ends */



/* Wide Blue Banner Starts*/
.internet-goals {
    background: linear-gradient(135deg, #0c3ac3, #0b2664);
    overflow: hidden;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 1.25rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}

.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 1.8rem;
    color: #fff;
}

.feature-card h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .internet-goals {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .icon-box i {
        font-size: 1.5rem;
    }
}

/* Wide Blue Banner Ends*/


/* Css for Optimum Internet page */
.speed-section {
    background: #f7f7f7;
    padding: 80px 0;
}

.section-title1 {
    font-size: 48px;
    font-weight: 700;
    color: #111827;
}

.section-subtitle {
    color: #6b7280;
    font-size: 16px;
}

.plan-features {
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    margin-top: 25px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.plan-features span {
    font-weight: 500;
    color: #374151;
}

.plan-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: .3s;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.recommended {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e8efff;
    color: #2563eb;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
}

.speed-icon {
    width: 70px;
    margin-bottom: 20px;
}

.plan-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    line-height: 1;
}

.price small {
    font-size: 18px;
}

.plan-note {
    color: #4b5563;
    font-size: 14px;
}

.guarantee {
    color: #16a34a;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}

.plan-list {
    margin-top: 30px;
    margin-bottom: 25px;
}

.plan-list li {
    margin-bottom: 12px;
    color: #374151;
}

.plan-list li::marker {
    color: #f97316;
}

.plan-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.plan-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
}

.btn-outline-custom {
    border: 2px solid #2463eb;
    color: #2463eb;
    font-weight: 600;
    border-radius: 2rem;
    padding: 0.6rem 1.6rem;
    transition: all 0.2s;
}

.btn-outline-custom:hover {
    background: #2463eb;
    color: white;
    transform: translateY(-2px);
}

.btn-selected {
    background: #2563eb;
    color: #fff;
    border-radius: 50px;
    padding: 12px;
    font-weight: 600;
}

.btn-selected:hover {
    background: #1d4ed8;
    color: #fff;
}