* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
}
h1 {
    font-size: 2.5rem;
    color: #0f5cc0;
}
h2 {
    font-weight: 700;
    font-size: 35px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #333;
}
h3 {
    font-size: 1.2rem;
    color: #0f5cc0;
}
h4 {
    font-size: 1rem;
    color: #0f5cc0;
}

.button {
    text-decoration: none;
    background: #0f5cc0;
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 25px;
    font-size: 17px;
    cursor: pointer;
}

.button:hover {
    background: #0f5cc0;
}

/* NAVBAR */
nav {
    background: #efecec;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;

    position: sticky;
    top: 0;
    z-index: 1000;
}

nav .logo {
    color: #0f5cc0;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
}

nav .logo img {
    height: 44px;
    width: auto;
}

nav .logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

nav .main-title {
    font-weight: bold;
    font-size: 18px;
}

nav .sub-title {
    font-size: 12px;
    color: #666;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

nav ul li {
    position: relative;
}

/* LINKS */
nav ul a {
    position: relative;
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

/* underline animation */
nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #0f5cc0;
    transition: width 0.3s ease;
}

nav ul a:hover {
    color: #0f5cc0;
}

nav ul a:hover::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    background: #fff;
    min-width: 380px;

    padding: 25px 28px;

    transform: translateY(10px);
    display: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    border-radius: 8px;

    border: none;
    outline: none;

    z-index: 999;
}

/* hover bridge */
nav ul li.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

/* show dropdown only for dropdown li */
nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin-bottom: 15px;
}

/* dropdown text */
.dropdown-menu a {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-left: 18px;
}

/* remove underline */
.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    color: #0f5cc0;
}

/* HERO */
#hero {
    width: 100%;
    height: 80vh;
    background-image: url(../images/banner.jpg);
    background-size: cover;
    position: relative;
    text-align: center;
    padding: 150px 20px;
}
#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero p {
    color: #eee;
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
#hero a {
    background: #0f5cc0;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
}
#hero a:hover {
    background: #0f5cc0;
}

/* ABOUT */
#about {
    padding: 60px 40px;
    margin: 0 auto;
}
#about h2 {
    font-weight: 700;
    font-size: 35px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #333;
}
#about p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* ADVANTAGES SECTION */
#advantages {
    padding: 80px 0;
    background: #efecec;
}

/* TITLE */
.section-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0f5cc0;
    display: block;
    margin-top: 10px;
}

.section-sub {
    color: #666;
    font-size: 16px;
}

/* GRID */
.adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* CARD */
.adv-card {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

/* ICON */
.adv-card .icon {
    width: 70px;
    height: 70px;
    border: 2px solid #0f5cc0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #0f5cc0;
    transition: 0.3s;
}

/* TEXT */
.adv-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    transition: 0.3s;
}

/* HOVER (ONLY TEXT + ICON CHANGE) */
.adv-card:hover {
    transform: translateY(-5px);
}

.adv-card:hover h4,
.adv-card:hover p,
.adv-card:hover span {
    color: #0f5cc0;
}

.adv-card:hover .icon {
    color: #0f5cc0;
    border-color: #0f5cc0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .adv-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .adv-grid {
        grid-template-columns: 1fr;
    }
}

/* BROADBAND PLANS */
#plans {
    padding: 80px 0;
    background: #fff;
}

#plans .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #333;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0f5cc0;
    display: block;
    margin-top: 10px;
}

.section-sub {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

/* PLAN GRID */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* PLAN CARD */
.plan-card {
    background: #fff;
    padding: 0 28px 30px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    border-radius: 5px;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-badge {
    display: inline-block;
    background: #ff575d;
    color: #fff;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
    margin-top: 20px;
}

.speed-box {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 35px;
}

.speed-box h3 {
    font-size: 45px;
    line-height: 1;
    margin: 0;
    color: #3f3f3f;
    font-weight: 700;
}

.speed-box p {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    color: #333;
    line-height: 1.35;
}

/* PRICE ROW */
.price-row {
    height: 45px;
}

.price-row span,
.price-row strong {
    display: flex;
    align-items: center;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #ffb3b6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.price-row span {
    background: #ff575d;
    color: #fff;
    padding: 6px 14px;
    font-size: 15px;
}

.price-row strong {
    padding: 6px 14px;
    font-size: 15px;
    color: #333;
    text-align: center;
}

.feature-item i {
    font-size: 20px;
    color: #000;
    min-width: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* optional hover */
.plan-card:hover .feature-item i {
    color: #555;
}

/* FEATURES */
.features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 18px;
}

.feature-item strong {
    color: #ff575d;
    font-size: 16px;
}

.feature-item p {
    margin: 6px 0 0;
    color: #666;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .speed-box h3 {
        font-size: 52px;
    }

    .speed-box p {
        font-size: 16px;
    }

    .price-row span,
    .price-row strong {
        font-size: 16px;
        padding: 13px 15px;
    }
}

/* CONTACT */
#contact {
    padding: 60px 0;
    background: #efecec;
}

#contact h2 {
    font-weight: 700;
    font-size: 35px;
    line-height: 60px;
    text-transform: uppercase;
    color: #333;
}

#contact h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0f5cc0;
    display: block;
    margin-top: 10px;
}

/* INFO BOX */
.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.contact-icon {
    min-width: 30px;
    height: 30px;
    background: #0f5cc0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.contact-info h3 {
    margin: 0 0 8px;
    font-size: 26px;
    color: #333;
}

.contact-info p {
    margin: 4px 0;
    font-size: 17px;
    color: #555;
    line-height: 1.5;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-cards .contact-info {
    width: 100%;
    box-sizing: border-box;
}

#contact .row {
    row-gap: 30px;
}

.contact-info {
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* MAP */
.map-box {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* FORM */
.contact-form {
    text-align: center;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input {
    width: 50%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #cfd6dd;
    border-radius: 6px;
    font-size: 16px;
    outline: none;
    box-sizing: border-box;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: #0f5cc0;
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 25px;
    font-size: 17px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #0f5cc0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .col-lg-6:last-child {
        margin-top: 30px;
    }
}

@media (min-width: 992px) {
    #contact .col-lg-6:last-child {
        padding-left: 35px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row input {
        width: 100%;
    }

    .contact-info {
        padding: 25px;
    }

    .contact-info h3 {
        font-size: 22px;
    }

    .contact-info p {
        font-size: 15px;
    }
}

/* FOOTER */
footer {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #efecec;
    color: #333;
    font-size: 0.9rem;
}

/* FOOTER TOP */
.footer-top {
    width: 100%;
    background: #f8f8f8;
    padding: 50px 0 45px;
    color: #6b6b6b;
}

.footer-top .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    text-align: left;
}

.footer-info {
    padding-left: 80px;
}

.footer-info h3 {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    margin-bottom: 18px;
}

.footer-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-info strong {
    color: #666;
}

/* LINKS */

.footer-links {
    padding-left: 80px;
}

.footer-links h4 {
    font-size: 20px;
    color: #222;
    margin-bottom: 18px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px; /* gap kam kiya */
}

.footer-links li::before {
    content: "›";
    color: #0f5cc0;
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.footer-links a {
    color: #6b6b6b;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0f5cc0;
}

/* FOOTER BOTTOM */
.footer-bottom {
    width: 100%;
    background: #efecec;
    color: #222;
    border-top: 1px solid #ddd;
}

.footer-bottom img {
    width: 100px;
    height: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 650px) {
    .plans-grid,
    .advantages {
        grid-template-columns: 1fr;
    }
    nav ul {
        gap: 12px;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px;
    }
}
@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1140px;
    }
}

/* COMMON POLICY / LEGAL / PRIVACY PAGES */
.policy-page h3 {
    font-size: 34px;
    color: #ff6b63;
    font-weight: 400;
    margin-bottom: 12px;
}

.policy-page p,
.policy-page li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #555;
}

.policy-page ul {
    margin: 22px 0 25px 20px;
    padding-left: 20px;
}

.policy-page li {
    margin-bottom: 6px;
}

/* override section-title only inside these pages */
.policy-page .section-title {
    font-size: 34px;
    font-weight: 700;
    color: #3f3f3f;
    text-transform: uppercase;
}

/* custom underline (avoid global ::after conflict) */
.policy-page .title-line {
    width: 62px;
    height: 4px;
    background: #0f5cc0;
    margin-top: 10px;
    margin-bottom: 60px;
}

/* spacing fix */
.policy-page p {
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .policy-page h3 {
        font-size: 26px;
    }

    .policy-page p,
    .policy-page li {
        font-size: 16px;
    }
}

/* NAV RESPONSIVE FIX */
nav {
    padding: 12px 20px;
}

nav .container {
    gap: 20px;
}

nav ul {
    margin: 0;
    padding: 0;
}

@media (max-width: 991px) {
    nav .container {
        flex-direction: column;
        align-items: flex-start !important;
    }

    nav ul {
        width: 100%;
        flex-wrap: wrap;
        gap: 14px 18px;
        justify-content: flex-start;
    }

    nav ul a {
        font-size: 15px;
    }

    .dropdown-menu {
        min-width: 220px;
        padding: 15px;
    }

    nav .main-title {
        font-size: 16px;
    }

    nav .sub-title {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    nav {
        padding: 12px 10px;
    }

    nav .logo img {
        height: 38px;
    }

    nav .logo-text {
        margin-left: 8px;
    }

    nav .main-title {
        font-size: 15px;
    }

    nav .sub-title {
        font-size: 10px;
        line-height: 1.2;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding: 10px 0;
        min-width: 100%;
        background: transparent;
    }

    nav ul li.dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        margin-left: 0;
        font-size: 14px;
    }
}

/* FOOTER RESPONSIVE FIX */
.footer-grid {
    padding: 0 20px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-info,
    .footer-links {
        padding-left: 0;
    }

    .footer-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 35px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 16px;
    }

    .footer-info,
    .footer-links {
        padding-left: 0;
    }

    .footer-info h3 {
        font-size: 24px;
    }

    .footer-info p,
    .footer-links a {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 15px !important;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }

    .footer-bottom img {
        width: 85px;
    }
}
/* MOBILE MENU BUTTON */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #0f5cc0;
}

/* MOBILE NAV */
@media (max-width: 768px) {
    nav .container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    nav ul {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding-top: 15px;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding: 10px 15px;
        min-width: 100%;
        margin-top: 8px;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }
}
@media (max-width: 768px) {
    nav .container {
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .logo-wrapper {
        flex: 1;
    }

    .menu-toggle {
        display: block !important;
        margin-left: auto;
        background: transparent;
        border: none;
        font-size: 32px;
        line-height: 1;
        color: #0f5cc0;
        cursor: pointer;
    }

    #navMenu {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-top: 18px;
    }

    #navMenu.active {
        display: flex;
    }
}

/* ABOUT RESPONSIVE FIX */
#about {
    padding: 60px 0;
}

#about .content {
    align-items: center;
}

#about h2 {
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 15px;
}

#about h5 {
    font-size: 22px;
    line-height: 1.5;
    color: #555;
}

#about p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 991px) {
    #about {
        padding: 45px 0;
    }

    #about h2 {
        font-size: 30px;
        line-height: 1.3;
    }

    #about h5 {
        font-size: 19px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    #about {
        padding: 35px 0;
    }

    #about h2 {
        font-size: 26px;
    }

    #about h5 {
        font-size: 17px;
    }

    #about p {
        font-size: 15px;
        line-height: 1.7;
        text-align: justify;
    }
}

/* HERO RESPONSIVE FINAL FIX */
#hero {
    width: 100%;
    min-height: 80vh;
    height: auto;
    background-image: url(../images/banner.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
}

#hero .container {
    max-width: 900px;
}

#hero h1 {
    margin: 0 0 18px 0;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

#hero p {
    color: #eee;
    margin-bottom: 35px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

#hero a {
    background: #0f5cc0;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
}

#hero a:hover {
    background: #0f5cc0;
}

@media (max-width: 991px) {
    #hero {
        min-height: 75vh;
        padding: 110px 18px 70px;
    }

    #hero h1 {
        font-size: 42px;
        line-height: 1.25;
    }

    #hero p {
        font-size: 16px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    #hero {
        min-height: 70vh;
        padding: 90px 15px 55px;
    }

    #hero h1 {
        font-size: 30px;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    #hero p {
        font-size: 13px;
        line-height: 1.7;
        letter-spacing: 0.3px;
        margin-bottom: 28px;
    }

    #hero a {
        padding: 10px 22px;
        font-size: 14px;
    }
}
