:root{
    --primary-color:#e63946;
    --secondary-color:#111;
    --accent-color:#f1faee;
    --text-color:#333;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Poppins', sans-serif;
    line-height:1.6;
}

h1,h2,h3{
    font-weight:600;
}

section h2{
    color:var(--secondary-color);
    margin-bottom:20px;
    position:relative;
}

section h2::after{
    content:"";
    width:60px;
    height:3px;
    background:var(--primary-color);
    display:block;
    margin:10px auto 0;
}

/* NAVBAR */

.navbar{
    position:sticky;
    top:0;
    z-index:1000;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 80px;
    background:var(--secondary-color);
}

/* HAMBURGER */

.menu-toggle{
    display:none;
    font-size:28px;
    color:white;
    cursor:pointer;
}

.logo{
    display:flex;
    align-items:center;
    font-size:22px;
    font-weight:600;
    color:white;
}

.logo-icon{
    margin-right:8px;
    font-size:24px;
}

.logo-text{
    letter-spacing:1px;
}

.nav-links{
    list-style:none;
    display:flex;
}

.nav-links li{
    margin-left:25px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#e63946;
}

/* HERO SECTION */

.hero{
    position:relative;
    height:90vh;
    overflow:hidden;
}

.slider{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:white;
    background:rgba(0,0,0,0.5);
    padding:40px;
}

.hero-content h1{
    font-size:40px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    margin-bottom:25px;
}

.btn{
    background:var(--primary-color);
    color:white;
    padding:12px 25px;
    border-radius:30px;
    text-decoration:none;
    font-weight:500;
    transition:0.3s;
}

.btn:hover{
    background:#c92c3a;
    transform:translateY(-2px);
}

.floating-buttons{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px; 
    z-index: 999;
}

.floating-buttons a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 50%;
    color: white;
    font-weight: 500;
    width: 55px;
    height: 55px;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp-btn{
    background: #25D366;
}

.call-btn{
    background: #e63946;
}

/* HOVER EFFECT */
.floating-buttons a:hover{
    transform: translateY(-3px) scale(1.05);
}

/* ABOUT SECTION */

.about{
    padding:80px 10%;
}

.about-container{
    display:flex;
    align-items:center;
    gap:50px;
}

.about-text{
    flex:1;
}

.about-text h2{
    font-size:32px;
    margin-bottom:20px;
}

.about-text p{
    margin-bottom:15px;
    line-height:1.6;
}

.about-image{
    flex:1;
}

.about-image img{
    width:100%;
    border-radius:10px;
}

/* SERVICES SECTION */

.services{
    background:#f5f5f5;
    padding:80px 10%;
    text-align:center;
}

.services h2{
    font-size:32px;
    margin-bottom:40px;
}

.services-container{
    display:flex;
    gap:30px;
    justify-content:center;
}

.service-card{
    background:white;
    padding:30px;
    border-radius:10px;
    width:300px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-8px);
}

.service-card h3{
    margin-bottom:15px;
}

/* GALLERY SECTION */

.gallery{
    padding:80px 10%;
    text-align:center;
}

.gallery h2{
    font-size:32px;
    margin-bottom:40px;
}

.gallery-container{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:20px;
}

.gallery-item img{
    width:100%;
    border-radius:10px;
    transition: transform 0.3s;
}

.gallery-item img:hover{
    transform:scale(1.08);
}

/* PROCESS SECTION */

.process{
    background:#111;
    color:white;
    padding:80px 10%;
    text-align:center;
}

.process h2{
    font-size:32px;
    margin-bottom:50px;
}

.process-container{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.process-step{
    background:#1d1d1d;
    padding:30px;
    width:250px;
    border-radius:10px;
}

.process-number{
    width:40px;
    height:40px;
    background:#e63946;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px auto;
    font-weight:bold;
}

/* FOOTER */

.footer{
    background:#111;
    color:white;
    padding:50px 10% 20px;
}

.footer-container{
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer-section{
    max-width:300px;
}

.footer-section h3{
    margin-bottom:15px;
}

.footer-section ul{
    list-style:none;
}

.footer-section ul li{
    margin-bottom:10px;
}

.footer-section ul li a{
    text-decoration:none;
    color:white;
}

.footer-bottom{
    text-align:center;
    margin-top:30px;
    border-top:1px solid #444;
    padding-top:15px;
}

/* ABOUT PAGE */

.about-page{
    padding:80px 10%;
}

.about-page-container{
    display:flex;
    align-items:center;
    gap:50px;
}

.about-page-text{
    flex:1;
}

.about-page-text h1{
    font-size:36px;
    margin-bottom:20px;
}

.about-page-text p{
    margin-bottom:15px;
    line-height:1.6;
}

.about-page-image{
    flex:1;
}

.about-page-image img{
    width:100%;
    border-radius:10px;
}

/* FEATURES */

.features{
    background:#f5f5f5;
    padding:80px 10%;
    text-align:center;
}

.features h2{
    font-size:32px;
    margin-bottom:40px;
}

.features-container{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.feature-card{
    background:white;
    padding:30px;
    width:250px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* SERVICES PAGE */

.services-page{
    padding:80px 10%;
    text-align:center;
}

.services-page h1{
    font-size:36px;
    margin-bottom:10px;
}

.services-page p{
    color:#555;
}

/* SERVICES LIST */

.services-list{
    padding:50px 10%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.service-box{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.service-box h3{
    margin-bottom:15px;
}

/* GALLERY PAGE */

.gallery-page-header{
    padding:80px 10%;
    text-align:center;
}

.gallery-page-header h1{
    font-size:36px;
    margin-bottom:10px;
}

.gallery-page-header p{
    color:#555;
}

/* GALLERY GRID */

.gallery-page{
    padding:50px 10%;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    border-radius:10px;
    transition:transform 0.3s;
}

.gallery-grid img:hover{
    transform:scale(1.05);
}

/* CONTACT PAGE */

.contact-header{
    padding:80px 10%;
    text-align:center;
}

.contact-header h1{
    font-size:36px;
    margin-bottom:10px;
}

.contact-header p{
    color:#555;
}

/* CONTACT SECTION */

.contact-section{
    padding:60px 10%;
}

.contact-container{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.contact-info{
    flex:1;
}

.contact-form{
    flex:1;
}

.contact-form form{
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:5px;
}

.contact-form button{
    background:#e63946;
    color:white;
    padding:12px;
    border:none;
    border-radius:5px;
    cursor:pointer;
}

.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    display:none;
    justify-content:center;
    align-items:center;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
}

/* RESPONSIVE DESIGN */

@media (max-width: 768px){

/* NAVBAR */

.navbar{
    flex-direction:column;
    padding:20px;
}

/* NAVBAR MOBILE */

.nav-links{
    position:absolute;
    top:70px;
    right:0;
    background:#111;
    width:100%;
    flex-direction:column;
    align-items:center;
    display:none;
}

.nav-links li{
    margin:15px 0;
}

.nav-links.active{
    display:flex;
}

.menu-toggle{
    display:block;
}


/* HERO */

.hero-content h1{
    font-size:28px;
}

.hero-content p{
    font-size:16px;
}


/* ABOUT */

.about-container{
    flex-direction:column;
}


/* ABOUT PAGE */

.about-page-container{
    flex-direction:column;
}


/* SERVICES SECTION */

.services-container{
    flex-direction:column;
    align-items:center;
}


/* SERVICES PAGE */

.services-list{
    grid-template-columns:1fr;
}


/* GALLERY */

.gallery-container{
    grid-template-columns:1fr;
}

.gallery-grid{
    grid-template-columns:1fr;
}


/* PROCESS */

.process-container{
    flex-direction:column;
    align-items:center;
}


/* CONTACT */

.contact-container{
    flex-direction:column;
}

}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}