*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins, sans-serif;
}

body{
background:white;
}

/* HEADER */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 40px;
background:white;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

.brand-text{
font-size:36px;
font-family:'Playfair Display', serif;
font-weight:600;
color:#c89216;
letter-spacing:2px;
}

.whatsapp{
background:#25D366;
color:white;
padding:8px 18px;
border-radius:8px;
text-decoration:none;
font-size:14px;
}


/* HERO SECTION */

.hero{
background-image:url("background.jpeg");
background-size:cover;
background-position:center;
height:100vh;
display:flex;
align-items:center;
padding-left:80px;
color:white;
position:relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

.hero-content{
position:relative;
z-index:2;
max-width:600px;
}

.hero-logo{
width:620px;
margin-bottom:20px;
}

.hero h1{
font-size:40px;
margin-bottom:30px;
}

/* DEMO BUTTON */

.demo-btn{
display:inline-block;
background: #fff;
color:#0d2a63;
padding:14px 30px;
border-radius:10px;
text-decoration:none;
font-weight:600;
}

.demo-btn:hover{
background:#ffe4b5;
}


/* DESCRIPTION SECTION */

.description{
background:#f0f2f5;
padding:70px 20px;
text-align:center;
}

.description h2{
font-size:32px;
margin-bottom:20px;
color:#c89216;
}

.description p{
max-width:800px;
margin:15px auto;
font-size:17px;
line-height:1.6;
color:#0d2a63;
}


/* WHY CHOOSE SECTION */

.why-section{
padding:80px 20px;
background:#f5f5f5;
text-align:center;
}

.why-section h2{
font-size:32px;
margin-bottom:50px;
color:#c89216;
}

.why-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:1100px;
margin:auto;
}

.why-card{
background:white;
padding:35px 25px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:all 0.3s ease;
cursor:pointer;
}

.why-card:hover{
background:#dff3ff;
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.why-card:hover h3{
color:#0077cc;
}

.why-card h3{
margin-bottom:10px;
color:#c89216;
}

.why-card p{
font-size:15px;
color:#0d2a63;
}

/* IMAGE SLIDER */

/* IMAGE SLIDER FINAL */

.image-slider{
width:100%;
overflow:hidden;
}

.slider{
display:flex;
width:100%;
animation:slide 24s infinite;
}

.slider img{
width:100%;
min-width:100%;   /* ensures 1 image per slide */
height:auto;      /* prevents bottom cutting */
display:block;
flex-shrink:0;
}

/* SLIDE LEFT (8 images, 3 sec each) */

@keyframes slide{

0%{transform:translateX(0);}
12.5%{transform:translateX(0);}

14%{transform:translateX(-100%);}
25%{transform:translateX(-100%);}

26.5%{transform:translateX(-200%);}
37.5%{transform:translateX(-200%);}

39%{transform:translateX(-300%);}
50%{transform:translateX(-300%);}

51.5%{transform:translateX(-400%);}
62.5%{transform:translateX(-400%);}

64%{transform:translateX(-500%);}
75%{transform:translateX(-500%);}

76.5%{transform:translateX(-600%);}
87.5%{transform:translateX(-600%);}

89%{transform:translateX(-700%);}
100%{transform:translateX(-700%);}

}
/* ENQUIRY FORM */

.enquiry{
padding:70px 20px;
text-align:center;
background:#f8f8f8;
}

.enquiry h2{
margin-bottom:30px;
color:#c89216;
}

.enquiry form{
max-width:450px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.enquiry input,
.enquiry textarea{
padding:12px;
border-radius:8px;
border:1px solid #ccc;
font-size:16px;
}

.enquiry button{
background:#f59b0b;
color:white;
border:none;
padding:14px;
border-radius:10px;
font-size:18px;
cursor:pointer;
}


/* FOOTER */

.footer{
background:#111;
color:white;
padding:40px 20px;
text-align:center;
}

.footer-bottom{
margin-top:20px;
font-size:14px;
}


/* MOBILE DESIGN */

@media(max-width:900px){

.hero{
padding:40px;
text-align:center;
justify-content:center;
}

.hero-logo{
width:220px;
}

.hero h1{
font-size:28px;
}

.why-container{
grid-template-columns:1fr;
}
@media(max-width:768px){

.image-slider{
height:250px;
}

.slider img{
height:100%;
object-fit:cover;
}

}
}