/*==================================================
    BuildPro Construction Website
    Premium CSS - Part 1
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
        ROOT VARIABLES
===============================*/

:root{

    --primary:#0B1F3A;
    --secondary:#FF8C00;
    --light:#f8f9fa;
    --white:#ffffff;
    --dark:#222;
    --gray:#777;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:15px;

    --transition:.4s ease;

}

/*==============================
        RESET
===============================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:var(--dark);

    line-height:1.8;

    overflow-x:hidden;

    background:#fff;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    padding:0;

}

/*==============================
        SECTION
===============================*/

section{

    position:relative;

    padding:90px 0;

}

.container{

    max-width:1200px;

}

/*==============================
        HEADINGS
===============================*/

h1,h2,h3,h4,h5{

    font-weight:700;

    color:var(--primary);

}

p{

    color:#666;

    font-size:16px;

}

/*==============================
        BUTTONS
===============================*/

.btn{

    border-radius:40px;

    padding:13px 32px;

    transition:.4s;

    font-weight:600;

}

.btn-warning{

    background:var(--secondary);

    border:none;

    color:#fff;

}

.btn-warning:hover{

    background:#e67800;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(255,140,0,.25);

}

.btn-outline-light:hover{

    transform:translateY(-3px);

}

/*==============================
        NAVBAR
===============================*/

.navbar{

    transition:.4s;

    background:rgba(8,18,34,.70);

    backdrop-filter:blur(12px);

}

.navbar.scrolled{

    background:var(--primary);

    box-shadow:0 10px 25px rgba(0,0,0,.20);

}

.navbar-brand{

    color:#fff !important;

    font-weight:700;

    font-size:30px;

}

.navbar-brand i{

    color:var(--secondary);

}

.navbar-nav .nav-link{

    color:#fff !important;

    margin-left:18px;

    font-weight:500;

    position:relative;

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    background:var(--secondary);

    left:0;

    bottom:-6px;

    transition:.4s;

}

.navbar-nav .nav-link:hover::after{

    width:100%;

}

.navbar-nav .nav-link:hover{

    color:var(--secondary)!important;

}

/*==============================
        HERO
===============================*/

.hero{

    min-height:100vh;

    background:url("../images/hero/hero.jpg") center center/cover no-repeat;

    position:relative;

    display:flex;

    align-items:center;

}

.hero .overlay{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:linear-gradient(rgba(5,15,35,.82),
    rgba(5,15,35,.82));

}

.hero .container{

    position:relative;

    z-index:5;

}

.hero h1{

    font-size:65px;

    color:#fff;

    line-height:1.2;

}

.hero p{

    color:#ddd;

    font-size:18px;

}

.hero .badge{

    font-size:15px;

    padding:10px 20px;

    border-radius:30px;

}

.hero img{

    animation:float 5s infinite ease-in-out;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==============================
        FEATURE CARDS
===============================*/

.card{

    border:none;

    border-radius:var(--radius);

    transition:.4s;

    overflow:hidden;

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow);

}

.card i{

    transition:.4s;

}

.card:hover i{

    transform:rotate(8deg) scale(1.15);

}

.shadow{

    box-shadow:var(--shadow)!important;

}

/*==============================
        ABOUT
===============================*/

#about img{

    border-radius:20px;

}

#about ul li{

    padding:8px 0;

    font-weight:500;

}

#about ul i{

    margin-right:10px;

    color:var(--secondary);

}

#about .btn{

    margin-top:20px;

}

/*==============================
        SECTION TITLE
===============================*/

.text-warning{

    color:var(--secondary)!important;

}

.display-5{

    margin:15px 0;

}

.display-3{

    font-weight:800;

}

/*==============================
        SPACING
===============================*/

.mt-5{

    margin-top:3rem!important;

}

.mb-5{

    margin-bottom:3rem!important;

}

.py-5{

    padding-top:90px!important;

    padding-bottom:90px!important;

}
/*==================================================
        BuildPro CSS - Part 2
        Services | Why Choose Us | CTA
==================================================*/


/*=====================================
            SERVICES SECTION
=====================================*/

#services{
    background:#f8f9fa;
}

.service-card{
    border-radius:18px;
    overflow:hidden;
    transition:.4s ease;
    background:#fff;
}

.service-card img{
    height:240px;
    width:100%;
    object-fit:cover;
    transition:.5s;
}

.service-card .card-body{
    padding:30px;
}

.service-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:var(--primary);
}

.service-card p{
    color:#666;
    font-size:15px;
}

.service-card i{
    margin-bottom:20px;
}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-card:hover i{

    transform:scale(1.2) rotate(8deg);

    color:var(--secondary);

}


/*=====================================
        WHY CHOOSE US
=====================================*/

.progress{

    height:10px;

    border-radius:50px;

    background:#e9ecef;

    overflow:hidden;

}

.progress-bar{

    transition:2s;

}

.bg-success{

    background:#16a34a!important;

}

.bg-primary{

    background:#2563eb!important;

}

.bg-danger{

    background:#dc2626!important;

}

.float-end{

    float:right;

}

#why p{

    margin-bottom:12px;

}


/*=====================================
        CHECK ICONS
=====================================*/

.fa-check{

    color:var(--secondary);

    margin-right:10px;

}

.row p i{

    font-size:15px;

}


/*=====================================
          CTA SECTION
=====================================*/

.bg-dark{

    background:var(--primary)!important;

}

.bg-dark h2{

    color:#fff;

}

.bg-dark p{

    color:#d8d8d8;

}

.bg-dark .btn{

    font-size:18px;

    padding:14px 40px;

}


/*=====================================
        SECTION ANIMATION
=====================================*/

.card,
.service-card,
img,
.btn{

    transition:all .4s ease;

}

img:hover{

    transform:scale(1.02);

}


/*=====================================
        IMAGE RADIUS
=====================================*/

.rounded-4{

    border-radius:20px!important;

}


/*=====================================
        BADGES
=====================================*/

.badge{

    font-weight:600;

    padding:8px 18px;

    border-radius:30px;

}


/*=====================================
        PROGRESS LABELS
=====================================*/

h6{

    font-weight:600;

    color:var(--primary);

}


/*=====================================
        BACKGROUND HELPERS
=====================================*/

.bg-light{

    background:#f8f9fa!important;

}

.bg-white{

    background:#fff!important;

}


/*=====================================
        CARD HOVER SHADOW
=====================================*/

.shadow:hover{

    box-shadow:0 25px 50px rgba(0,0,0,.15)!important;

}


/*=====================================
      TEXT SELECTION
=====================================*/

::selection{

    background:var(--secondary);

    color:#fff;

}


/*=====================================
        SCROLLBAR
=====================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#d97706;

}


/*=====================================
        SMALL DEVICES
=====================================*/

@media(max-width:991px){

.service-card{

    margin-bottom:25px;

}

.bg-dark{

    text-align:center;

}

.bg-dark .text-lg-end{

    text-align:center!important;

    margin-top:25px;

}

}

@media(max-width:768px){

.service-card img{

    height:220px;

}

.service-card h4{

    font-size:22px;

}

.progress{

    height:8px;

}

}

@media(max-width:576px){

.service-card img{

    height:200px;

}

.service-card .card-body{

    padding:22px;

}

.service-card h4{

    font-size:20px;

}

}
/*==================================================
        BuildPro CSS - Part 3
        Projects | Process | Counter | Team
==================================================*/


/*=========================================
                PROJECTS
=========================================*/

#projects{
    background:#f8f9fa;
}

#projects .card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
}

#projects .card img{
    height:260px;
    width:100%;
    object-fit:cover;
    transition:.5s;
}

#projects .card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

#projects .card:hover img{

    transform:scale(1.08);

}

#projects .card-body{

    padding:25px;

}

#projects h4{

    margin:15px 0;

    font-size:24px;

}

#projects .badge{

    padding:8px 18px;

    font-size:13px;

}

#projects .btn{

    margin-top:10px;

}


/*=========================================
            WORK PROCESS
=========================================*/

.process-card,
#process .shadow{

    background:#fff;

    border-radius:18px;

    transition:.4s;

    padding:35px 20px;

}

.process-card:hover,
#process .shadow:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.process-card i,
#process i{

    font-size:55px;

    color:var(--secondary);

    margin-bottom:20px;

    transition:.4s;

}

.process-card:hover i,
#process .shadow:hover i{

    transform:rotate(10deg) scale(1.15);

}

.process-card h5,
#process h5{

    font-size:22px;

    color:var(--primary);

    font-weight:700;

}


/*=========================================
              COUNTER
=========================================*/

.counter-section{

    background:var(--primary);

    color:#fff;

}

.counter{

    font-size:60px;

    font-weight:800;

    color:var(--secondary);

}

.counter+p{

    color:#fff;

    font-size:18px;

}


/* Statistics */

.bg-dark .display-4{

    color:var(--secondary);

}

.bg-dark p{

    color:#eee;

}


/*=========================================
          ACHIEVEMENT SECTION
=========================================*/

#achievement img{

    border-radius:20px;

}

#achievement h3{

    color:var(--secondary);

    font-size:42px;

    font-weight:700;

}

#achievement p{

    margin-bottom:25px;

}


/*=========================================
                TEAM
=========================================*/

#team{

    background:#fff;

}

#team .card{

    overflow:hidden;

    border-radius:18px;

}

#team .card img{

    height:330px;

    object-fit:cover;

    transition:.5s;

}

#team .card:hover img{

    transform:scale(1.08);

}

#team .card-body{

    padding:30px;

}

#team h4{

    margin-bottom:8px;

}

#team p{

    margin-bottom:18px;

}

#team a{

    color:#555;

    font-size:18px;

    transition:.4s;

}

#team a:hover{

    color:var(--secondary);

}

#team .card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}


/*=========================================
          ICON CIRCLES
=========================================*/

.icon-circle{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#fff4e8;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:20px;

}


/*=========================================
           IMAGE OVERLAY
=========================================*/

.image-overlay{

    position:relative;

    overflow:hidden;

}

.image-overlay::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.25);

    opacity:0;

    transition:.4s;

}

.image-overlay:hover::before{

    opacity:1;

}


/*=========================================
          RESPONSIVE
=========================================*/

@media(max-width:992px){

#projects .card img{

    height:220px;

}

#team .card img{

    height:280px;

}

.counter{

    font-size:48px;

}

}

@media(max-width:768px){

#projects .card img{

    height:200px;

}

.process-card,
#process .shadow{

    margin-bottom:20px;

}

.counter{

    font-size:42px;

}

#team .card img{

    height:260px;

}

}

@media(max-width:576px){

#projects .card-body{

    padding:20px;

}

#projects h4{

    font-size:20px;

}

.counter{

    font-size:36px;

}

#team .card img{

    height:240px;

}

#team .card-body{

    padding:20px;

}

}
/*==================================================
        BuildPro CSS - Part 4
        Testimonials | FAQ | Blog | Contact
==================================================*/


/*=========================================
            TESTIMONIALS
=========================================*/

#testimonials{
    background:#ffffff;
}

#testimonialCarousel{
    position:relative;
}

#testimonialCarousel .card{

    border:none;

    border-radius:20px;

    padding:25px;

    transition:.4s;

}

#testimonialCarousel .card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

#testimonialCarousel img{

    width:100px;

    height:100px;

    border-radius:50%;

    object-fit:cover;

    border:5px solid #fff;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

#testimonialCarousel h4{

    margin-top:15px;

    color:var(--primary);

}

#testimonialCarousel p{

    color:#666;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    background-color:var(--secondary);

    border-radius:50%;

    padding:18px;

}


/*=========================================
                FAQ
=========================================*/

.accordion-item{

    border:none;

    border-radius:12px!important;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.accordion-button{

    font-weight:600;

    padding:22px;

    color:var(--primary);

    background:#fff;

}

.accordion-button:not(.collapsed){

    background:var(--secondary);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    background:#fafafa;

    color:#666;

    padding:22px;

}


/*=========================================
                BLOG
=========================================*/

#blog{

    background:#fff;

}

#blog .card{

    border:none;

    border-radius:18px;

    overflow:hidden;

    transition:.4s;

}

#blog .card img{

    height:240px;

    object-fit:cover;

    transition:.5s;

}

#blog .card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

#blog .card:hover img{

    transform:scale(1.08);

}

#blog .card-body{

    padding:25px;

}

#blog h4{

    margin:12px 0;

    font-size:24px;

}

#blog small{

    color:#999;

}


/*=========================================
              CONTACT
=========================================*/

#contact{

    background:#f8f9fa;

}

#contact iframe{

    border-radius:15px;

    margin-top:20px;

}

#contact .card{

    border:none;

    border-radius:20px;

}

#contact input,
#contact textarea,
#contact select{

    border:1px solid #ddd;

    border-radius:10px;

    padding:14px;

    font-size:15px;

    transition:.3s;

}

#contact input:focus,
#contact textarea:focus,
#contact select:focus{

    border-color:var(--secondary);

    box-shadow:0 0 0 .2rem rgba(255,140,0,.15);

    outline:none;

}

#contact textarea{

    resize:none;

}

#contact .btn{

    margin-top:10px;

}


/*=========================================
            CONTACT INFO
=========================================*/

#contact p{

    margin-bottom:18px;

}

#contact i{

    color:var(--secondary);

    width:25px;

}


/*=========================================
          SECTION TITLES
=========================================*/

section span.text-warning{

    display:inline-block;

    letter-spacing:1px;

    font-size:15px;

    font-weight:700;

}


/*=========================================
            HOVER EFFECTS
=========================================*/

.card,
.btn,
img,
input,
textarea,
select{

    transition:all .35s ease;

}


/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

#contact iframe{

    height:300px;

}

}

@media(max-width:768px){

#blog .card img{

    height:210px;

}

#testimonialCarousel .card{

    padding:20px;

}

.accordion-button{

    padding:18px;

}

}

@media(max-width:576px){

#blog h4{

    font-size:20px;

}

#contact .card{

    padding:5px;

}

#testimonialCarousel img{

    width:80px;

    height:80px;

}

}