*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
}

.navbar{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 8%;

    background:rgba(2,42,103,0.95);
}

.nav-logo{
    color:white;
    font-size:24px;
    font-weight:700;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:.3s;
}

.nav-links a:hover{
    color:#C4954D;
}

.hero{
    height:90vh;
    background:url("hero.jpg") center center/cover no-repeat;
    position:relative;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
}

.hero-content h1{
    font-family:'Great Vibes',cursive;
    font-size:6rem;
}

.hero-content p{
    margin-top:10px;
    font-size:1.2rem;
}

.btn{
    display:inline-block;
    margin-top:20px;
    background:#C4954D;
    color:white;
    padding:12px 30px;
    text-decoration:none;
    border-radius:30px;
}

.logo-section{
    text-align:center;
    padding:30px;
}

.logo-section img{
    width:120px;
}

.about-photo{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:1px;
}

.service-image{
    width:140px;
    height:140px;
    flex-shrink:0;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #022A67;
}

.about{
    display:flex;
    gap:50px;
    padding:80px 10%;
    background:#022A67;
    color:white;
}

.about-text{
    flex:1;
}

.about-image{
    flex:1;
}

.placeholder{
    height:350px;
    background:#ddd;
    color:#666;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.family-trait{
    text-align:center;
    padding:80px;
}

.family-trait h2{
    font-family:'Great Vibes';
    color:#022A67;
    font-size:3rem;
}

.family-trait p{
    margin-top:15px;
}

.services{
    padding:80px 10%;
}

.services h2{
    text-align:center;
    margin-bottom:50px;
    color:#022A67;
    font-family:'Great Vibes';
    font-size:3rem;
}

.service-card{
    display:flex;
    gap:30px;
    margin-bottom:30px;
}

.service-image{
    width:140px;
    height:140px;
    border-radius:50%;
    background:#ddd;
    display:flex;
    justify-content:center;
    align-items:center;
}

.service-content{
    flex:1;
    background:#022A67;
    color:white;
    padding:30px;
    border-radius:20px;
}

.location{
    background:#C4954D;
    padding:80px 10%;
    display:flex;
    gap:50px;
}

.map-box{
    flex:1;
    height:350px;
    overflow:hidden;
    border-radius:20px;
}

.contact{
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:80px 10%;
}

.contact-logo img{
    width:180px;
}

.enquiry{
    padding:80px 10%;
    background:#022A67;
}

.enquiry h2{
    color:white;
    text-align:center;
    margin-bottom:30px;
}

form{
    max-width:600px;
    margin:auto;
}

input,
textarea{
    width:100%;
    margin-bottom:15px;
    padding:15px;
    border:none;
    border-radius:10px;
}

button{
    width:100%;
    padding:15px;
    background:#C4954D;
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
}

footer{
    background:#011A3F;
    color:white;
    text-align:center;
    padding:20px;
}

.hidden{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

.whatsapp{
    position:fixed;
    bottom:25px;
    right:25px;

    width:65px;
    height:65px;

    background:#25D366;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 5px 15px rgba(0,0,0,0.25);

    transition:0.3s;
}

.whatsapp i{
    color:white;
    font-size:34px;
}

.whatsapp:hover{
    transform:scale(1.1);
}
@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,0.7);
    }

    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

.whatsapp{
    animation:pulse 2s infinite;
}

/* Mobile Responsive */

@media(max-width:768px){

    .about{
        flex-direction:column;
        padding:50px 20px;
    }

    .service-card{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .service-image{
        width:120px;
        height:120px;
    }

    .location{
        flex-direction:column;
    }

    .contact{
        flex-direction:column;
        gap:30px;
        text-align:center;
    }

    .hero-content h1{
        font-size:4rem;
    }

    .hero-content p{
        font-size:1rem;
    }
}