*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Noto Sans Telugu',sans-serif;
}

body{
    background:#faf6ef;
    color:#222;
    line-height:1.6;
}

header{
    background:#5a0e0e;
    color:white;
    padding:15px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 3px 10px rgba(0,0,0,.2);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-area img{
    width:70px;
    height:70px;
}

.logo-area h1{
    font-size:22px;
    color:#ffd700;
}

.logo-area p{
    font-size:14px;
}

nav{
    display:flex;
    gap:20px;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#ffd700;
}

.slider{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.caption{
    position:absolute;
    bottom:60px;
    left:50%;
    transform:translateX(-50%);
    background:rgba(0,0,0,.6);
    color:white;
    padding:20px;
    border-radius:10px;
}

.caption h2{
    font-size:32px;
}

.section{
    padding:70px 10%;
}

.section h2{
    text-align:center;
    color:#5a0e0e;
    margin-bottom:25px;
    font-size:36px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

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

.card h3{
    color:#5a0e0e;
    margin-bottom:10px;
}

.btn{
    display:inline-block;
    margin:10px;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}

.call{
    background:#5a0e0e;
    color:white;
}

.whatsapp{
    background:#25D366;
    color:white;
}

footer{
    background:#5a0e0e;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:30px;
}

.floating-call{
    position:fixed;
    bottom:90px;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#5a0e0e;
    color:white;
    text-align:center;
    line-height:60px;
    font-size:28px;
    text-decoration:none;
    z-index:999;
}

.floating-whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:white;
    text-align:center;
    line-height:60px;
    font-size:28px;
    text-decoration:none;
    z-index:999;
}

@media(max-width:768px){

header{
    flex-direction:column;
    text-align:center;
}

nav{
    margin-top:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.logo-area h1{
    font-size:18px;
}

.slider{
    height:300px;
}

.caption h2{
    font-size:20px;
}

.section{
    padding:50px 5%;
}

.section h2{
    font-size:28px;
}

}