@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

/* Navbar */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo img{
height:80px;
width: 100px;
}

.nav-links{
display:flex;
list-style:none;
gap:30px;
}

.nav-links a{
text-decoration:none;
color:#333;
font-size:16px;
font-weight:500;
}

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
}


/* Banner */

.banner{
display:flex;
align-items:center;
justify-content:space-between;
padding:80px 8%;
gap:40px;
background: #000;
color: #fff;
}

.banner-text{
flex:1;
}

.banner-text h1{
font-size:48px;
margin-bottom:20px;
color:#fff;
}

.banner-text p{
font-size:18px;
margin-bottom:25px;
color:#e8e8e8;
line-height: 1.5;
}

.btn{
display:inline-block;
padding:12px 28px;
background:#fff;
color:#000;
text-decoration:none;
border-radius:5px;
}

.banner-image{
flex:1;
}

.banner-image img{
width:100%;
max-width:500px;
}


/* Responsive */

@media (max-width:900px){

.banner{
flex-direction:column;
text-align:center;
}

.banner-text h1{
font-size:36px;
}

}


/* Mobile Menu */

@media (max-width:768px){

.nav-links{
position:absolute;
top:70px;
right:0;
background:#fff;
width:100%;
flex-direction:column;
align-items:center;
gap:20px;
padding:20px 0;
display:none;
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}

}

/* Google Font */


.about-section{
    font-family: 'Poppins', sans-serif;
    padding:60px 8%;
    background:#f8f9fb;
}

.about-title{
    text-align:center;
    font-size:36px;
    margin-bottom:50px;
    letter-spacing:2px;
    color:#555353
}

.about-container{
    display:flex;
    align-items:center;
    gap:50px;
}

.about-image img{
    width:1375px;
    max-width:100%;
    border-radius:50%;
    height:450px
}

.about-content h3{
    font-size:22px;
    margin-top:20px;
}

.about-content p{
    font-size:16px;
    line-height:1.7;
    margin-top:10px;
}

.about-content ul{
    margin-top:10px;
    padding-left:18px;
}

.about-content li{
    margin-bottom:8px;
}
.team-section{
    padding:70px 10%;
    background:#f3f3f3;
    text-align:center;
    font-family: 'Poppins', sans-serif;
}

.team-title{
    font-size:36px;
    letter-spacing:2px;
    margin-bottom:50px;
    color:#555353
}

.team-container{
    display:flex;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}

.team-member{
    text-align:center;
}

.team-member img{
    width:300px;
    height:300px;
    border-radius:50%;
    object-fit:cover;
}

.team-member h3{
    margin-top:15px;
    font-size:18px;
}
/* Responsive */
@media (max-width:900px){

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-image img{
        width:250px;
        height: 250px;
    }
	
    .about-content p{
        font-size:16px;
        line-height:1.7;
        margin-top:10px;
        text-align:justify;
    }

}
.appointment-section{
    padding:60px 10%;
    background:#949191;
    font-family: 'Poppins', sans-serif;
}

.appointment-title{
    text-align:center;
    font-size:36px;
    letter-spacing:4px;
    margin-bottom:50px;
    color:#fff;
}

.appointment-card{
    display:flex;
    align-items:center;
    gap:30px;
    background:white;
    padding:25px;
    border-radius:6px;
}

.appointment-image img{
    width:200px;
    border-radius:4px;
}

.appointment-info{
    flex:1;
}

.appointment-info h3{
    font-size:22px;
    margin-bottom:5px;
}

.time{
    color:#777;
    margin-bottom:10px;
}

.more-link{
    text-decoration:none;
    color:#666;
}

.appointment-button button{
    background:#d6b676;
    border:none;
    padding:12px 25px;
    font-weight:600;
    cursor:pointer;
}

.appointment-button button:hover{
    background:#c5a45e;
}

@media (max-width:768px){

    .appointment-card{
        flex-direction:column;
        text-align:center;
    }

    .appointment-image img{
        width:100%;
        max-width:300px;
    }

}

.newsletter {
    background: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.newsletter-container h2 {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.newsletter-container p {
    color: #555;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.newsletter-form button {
    padding: 12px 25px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #333;
}
.footer {
    background: black;
    color: white;
    text-align: center;
    padding: 25px 10px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.booking-container{
max-width:900px;
margin:auto;
background:white;
padding:40px;
border-radius:10px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
    margin-top: 100px;
    margin-bottom: 100px;
}

.booking-wrapper{
display:flex;
justify-content:space-between;
gap:40px;
}

.calendar-section{
flex:1;
}

.service-section{
flex:1;
}

.time-slots{
margin-top:40px;
display:flex;
flex-wrap:wrap;
gap:15px;
}

.slot{
padding:12px 20px;
border:1px solid #ccc;
background:white;
cursor:pointer;
border-radius:6px;
}

.slot:hover{
background:#007bff;
color:white;
}

.book-btn{
margin-top:30px;
text-align:center;
}

.book-btn button{
padding:12px 40px;
background:black;
color:white;
border:none;
border-radius:6px;
cursor:pointer;
}

.popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
justify-content:center;
align-items:center;
}

.form-box{
background:white;
padding:30px;
width:350px;
border-radius:10px;
}

.form-box input,
.form-box textarea{
width:100%;
padding:10px;
margin-top:10px;
border:1px solid #ccc;
border-radius:5px;
}

.form-box button{
margin-top:15px;
padding:10px 20px;
}

.contact{
padding:40px 10%;
background:#111;
color:#fff;
}

/* Top title */
.contact-header{
text-align:center;
margin-bottom:50px;
}

.contact-header h2{
font-size:40px;
margin-bottom:10px;
}

.contact-header p{
color:#ccc;
max-width:600px;
margin:auto;
}

/* Layout */
.contact-container{
display:flex;
justify-content:space-between;
gap:50px;
flex-wrap:wrap;
}

/* Contact Info */
.contact-info{
flex:1;
}

.info-box{
display:flex;
align-items:center;
margin-bottom:25px;
}

.info-box span{
font-size:24px;
background:#fff;
color:#000;
padding:10px;
border-radius:50%;
margin-right:15px;
}

/* Contact Form */
.contact-form{
flex:1;
background:#fff;
color:#000;
padding:30px;
max-width:400px;
border-radius:5px;
}

.contact-form input,
.contact-form textarea{
width:100%;
border:none;
border-bottom:1px solid #aaa;
padding:10px;
margin-bottom:20px;
outline:none;
}

.contact-form textarea{
height:80px;
resize:none;
}

.contact-form button{
width:100%;
padding:12px;
border:none;
background:#00a8b5;
color:#fff;
cursor:pointer;
}

@media (min-width: 768px) and (max-width: 1024px) {
.team-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}


.tabs-section{
padding:80px 10%;
text-align:center;
font-family:Arial;
}

.tabs-title{
font-size:32px;
margin-bottom:30px;
}

/* Tabs buttons */

.tabs{
display:flex;
justify-content:center;
gap:20px;
margin-bottom:30px;
flex-wrap:wrap;
}

.tab-btn{
padding:10px 25px;
border:none;
background:#eee;
cursor:pointer;
font-size:16px;
border-radius:5px;
transition:0.3s;
}

.tab-btn:hover{
background:#00a8b5;
color:#fff;
}

.tab-btn.active{
background:#00a8b5;
color:#fff;
}

/* Content */

.tab-content{
display:none;
max-width:600px;
margin:auto;
}

.tab-content.active{
display:block;
}
