.hero-section{
    background:#f8f9fa;
    overflow:hidden;
}

.hero-content{
    max-width:650px;
}

.hero-tag{
    display:inline-block;
    background:#e9f1ff;
    color:#214f99;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.05;
    color:#111;
    margin-bottom:25px;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    color:#666;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.hero-btn-primary{
    background:#214f99;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:8px;
    font-weight:600;
}

.hero-btn-secondary{
    border:2px solid #214f99;
    color:#214f99;
    text-decoration:none;
    padding:15px 30px;
    border-radius:8px;
    font-weight:600;
}

.hero-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.trust-bar{
    background:#214f99;
    padding:18px 0;
}

.trust-items{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.trust-items span{
    color:#fff;
    font-weight:600;
}

.about-section{
    padding:120px 0;
    background:#ffffff;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.section-tag{
    display:inline-block;
    background:#e9f1ff;
    color:#214f99;
    padding:8px 16px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.about-content h2{
    font-size:48px;
    font-weight:800;
    margin-bottom:25px;
    color:#111;
}

.about-content p{
    font-size:18px;
    line-height:1.8;
    color:#666;
    margin-bottom:20px;
}

.about-btn{
    display:inline-block;
    background:#214f99;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:8px;
    margin-top:15px;
}

.about-btn:hover{
    background:#5e832a;
    color:#fff;
}

.stats-row{
    margin-top:80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-box{
    text-align:center;
    background:#f8f9fa;
    padding:35px 20px;
    border-radius:15px;
}

.stat-box h3{
    font-size:42px;
    font-weight:800;
    color:#214f99;
}

.stat-box p{
    margin:0;
    font-weight:600;
}

.journey-section{
    padding:120px 0;
    background:#f8f9fa;
}

.section-heading{
    max-width:800px;
    margin:0 auto 80px;
}

.section-heading h2{
    font-size:52px;
    font-weight:800;
    margin:20px 0;
}

.section-heading p{
    font-size:18px;
    color:#666;
}

.journey-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.journey-item{
    width:180px;
    text-align:center;
}

.journey-icon{
    width:70px;
    height:70px;
    background:#214f99;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-weight:700;
    font-size:20px;
}

.journey-item h3{
    margin-top:20px;
    font-size:22px;
    font-weight:700;
}

.journey-item p{
    color:#666;
    font-size:14px;
}

.journey-arrow{
    font-size:28px;
    color:#214f99;
    font-weight:bold;
}

.services-section{
    padding:120px 0;
    background:#ffffff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.service-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:400px;
}

.service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.2)
    );
    padding:40px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.service-overlay h3{
    color:#fff;
    font-size:32px;
    font-weight:700;
}

.service-overlay p{
    color:#fff;
}

.service-overlay a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.service-card:hover img{
    transform:scale(1.08);
}

.global-reach-section{
    padding:120px 0;
    background:#f8f9fa;
}

.global-content h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:25px;
}

.global-content p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.global-list{
    margin-top:30px;
    padding:0;
    list-style:none;
}

.global-list li{
    margin-bottom:15px;
    font-size:18px;
    font-weight:600;
    color:#214f99;
}

.global-map img{
    width:100%;
}

.industries-section{
    padding:120px 0;
    background:#fff;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.industry-card{
    background:#214f99;
    color:#fff;
    text-align:center;
    padding:40px;
    border-radius:15px;
    font-size:22px;
    font-weight:700;
    transition:.3s;
}

.industry-card:hover{
    background:#5e832a;
    transform:translateY(-8px);
}

.india-network-map{
    position:relative;
    max-width:600px;
    margin:auto;
}

.india-network-map img{
    width:100%;
}

.location{
    position:absolute;
}

.location span{
    background:#214f99;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
}

.pune{
    top:52%;
    left:42%;
}

.mumbai{
    top:48%;
    left:38%;
}

.surat{
    top:43%;
    left:35%;
}

.velu{
    top:56%;
    left:43%;
}

.pune span{
    background:#5e832a;
}

.india-map-wrapper{
    position:relative;
    max-width:700px;
    margin:auto;
}

.india-map-wrapper img{
    width:100%;
    display:block;
}

.marker{
    position:absolute;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#214f99;
    border:3px solid #fff;
    box-shadow:0 0 0 8px rgba(33,79,153,.15);
}

.marker span{
    position:absolute;
    top:-42px;
    left:50%;
    transform:translateX(-50%);
    background:#214f99;
    color:#fff;
    padding:6px 12px;
    border-radius:20px;
    white-space:nowrap;
    font-size:12px;
    font-weight:600;
}

.pune{
    background:#5e832a;
    box-shadow:0 0 0 12px rgba(94,131,42,.20);
}

.pune span{
    background:#5e832a;
}

/* Approx positions for generated map */
.pune{
    top:61%;
    left:41%;
}

.mumbai{
    top:55%;
    left:34%;
}

.surat{
    top:40%;
    left:31%;
}

.velu{
    top:71%;
    left:42%;
}

.network-list{
    margin-top:30px;
}

.network-item{
    padding:15px 20px;
    background:#fff;
    border-left:4px solid #214f99;
    margin-bottom:15px;
    border-radius:8px;
}

.network-item.hq{
    border-left-color:#5e832a;
}

.network-map-section{
    padding:120px 0;
    background:#f8f9fa;
}

.network-svg svg{
    width:100%;
    height:auto;
}

.network-line{
    stroke:#214f99;
    stroke-width:3;
    stroke-dasharray:10;
    animation:dashMove 3s linear infinite;
}

@keyframes dashMove{
    to{
        stroke-dashoffset:-40;
    }
}

.city-dot{
    fill:#214f99;
}

.hq-dot{
    fill:#5e832a;
}

.pulse-ring{
    fill:none;
    stroke:#5e832a;
    stroke-width:3;
    animation:pulse 2s infinite;
}

@keyframes pulse{

    0%{
        opacity:1;
        transform-origin:center;
        transform:scale(1);
    }

    100%{
        opacity:0;
        transform-origin:center;
        transform:scale(1.8);
    }

}

.network-svg text{
    fill:#111;
    font-size:18px;
    font-weight:600;
}

.hq-label{
    fill:#5e832a;
    font-weight:700;
}

.network-card{
    background:#fff;
    padding:18px;
    margin-bottom:15px;
    border-left:4px solid #214f99;
    border-radius:8px;
}

.network-card.hq{
    border-left-color:#5e832a;
}

.why-choose-section{
    padding:120px 0;
    background:#ffffff;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
    border-top:4px solid #214f99;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-icon{
    width:70px;
    height:70px;
    background:#214f99;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.why-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.why-card p{
    color:#666;
    line-height:1.8;
}

.statistics-section{
    padding:120px 0;
    background:#214f99;
}

.statistics-section .section-tag{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.statistics-section h2{
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:70px;
}

.stat-item{
    text-align:center;
    background:rgba(255,255,255,.08);
    padding:40px 20px;
    border-radius:20px;
    backdrop-filter:blur(5px);
}

.counter{
    font-size:64px;
    font-weight:800;
    color:#fff;
    margin-bottom:15px;
}

.stat-item h3{
    color:#fff;
    font-size:20px;
    margin:0;
}

.cta-section{
    position:relative;
    padding:140px 0;
    background:url('../images/cta-bg.jpg');
    background-size:cover;
    background-position:center;
    text-align:center;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
}

.cta-content{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
}

.cta-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    color:#fff;
    margin-bottom:20px;
}

.cta-content h2{
    color:#fff;
    font-size:60px;
    font-weight:800;
    margin-bottom:25px;
}

.cta-content p{
    color:#ddd;
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

.cta-btn-primary{
    background:#214f99;
    color:#fff;
    padding:16px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.cta-btn-primary:hover{
    background:#5e832a;
    color:#fff;
}

.cta-btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:16px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* Responsive Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

.hero-section {
    padding: 100px 0;
}

/* Fix duplicate map location class styles */
.india-network-map .location {
    background: transparent;
    box-shadow: none;
}

.india-network-map .pune {
    top: 52%;
    left: 42%;
}

.india-network-map .mumbai {
    top: 48%;
    left: 38%;
}

.india-network-map .surat {
    top: 43%;
    left: 35%;
}

.india-network-map .velu {
    top: 56%;
    left: 43%;
}

.india-map-wrapper .marker.pune {
    top: 61%;
    left: 41%;
}

.india-map-wrapper .marker.mumbai {
    top: 55%;
    left: 34%;
}

.india-map-wrapper .marker.surat {
    top: 40%;
    left: 31%;
}

.india-map-wrapper .marker.velu {
    top: 71%;
    left: 42%;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-section,
    .about-section,
    .journey-section,
    .services-section,
    .global-reach-section,
    .industries-section,
    .network-map-section,
    .why-choose-section,
    .statistics-section {
        padding: 80px 0;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 45px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .about-content h2,
    .global-content h2 {
        font-size: 40px;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .stats-row,
    .stats-grid,
    .industries-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        height: 350px;
    }

    .service-overlay {
        padding: 30px;
    }

    .service-overlay h3 {
        font-size: 27px;
    }

    .global-map,
    .network-svg {
        margin-top: 40px;
    }

    .counter {
        font-size: 52px;
    }

    .cta-section {
        padding: 100px 0;
    }

    .cta-content h2 {
        font-size: 48px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-section,
    .about-section,
    .journey-section,
    .services-section,
    .global-reach-section,
    .industries-section,
    .network-map-section,
    .why-choose-section,
    .statistics-section {
        padding: 60px 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 17px;
        line-height: 1.6;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn-primary,
    .hero-btn-secondary,
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .trust-items {
        justify-content: center;
        text-align: center;
    }

    .trust-items span {
        width: calc(50% - 10px);
        font-size: 14px;
    }

    .about-image {
        margin-bottom: 35px;
    }

    .about-content h2,
    .global-content h2,
    .section-heading h2 {
        font-size: 34px;
    }

    .about-content p,
    .global-content p,
    .section-heading p {
        font-size: 16px;
    }

    .stats-row {
        margin-top: 50px;
    }

    .stats-row,
    .stats-grid,
    .services-grid,
    .industries-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .journey-wrapper {
        flex-direction: column;
    }

    .journey-item {
        width: 100%;
        max-width: 320px;
    }

    .journey-arrow {
        transform: rotate(90deg);
    }

    .service-card {
        height: 320px;
    }

    .service-overlay {
        padding: 25px;
    }

    .service-overlay h3 {
        font-size: 25px;
    }

    .industry-card {
        padding: 30px 20px;
        font-size: 19px;
    }

    .why-card {
        padding: 28px;
    }

    .stats-grid {
        margin-top: 45px;
    }

    .counter {
        font-size: 48px;
    }

    .cta-section {
        padding: 80px 15px;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .cta-content p {
        font-size: 17px;
        line-height: 1.6;
    }

    .location span,
    .marker span {
        font-size: 10px;
        padding: 4px 8px;
    }

    .marker {
        width: 13px;
        height: 13px;
        border-width: 2px;
    }

    .marker span {
        top: -34px;
    }

    .network-svg text {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .about-content h2,
    .global-content h2,
    .section-heading h2 {
        font-size: 30px;
    }

    .hero-tag,
    .section-tag,
    .cta-tag {
        font-size: 12px;
    }

    .trust-items {
        flex-direction: column;
    }

    .trust-items span {
        width: 100%;
    }

    .service-card {
        height: 280px;
    }

    .service-overlay {
        padding: 20px;
    }

    .stat-box h3 {
        font-size: 34px;
    }

    .counter {
        font-size: 42px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .location span,
    .marker span {
        font-size: 8px;
        padding: 3px 5px;
    }
}