*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#faf7f8;
    color:#333;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

header{
    background:linear-gradient(135deg,#ff4f81,#ff9a9e);
    color:#fff;
    padding:60px 10px;
}


.hero-image{
    flex:1;
    min-width:300px;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:450px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

/* Section */

section{
    padding:50px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:36px;
    color:#ff4f81;
}

.section-title p{
    color:#777;
}

/* About */

.about{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
}

.about div{
    flex:1;
}

/* Services */

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    color:#ff4f81;
    margin-bottom:15px;
}

.card ul{
    padding-left:20px;
}

.card li{
    margin-bottom:8px;
}

/* Reviews */

.review-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
}

.review{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.review h4{
    color:#ff4f81;
    margin-bottom:15px;
}

/* Contact */

.contact{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:40px;
}

.info{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.info h3{
    color:#ff4f81;
    margin-bottom:20px;
}

.info p{
    margin-bottom:15px;
}

.call-btn{
    display:inline-block;
    margin-top:15px;
    background:#ff4f81;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:30px;
}

footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:20px;
}

/* Responsive */

@media(max-width:768px){

.hero{
    text-align:center;
}

.hero-text h1{
    font-size:36px;
}

}

/* HERO */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slider{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity .8s ease;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{

    position:absolute;
    inset:0;

    background:rgba(0,0,0,.45);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:white;

    text-align:center;

    padding:20px;
}

.overlay h1{

    font-size:60px;

    letter-spacing:2px;

    margin-bottom:20px;
}

.overlay p{

    font-size:22px;

    margin-bottom:25px;
}

.rating{

    background:#ff4f81;

    padding:12px 28px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;
}

.btn{

    text-decoration:none;

    padding:15px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;
}

.pink{

    background:#ff4f81;

    color:white;
}

.white{

    background:white;

    color:#ff4f81;
}

.btn:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,.3);
}

.social-section{
    padding:80px 20px;
    background:#fff7fa;
    text-align:center;
}

.social-section h2{
    font-size:38px;
    color:#ff4f81;
    margin-bottom:15px;
}

.social-section p{
    color:#666;
    max-width:700px;
    margin:0 auto 50px;
}

.social-cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.social-card{
    width:320px;
    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-decoration:none;
    color:#333;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.35s;
}

.social-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.social-card .icon{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:34px;
    margin-bottom:20px;
}

.facebook .icon{
    background:#1877F2;
}

.instagram .icon{
    background:linear-gradient(45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888);
}

.social-card h3{
    margin-bottom:15px;
    font-size:26px;
}

.social-card span{
    display:inline-block;
    margin-top:20px;
    color:#ff4f81;
    font-weight:600;
}