
.hero-section{
    position:relative;
    width:100%;
    overflow:hidden;
}

.hero-slider{
    position:relative;
    width:100%;
    height:85vh;
    min-height:600px;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:.8s ease-in-out;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.15) 100%
    );
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:650px;
    color:#fff;
    z-index:5;
}

.hero-subtitle{
    display:inline-block;
    padding:10px 24px;
    background:#e41e26;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:60px;
    line-height:1.15;
    font-weight:700;
    margin-bottom:25px;
}

.hero-content h1 span{
    display:block;
    color:#ff5757;
}

.hero-content p{
    font-size:17px;
    line-height:1.8;
    color:#f2f2f2;
    margin-bottom:35px;
    max-width:600px;

}


.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;

}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    background:#e41e26;
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
}

.btn-primary:hover{
    background:#c81921;
    transform:translateY(-3px);
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 34px;
    border:2px solid #fff;
    color:#fff;
    border-radius:50px;
    font-weight:600;

    transition:.4s;

}

.btn-secondary:hover{
    background:#fff;
    color:#111;

}


.hero-prev,
.hero-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    backdrop-filter:blur(8px);
    color:#fff;
    font-size:20px;
    cursor:pointer;
    transition:.4s;
    z-index:10;
}

.hero-prev{
    left:30px;
}

.hero-next{
    right:30px;
}

.hero-prev:hover,
.hero-next:hover{
    background:#e41e26;
    transform:translateY(-50%) scale(1.08);
}


.hero-pagination{
    position:absolute;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}

.hero-pagination span{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(255,255,255,.45);
    cursor:pointer;
    transition:.3s;

}

.hero-pagination span.active{
    width:42px;
    border-radius:30px;
    background:#e41e26;
}

body {
    margin: 0px !important;
}

@media(max-width:1200px){
.hero-slider{
height:75vh;
}

.hero-content{
max-width:560px;
}

.hero-content h1{
font-size:52px;
}
}



@media(max-width:992px){
.hero-slider{
height:70vh;
min-height:550px;
}

.hero-content{
left:6%;
right:6%;
max-width:100%;
}

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:16px;
}

.hero-prev,
.hero-next{

width:48px;

height:48px;

font-size:18px;

}

}



@media(max-width:768px){

.hero-slider{

height:650px;

}

.hero-content{

text-align:center;

left:50%;

top:50%;

transform:translate(-50%,-50%);

width:90%;

}

.hero-content h1{

font-size:34px;

}

.hero-content p{

font-size:15px;

margin:auto;

margin-bottom:30px;

}

.hero-buttons{

justify-content:center;

}

.hero-prev{

left:15px;

}

.hero-next{

right:15px;

}

.hero-prev,
.hero-next{

width:42px;

height:42px;

font-size:16px;

}

}


@media(max-width:576px){

.hero-slider{

height:580px;

}

.hero-subtitle{

font-size:13px;

padding:8px 18px;

}

.hero-content h1{

font-size:28px;

line-height:1.3;

}

.hero-content p{

font-size:14px;

line-height:1.7;

}

.btn-primary,
.btn-secondary{

width:100%;

padding:14px;

}

.hero-buttons{

gap:15px;

}

.hero-pagination{

bottom:20px;

}

.hero-pagination span{

width:12px;

height:12px;

}

.hero-pagination span.active{

width:34px;

}

}


@media(max-width:420px){

.hero-slider{

height:520px;

min-height:auto;

}

.hero-content{

width:92%;

}

.hero-content h1{

font-size:24px;

}

.hero-content p{

font-size:13px;

}

.hero-prev,
.hero-next{

display:none;

}

}


/*WHY CHOOSE US*/

.why-choose-section{

    padding:90px 0;

    background:#f8fafc;

}

.why-choose-section .container{

    max-width:1200px;

    margin:auto;

}

.section-title{

    max-width:760px;

    margin:0 auto 50px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    padding:8px 22px;

    background:#e41e26;

    color:#fff;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:18px;

}

.section-title h2{

    font-size:40px;

    line-height:1.3;

    color:#111;

    margin-bottom:18px;

}

.section-tag{

    display:inline-block;

    padding:10px 25px;

    background:#e41e26;

    color:#fff;

    font-size:14px;

    font-weight:600;

    border-radius:30px;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:18px;

}

.section-title h2 span{

    display:block;

    color:#e41e26;

    font-size:inherit;

    font-weight:700;

    margin-top:8px;

    background:none;

    padding:0;

    border-radius:0;

}

.section-title p{

    color:#111;

    font-size:16px;

    line-height:1.8;

}


/*GRID*/

.why-choose-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}


/*CARD*/

.why-card{

    background:#fff;

    padding:35px 25px;

    border-radius:30px 8px 30px 8px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s;

    text-align:center;

    border-left:5px solid #e41e26;

}

.why-card:nth-child(even){

    border-left:5px solid #111;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}


.why-card .icon{

    width:65px;

    height:65px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#e41e26;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.why-card:nth-child(even) .icon{

    background:#111;

}

.why-card:hover .icon{

    transform:rotate(15deg);

}

.why-card:nth-child(odd):hover .icon{

    background:#111;

}

.why-card:nth-child(even):hover .icon{

    background:#e41e26;

}

.why-card .icon i{

    color:#fff;

    font-size:28px;

}


.why-card h3{

    font-size:22px;

    color:#111;

    margin-bottom:12px;

    font-weight:600;

}

.why-card p{

    font-size:15px;

    color:#666;

    line-height:1.8;

}


@media(max-width:992px){

.why-choose-grid{

grid-template-columns:repeat(2,1fr);

}

.section-title h2{

font-size:34px;

}

}


@media(max-width:768px){

.why-choose-section{

padding:70px 0;

}

.why-choose-grid{

grid-template-columns:1fr;

}

.section-title{

margin-bottom:40px;

}

.section-title h2{

font-size:30px;

}

.section-title p{

font-size:15px;

}

}


@media(max-width:480px){

.section-title h2{

font-size:25px;

}

.section-title p{

font-size:14px;

}

.why-card{

padding:28px 20px;

}

.why-card h3{

font-size:20px;

}

.why-card .icon{

width:60px;

height:60px;

}

.why-card .icon i{

font-size:24px;

}

}

/*OUR SERVICES=*/

.services-section{

    padding:90px 0;

    background:#f8fafc;

}

.services-section .container{

    max-width:1200px;

    margin:auto;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:50px;

}


.service-card{

    background:#fff;

    border-left:5px solid #e41e26;

    border-radius:30px 8px 30px 8px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}


.service-image{

    height:190px;

    background:#f5f5f5;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:20px;

}

.service-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    transition:.4s;

}

.service-card:hover .service-image img{

    transform:scale(1.05);

}


.service-content{

    padding:25px;

    text-align:center;

}


.service-icon{

    width:60px;

    height:60px;

    margin:-55px auto 18px;

    background:#e41e26;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    border:4px solid #fff;

    color:#fff;

    font-size:24px;

    transition:.4s;

    position: relative;

    z-index: 2;

}

.service-card:hover .service-icon{

    background:#0d3b66;

    transform:rotate(15deg);

}


.service-content h3{

    font-size:22px;

    color:#1a1a1a;

    font-weight:600;

    margin-bottom:12px;

}


.service-content p{

    font-size:15px;

    line-height:1.7;

    color:#666;

    margin-bottom:20px;

}

.service-content a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#e41e26;

    font-weight:600;

    transition:.3s;

}

.service-content a i{

    transition:.3s;

}

.service-content a:hover{

    color:#0d3b66;

}

.service-content a:hover i{

    transform:translateX(6px);

}


@media(max-width:992px){

.services-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:768px){

.services-section{

padding:70px 0;

}

.services-grid{

grid-template-columns:1fr;

}

.service-image{

height:180px;

}

}


@media(max-width:480px){

.service-content{

padding:20px;

}

.service-content h3{

font-size:20px;

}

.service-content p{

font-size:14px;

}

.service-image{

height:170px;

}

}


/* PLANS SECTION*/

.plans-section {
    padding: 70px 0;
    background: #f8fafc;
}

.plans-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.plan-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.plan-btn {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 30px 8px 30px 8px;
    padding: 20px 15px;
    cursor: pointer;
    transition: 0.35s;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.plan-btn:hover {
    border-color: #e41e26;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(228, 30, 38, 0.10);
}

.plan-btn.active {
    border-color: #e41e26;
    background: #fff5f5;
    box-shadow: 0 8px 25px rgba(228, 30, 38, 0.12);
    border-left: 5px solid #e41e26;
}

.plan-btn i {
    font-size: 30px;
    color: #e41e26;
    display: block;
    margin-bottom: 10px;
}

.plan-btn span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.plan-btn small {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 5px;
    font-weight: 400;
}


.plan-content {
    display: none;
    background: #ffffff;
    border-radius: 30px 8px 30px 8px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #e41e26;
    animation: fadeInUp 0.5s ease;
}

.plan-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 12px;
}

.plan-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.plan-header h3 span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #888;
    margin-top: 3px;
}

.plan-header .price-range {
    font-size: 20px;
    font-weight: 700;
    color: #e41e26;
}

.plan-header .price-range span {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}


.plan-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: #f8fafc;
    border-radius: 12px;
    opacity: 0;
    animation: slideInLine 0.5s ease forwards;
    transition: 0.3s;
    border-left: 3px solid #e41e26;
}

.plan-item:hover {
    background: #f0f2f8;
    transform: scale(1.02);
}

@keyframes slideInLine {
    from {
        opacity: 0;
        transform: translateX(-25px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.plan-item .price {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
}

.plan-item .speed {
    font-size: 16px;
    font-weight: 500;
    color: #555;
}


.whatsapp-link {
    color: #25D366;
    font-size: 20px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0faf2;
    text-decoration: none;
}

.whatsapp-link:hover {
    color: #ffffff;
    background: #25D366;
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ===== SELECT PLAN BUTTON ===== */
.select-plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.35s;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.select-plan-btn:hover {
    background: #1da851;
    transform: scale(1.01);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
    color: #ffffff;
}

.select-plan-btn i {
    font-size: 22px;
}


@media (max-width: 992px) {
    .plan-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .plan-header h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .plans-section {
        padding: 70px 0;
    }

    .plan-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-header h3 {
        font-size: 18px;
    }

    .plan-header .price-range {
        font-size: 17px;
    }

    .plan-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .plan-item {
        padding: 12px 16px;
    }

    .plan-item .price {
        font-size: 15px;
    }

    .plan-item .speed {
        font-size: 14px;
    }

    .plan-content {
        padding: 25px;
    }

    .plan-btn {
        padding: 16px 12px;
    }

    .plan-btn i {
        font-size: 24px;
    }

    .plan-btn span {
        font-size: 14px;
    }

    .plan-btn small {
        font-size: 10px;
    }

    .whatsapp-link {
        font-size: 18px;
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .plan-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .plan-btn {
        padding: 14px 10px;
    }

    .plan-btn i {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .plan-btn span {
        font-size: 12px;
    }

    .plan-btn small {
        font-size: 9px;
    }

    .plan-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .plan-item {
        padding: 10px 14px;
    }

    .plan-item .price {
        font-size: 14px;
    }

    .plan-item .speed {
        font-size: 13px;
    }

    .plan-content {
        padding: 20px;
    }

    .plan-header h3 {
        font-size: 16px;
    }

    .plan-header .price-range {
        font-size: 15px;
    }

    .select-plan-btn {
        padding: 14px;
        font-size: 14px;
    }

    .whatsapp-link {
        font-size: 16px;
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 360px) {
    .plan-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .plan-btn {
        padding: 12px 8px;
    }

    .plan-btn i {
        font-size: 18px;
    }

    .plan-btn span {
        font-size: 11px;
    }

    .plan-btn small {
        font-size: 8px;
    }
}

/* NETWORK COVERAGE SECTION - SIMPLE CSS MAP*/

.network-section {
    padding: 90px 0;
    background: #f8fafc;
}

.network-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Section Title ===== */
.network-section .section-title {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.network-section .section-tag {
    display: inline-block;
    padding: 10px 25px;
    background: #e41e26;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.network-section .section-title h2 {
    font-size: 40px;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.network-section .section-title h2 span {
    color: #e41e26;
}

.network-section .section-title p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* ===== Network Stats ===== */
.network-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.stat-item {
    background: #ffffff;
    border-radius: 30px 8px 30px 8px;
    padding: 30px 20px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #e41e26;
    transition: 0.35s;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.stat-item .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #e41e26;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.stat-item .stat-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
}


.network-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #ffffff;
    border-radius: 30px 8px 30px 8px;
    padding: 35px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border-left: 5px solid #e41e26;
}

/* ===== Left: Map Container ===== */
.map-container {
    background: linear-gradient(135deg, #eef2f7 0%, #dce1e8 100%);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    min-height: 400px;
}

.map-container h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}


.hp-map {
    position: relative;
    width: 100%;
    height: 320px;
    background: 
       
        radial-gradient(ellipse at 50% 45%, rgba(228,30,38,0.05) 0%, transparent 70%);
    border: 3px dashed rgba(228,30,38,0.15);
    border-radius: 50% 50% 40% 40% / 60% 60% 30% 30%;
    margin: 0 auto;
}

/* ===== City Markers ===== */
.city-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    z-index: 5;
    transition: 0.3s;
    cursor: pointer;
}

.city-marker .dot {
    width: 14px;
    height: 14px;
    background: #e41e26;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 4px rgba(228, 30, 38, 0.15);
    transition: 0.3s;
    display: block;
}

.city-marker .city-label {
    font-size: 8px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 4px;
    background: rgba(255,255,255,0.85);
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    transition: 0.3s;
}

.city-marker:hover {
    transform: scale(1.2);
    z-index: 10;
}

.city-marker:hover .dot {
    background: #ff0000;
    box-shadow: 0 0 0 8px rgba(228, 30, 38, 0.2);
}

.city-marker:hover .city-label {
    background: #e41e26;
    color: #ffffff;
}

/* ===== City Positions ===== */
.city-marker.chamba { top: 8%; left: 25%; }
.city-marker.kangra { top: 18%; left: 18%; }
.city-marker.una { top: 35%; left: 12%; }
.city-marker.kullu { top: 22%; left: 32%; }
.city-marker.mandi { top: 35%; left: 30%; }
.city-marker.hamirpur { top: 42%; left: 22%; }
.city-marker.bilaspur { top: 45%; left: 38%; }
.city-marker.shimla { top: 48%; left: 48%; }
.city-marker.solan { top: 55%; left: 55%; }
.city-marker.sirmaur { top: 62%; left: 62%; }
.city-marker.kinnaur { top: 25%; left: 62%; }
.city-marker.lahaul { top: 8%; left: 48%; }

/* ===== Network Label ===== */
.network-label {
    text-align: center;
    margin-top: 15px;
    padding: 12px;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.network-label .strong-icon {
    font-size: 20px;
    display: block;
}

.network-label span {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
}

.network-label small {
    font-size: 12px;
    color: #666;
    display: block;
    margin-top: 2px;
}

/* ===== Right: Cities List ===== */
.cities-list {
    display: flex;
    flex-direction: column;
}

.cities-list h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.city-tag {
    background: #f0f2f5;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    transition: 0.3s;
    text-decoration: none;
    border: 2px solid transparent;
    display: inline-block;
}

.city-tag:hover {
    background: #e41e26;
    color: #ffffff;
    border-color: #e41e26;
    transform: translateY(-2px);
}

/* ===== WhatsApp CTA ===== */
.whatsapp-cta {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0a0a1a 100%);
    border-radius: 20px 5px 20px 5px;
    padding: 22px 20px;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.whatsapp-cta .cta-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 211, 102, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-cta .cta-icon i {
    font-size: 24px;
    color: #25D366;
}

.whatsapp-cta .cta-text {
    flex: 1;
    min-width: 140px;
}

.whatsapp-cta .cta-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.whatsapp-cta .cta-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.35s;
    flex-shrink: 0;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    color: #ffffff;
}

.whatsapp-btn i {
    font-size: 16px;
}



@media (max-width: 992px) {
    .network-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .network-map-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .network-section .section-title h2 {
        font-size: 34px;
    }

    .hp-map {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .network-section {
        padding: 70px 0;
    }

    .network-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px 18px;
    }

    .stat-item .stat-number {
        font-size: 28px;
    }

    .stat-item .stat-label {
        font-size: 15px;
    }

    .network-map-wrapper {
        padding: 20px;
    }

    .map-container {
        padding: 15px;
        min-height: 300px;
    }

    .hp-map {
        height: 200px;
    }

    .city-marker .city-label {
        font-size: 7px;
        padding: 1px 4px;
    }

    .city-marker .dot {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }

    .cities-grid {
        gap: 8px;
    }

    .city-tag {
        font-size: 12px;
        padding: 6px 14px;
    }

    .whatsapp-cta {
        padding: 18px 16px;
    }

    .network-section .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .network-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-item {
        padding: 16px 10px 14px;
        border-radius: 20px 5px 20px 5px;
    }

    .stat-item .stat-number {
        font-size: 22px;
    }

    .stat-item .stat-label {
        font-size: 13px;
    }

    .stat-item .stat-desc {
        font-size: 11px;
    }

    .network-map-wrapper {
        padding: 15px;
    }

    .map-container {
        padding: 10px;
        min-height: 250px;
    }

    .hp-map {
        height: 180px;
    }

    .city-marker .city-label {
        display: none;
    }

    .city-marker .dot {
        width: 12px;
        height: 12px;
    }

    .network-label span {
        font-size: 14px;
    }

    .cities-grid {
        gap: 6px;
    }

    .city-tag {
        font-size: 11px;
        padding: 5px 12px;
    }

    .whatsapp-cta {
        padding: 16px 14px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        padding: 10px 16px;
    }

    .network-section .section-title h2 {
        font-size: 22px;
    }

    .network-section .section-title p {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .hp-map {
        height: 150px;
    }

    .city-marker .dot {
        width: 10px;
        height: 10px;
    }

    .city-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* HOW IT WORKS*/

.process-section{

    padding:90px 0;

    background:#f8fafc;

}

.process-section .container{

    max-width:1200px;

    margin:auto;

}

.process-wrapper{

    display:grid;

    grid-template-columns:1fr auto 1fr auto 1fr auto 1fr;

    align-items:center;

    gap:20px;

    margin-top:60px;

}

.process-card{

    position:relative;

    flex: 1;

    background:#fff;

    border-left:5px solid #e41e26;

    border-radius:30px 8px 30px 8px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

    overflow:hidden;

}

.process-card:nth-child(4){

    border-left-color:#111;

}

.process-card:nth-child(8){

    border-left-color:#111;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}


.step-number{

    position:absolute;

    top:18px;

    right:18px;

    font-size:36px;

    font-weight:700;

    color:#1d0101;

    line-height:1;

}



.process-icon{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#e41e26;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:32px;

    transition:.35s;

}

.process-card:nth-child(4) .process-icon,

.process-card:nth-child(8) .process-icon{

    background:#111;

}

.process-card:hover .process-icon{

    transform:rotate(15deg) scale(1.05);

}


.process-card h3{

    font-size:22px;

    color:#111;

    margin-bottom:15px;

    line-height:1.4;

}


.process-card p{

    color:#131212;

    font-size:15px;

    line-height:1.8;

}

.process-arrow{

    font-size:34px;

    color:#e41e26;

    animation:arrowMove 1.5s infinite;

}

@keyframes arrowMove{

0%{

transform:translateX(0);

}

50%{

transform:translateX(8px);

}

100%{

transform:translateX(0);

}

}


@media(max-width:1200px){

.process-wrapper{

grid-template-columns:repeat(2,1fr);

gap:25px;

}

.process-arrow{

display:none;

}

}


@media(max-width:768px){

.process-section{

padding:70px 0;

}

.process-wrapper{

grid-template-columns:1fr;

}

.process-card{

padding:30px 22px;

}

.step-number{

font-size:48px;

}

.process-icon{

width:70px;

height:70px;

font-size:28px;

}

.process-card h3{

font-size:20px;

}

}


@media(max-width:480px){

.process-card{

padding:28px 20px;

}

.process-icon{

width:65px;

height:65px;

font-size:26px;

}

.step-number{

font-size:42px;

}

.process-card p{

font-size:14px;

}

}

/*FAQ SECTION*/

.faq-section{

    position:relative;

    padding:100px 0;

    background:#f8fafc;

    overflow:hidden;

}

.faq-section .container{

    max-width:1200px;

    margin:auto;

}


.faq-shape{

    position:absolute;

    color:rgba(228,30,38,.06);

    z-index:0;

    pointer-events:none;

}

.shape-1{

    top:80px;

    left:60px;

    font-size:180px;

}

.shape-2{

    top:80px;

    right:70px;

    font-size:170px;

}

.shape-3{

    bottom:20px;

    left:20px;

    font-size:170px;

}

.faq-section .container{

    position:relative;

    z-index:2;

}


.faq-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;

}

.faq-column{

    display:flex;

    flex-direction:column;

    gap:18px;

}


.faq-item{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}


.faq-question{

    width:100%;

    border:none;

    background:#fff;

    cursor:pointer;

    padding:24px 28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-align:left;

    font-size:18px;

    font-weight:600;

    color:#111;

    transition:.35s;

}

.faq-question:hover{

    color:#e41e26;

}

.faq-question i{

    font-size:20px;

    color:#111;

    transition:.35s;

}


.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 28px 24px;

    color:#0f0f0f;

    line-height:1.8;

    font-size:15px;

}


.faq-item.active .faq-answer{

    max-height:220px;

}

.faq-item.active .faq-question{

    color:#e41e26;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

    color:#e41e26;

}


.faq-contact{

    margin-top:70px;

    background:#fff;

    border-left:6px solid #e41e26;

    border-radius:30px 8px 30px 8px;

    padding:40px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}


.faq-contact-left{

    display:flex;

    align-items:center;

    gap:25px;

}

.faq-contact-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#fdeaea;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.faq-contact-icon i{

    font-size:40px;

    color:#e41e26;

}

.faq-contact-left h3{

    font-size:32px;

    color:#111;

    margin-bottom:12px;

}

.faq-contact-left p{

    color:#080808;

    line-height:1.8;

}


.faq-contact-right{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:18px;

}

.faq-contact-right span{

    font-size:30px;

    font-weight:700;

    color:#111;

}


.faq-contact-right a{

    text-decoration:none;

}

.faq-whatsapp,

.faq-call{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    min-width:250px;

    padding:16px 30px;

    border-radius:40px;

    font-size:17px;

    font-weight:600;

    transition:.35s;

}

.faq-whatsapp{

    background:#25D366;

    color:#fff;

}

.faq-whatsapp:hover{

    background:#1ca34d;

}

.faq-call{

    background:#fff;

    color:#e41e26;

    border:2px solid #e41e26;

}

.faq-call:hover{

    background:#e41e26;

    color:#fff;

}


@media(max-width:992px){

.faq-grid{

grid-template-columns:1fr;

}

.faq-contact{

flex-direction:column;

text-align:center;

}

.faq-contact-left{

flex-direction:column;

}

}


@media(max-width:768px){

.faq-section{

padding:70px 0;

}

.faq-question{

padding:20px;

font-size:16px;

}

.faq-answer p{

padding:0 20px 20px;

font-size:14px;

}

.faq-contact{

padding:30px 25px;

}

.faq-contact-left h3{

font-size:26px;

}

.faq-contact-right span{

font-size:24px;

}

.faq-whatsapp,

.faq-call{

width:100%;

min-width:unset;

}

}


@media(max-width:480px){

.faq-contact-icon{

width:70px;

height:70px;

}

.faq-contact-icon i{

font-size:30px;

}

.faq-contact-left h3{

font-size:22px;

}

.shape-1,

.shape-2,

.shape-3{

display:none;

}

}






/* google map with API */



/* Map Container */
.map-container {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

#google-map {
    width: 100%;
    height: 450px;
    border-radius: 12px;
}




@media (max-width: 768px) {
    #google-map {
        height: 400px;
    }
    
}