/* General */
body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
background:#e9e4d8;
line-height:1.6;
}

/* Header */
header{
background:#b71c1c;
padding:10px 0;
}

.container{
width:90%;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
height:60px;
}

/* Navigation */
nav a{
margin-left:25px;
text-decoration:none;
color:white;
font-weight:bold;
font-size:16px;
}

nav a:hover{
text-decoration:underline;
}

/* Hero */
.hero{
position:relative;
width:100%;
height:450px;
overflow:hidden;
color:white;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

/* 🔥 FIXED SLIDER */
.hero-slider{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:0;
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;

opacity:0;
z-index:0;

transition:opacity 1s ease-in-out;
}

.slide.active{
opacity:1;
z-index:1; /* IMPORTANT FIX */
}

/* Overlay */
.hero::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
z-index:2;
}

/* Text layer */
.hero-text{
position:relative;
z-index:3; /* ABOVE overlay */
max-width:800px;
padding:20px;
}

.hero h1{font-size:48px;}
.hero p{font-size:18px;}

.hero button{
padding:12px 25px;
border:none;
background:white;
color:#b71c1c;
cursor:pointer;
border-radius:4px;
}

/* Services */
.services{
padding:60px 20px;
text-align:center;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
width:90%;
margin:auto;
}

.card{
background:white;
padding:25px;
border-radius:6px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
transition:all 0.3s ease;
cursor:pointer;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* About */
.about{
background:#b71c1c;
color:white;
padding:80px 20px;
text-align:center;
}

.about h2{font-size:36px;}
.about p{max-width:800px;margin:auto;font-size:18px;}

/* Contact */
.contact{
padding:60px 20px;
text-align:center;
background:#e9e4d8;
}

.contact-container{
display:flex;
gap:40px;
justify-content:center;
flex-wrap:wrap;
}

.contact-card{
background:white;
padding:30px;
width:320px;
border-radius:8px;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

.profile-photo{
width:160px;
height:160px;
border-radius:50%;
}

.map{width:420px;max-width:90%;}

/* Footer */
footer{
background:#222;
color:white;
text-align:center;
padding:20px;
}

/* WhatsApp */
.whatsapp-button{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
}

/* ===== PREMIUM SECTIONS ===== */

.service-detail{
padding:100px 20px;
background:#e9e4d8;   /* SAME AS BODY */
border-bottom:1px solid #ddd;
}

.service-row{
display:flex;
align-items:center;
gap:50px;
max-width:1100px;
margin:auto;
}

.service-row.reverse{
flex-direction:row-reverse;
}

.service-img{
width:50%;
border-radius:12px;
object-fit:cover;
transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.service-img:hover{
transform:scale(1.05);
box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.service-text{
width:50%;
}

.service-text h2{
color:#b71c1c;
font-size:26px;
}

.service-text p{
line-height:1.7;
color:#333;
}

/* Reveal Animation */
.reveal{
opacity:0;
transform:translateY(60px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}
/* ===== ENQUIRY FORM FIX ===== */

.contact-form {
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  display: block;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form button {
  background: #b71c1c;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #8c0000;
}
