*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

:root{
--primary:#6A0DAD;
--secondary:#D4AF37;
--dark:#1A1A2E;
--light:#ffffff;
--bg:#FAF8FF;
}

body{
background:var(--bg);
color:var(--dark);
overflow-x:hidden;
}

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(255,255,255,.9);
backdrop-filter:blur(10px);
z-index:1000;
box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.logo{
font-size:32px;
font-weight:800;
color:var(--primary);
}

.logo span{
color:var(--secondary);
}

nav a{
margin-left:20px;
text-decoration:none;
color:#333;
font-weight:600;
transition:.3s;
}

nav a:hover{
color:var(--primary);
}

/* HERO */

.hero{
position:relative;
height:100vh;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.slider{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
animation:slider 15s infinite;
}

.slide:nth-child(1){
background-image:url('https://images.unsplash.com/photo-1519225421980-715cb0215aed');
animation-delay:0s;
}

.slide:nth-child(2){
background-image:url('https://images.unsplash.com/photo-1519741497674-611481863552');
animation-delay:5s;
}

.slide:nth-child(3){
background-image:url('https://images.unsplash.com/photo-1464366400600-7168b8af9bc3');
animation-delay:10s;
}

@keyframes slider{

0%{opacity:0;}
10%{opacity:1;}
30%{opacity:1;}
40%{opacity:0;}
100%{opacity:0;}

}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
z-index:1;
}

.hero-content{
position:relative;
z-index:2;
max-width:1000px;
padding:20px;
text-align:center;
}

.hero h1{
font-size:72px;
font-weight:800;
line-height:1.1;
max-width:900px;
margin:0 auto 25px;
text-shadow:0 5px 25px rgba(0,0,0,.5);
letter-spacing:-2px;
background:linear-gradient(90deg,#ffffff,#f8e7ff,#ffffff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
font-size:24px;
max-width:850px;
margin:0 auto 40px;
line-height:1.7;
color:rgba(255,255,255,.95);
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

/* BUTTONS */

.btn{
background:linear-gradient(135deg,#6A0DAD,#8E44AD);
color:white;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
display:inline-block;
transition:.4s;
box-shadow:0 15px 35px rgba(106,13,173,.35);
}

.btn:hover{
transform:translateY(-5px);
}

.btn-outline{
border:2px solid white;
padding:15px 35px;
border-radius:50px;
color:white;
text-decoration:none;
font-weight:600;
transition:.4s;
}

.btn-outline:hover{
background:white;
color:var(--primary);
}

/* ABOUT */

.about{
padding:100px 8%;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
background:white;
}

.about img{
width:100%;
height:450px;
object-fit:cover;
border-radius:25px;
}

.about h2{
font-size:48px;
color:var(--primary);
margin-bottom:20px;
}

.about p{
line-height:1.9;
margin-bottom:15px;
}

/* SERVICES */

.services{
padding:100px 8%;
text-align:center;
}

.services h2{
font-size:48px;
margin-bottom:60px;
color:var(--primary);
}

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.service-card{
background:white;
padding:35px;
border-radius:25px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.4s;
}

.service-card:hover{
transform:translateY(-15px);
box-shadow:0 20px 50px rgba(106,13,173,.2);
}

.service-card h3{
margin:15px 0;
}

/* GALLERY */

.gallery{
padding:100px 8%;
background:white;
text-align:center;
}

.gallery h2{
font-size:48px;
margin-bottom:50px;
color:var(--primary);
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.gallery-grid img{
width:100%;
height:320px;
object-fit:cover;
border-radius:20px;
transition:.4s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* STATS */

.stats{
padding:80px 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
background:white;
}

.stat-box{
background:#f8f3ff;
padding:40px;
border-radius:20px;
text-align:center;
}

.stat-box h2{
font-size:42px;
color:var(--primary);
}

/* TESTIMONIALS */

.testimonials{
padding:100px 8%;
background:#f8f3ff;
text-align:center;
}

.testimonials h2{
font-size:48px;
margin-bottom:50px;
color:var(--primary);
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.testimonial-card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* CONTACT */

.contact{
padding:100px 8%;
text-align:center;
background:white;
}

.contact h2{
font-size:48px;
color:var(--primary);
margin-bottom:25px;
}

.contact p{
font-size:18px;
margin:15px 0;
}

.contact .btn{
margin-top:20px;
}

/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:50px 20px;
}

footer h3{
margin-bottom:15px;
}

footer p{
margin:10px 0;
}

/* WHATSAPP */

.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
color:white;
text-decoration:none;
z-index:999;
}

/* MOBILE */

@media(max-width:768px){

header{
flex-direction:column;
padding:15px;
}

nav{
margin-top:10px;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:16px;
}

.about{
grid-template-columns:1fr;
text-align:center;
}

.service-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

.stats{
grid-template-columns:1fr 1fr;
}

.testimonial-grid{
grid-template-columns:1fr;
}

}