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

.hero-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-section::before{

    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(27,36,51,.92) 0%,
        rgba(27,36,51,.75) 45%,
        rgba(27,36,51,.45) 100%
    );

}

.hero-content{

    position:relative;
    z-index:10;

}

.hero-subtitle{

    display:inline-block;

    padding:10px 20px;

    background:rgba(212,175,55,.15);

    border:1px solid rgba(212,175,55,.4);

    color:var(--secondary);

    border-radius:40px;

    margin-bottom:20px;

    font-weight:600;

}

.hero-title{

    color:#fff;

    font-size:68px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-title span{

    color:var(--secondary);

}

.hero-text{

    color:rgba(255,255,255,.9);

    font-size:18px;

    max-width:620px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .btn{

    min-width:180px;

}

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

.hero-image{

    position:relative;

    z-index:2;

    text-align:center;

}

.hero-image img{

    max-width:100%;

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

    filter:drop-shadow(0 20px 40px rgba(0,0,0,.35));

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

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

.hero-badge{

    position:absolute;

    background:#fff;

    border-radius:14px;

    padding:15px 20px;

    box-shadow:var(--shadow);

    display:flex;

    align-items:center;

    gap:12px;

}

.hero-badge i{

    color:var(--secondary);

    font-size:28px;

}

.hero-badge h5{

    margin:0;

    font-size:18px;

}

.hero-badge small{

    display:block;

    color:#777;

}

.badge-one{

    top:20%;

    left:-30px;

}

.badge-two{

    bottom:10%;

    right:-20px;

}

/*==========================================
SCROLL DOWN
==========================================*/

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    z-index:20;

}

.scroll-down a{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    border:2px solid rgba(255,255,255,.4);

    animation:bounce 2s infinite;

}

.scroll-down a:hover{

    background:var(--secondary);

    color:var(--primary);

}

/*==========================================
BACKGROUND SHAPES
==========================================*/

.hero-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity:.15;

}

.shape1{

    width:250px;

    height:250px;

    background:var(--secondary);

    top:0;

    right:0;

}

.shape2{

    width:180px;

    height:180px;

    background:#fff;

    bottom:0;

    left:10%;

}

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

@media(max-width:1200px){

.hero-title{

font-size:56px;

}

}

@media(max-width:991px){

.hero-section{

text-align:center;

padding-top:120px;

padding-bottom:80px;

}

.hero-title{

font-size:46px;

}

.hero-text{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

margin-top:50px;

}

.badge-one,
.badge-two{

display:none;

}

}

@media(max-width:767px){

.hero-title{

font-size:38px;

}

.hero-text{

font-size:16px;

}

.hero-buttons .btn{

width:100%;

}

}

@media(max-width:576px){

.hero-title{

font-size:30px;

}

.hero-subtitle{

font-size:13px;

}

}

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

.about-section{
    position:relative;
    overflow:hidden;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    border-radius:20px;
    transition:var(--transition);
}

.about-image:hover img{
    transform:scale(1.03);
}

.about-image::before{
    content:"";
    position:absolute;
    top:-15px;
    left:-15px;
    width:120px;
    height:120px;
    border:5px solid var(--secondary);
    border-radius:20px;
    z-index:-1;
}

.about-image::after{
    content:"";
    position:absolute;
    right:-15px;
    bottom:-15px;
    width:120px;
    height:120px;
    background:var(--primary);
    border-radius:20px;
    z-index:-1;
}

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

.about-section .section-title{
    margin-bottom:25px;
}

.about-section p{
    margin-bottom:18px;
    font-size:16px;
}

.about-section .btn{
    margin-top:20px;
}

/*==========================================
FEATURE BOX
==========================================*/

.about-section .feature-box{
    margin-bottom:20px;
    border:1px solid rgba(0,0,0,.05);
}

.about-section .feature-box:hover{
    border-color:var(--secondary);
}

.about-section .feature-icon{
    transition:var(--transition);
}

.about-section .feature-box:hover .feature-icon{
    background:var(--secondary);
    color:var(--primary);
}

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

.counter-section{
    position:relative;
    padding:90px 0;
    background:linear-gradient(
        rgba(27,36,51,.94),
        rgba(27,36,51,.94)
    ),
    url('../images/banners/counter-bg.jpg');

    background-size:cover;
    background-position:center;
}

.counter-box{
    text-align:center;
    padding:30px 20px;
}

.counter-box i{
    font-size:48px;
    color:var(--secondary);
    margin-bottom:20px;
}

.counter-box h2{
    color:#fff;
    font-size:54px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box p{
    color:rgba(255,255,255,.85);
    margin:0;
    font-size:17px;
}

/*==========================================
MISSION & VISION
==========================================*/

.card-custom{
    position:relative;
    overflow:hidden;
}

.card-custom::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:var(--secondary);
}

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

.card-custom .service-icon{
    margin-bottom:25px;
}

.card-custom h3{
    margin-bottom:18px;
}

.card-custom p{
    margin-bottom:0;
}

/*==========================================
MISSION HOVER
==========================================*/

.card-custom:hover .service-icon{
    background:var(--secondary);
    color:var(--primary);
    transform:rotate(10deg);
}

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

.about-image,
.card-custom,
.counter-box{
    transition:all .4s ease;
}

.counter-box:hover{
    transform:translateY(-8px);
}

.counter-box:hover i{
    transform:scale(1.15);
    transition:.3s;
}

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

@media(max-width:991px){

.about-section{
    text-align:center;
}

.about-image{
    margin-bottom:50px;
}

.about-image::before,
.about-image::after{
    display:none;
}

.about-section .feature-box{
    text-align:left;
}

}

@media(max-width:767px){

.counter-box{
    margin-bottom:30px;
}

.counter-box h2{
    font-size:42px;
}

.card-custom{
    padding:35px 25px !important;
}

}

@media(max-width:576px){

.counter-section{
    padding:70px 0;
}

.counter-box h2{
    font-size:36px;
}

.counter-box i{
    font-size:40px;
}

}


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

.services-section{
    position:relative;
    background:var(--light);
}

.services-section .section-title{
    margin-bottom:60px;
}

.service-card{
    position:relative;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    padding:40px 30px;
    text-align:center;
    transition:var(--transition);
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    height:100%;
    border-bottom:4px solid transparent;
}

.service-card:hover{
    transform:translateY(-12px);
    border-bottom-color:var(--secondary);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.service-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    transition:var(--transition);
}

.service-card:hover .service-icon{
    background:var(--secondary);
    color:var(--primary);
    transform:rotateY(180deg);
}

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

.service-card p{
    margin-bottom:25px;
}

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

.projects-section{
    position:relative;
    overflow:hidden;
}

.project-card{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.project-card img{
    width:100%;
    transition:.6s;
}

.project-card:hover img{
    transform:scale(1.12);
}

.project-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:flex-end;
    background:linear-gradient(
        to top,
        rgba(27,36,51,.95),
        rgba(27,36,51,.10)
    );
    padding:30px;
    transition:var(--transition);
}

.project-content{
    transform:translateY(25px);
    opacity:0;
    transition:.4s;
}

.project-card:hover .project-content{
    transform:translateY(0);
    opacity:1;
}

.project-content span{
    display:inline-block;
    color:var(--secondary);
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}

.project-content h4{
    color:#fff;
    margin-bottom:10px;
}

.project-content p{
    color:rgba(255,255,255,.85);
    margin-bottom:20px;
}

.project-content .btn{
    padding:10px 22px;
}

/*==========================================
PROJECT BUTTON
==========================================*/

.projects-section .text-center{
    margin-top:55px;
}

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

.process-section{
    background:var(--light);
}

.process-card{
    position:relative;
    background:#fff;
    padding:35px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:var(--transition);
    height:100%;
}

.process-card:hover{
    transform:translateY(-10px);
}

.process-number{
    position:absolute;
    top:15px;
    right:18px;
    font-size:42px;
    font-weight:800;
    color:rgba(212,175,55,.15);
}

.process-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:rgba(212,175,55,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--secondary);
    font-size:36px;
    transition:var(--transition);
}

.process-card:hover .process-icon{
    background:var(--secondary);
    color:var(--primary);
}

.process-card h5{
    margin-bottom:12px;
}

.process-card p{
    margin-bottom:0;
}

/*==========================================
CONNECTOR LINE
==========================================*/

.process-card::after{
    content:"";
    position:absolute;
    top:42px;
    right:-50%;
    width:100%;
    height:2px;
    background:rgba(212,175,55,.30);
}

.process-card:last-child::after{
    display:none;
}

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

.service-card,
.project-card,
.process-card{
    transition:all .35s ease;
}

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

@media(max-width:991px){

.process-card::after{
    display:none;
}

.project-content{
    opacity:1;
    transform:translateY(0);
}

}

@media(max-width:767px){

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

.process-card{
    margin-bottom:25px;
}

.project-overlay{
    padding:20px;
}

}

@media(max-width:576px){

.service-icon,
.process-icon{
    width:70px;
    height:70px;
    font-size:30px;
}

.project-content h4{
    font-size:22px;
}

}


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

.testimonial-section{
    position:relative;
    overflow:hidden;
}

.testimonial-card{
    position:relative;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:var(--transition);
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

.testimonial-card::before{

    content:"\201C";

    position:absolute;

    top:15px;

    right:25px;

    font-size:80px;

    font-family:Georgia,serif;

    color:rgba(212,175,55,.15);

}

.testimonial-rating{

    color:#FFC107;

    font-size:18px;

    margin-bottom:20px;

}

.testimonial-user{

    display:flex;

    align-items:center;

    margin-top:25px;

}

.testimonial-user img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    margin-right:15px;

    border:3px solid var(--secondary);

}

.testimonial-user h5{

    margin-bottom:5px;

}

.testimonial-user span{

    color:#888;

    font-size:14px;

}

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

#faqAccordion{

    max-width:900px;

    margin:auto;

}

.accordion-item{

    border:none;

    border-radius:15px;

    overflow:hidden;

    margin-bottom:18px;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

}

.accordion-button{

    font-weight:600;

    font-size:17px;

    padding:22px 25px;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    padding:22px 25px;

    line-height:1.8;

}

/*==========================================
CALL TO ACTION
==========================================*/

.cta-section{

    position:relative;

    overflow:hidden;

    text-align:center;

    padding:100px 0;

    background:

    linear-gradient(

    rgba(27,36,51,.92),

    rgba(27,36,51,.92)

    ),

    url('../images/banners/cta-bg.jpg');

    background-size:cover;

    background-position:center;

}

.cta-section h2{

    color:#fff;

    font-size:48px;

    margin-bottom:20px;

}

.cta-section p{

    color:rgba(255,255,255,.85);

    max-width:700px;

    margin:auto auto 35px;

    font-size:18px;

}

.cta-section .btn{

    margin:8px;

    min-width:190px;

}

/*==========================================
GOOGLE MAP
==========================================*/

.map-section{

    position:relative;

}

.map-section iframe{

    display:block;

    width:100%;

    height:450px;

    border:none;

    filter:grayscale(20%);

}

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

.services-section,
.projects-section,
.testimonial-section,
.about-section{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

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

img{

    transition:var(--transition);

}

img:hover{

    transform:scale(1.02);

}

/*==========================================
SMOOTH BUTTON
==========================================*/

.btn{

    transition:.35s;

}

.btn:hover{

    transform:translateY(-3px);

}

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

@media(max-width:991px){

.cta-section{

padding:80px 0;

}

.cta-section h2{

font-size:38px;

}

}

@media(max-width:767px){

.testimonial-card{

padding:28px;

}

.cta-section h2{

font-size:30px;

}

.cta-section p{

font-size:16px;

}

.map-section iframe{

height:350px;

}

}

@media(max-width:576px){

.cta-section{

padding:70px 0;

}

.cta-section .btn{

width:100%;

}

.testimonial-user{

flex-direction:column;

text-align:center;

}

.testimonial-user img{

margin-right:0;

margin-bottom:15px;

}

.map-section iframe{

height:300px;

}

}

