*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#000000;
    color:#ffffff;
}

header{
    height: 100px;E3DED8
    width 100px;
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding: 8px 5%;
    background:#000000;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.logo{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.logo-circle {
    width: 64px;
    height: 64px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-circle img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}
 .logo-text {
    color: white;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: 'cormorant garamond', serif;   
 }

.hero{
    height:100vh;
    background:url("background.jpg") center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    padding:50px;
    color:white;
}

.hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    margin-bottom:30px;
}

button{
    padding:15px 35px;
    border:none;
    background:#000000;
    color:white;
    cursor:pointer;
    font-size:16px;
    border-radius:5px;
}

button:hover{
    background:#3a3a3a;
}

.section{
    padding:100px 8%;
}

.title{
    text-align:center;
    margin-bottom:50px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background:#252525;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.contact{
    background:linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.8)), url("footerbackground.jpg") center/cover no-repeat;
    text-align:center;
    color:white
    padding 200px 60px;
    height: 350px;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    text-align: center;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.contact-info i {
    font-size: 18px;
    color: #fffcfc;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
footer{
    background:#000000;
    color:#ffffff;
    text-align:center;
    padding:20px;
}