
body{
margin:0;
font-family:sans-serif  ;
background-color: transparent;
}

/* HEADER */

header{
background:#11111154;
color:white;
padding:15px 40px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index: 1000;
}

.logo{
display:flex;
align-items:center;
justify-content: left;
/* gap: 10px; */
height: 50px;
width: 50px;
}

.logo img{
width:100px;
height: 80px;
}

.logo h1{
color:#eee89c;
font-size:30px;
font-weight: 800;
display: flex;
position: absolute;
margin-left: 90px;
margin-top: 0px;
font-family: Georgia, 'Times New Roman', Times, serif;
}

.logo h4{
    display: flex;
    position: absolute;
    margin-top: 50px;
    font-size: small;
    margin-left: 150px;
    font-weight: 100;
    font-style: italic;

}

/* .logo h1 span{
gap: -10px;
position: absolute;
display: flex;
font-size: 20px;
font-weight: 100;
font-family: Georgia, 'Times New Roman', Times, serif;
} */

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

nav a:hover{
color:#ffa500;
}

/* HERO */

.hero{
height: 100vh;
padding: 5vh;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
background-size:cover;
background-position:center;
margin-top: -80px;
}

.hero-overlay{
background:rgba(0,0,0,0.5);
padding:60px;
border-radius:10px;
}

.hero h2{
font-size:45px;
color:#ffffff;
text-shadow:2px 2px 6px black;
/* transform:translate(30px,30px); */
}

.hero h2:hover{
    color: #ffa600;
}

/* SERVICES */

.services{
padding:60px 20px;
text-align:center;
background:white;
}

.service-container{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.service{
width:230px;
background:#f9f9f9;
padding:20px;
border-radius:10px;
transition:0.3s;
cursor:pointer;
}

.service:hover{
background:#ffa500;
color:white;
transform:translateY(-5px);
}

/* CONTACT */

.contact{
background:#222;
color:white;
padding:60px 20px;
text-align:center;
}

.contact input,
.contact textarea{
width:80%;
max-width:400px;
padding:10px;
margin:8px;
border:none;
border-radius:5px;
}

.contact button{
background:#ffa500;
border:none;
padding:10px 25px;
cursor:pointer;
}
/* 
.Projects{
padding: 200px 20px;
background-color: #333;
display: flex;
align-items: center;
justify-content: center;

}

.Projects h2{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -400px;
    margin-left: 500px;
    font-size:40px;
    margin-bottom:40px;
    color:#ffb400;
} */

/* .Projects-container {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
height: 200px;
width: 20px;
position: relative;
margin-top: -50px;
padding: 20px;
color: #000000;
z-index: 1000;

} */
/* .container .button{
    height: 20px;
}
.container{
width: 100%;
height: 300px;
border: 2px solid black;
margin: 50px 50px;
display: flex;
gap: 20px;
margin-top: 150px;
padding: 20px;
}

.contain1, .contain2{
   
    width: 200px;
    height: 300px;
    border: 2px dotted black;
} */
/* 
.Projects{
    text-align: center;
    padding: 60px 20px; 
} */

/* .Projects h2{
    margin-bottom: 40px;
} */

/* .container{
    max-width: 1100px;
    margin: 0 auto;              centers the grid */
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.project-box{
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s;
    background:#2a2a2a;
    border-radius:10px;
    overflow:hidden;
    transition:0.3s;
}

.project-box img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-box h3{
    padding: 15px;
}

.project-box:hover{
    transform: translateY(-8px);
}

#Projects{
scroll-margin-top: 100px;
}

.project-box{
    position:relative;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:200px;
    background:rgba(0,0,0,0.6);
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:0.3s;
    font-size:20px;
}

.project-box:hover .overlay{
    opacity:1;
}

.project-box:hover{
    transform: translateY(-10px) scale(1.03);
    box-shadow:0 15px 35px rgba(0,0,0,0.4);
}
#Projects{
background:#111;
padding:80px 20px;
} */

.projects{
text-align:center;
padding:80px 20px;
}

.carousel{
display:flex;
align-items:center;
justify-content:center;
position:relative;
}

.cards{
display:flex;
gap:20px;
overflow:hidden;
width:800px;
}

.card{
width:250px;
transition:0.4s;
opacity:0.4;
filter:blur(3px);
transform:scale(0.9);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
}

.card.active{
opacity:1;
filter:none;
transform:scale(1);
}

.nav{
font-size:30px;
background:none;
border:none;
cursor:pointer;
padding:20px;
}
/* 
.projects{
padding:80px 20px;
background:#111;
}

.projects h2{
text-align:center;
color:#ffb400;
font-size:40px;
margin-bottom:40px;
}

.project-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1100px;
margin:auto;
}

.project-card{
position:relative;
overflow:hidden;
border-radius:10px;
cursor:pointer;
}

.project-card img{
width:100%;
height:250px;
object-fit:cover;
transition:0.5s;
}

.project-info{
position:absolute;
bottom:0;
left:0;
width:100%;
background:rgba(0,0,0,0.6);
color:white;
text-align:center;
padding:15px;
}*/

.project-card:hover img{
transform:scale(1.1); 
 } 



/* FOOTER */

footer{
background:#111;
color:white;
padding:40px;
text-align:center;
}

.social-icons{
margin-top:10px;
}

.social-icons a{
color:white;
margin:10px;
font-size:20px;
}


/* WHATSAPP BUTTON */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:30px;
text-decoration:none;
}

.footer{
background:#111;
color:white;
padding:60px 20px 20px;
}

.footer-container{
max-width:1200px;
margin:auto;
display:flex;
flex-wrap:wrap;
justify-content:space-between;
gap:40px;
}

.footer-col{
flex:1;
min-width:220px;
}

.footer-col h3{
color:#ffa500;
margin-bottom:15px;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:#ddd;
text-decoration:none;
}

.footer-col ul li a:hover{
color:#ffa500;
}

.footer-col p{
margin:8px 0;
color:#ccc;
}

.social-icons{
margin-top:10px;
}

.social-icons a{
color:white;
margin-right:12px;
font-size:20px;
transition:0.3s;
}

.social-icons a:hover{
color:#ffa500;
}

.footer-bottom{
border-top:1px solid #333;
margin-top:40px;
padding-top:15px;
text-align:center;
font-size:14px;
color:#aaa;
}
.hero{
position:relative;
height:90vh;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1s;
}

.slide.active{
opacity:1;
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:white;
background:rgba(0,0,0,0.5);
padding:25px;
border-radius:10px;
}

.dots{
position:absolute;
bottom:20px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:10px;
}

.dot{
width:12px;
height:12px;
background:#bbb;
border-radius:50%;
cursor: pointer;
}

.dot.active{
background:#ffa500;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1.5s ease;
}

.slide.active{
opacity:1;
}