body{
    font-family:Arial, Helvetica, sans-serif;
    color:#111827;
    background:#ffffff;
    margin: 0;
    padding: 0;
}

.top-bar{
    background:#111827;
    color:white;

    padding:12px 12%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    font-size:14px;
}

.background-text{
    position:fixed;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    font-size:12rem;
    font-weight:900;

    color:rgba(227,6,19,0.05);

    letter-spacing:15px;

    user-select:none;
    pointer-events:none;

    z-index:-1;

    white-space:nowrap;
}


/* NAVBAR */

header{
    position:sticky;
    top:0;
    background:white;
    z-index:1000;
    border-bottom:1px solid #eee;
}

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 12%;
}

.logo img{
    width:120px;
}

.nav-links{
    display:flex;
    gap:36px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-size:18px;
    transition:.3s;
}

.nav-links a:hover{
    color:#e30613;
}

.nav-links a.active{

    color:#d50018;

    background:#ffe9ea;

    padding:12px 18px;

    border-radius:10px;

}

.call-btn{

    background:#e30613;
    color:white;

    text-decoration:none;

    padding:14px 25px;

    border-radius:40px;

    font-weight:600;
}

.hyderabad{

    background:#fffaf8;

    padding:120px 100px;

    border-top:1px solid #ececec;
}

.section-badge{

    display:inline-block;

    background:#fde7ea;

    color:#e30613;

    padding:10px 18px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;
}

.hyderabad h2{

    margin-top:28px;

    max-width:1000px;

    font-size:72px;

    font-weight:700;

    line-height:1.05;

    letter-spacing:-2px;

    color:#111827;
}

.section-description{

    margin-top:30px;

    max-width:820px;

    font-size:24px;

    line-height:1.7;

    color:#4b5563;
}

.feature-grid{

    margin-top:80px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.feature-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:20px;

    padding:35px;

    transition:.35s ease;

    display:flex;

    flex-direction:column;
}

.feature-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.07);
}

.feature-icon{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#fff5f5;

    color:#e30613;

    font-size:28px;

    margin-bottom:25px;
}

.feature-card h3{

    font-size:34px;

    font-weight:800;

    color:#111827;

    margin-bottom:18px;
}

.feature-card p{

    font-size:19px;

    line-height:1.8;

    color:#5b6575;
}

@media(max-width:992px){

    .hyderabad{

        padding:80px 0;
    }

    .hyderabad h2{

        font-size:48px;
    }

    .section-description{

        font-size:20px;
    }

    .feature-grid{

        grid-template-columns:1fr;

    }

}

.areas{

    background:#ffffff;

    padding:110px 6%;

    
}

.areas h2{

    font-size:60px;

    font-weight:800;

    color:#111827;

    letter-spacing:-1.5px;
}

.areas-description{

    margin-top:25px;

    max-width:900px;

    font-size:22px;

    line-height:1.7;

    color:#5b6575;
}

.areas-grid{

    margin-top:55px;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:16px;
}

.area-box{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:12px;

    padding:18px 22px;

    display:flex;

    align-items:center;

    gap:14px;

    font-size:19px;

    font-weight:500;

    color:#111827;

    transition:.3s ease;

    cursor:pointer;
}

.area-box:hover{

    border-color:#e30613;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.area-box i{

    color:#e30613;

    font-size:18px;
}

.areas-footer{

    margin-top:45px;

    font-size:22px;

    color:#4b5563;
}

@media(max-width:1200px){

    .areas-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .areas{

        padding:70px 0;

    }

    .areas h2{

        font-size:42px;

    }

    .areas-description{

        font-size:18px;

    }

    .areas-grid{

        grid-template-columns:1fr;

    }

}

.why-exodus{

    padding:110px 6%;

    background:#fff;
}

.why-exodus h2{

    font-size:62px;

    font-weight:800;

    color:#111827;

    letter-spacing:-2px;

    margin-bottom:50px;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:26px;
}

.why-item{

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:28px;

    font-size:21px;

    color:#111827;

    transition:.35s;
}

.why-item:hover{

    border-color:#e30613;

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(0,0,0,.06);
}

.why-item i{

    color:#e30613;

    font-size:24px;
}

.cta-box{

    margin-top:90px;

    background:#e30613;

    border-radius:34px;

    padding:70px;

    color:#fff;
}

.cta-box h3{

    font-size:64px;

    font-weight:800;

    line-height:1.1;

    letter-spacing:-2px;
}

.cta-box p{

    margin-top:28px;

    max-width:720px;

    font-size:24px;

    line-height:1.7;

    opacity:.95;
}

.cta-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;
}

.cta-primary{

    display:inline-flex;

    align-items:center;

    gap:14px;

    background:#fff;

    color:#e30613;

    text-decoration:none;

    padding:20px 34px;

    border-radius:999px;

    font-size:22px;

    font-weight:700;

    transition:.3s;
}

.cta-primary:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 35px rgba(255,255,255,.35);
}

.cta-secondary{

    display:inline-flex;

    align-items:center;

    gap:14px;

    border:2px solid rgba(255,255,255,.35);

    color:#fff;

    text-decoration:none;

    padding:20px 34px;

    border-radius:999px;

    font-size:22px;

    font-weight:700;

    transition:.3s;
}

.cta-secondary:hover{

    background:rgba(255,255,255,.1);

    transform:translateY(-3px);
}

@media(max-width:992px){

.why-grid{

grid-template-columns:1fr;

}

.why-exodus h2{

font-size:42px;

}

.cta-box{

padding:45px;

}

.cta-box h3{

font-size:40px;

}

.cta-box p{

font-size:19px;

}

}

footer{

    background:#f8f8f8;

    margin-top:10px;
}

.footer-grid{

    padding:80px 12%;

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:80px;
}

.footer-grid img{

    width:150px;
    margin-bottom:10px;
}

.footer-grid p{

    display:block;

    text-decoration:none;

    color:#444;

    line-height:1;
}

.footer-grid a{
     display:block;

    text-decoration:none;

    color:#444;

    line-height:1.8;
}

.footer-grid h3{

    margin-bottom:6px;
}

.copyright{

    text-align:center;

    padding:25px;

    border-top:1px solid #ddd;
}

.whatsapp,
.floating-call,.instagram{

    position:fixed;
    right:20px;

    width:65px;
    height:65px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    text-decoration:none;

    font-size:28px;

    z-index:999;
}

.whatsapp{

    bottom:110px;
    background:#25d366;
}

.floating-call{

    bottom:30px;
    background:#e30613;
}

.instagram{

    bottom:190px;
    background:#E4405F;
}