/* ============================= */
/* GLOBAL RESET */
/* ============================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    line-height:1.6;
}
.contact-form select{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
}

.container{
    width:90%;
    margin:auto;
}

/* ============================= */
/* HEADER */
/* ============================= */

.main-header{
    width:100%;
    background:#111;
    padding:15px 0;
    position:sticky;
    top:0;
    z-index:999;
}

.main-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo a{
    color:#fff;
    font-size:22px;
    font-weight:600;
    text-decoration:none;
}

nav ul{
    list-style:none;
    display:flex;
    align-items:center;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

nav ul li a:hover{
    color:#ff9800;
}

/* Animated Button */
.btn-consult{
    background:linear-gradient(45deg,#ff9800,#ff5722);
    padding:8px 18px;
    border-radius:30px;
    color:#fff !important;
    font-weight:500;
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(255,87,34,0.7);}
    70%{box-shadow:0 0 0 12px rgba(255,87,34,0);}
    100%{box-shadow:0 0 0 0 rgba(255,87,34,0);}
}

/* Mobile */
.menu-toggle{
    display:none;
    font-size:26px;
    color:#fff;
    cursor:pointer;
}

@media(max-width:991px){

    nav{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#222;
        display:none;
        flex-direction:column;
        padding:20px 0;
    }

    nav ul{
        flex-direction:column;
    }

    nav ul li{
        margin:15px 0;
        text-align:center;
    }

    nav.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }
}

/* ============================= */
/* HERO SECTION */
/* ============================= */

.hero{
    height:90vh;
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url('../images/hero.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    margin-bottom:25px;
}

.hero-btn{
    padding:12px 30px;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    color:#fff;
    border-radius:30px;
    text-decoration:none;
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */

.about-section{
    padding:80px 0;
    text-align:center;
}

.section-btn{
    display:inline-block;
    margin-top:20px;
    padding:10px 25px;
    background:#111;
    color:#fff;
    border-radius:25px;
    text-decoration:none;
}

/* ============================= */
/* SERVICES SECTION */
/* ============================= */

.services-section{
    padding:80px 0;
    background:#f5f5f5;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
    font-size:28px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-box{
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.service-box:hover{
    transform:translateY(-10px);
}

/* ============================= */
/* WHY CHOOSE US */
/* ============================= */

.why-section{
    padding:80px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-box{
    background:#111;
    color:#fff;
    padding:30px;
    text-align:center;
    border-radius:10px;
}

/* ============================= */
/* SERVICE QUALITY */
/* ============================= */

.quality-section{
    padding:80px 0;
    background:#f5f5f5;
    text-align:center;
}

/* ============================= */
/* CONTACT STRIP */
/* ============================= */

.contact-strip{
    background:linear-gradient(45deg,#ff9800,#ff5722);
    padding:30px 0;
    color:#fff;
}

.contact-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.strip-btn{
    background:#fff;
    color:#000;
    padding:10px 25px;
    border-radius:25px;
    text-decoration:none;
}

/* ============================= */
/* PAGE BANNER */
/* ============================= */

.page-banner{
    background:#111;
    color:#fff;
    padding:60px 0;
    text-align:center;
}

/* ============================= */
/* ABOUT PAGE */
/* ============================= */

.about-page{
    padding:80px 0;
}

.about-page h2{
    margin-top:40px;
    margin-bottom:15px;
    font-size:22px;
}

.about-page p{
    color:#555;
}

/* ============================= */
/* SERVICES PAGE */
/* ============================= */

.services-page{
    padding:80px 0;
}

.services-page h2{
    margin-top:40px;
    margin-bottom:15px;
    font-size:22px;
}

.services-page p{
    color:#555;
}

.services-list{
    margin-top:20px;
    padding-left:20px;
}

.services-list li{
    margin-bottom:10px;
}

/* ============================= */
/* FOOTER */
/* ============================= */

.main-footer{
    background:#111;
    color:#fff;
    padding:60px 0 0;
}

.footer-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.footer-col h3{
    margin-bottom:20px;
    font-size:18px;
    color:#ff9800;
}

.footer-col p{
    font-size:14px;
    color:#ccc;
}

.footer-links{
    list-style:none;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
}

.footer-links a:hover{
    color:#ff9800;
}

.footer-bottom{
    text-align:center;
    padding:20px 0;
    margin-top:40px;
    background:#000;
    font-size:14px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-flex{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){

    .services-grid,
    .why-grid,
    .footer-container{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:28px;
    }
}

/* SERVICES CARD STYLE */

.services-page{
    padding:80px 0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-content{
    padding:20px;
    text-align:center;
}

.service-content h3{
    margin-bottom:10px;
    font-size:18px;
}

.service-content p{
    font-size:14px;
    color:#555;
    margin-bottom:20px;
}

.call-btn{
    display:inline-block;
    padding:8px 20px;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    color:#fff;
    border-radius:25px;
    text-decoration:none;
    transition:0.3s;
}

.call-btn:hover{
    transform:scale(1.05);
}

/* Responsive */
@media(max-width:991px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .services-grid{
        grid-template-columns:1fr;
    }
}

/* Homepage Services */

.services-section{
    padding:80px 0;
    background:#f5f5f5;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
    text-align:center;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.service-content{
    padding:20px;
}

.service-content h3{
    margin-bottom:15px;
    font-size:18px;
}

.call-btn{
    display:inline-block;
    padding:8px 20px;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    color:#fff;
    border-radius:25px;
    text-decoration:none;
    transition:0.3s;
}

.call-btn:hover{
    transform:scale(1.05);
}

/* Responsive */

@media(max-width:991px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .services-grid{
        grid-template-columns:1fr;
    }
}
/* HERO SECTION */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero-img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;   /* best responsive crop */
    top:0;
    left:0;
}

.hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    top:0;
    left:0;
}

.hero-content{
    position:relative;
    z-index:2;
}

/* Responsive */

@media(max-width:600px){
    .hero h1{
        font-size:28px;
    }
}

/* CONTACT PAGE */

.contact-section{
    padding:80px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info h2,
.contact-form h2{
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:20px;
    color:#555;
}

.vendor-btn{
    padding:10px 25px;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    border:none;
    color:#fff;
    border-radius:25px;
    cursor:pointer;
}

/* Form */
.contact-form form{
    display:flex;
    flex-direction:column;
}

.contact-form input,
.contact-form textarea{
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
}

.contact-form textarea{
    min-height:120px;
}

.submit-btn{
    padding:10px;
    background:#111;
    color:#fff;
    border:none;
    border-radius:25px;
    cursor:pointer;
}

/* Vendor Modal */

.vendor-modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
}

.vendor-modal-content{
    background:#fff;
    padding:40px;
    width:90%;
    max-width:500px;
    border-radius:10px;
    position:relative;
}

.close-btn{
    position:absolute;
    top:10px;
    right:15px;
    font-size:22px;
    cursor:pointer;
}

/* Responsive */

@media(max-width:768px){
    .contact-grid{
        grid-template-columns:1fr;
    }
}
/* VENDOR PAGE */

.vendor-section{
    padding:80px 0;
}

.vendor-form{
    max-width:900px;
    margin:auto;
}

.vendor-form h2{
    margin:30px 0 15px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.vendor-form input,
.vendor-form select,
.vendor-form textarea{
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
    width:100%;
}

.vendor-form textarea{
    min-height:120px;
    margin-bottom:20px;
}

.vendor-form label{
    font-size:14px;
    margin-bottom:5px;
}

.submit-btn{
    padding:12px 30px;
    background:linear-gradient(45deg,#ff9800,#ff5722);
    color:#fff;
    border:none;
    border-radius:25px;
    cursor:pointer;
}

/* Responsive */

@media(max-width:768px){
    .form-grid{
        grid-template-columns:1fr;
    }
}