/* ---------- RESET ---------- */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#333;
    background:#f5f5f5;
}

/* ---------- HEADER ---------- */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background: rgba(17,17,17,0.65);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    z-index:999;
    box-shadow:0 3px 10px rgba(0,0,0,.3);
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo img{
    width:50px;
    height:50px;
    border-radius:50%;
    object-fit:cover;
}

.logo h1{
    margin:0;
    font-size:28px;
    color:#ffffff;
}
nav a{
    color:#fff;
    text-decoration:none;
    margin-left:25px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#ffcc00;
}

/* ---------- HERO ---------- */

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    filter: brightness(60%) !important;
}

.slider,
.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.slide{
    object-fit:cover;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h2{
    font-size:52px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    margin:8px;
    border-radius:30px;
    text-decoration:none;
    color:#fff;
    background:#d60000;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#a80000;
}

.whatsapp{
    background:#25D366;
}

.whatsapp:hover{
    background:#1ea952;
}

/* ---------- SECTION ---------- */

section{
    padding:80px 10%;
}

h2{
    text-align:center;
    margin-bottom:25px;
    font-size:36px;
}

.hero-content{
position:relative;
z-index:2;
text-align:center;
color:white;
padding-top:180px;
background:rgba(0,0,0,.35);
height:100%;
}

.hero h2{
font-size:42px;
}

.hero p{
font-size:22px;
margin:20px 0;
}
/* ---------- SERVICES ---------- */

#services{
    background:#ffffff;
}

#services ul{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    list-style:none;
    margin-top:30px;
}

#services li{
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    font-size:18px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,.12);
    transition:.3s;
}

#services li:hover{
    transform:translateY(-8px);
    background:#d60000;
    color:#fff;
}

/* ---------- GALLERY ---------- */

#gallery{
    background:#f8f8f8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:25px;
    margin-top:30px;
}

.gallery-item{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.gallery-item:hover{
    transform:translateY(-8px);
}

.gallery-item img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.gallery-item h3{
    padding:18px;
    text-align:center;
    font-size:20px;
}

/* ---------- ABOUT ---------- */

#about{
    background:#ffffff;
    text-align:center;
}

#about p{
    max-width:900px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

/* ---------- IMAGE HOVER ---------- */

.gallery-item img{
    transition:transform .4s;
}

.gallery-item:hover img{
    transform:scale(1.05);
}
#services{
padding:60px 20px;
background:#f5f5f5;
text-align:center;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
}

.service-card{
background:#fff;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,.15);
transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);
}

.service-card h3{
color:#d60000;
margin-bottom:10px;
}
.gallery-item img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

.lightbox{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.9);
    z-index:9999;
}

.lightbox img{
    display:block;
    max-width:90%;
    max-height:90%;
    margin:40px auto;
}

.close{
    position:absolute;
    top:20px;
    right:35px;
    color:white;
    font-size:40px;
    cursor:pointer;
}
.social-links{
    text-align:center;
    margin-top:20px;
}

.social-links a{
    display:inline-block;
    margin:8px;
    padding:10px 18px;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
}

.social-links a:nth-child(1){
    background:#1877F2;
}

.social-links a:nth-child(2){
    background:#E4405F;
}

.social-links a:nth-child(3){
    background:#25D366;
}

.social-links a:hover{
    opacity:0.9;
}
#blog{
    padding:60px 20px;
    background:#ffffff;
    text-align:center;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    max-width:1100px;
    margin:auto;
}

.blog-card{
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.blog-card a{
    display:inline-block;
    margin-top:15px;
    background:#d60000;
    color:#fff;
    padding:10px 18px;
    border-radius:6px;
    text-decoration:none;
}
@media (max-width:768px){

.logo h1{
    font-size:20px;
}

}
@media (max-width:768px){

.logo h1{
    display:none;
}

}
@media (max-width:768px){

header{
    padding:10px 15px;
}

.logo h1{
    display:none;
}

.logo img{
    width:45px;
    height:45px;
}

nav{
    display:none;
}

}
