*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

/* BODY */
body{
    background:#f5f5f5;
}

/* TOPBAR */
.topbar{
    display:flex;
    align-items:center;
    gap:12px;
    background:#ff1493;
    color:white;
    padding:8px 20px;
    height:70px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    position:relative;
    z-index:1000;
}

/* LOGO CIRCLE */
.logo{
    width:50px;
    height:50px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;
    border:2px solid white;
}

/* LOGO IMAGE */
.logo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* TITLE */
.topbar h1{
    font-size:20px;
    font-weight:600;
    white-space:nowrap;
}
/* SIDEBAR */
.sidebar{
    width:260px;
    height:100vh;
    background:linear-gradient(180deg,#ff69b4,#ff1493);
    position:fixed;
    top:0;
    left:-260px;
    padding:25px 20px;
    transition:0.3s;
    z-index:999;
    box-shadow:4px 0 15px rgba(0,0,0,0.1);
}

.sidebar.active{
    left:0;
}

.sidebar h2{
    color:white;
    text-align:center;
    margin:30px 0 40px;
    font-size:28px;
}

.sidebar a{
    display:block;
    color:white;
    text-decoration:none;
    padding:15px;
    margin-bottom:12px;
    border-radius:10px;
    transition:0.3s;
    font-size:17px;
}

.sidebar a:hover{
    background:rgba(255,255,255,0.2);
    transform:translateX(5px);
}

/* CONTENT */
.content{
    margin-top:80px;
    padding:20px;
}

/* WELCOME */
.welcome{
    text-align:center;
    padding:20px;
}

/* CARDS */
.cards{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    padding:20px;
}

.card{
    width:280px;
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    cursor:pointer;
    transition:0.3s;
    text-align: center;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.card h3{
    text-align:center;
    padding:10px;
}

/* SERVICE PAGE CARDS */

.service-cards{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
    padding:30px;
    max-width:900px;
    margin:auto;
}

.service-cards .card{
    width:100%;
}

.service-cards .card{
    width:100%;
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* CARD IMAGES */

.card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    border-top-left-radius:12px;
    border-top-right-radius:12px;
}

/* SECTIONS */
.about,
.team-section,
.clients-section{
    text-align:center;
    padding:30px;
}


.sidebar a i{
    width:20px;
    margin-right:7px;
    text-align:center;
}

/* FOOTER */
footer{
    background:#ff1493;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:20px;
}

.book-btn{
    background:#ff1493;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:0.3s;
}

.book-btn:hover{
    background:#e60073;
    transform:scale(1.05);
}