*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* TOP HEADER */

.top-header{
    background:#0d6efd;
    color:#fff;
    font-size:14px;
}

.top-header-inner{
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.top-item{
    display:flex;
    align-items:center;
    gap:8px;
}

.top-item i{
    font-size:13px;
}

/* NAVBAR */

.header{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;

    box-shadow:
    0 10px 40px rgba(0,0,0,.08);
}

.nav-container{
    height:88px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;
}

.logo img{
    height:60px;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text span{
    color:#666;
    font-size:12px;
}

.logo-text strong{
    color:#111;
    font-size:20px;
    font-weight:700;
}

/* MENU */

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-menu a{
    font-size: 18px;
    text-decoration:none;
    color:#111;
    font-weight:700;
    position:relative;
}

.nav-menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#0d6efd;

    transition:.4s;
}

.nav-menu a:hover::after{
    width:100%;
}

.nav-menu a:hover{
    color:#0d6efd;
}

/* BUTTONS */

.nav-buttons{
    display:flex;
    gap:12px;
}

.call-btn{
    text-decoration:none;
    padding:12px 22px;

    border:2px solid #0d6efd;

    color:#0d6efd;
    font-weight:600;

    border-radius:60px;

    transition:.4s;
}

.call-btn:hover{
    background:#0d6efd;
    color:#fff;
}

.quote-btn{
    text-decoration:none;
    padding:12px 24px;

    background:#0d6efd;
    color:#fff;

    font-weight:600;

    border-radius:60px;

    transition:.4s;
}

.quote-btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 15px 30px rgba(13,110,253,.35);
}

/* TOGGLE */

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    background:#111;
    border-radius:10px;
}

/* MOBILE */

@media(max-width:1100px){

    .nav-menu{
        position:fixed;

        top:134px;
        left:-100%;

        width:100%;
        height:calc(100vh - 134px);

        background:#fff;

        flex-direction:column;
        justify-content:flex-start;

        padding-top:50px;

        transition:.4s;
    }

    .nav-menu.active{
        left:0;
    }

    .nav-buttons{
        display:none;
    }

    .menu-toggle{
        display:flex;
    }
}

@media(max-width:768px){

    .top-header{
        display:none;
    }

    .nav-menu{
        top:88px;
        height:calc(100vh - 88px);
    }

    .logo img{
        height:52px;
    }

    .logo-text strong{
        font-size:18px;
    }
}

@media(max-width:480px){

    .logo-text{
        display:none;
    }

    .nav-container{
        height:80px;
    }

    .logo img{
        height:50px;
    }
}



/*.......................................... Footer..................................................... */


/* ==========================
   FOOTER
========================== */

.footer{
    background:#050505;
    color:#fff;
    position:relative;
}

/* NEWSLETTER */

.newsletter{
    transform:translateY(-60px);
}

.newsletter-wrapper{

    background:linear-gradient(
    135deg,
    #0d6efd,
    #084298);

    border-radius:24px;

    padding:45px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;

    box-shadow:
    0 25px 60px rgba(13,110,253,.35);
}

.newsletter-content span{

    color:rgba(255,255,255,.8);
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.newsletter-content h2{

    margin-top:8px;
    font-size:34px;
    line-height:1.3;
}

.newsletter-form{

    display:flex;
    min-width:450px;
    background:#fff;
    border-radius:70px;
    overflow:hidden;
}

.newsletter-form input{

    flex:1;
    border:none;
    outline:none;

    padding:18px 24px;
    font-size:15px;
}

.newsletter-form button{

    border:none;
    background:#050505;
    color:#fff;

    padding:0 30px;
    cursor:pointer;
    font-weight:600;

    transition:.3s;
}

.newsletter-form button:hover{
    background:#111;
}

/* MAIN FOOTER */

.footer-main{
    padding:20px 0 60px;
}

.footer-grid{

    display:grid;
    grid-template-columns:
    1.5fr 1fr 1fr 1.2fr;

    gap:50px;
}

.footer-logo{
    max-width:180px;
    margin-bottom:20px;
}

.footer-col p{

    color:#bdbdbd;
    line-height:1.8;
}

.footer-col h3{

    margin-bottom:22px;
    font-size:22px;
}

.footer-col ul{
    list-style:none;
}

.footer-col ul li{
    margin-bottom:14px;
}

.footer-col ul li a{

    text-decoration:none;
    color:#bdbdbd;

    transition:.3s;
}

.footer-col ul li a:hover{

    color:#0d6efd;
    padding-left:6px;
}

.contact-info li{

    color:#bdbdbd;

    display:flex;
    gap:12px;
    align-items:flex-start;
}

.contact-info i{
    color:#0d6efd;
    margin-top:5px;
}

.footer-social{

    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{

    width:45px;
    height:45px;

    border-radius:50%;
    background:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{

    background:#0d6efd;
    transform:translateY(-5px);
}

/* BOTTOM */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:22px 0;
}

.footer-bottom-wrap{

    display:flex;
    justify-content:space-between;
    gap:20px;
}

.footer-bottom p{

    color:#bdbdbd;
    font-size:14px;
}

.footer-bottom a{

    color:#0d6efd;
    text-decoration:none;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:991px){

    .newsletter-wrapper{

        flex-direction:column;
        text-align:center;
    }

    .newsletter-form{
        min-width:100%;
    }

    .footer-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:767px){

    .newsletter{

        transform:translateY(-40px);
    }

    .newsletter-wrapper{

        padding:30px 20px;
    }

    .newsletter-content h2{

        font-size:24px;
    }

    .newsletter-form{

        flex-direction:column;
        border-radius:18px;
    }

    .newsletter-form input{
        width:100%;
    }

    .newsletter-form button{

        padding:16px;
    }

    .footer-grid{

        grid-template-columns:1fr;
    }

    .footer-bottom-wrap{

        flex-direction:column;
        text-align:center;
    }
}






/*....................................................... hero................................................. */


.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:1s;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
}

.hero-bg{
    position:absolute;
    inset:0;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.85),
    rgba(0,0,0,.45)
    );
}

.hero .container{
    height:100%;
    display:flex;
    align-items:center;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
}

.hero-tag{
    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:20px;
}

.hero-content h1{
    font-size:72px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:20px;
    color:#ddd;
    margin-bottom:25px;
}

.hero-content ul{
    list-style:none;
    margin-bottom:35px;
}

.hero-content ul li{
    margin-bottom:12px;
    font-size:18px;
}

.hero-btns{
    display:flex;
    gap:15px;
}

.btn-primary{
    background:#0d6efd;
    color:#fff;
    padding:16px 35px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
    padding:16px 35px;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
}

.hero-nav{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:10;
}

.hero-nav span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#fff;
    opacity:.4;
    cursor:pointer;
}

.hero-nav span.active{
    opacity:1;
    background:#0d6efd;
}




@media (max-width: 768px) {
    
    .hero-content h1 {
        font-size: 52px;
    }

}










/*=========================
 TRUST BAR
=========================*/

.trust-bar{
    position:relative;
    z-index:50;
    margin-top:-80px;
}

.trust-wrapper{

    background:#fff;

    border-radius:24px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);

    display:grid;
    grid-template-columns:repeat(5,1fr);

    overflow:hidden;
}

.trust-item{

    padding:35px 20px;

    text-align:center;

    position:relative;

    transition:.4s;
}

.trust-item:hover{
    background:#f8fbff;
}

.trust-item:not(:last-child)::after{

    content:"";

    position:absolute;

    right:0;
    top:50%;

    transform:translateY(-50%);

    width:1px;
    height:70px;

    background:#e8e8e8;
}

.trust-icon{

    width:65px;
    height:65px;

    margin:auto auto 15px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;
    align-items:center;
    justify-content:center;
}

.trust-icon i{

    color:#0d6efd;

    font-size:24px;
}

.trust-item h3{

    font-size:34px;
    font-weight:700;

    color:#0d6efd;

    margin-bottom:8px;
}

.trust-item p{

    color:#666;

    font-size:15px;

    margin:0;
}

/*=========================
 TABLET
=========================*/

@media(max-width:991px){

    .trust-bar{
        margin-top:30px;
        display: none;
    }

    .trust-wrapper{

        grid-template-columns:
        repeat(3,1fr);

        gap:1px;
    }

    .trust-item::after{
        display:none;
    }

}

/*=========================
 MOBILE
=========================*/

@media(max-width:767px){

    .trust-wrapper{

        grid-template-columns:
        repeat(2,1fr);

        border-radius:20px;
    }

    .trust-item{

        padding:25px 15px;
    }

    .trust-icon{

        width:55px;
        height:55px;
    }

    .trust-icon i{
        font-size:20px;
    }

    .trust-item h3{

        font-size:26px;
    }

    .trust-item p{

        font-size:13px;
    }

}

/*=========================
 SMALL MOBILE
=========================*/

@media(max-width:480px){

    .trust-wrapper{

        grid-template-columns:1fr;
    }

    .trust-item{

        padding:22px;
    }

}







/*.......................................... about us ......................................................*/

/*=========================
ABOUT SECTION
=========================*/

.about-section{
    padding:120px 0;
    background:#fff;
}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/*=========================
IMAGES
=========================*/

.about-main-image img{

    width:100%;
    display:block;

    border-radius:35px;

    height:650px;
    object-fit:cover;
}

.about-small-image img{

    width:100%;
    display:block;

    border-radius:35px;

    height:280px;
    object-fit:cover;
}

/*=========================
CONTENT
=========================*/

.about-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    font-size:14px;
    font-weight:600;

    text-transform:uppercase;

    color:#0d6efd;

    margin-bottom:25px;
}

.about-tag i{
    font-size:16px;
}

.about-content h2{

    font-size:58px;
    line-height:1.1;

    color:#0c2340;

    margin-bottom:25px;

    font-weight:700;
}

.about-content p{

    font-size:18px;
    line-height:1.9;

    color:#6c757d;

    margin-bottom:35px;
}

/*=========================
STATS
=========================*/

.about-stats{

    display:flex;
    gap:80px;

    margin-bottom:40px;
}

.about-stats h3{

    font-size:64px;
    line-height:1;

    color:#0c2340;

    font-weight:800;

    margin-bottom:12px;
}

.about-stats h3 span{
    color:#0d6efd;
}

.about-stats span{

    color:#6c757d;
    font-size:16px;
}

/*=========================
BUTTON
=========================*/

.about-btn{

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:18px 35px;

    background:#0d6efd;

    color:#fff;

    border-radius:14px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;
}

.about-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(255,90,31,.25);
}

/*=========================
BOTTOM AREA
=========================*/

.about-bottom{

    margin-top:70px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-quote p{

    font-size:32px;
    line-height:1.6;

    color:#0c2340;

    margin-bottom:35px;
}

/*=========================
SIGNATURE
=========================*/

.signature-wrap{

    border-top:1px solid #e5e5e5;

    padding-top:25px;

    display:flex;
    align-items:center;
    gap:30px;
}

.signature{

    font-size:55px;

    color:#0d6efd;

    font-family:cursive;
}

.signature-wrap h4{

    color:#0c2340;

    margin-bottom:6px;
}

.signature-wrap span{

    color:#6c757d;
}

/*=========================
TABLET
=========================*/

@media(max-width:991px){

    .about-grid{

        grid-template-columns:1fr;
        gap:50px;
    }

    .about-bottom{

        grid-template-columns:1fr;
    }

    .about-content h2{

        font-size:42px;
    }

    .about-main-image img{

        height:500px;
    }

    .about-stats{

        gap:40px;
    }

    .about-stats h3{

        font-size:50px;
    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

    .about-section{
        padding:80px 0;
    }

    .about-content h2{

        font-size:34px;
    }

    .about-content p{

        font-size:16px;
    }

    .about-main-image img{

        height:350px;
        border-radius:25px;
    }

    .about-stats{

        flex-direction:column;
        gap:25px;
    }

    .about-stats h3{

        font-size:42px;
    }

    .about-quote p{

        font-size:22px;
    }

    /* Hide Like Screenshot Requirement */

    .about-small-image{
        display:none;
    }

    .signature-wrap{
        display:none;
    }

}






















/*=========================
 SERVICES SECTION
=========================*/

.services-section{
    padding:120px 0;
    background:#f7f9fc;
    overflow:hidden;
}

.section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.section-title span{

    display:inline-block;

    padding:10px 20px;

    background:#eaf2ff;

    color:#0d6efd;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:15px;
}

.section-title h2{

    font-size:52px;
    line-height:1.2;

    color:#111;

    margin-bottom:18px;
}

.section-title p{

    color:#666;
    line-height:1.8;
    font-size:17px;
}

/*=========================
 SWIPER
=========================*/

.service-slider{
    padding:20px 10px 70px;
}

/*=========================
 CARD
=========================*/

.service-card{

    height:520px;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    border:1px solid #edf0f5;

    transition:.4s;

    display:flex;
    flex-direction:column;

    position:relative;
}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 30px 60px rgba(13,110,253,.15);
}

/*=========================
 IMAGE
=========================*/

.service-img{

    height:260px;

    overflow:hidden;

    position:relative;
}

.service-img img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.7s;
}

.service-card:hover .service-img img{

    transform:scale(1.08);
}

/*=========================
 BADGE
=========================*/

.service-badge{

    position:absolute;

    top:18px;
    left:18px;

    background:#0d6efd;

    color:#fff;

    padding:8px 14px;

    border-radius:50px;

    font-size:12px;
    font-weight:600;

    z-index:5;
}

/*=========================
 CONTENT
=========================*/

.service-content{

    flex:1;

    padding:28px;

    display:flex;
    flex-direction:column;
}

.service-number{

    font-size:50px;
    font-weight:800;

    color:#eef3fb;

    line-height:1;

    margin-bottom:10px;
}

.service-content h3{

    font-size:26px;

    color:#111;

    margin-bottom:15px;

    line-height:1.3;
}

.service-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;
}

/*=========================
 BUTTON
=========================*/

.service-content a{

    margin-top:auto;
    margin-left: 0%;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:max-content;

    padding:14px 24px;

    border-radius:50px;

    background:#0d6efd;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.service-content a:hover{

    background:#084298;
}

/*=========================
 ARROWS
=========================*/

.swiper-button-next,
.swiper-button-prev{

    width:55px !important;
    height:55px !important;

    border-radius:50%;

    background:#fff;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);

    color:#0d6efd !important;

    transition:.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#0d6efd;
    color:#fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:18px !important;
    font-weight:700;
}

/*=========================
 PAGINATION
=========================*/

.swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:#d3dbe8;

    opacity:1;
}

.swiper-pagination-bullet-active{

    background:#0d6efd;

    width:28px;

    border-radius:30px;
}

/*=========================
 RESPONSIVE
=========================*/

@media(max-width:991px){

    .services-section{
        padding:90px 0;
    }

    .section-title h2{
        font-size:40px;
    }

    .service-card{
        height:500px;
    }

}

@media(max-width:768px){

    .section-title h2{
        font-size:32px;
    }

    .service-card{
        height:auto;
        min-height:480px;
    }

    .service-img{
        height:220px;
    }

    .service-content{
        padding:22px;
    }

    .service-content h3{
        font-size:22px;
    }

}

@media(max-width:480px){

    .services-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:15px;
    }

    .service-card{
        min-height:450px;
    }

}




/* ..................................banner section................................. */


/*=========================
WORK PROCESS SECTION
=========================*/

.work-process-section{
    /* padding:120px 0; */
    background:#f8fafc;
}

/*=========================
CTA BANNER
=========================*/

.process-banner{

    position:relative;

    /* border-radius:35px; */

    overflow:hidden;

    min-height:500px;

    background:url("../assests/hero3.png")
    center center/cover no-repeat;

    display:flex;
    align-items:center;

    margin-bottom:120px;
}

.banner-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.80),
    rgba(0,0,0,.35)
    );
}

.banner-content{

    position:relative;
    z-index:2;

    max-width:650px;

    color:#fff;
}

.banner-content span{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:20px;

    backdrop-filter:blur(10px);
}

.banner-content h2{

    font-size:62px;

    line-height:1.1;

    margin-bottom:20px;
}

.banner-content p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

    color:#ddd;
}

.banner-btns{

    display:flex;
    gap:15px;
}

.banner-btn{

    padding:16px 30px;

    background:#0d6efd;

    color:#fff;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;
}

.banner-btn-outline{

    padding:16px 30px;

    border:2px solid #fff;

    color:#fff;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;
}

/*=========================
WORK BOX
=========================*/

.work-box{

    background:#fff;

    padding:70px;

    border-radius:35px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.process-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.process-card{

    padding:35px;

    border-radius:25px;

    background:#f8fafc;

    transition:.4s;
}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(13,110,253,.12);
}

.process-number{

    font-size:60px;

    font-weight:800;

    color:#dbe8ff;

    line-height:1;

    margin-bottom:15px;
}

.process-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#111;
}

.process-card p{

    color:#666;

    line-height:1.8;
}



@media(max-width:991px){

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .banner-content h2{
        font-size:42px;
    }

    .work-box{
        padding:40px;
    }

}

@media(max-width:768px){

    .process-grid{
        grid-template-columns:1fr;
    }

    .banner-content h2{
        font-size:34px;
    }

    .banner-btns{
        flex-direction:column;
    }

    .process-banner{
        min-height:400px;
    }

    .work-box{
        padding:30px 20px;
    }

}



/*=========================
WHY CHOOSE US
=========================*/

.why-section{
    padding:120px 0;
    background:#f8fbff;
}

/* TITLE */

.why-section .section-title{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.why-section .section-title span{

    display:inline-block;

    padding:10px 20px;

    background:#eaf2ff;

    color:#0d6efd;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:15px;
}

.why-section .section-title h2{

    font-size:52px;

    color:#111;

    line-height:1.2;

    margin-bottom:18px;
}

.why-section .section-title p{

    color:#666;

    line-height:1.8;

    font-size:17px;
}

/* GRID */

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

/* CARD */

.why-card{

    position:relative;

    background:#fff;

    padding:35px 30px;

    border-radius:28px;

    border:1px solid #edf0f5;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#0d6efd;

    box-shadow:
    0 25px 60px rgba(13,110,253,.15);
}

/* NUMBER */

.why-number{

    position:absolute;

    top:20px;
    right:20px;

    font-size:60px;

    font-weight:800;

    color:#f1f5fb;

    line-height:1;
}

/* ICON */

.why-icon{

    width:75px;
    height:75px;

    border-radius:20px;

    background:#eef5ff;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.why-icon i{

    color:#0d6efd;

    font-size:32px;
}

/* CONTENT */

.why-card h3{

    font-size:24px;

    color:#111;

    line-height:1.3;

    margin-bottom:15px;
}

.why-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;
}

/*=========================
TABLET
=========================*/

@media(max-width:991px){

    .why-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .why-section .section-title h2{

        font-size:40px;
    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:576px){

    .why-section{

        padding:80px 0;
    }

    .why-grid{

        grid-template-columns:1fr;
    }

    .why-section .section-title h2{

        font-size:30px;
    }

    .why-card{

        padding:30px 25px;
    }

    .why-icon{

        width:65px;
        height:65px;
    }

    .why-icon i{

        font-size:26px;
    }

}




/* contact us............................................................................................ */




.contact-section{
    padding-bottom:120px;
    background:#f8fbff;
}

.contact-wrapper{

    margin-top:60px;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:40px;
}

.contact-info{

    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-card{

    background:#fff;

    border-radius:24px;

    padding:25px;

    display:flex;
    gap:18px;

    align-items:flex-start;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.contact-card i{

    width:60px;
    height:60px;

    background:#eef5ff;

    color:#0d6efd;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}

.contact-card h4{

    margin-bottom:8px;
    color:#111;
}

.contact-card a,
.contact-card p{

    color:#666;
    text-decoration:none;
    line-height:1.7;
}

.contact-form-box{

    background:#fff;

    border-radius:30px;

    padding:40px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.form-group{
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #e5eaf2;

    border-radius:16px;

    outline:none;

    font-size:15px;

    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#0d6efd;
}

.contact-form-box button{

    width:100%;

    height:60px;

    border:none;

    border-radius:16px;

    background:#0d6efd;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;
}
@media(max-width:991px){

    .contact-wrapper{

        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .contact-section{
        padding:80px 0;
    }

    .contact-form-box{
        padding:25px;
    }

    .contact-card{

        padding:20px;

        gap:15px;
    }

    .contact-card i{

        width:50px;
        height:50px;

        min-width:50px;

        font-size:20px;
    }

    .contact-card h4{

        font-size:16px;
    }

    .contact-card a,
    .contact-card p{

        font-size:14px;
        line-height:1.6;
    }

}







/*=========================
TESTIMONIALS
=========================*/

.testimonial-section{
    padding-bottom:120px;
    background:#f8fbff;
    overflow:hidden;
}

.testimonial-slider{
    margin-top:70px;
    overflow:hidden;
}

.testimonial-track{

    display:flex;
    gap:30px;

    width:max-content;

    animation:testimonialMove 10s linear infinite;
}

.testimonial-slider:hover .testimonial-track{
    animation-play-state:paused;
}

@keyframes testimonialMove{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

.testimonial-card{

    width:380px;

    background:#fff;

    padding:35px;

    border-radius:28px;

    border:1px solid #edf0f5;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s;
}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(13,110,253,.15);
}

.featured{

    border:2px solid #0d6efd;
}

.client-top{

    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:20px;
}

.client-top img{

    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #eef5ff;
}

.client-top h4{

    margin-bottom:4px;

    color:#111;
}

.client-top span{

    color:#666;
    font-size:14px;
}

.stars{

    color:#ffb400;

    font-size:20px;

    margin-bottom:15px;
}

.testimonial-card p{

    line-height:1.9;

    color:#666;
}

/* MOBILE */

@media(max-width:768px){

    .testimonial-card{

        width:300px;
        padding:25px;
    }

}
















/*=========================
SERVICE AREAS
=========================*/

.service-areas{

    position:relative;

    padding:120px 0;

    background:
    url("../assests/hero3.png")
    center center/cover no-repeat;

    overflow:hidden;
}

.area-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.82),
    rgba(0,0,0,.82)
    );
}

.service-areas .container{

    position:relative;
    z-index:2;
}

.area-heading{

    text-align:center;

    max-width:800px;

    margin:auto auto 60px;
}

.area-heading span{

    color:#0d6efd;

    text-transform:uppercase;

    font-weight:600;

    letter-spacing:1px;
}

.area-heading h2{

    color:#fff;

    font-size:60px;

    margin:15px 0;
}

.area-heading p{

    color:#cfcfcf;

    line-height:1.8;
}

/* GRID */

.area-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:18px;
}

.area-grid a{

    text-decoration:none;

    color:#fff;

    padding:18px 22px;

    border-radius:16px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:
    1px solid rgba(255,255,255,.12);

    transition:.4s;
}

.area-grid a:hover{

    background:#0d6efd;

    transform:
    translateY(-6px);
}

/* BOTTOM */

.area-bottom{

    margin-top:60px;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.area-stat h3{

    color:#fff;

    font-size:60px;
}

.area-stat span{

    color:#cfcfcf;
}

.area-btn{

    text-decoration:none;

    background:#0d6efd;

    color:#fff;

    padding:18px 34px;

    border-radius:60px;

    font-weight:600;
}


@media(max-width:991px){

    .area-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .area-heading h2{

        font-size:42px;
    }

}

@media(max-width:576px){

    .service-areas{
        padding:80px 0;
    }

    .area-grid{

        grid-template-columns:1fr;
    }

    .area-bottom{

        flex-direction:column;
        gap:25px;
        text-align:center;
    }

    .area-heading h2{

        font-size:30px;
    }

}





/*=========================
BLOG SECTION
=========================*/

.blog-section{
    padding:120px 0;
    background:#f8fbff;
}

.blog-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

/* CARD */

.blog-card{

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    transition:.5s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    border:1px solid #edf0f5;
}

.blog-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(13,110,253,.15);
}

/* IMAGE */

.blog-image{

    position:relative;

    height:260px;

    overflow:hidden;
}

.blog-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.7s;
}

.blog-card:hover img{

    transform:scale(1.08);
}

/* TAG */

.blog-tag{

    position:absolute;

    top:20px;
    left:20px;

    background:#0d6efd;

    color:#fff;

    padding:8px 16px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;
}

/* CONTENT */

.blog-content{

    padding:30px;
}

.blog-meta{

    margin-bottom:15px;
}

.blog-meta span{

    color:#666;
    font-size:14px;
}

.blog-content h3{

    font-size:26px;

    line-height:1.4;

    margin-bottom:15px;

    color:#111;

    transition:.3s;
}

.blog-card:hover h3{

    color:#0d6efd;
}

.blog-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;
}

.blog-content a{

    text-decoration:none;

    color:#0d6efd;

    font-weight:600;

    display:inline-flex;

    align-items:center;

    gap:10px;
}

.blog-content a i{

    transition:.3s;
}

.blog-card:hover a i{

    transform:translateX(6px);
}

@media(max-width:991px){

    .blog-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:768px){

    .blog-grid{

        grid-template-columns:1fr;
    }

    .blog-section{
        padding:80px 0;
    }

}










/*=========================
FAQ SECTION
=========================*/

.faq-section{
    padding:120px 0;
    background:#fff;
}

.faq-wrapper{

    max-width:950px;
    margin:60px auto 0;
}

.faq-item{

    background:#fff;

    border:1px solid #edf0f5;

    border-radius:20px;

    margin-bottom:18px;

    overflow:hidden;

    transition:.3s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.04);
}

.faq-item.active{

    border-color:#0d6efd;

    box-shadow:
    0 20px 40px rgba(13,110,253,.10);
}

.faq-question{

    width:100%;

    border:none;

    background:none;

    cursor:pointer;

    padding:28px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-align:left;
}

.faq-question span{

    font-size:20px;

    font-weight:600;

    color:#111;

    line-height:1.5;
}

.faq-question i{

    color:#0d6efd;

    font-size:18px;

    transition:.3s;
}

.faq-item.active i{

    transform:rotate(45deg);
}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;
}

.faq-answer p{

    padding:0 30px 30px;

    color:#666;

    line-height:1.9;
}







/*=========================
GALLERY SECTION
=========================*/

.gallery-section{

    padding:120px 0;

    background:#0b0f19;
}

.container-fluid{

    width:100%;

    padding:0 40px;
}

/* TITLE */

.gallery-section .section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 70px;
}

.gallery-section .section-title span{

    display:inline-block;

    padding:10px 22px;

    background:rgba(255,255,255,.08);

    color:#0d6efd;

    border-radius:50px;

    margin-bottom:15px;
}

.gallery-section .section-title h2{

    color:#fff;

    font-size:56px;

    margin-bottom:18px;
}

.gallery-section .section-title p{

    color:#c8c8c8;

    line-height:1.8;
}

/* GRID */

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    grid-auto-rows:260px;

    gap:20px;
}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    cursor:pointer;
}

.gallery-item.large{

    grid-column:span 2;
    grid-row:span 2;
}

.gallery-item.tall{

    grid-row:span 2;
}

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.8s;
}

/* OVERLAY */

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:30px;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.85)
    );

    opacity:0;

    transition:.4s;
}

.gallery-overlay h3{

    color:#fff;

    font-size:24px;
}

.gallery-item:hover img{

    transform:scale(1.12);
}

.gallery-item:hover .gallery-overlay{

    opacity:1;
}


@media(max-width:991px){

    .gallery-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .gallery-section .section-title h2{

        font-size:40px;
    }

}

@media(max-width:768px){

    .container-fluid{
        padding:0 20px;
    }

    .gallery-grid{

        grid-template-columns:1fr;

        grid-auto-rows:280px;
    }

    .gallery-item.large,
    .gallery-item.tall{

        grid-column:auto;
        grid-row:auto;
    }

    .gallery-section .section-title h2{

        font-size:30px;
    }

}

















/*=========================
POPUP
=========================*/

.popup-overlay{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.75);

    backdrop-filter:blur(5px);

    display:flex;

    align-items:center;
    justify-content:center;

    padding:20px;

    opacity:0;
    visibility:hidden;

    transition:.4s;

    z-index:99999;
}

.popup-overlay.active{

    opacity:1;
    visibility:visible;
}

.popup-box{

    width:100%;
    max-width:500px;

    background:#fff;

    border-radius:30px;

    padding:40px;

    position:relative;

    animation:popupAnim .4s ease;
}

@keyframes popupAnim{

    from{
        transform:translateY(30px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}

.popup-close{

    position:absolute;

    top:15px;
    right:15px;

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    background:#f3f6fb;

    cursor:pointer;

    font-size:22px;
}

.popup-tag{

    display:inline-block;

    background:#eef5ff;

    color:#0d6efd;

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:15px;

    font-weight:600;
}

.popup-box h3{

    font-size:34px;

    margin-bottom:15px;

    color:#111;
}

.popup-box p{

    color:#666;

    margin-bottom:25px;
}

.popup-box form{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.popup-box input{

    height:58px;

    border:1px solid #e5eaf2;

    border-radius:14px;

    padding:0 18px;

    outline:none;
}

.popup-box button[type="submit"]{

    height:58px;

    border:none;

    background:#0d6efd;

    color:#fff;

    border-radius:14px;

    cursor:pointer;

    font-weight:600;
}

@media(max-width:576px){

    .popup-box{

        padding:25px;
    }

    .popup-box h3{

        font-size:26px;
    }

}





/*=========================
FLOATING CONTACT
=========================*/

.floating-contact{

    position:fixed;

    left:20px;

    top:50%;

    transform:translateY(-50%);

    z-index:9999;

    display:flex;
    flex-direction:column;

    gap:18px;
}

/* BUTTON */

.float-btn{

    position:relative;

    width:65px;
    height:65px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    text-decoration:none;

    font-size:28px;

    overflow:visible;
}

/* WHATSAPP */

.whatsapp{

    background:#25D366;
}

/* CALL */

.call{

    background:#0d6efd;
}

/* PULSE */

.pulse{

    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    animation:pulseWave 2s infinite;
}

.whatsapp .pulse{

    background:rgba(37,211,102,.35);
}

.call .pulse{

    background:rgba(13,110,253,.35);
}

@keyframes pulseWave{

    0%{

        transform:scale(1);

        opacity:1;
    }

    100%{

        transform:scale(2);

        opacity:0;
    }
}

/* ICON */

.float-btn i{

    position:relative;

    z-index:2;
}

/* HOVER */

.float-btn:hover{

    transform:scale(1.08);
}

/* MOBILE */

@media(max-width:768px){

    .floating-contact{

        left:12px;
    }

    .float-btn{

        width:55px;
        height:55px;

        font-size:24px;
    }

}
