/*==================================================
PRINCE NEXT MOVE AND PROJECTS
Main Stylesheet
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
ROOT COLORS
==================================================*/

:root{

    --primary:#84C414;
    --secondary:#98004F;
    --dark:#222222;
    --light:#f8f9fa;
    --white:#ffffff;
    --grey:#777777;

}

/*==================================================
GLOBAL
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:.3s;

}

section{

    padding:90px 0;

}

.section-title{

    font-size:40px;
    font-weight:700;
    margin-bottom:15px;

}

.section-subtitle{

    color:var(--grey);
    max-width:700px;
    margin:auto;

}

/*==================================================
TOP BAR
==================================================*/

.top-bar{

    background:var(--dark);
    color:#fff;
    font-size:14px;

}

.top-bar i{

    color:var(--primary);

}

/*==================================================
NAVBAR
==================================================*/

.navbar{

    padding:15px 0;
    transition:.4s;

}

.navbar-brand img{

    height:70px;

}

.nav-link{

    font-weight:500;
    margin-left:20px;
    color:var(--dark);

}

.nav-link:hover{

    color:var(--primary);

}

.navbar .btn{

    border-radius:50px;
    padding:12px 28px;
    font-weight:600;

}

/*==================================================
BUTTONS
==================================================*/

.btn-success{

    background:var(--primary);
    border:none;

}

.btn-success:hover{

    background:#6da80d;

}

.btn-outline-dark{

    border:2px solid var(--dark);

}

.btn-outline-dark:hover{

    background:var(--secondary);
    border-color:var(--secondary);

}

/*==================================================
HERO
==================================================*/

.hero{

    min-height:100vh;
    display:flex;
    align-items:center;
    background:linear-gradient(rgba(255,255,255,.95),rgba(255,255,255,.95)),
    url('../images/pattern.png');
    background-size:cover;

}

.hero h1{

    font-size:65px;
    font-weight:800;
    line-height:1.1;

}

.hero p{

    color:var(--grey);
    font-size:20px;
    margin-top:25px;

}

.hero img{

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
ABOUT
==================================================*/

.about{

    background:#fff;

}

.about img{

    border-radius:20px;

}

.about h2{

    font-weight:700;

}

.about ul{

    list-style:none;
    padding:0;

}

.about li{

    padding:10px 0;

}

.about i{

    color:var(--primary);
    margin-right:10px;

}

/*==================================================
SERVICE CARD
==================================================*/

.service-card{

    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;

}

.service-card:hover{

    transform:translateY(-12px);

}

.service-card i{

    font-size:55px;
    color:var(--primary);
    margin-bottom:20px;

}

.service-card h4{

    margin-bottom:15px;
    font-weight:700;

}

.service-card p{

    color:var(--grey);

}

/*==================================================
WHY CHOOSE US
==================================================*/

.feature-box{

    text-align:center;
    padding:40px 25px;

}

.feature-box i{

    font-size:60px;
    color:var(--secondary);

}

.feature-box h4{

    margin-top:20px;
    font-weight:700;

}

/*==================================================
COUNTERS
==================================================*/

.counter{

    background:var(--primary);
    color:#fff;
    text-align:center;
    border-radius:20px;
    padding:40px;

}

.counter h2{

    font-size:55px;
    font-weight:700;

}

.counter p{

    margin:0;

}

/*==================================================
PROJECTS
==================================================*/

.project-card{

    overflow:hidden;
    border-radius:20px;
    position:relative;

}

.project-card img{

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.1);

}

.project-overlay{

    position:absolute;
    inset:0;
    background:rgba(152,0,79,.75);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay h4{

    color:#fff;

}

/*==================================================
TESTIMONIALS
==================================================*/

.testimonial{

    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.testimonial img{

    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;

}

/*==================================================
QUOTE SECTION
==================================================*/

.quote{

    background:var(--secondary);
    color:#fff;

}

.quote .btn{

    background:#fff;
    color:var(--secondary);

}

/*==================================================
CONTACT
==================================================*/

.contact-info{

    padding:30px;

}

.contact-info i{

    color:var(--primary);
    font-size:28px;
    margin-right:10px;

}

.form-control{

    border-radius:10px;
    padding:14px;

}

.form-control:focus{

    box-shadow:none;
    border-color:var(--primary);

}

/*==================================================
FOOTER
==================================================*/

footer{

    background:#1b1b1b;
    color:#ddd;

}

footer h4,
footer h5{

    color:#fff;

}

footer a{

    color:#ccc;

}

footer a:hover{

    color:var(--primary);

}

/*==================================================
WHATSAPP BUTTON
==================================================*/

.whatsapp{

    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#25D366;
    color:#fff;
    font-size:32px;
    z-index:999;
    box-shadow:0 10px 20px rgba(0,0,0,.3);

}

.whatsapp:hover{

    color:#fff;
    transform:scale(1.1);

}

/*==================================================
ANIMATIONS
==================================================*/

.fade-up{

    animation:fadeUp 1s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.hero{

text-align:center;

}

.hero h1{

font-size:48px;

}

.navbar-brand img{

height:55px;

}

}

@media(max-width:768px){

.section-title{

font-size:32px;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:18px;

}

section{

padding:70px 0;

}

}

@media(max-width:576px){

.hero h1{

font-size:34px;

}

.btn{

width:100%;
margin-bottom:10px;

}

}

/*==================================================
                SERVICES SECTION
==================================================*/

.services{
    padding:100px 0;
    background:#f8f9fa;
}

.services .section-title{
    text-align:center;
    margin-bottom:60px;
}

.services .section-title span{
    display:inline-block;
    color:#ff6600;
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.services .section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:15px;
}

.services .section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

/*======================
    GRID
=======================*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

/*======================
    CARD
=======================*/

.service-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

/*======================
    IMAGE
=======================*/

.service-image{
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

/*======================
    CONTENT
=======================*/

.service-content{
    padding:30px;
}

.service-content h3{
    font-size:24px;
    margin-bottom:15px;
    color:#222;
}

.service-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

/*======================
    BUTTON
=======================*/

.service-btn{
    display:inline-block;
    padding:12px 28px;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
    font-weight:600;
}

.service-btn:hover{
    background:#0b2f5b;
}

/*======================
    RESPONSIVE
=======================*/

@media(max-width:991px){

.services{
    padding:80px 0;
}

.services .section-title h2{
    font-size:36px;
}

}

@media(max-width:768px){

.services-grid{
    grid-template-columns:1fr;
}

.service-image img{
    height:220px;
}

.services .section-title h2{
    font-size:30px;
}

.services .section-title p{
    font-size:16px;
}

}
/*=========================================
WHY CHOOSE US
=========================================*/

.why-section{

    background:#f8f9fa;

}

.section-tag{

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

}

.counter-box{

    background:#fff;

    padding:40px;

    text-align:center;

    border-radius:20px;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    height:100%;

}

.counter-box:hover{

    transform:translateY(-10px);

}

.counter-box i{

    font-size:55px;

    color:var(--primary);

    margin-bottom:20px;

}

.counter-box h2{

    font-size:48px;

    font-weight:700;

    color:#222;

}

.counter-box h5{

    margin-top:10px;

}
/*==================================================
    FEATURED PROJECTS
==================================================*/

.projects{
    background:#f8f9fa;
    padding:100px 0;
}

.projects .section-title{
    color:#84C414;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.projects h2{
    font-weight:700;
    color:#222;
    margin-bottom:20px;
}

.projects .lead{
    max-width:700px;
    margin:auto;
    color:#777;
}

/* Project Card */

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    transition:.4s;
}

.project-card img{
    width:100%;
    height:350px;
    object-fit:cover;
    transition:.6s;
}

.project-card:hover img{
    transform:scale(1.1);
}

/* Overlay */

.project-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top,
                rgba(0,0,0,.85),
                rgba(0,0,0,.15));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    align-items:flex-start;
    padding:30px;
    opacity:0;
    transition:.5s;
}

.project-card:hover .project-overlay{
    opacity:1;
}

.project-overlay span{
    color:#84C414;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.project-overlay h4{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.project-overlay .btn{
    border-radius:50px;
    padding:12px 30px;
    font-weight:600;
}

/* Card Hover */

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.20);
}

/* View All Button */

.projects .btn-lg{
    padding:15px 45px;
    border-radius:50px;
    font-weight:600;
}

/* Responsive */

@media (max-width:991px){

    .project-card img{
        height:300px;
    }

}

@media (max-width:767px){

    .projects{
        padding:70px 0;
    }

    .project-card img{
        height:250px;
    }

    .project-overlay h4{
        font-size:22px;
    }

    .projects h2{
        font-size:2rem;
    }

}