.top-bar{
    background:#0d3b66;
    color:#fff;
    font-size:14px;
}

.top-bar a{
    color:#fff;
}

.navbar-nav .nav-link{
    font-weight:600;
    margin:0 12px;
    color:#222;
}

.navbar-nav .nav-link:hover{
    color:#0d6efd;
}

.consultation-btn{
    border-radius:50px;
    padding:12px 24px;
    font-weight:600;
    animation:pulse 1.8s infinite;
}

@keyframes pulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(13,110,253,.6);
    }

    70%{
        transform:scale(1.05);
        box-shadow:0 0 0 15px rgba(13,110,253,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(13,110,253,0);
    }

}

/*=========================
        FOOTER
==========================*/

.footer{
    background:#0d1b2a;
    color:#ffffff;
}

.footer h5{
    color:#ffffff;
    font-weight:700;
    margin-bottom:20px;
}

.footer p{
    color:#d6d6d6;
    line-height:1.8;
}

.footer-links{
    margin:0;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#d6d6d6;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#0d6efd;
    padding-left:6px;
}

.footer-links i{
    margin-right:6px;
}

.footer p i{
    color:#0d6efd;
    margin-right:10px;
    font-size:18px;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:20px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#1d3557;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:.3s;
}

.social-icons a:hover{
    background:#0d6efd;
    transform:translateY(-5px);
}

.footer hr{
    border-color:rgba(255,255,255,.15);
}

/* Navbar Scroll */

.navbar-scroll{
    background:#ffffff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

/* Active Menu */

.navbar-nav .nav-link.active{
    color:#0d6efd;
    font-weight:700;
}

/* Back To Top */

.back-to-top{

    position:fixed;
    right:20px;
    bottom:20px;

    width:45px;
    height:45px;

    border:none;
    border-radius:50%;

    background:#0d6efd;
    color:#fff;

    font-size:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.back-to-top.show{

    opacity:1;
    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-5px);

}
/*==================================================
        GOOGLE FONT
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#222;
    background:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:.3s;
}

img{
    max-width:100%;
    display:block;
}

section{
    padding:90px 0;
}

.container{
    max-width:1320px;
}

/*==================================================
        COMMON
==================================================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*==================================================
        BUTTONS
==================================================*/

.btn{
    border-radius:50px;
    padding:14px 34px;
    font-weight:600;
    transition:.4s;
}

.btn-primary{

    background:#0d6efd;
    border:2px solid #0d6efd;

}

.btn-primary:hover{

    background:#084db9;
    border-color:#084db9;
    transform:translateY(-3px);

}

.btn-outline-primary{

    border:2px solid #0d6efd;
    color:#0d6efd;

}

.btn-outline-primary:hover{

    background:#0d6efd;
    color:#fff;

}

/*==================================================
        HERO SLIDER
==================================================*/

.hero-slider{
    padding:0;
}

.carousel-item{
    position:relative;
}

.carousel-item img{

    width:100%;
    height:90vh;
    object-fit:cover;

}

.carousel-item::before{

    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);

}

.carousel-caption{

    bottom:50%;
    transform:translateY(50%);
    z-index:5;
    text-align:left;
    max-width:700px;

}

.carousel-caption h1{

    font-size:58px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:20px;

}

.carousel-caption p{

    font-size:20px;
    margin-bottom:30px;
    color:#fff;

}

.carousel-caption .btn{

    margin-right:15px;

}

.carousel-indicators button{

    width:12px;
    height:12px;
    border-radius:50%;

}

.carousel-control-prev,
.carousel-control-next{

    width:7%;

}

/*==================================================
        HERO ANIMATION
==================================================*/

.carousel-caption{

    animation:slideUp 1s;

}

@keyframes slideUp{

    from{

        opacity:0;
        transform:translateY(80px);

    }

    to{

        opacity:1;
        transform:translateY(50%);

    }

}

/*==================================================
        ABOUT
==================================================*/

.about-section{

    background:#fff;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.about-content h5{

    color:#0d6efd;
    font-weight:700;
    margin-bottom:15px;

}

.about-content h2{

    font-size:42px;
    font-weight:700;
    margin-bottom:20px;

}

.about-content p{

    color:#666;
    line-height:1.9;
    margin-bottom:20px;

}

.about-list{

    margin:30px 0;

}

.about-list li{

    list-style:none;
    margin-bottom:15px;
    font-size:16px;

}

.about-list i{

    color:#0d6efd;
    margin-right:10px;
    font-size:18px;

}

/*==================================================
        HIGHLIGHT BOXES
==================================================*/

.highlight-section{

    background:#f8f9fa;

}

.highlight-box{

    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    height:100%;

}

.highlight-box:hover{

    transform:translateY(-10px);

}

.highlight-box i{

    font-size:45px;
    color:#0d6efd;
    margin-bottom:20px;

}

.highlight-box h3{

    font-size:36px;
    font-weight:700;
    color:#0d6efd;

}

.highlight-box h5{

    margin:15px 0;

}

.highlight-box p{

    color:#666;

}

/*==================================================
        FLOATING BUTTON
==================================================*/

.consultation-btn{

    animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

box-shadow:0 0 0 0 rgba(13,110,253,.5);

}

70%{

transform:scale(1.05);

box-shadow:0 0 0 18px rgba(13,110,253,0);

}

100%{

transform:scale(1);

box-shadow:0 0 0 0 rgba(13,110,253,0);

}

}

/*==================================================
        RESPONSIVE
==================================================*/

@media(max-width:991px){

.carousel-item img{

height:600px;

}

.carousel-caption{

text-align:center;
left:8%;
right:8%;

}

.carousel-caption h1{

font-size:40px;

}

.carousel-caption p{

font-size:18px;

}

.about-content{

margin-top:40px;

}

.section-title h2{

font-size:34px;

}

}

@media(max-width:768px){

.carousel-item img{

height:500px;

}

.carousel-caption{

bottom:40%;

}

.carousel-caption h1{

font-size:30px;

}

.carousel-caption p{

font-size:16px;

}

.carousel-caption .btn{

display:block;
margin:10px auto;
width:220px;

}

.section-title h2{

font-size:28px;

}

.about-content h2{

font-size:30px;

}

section{

padding:70px 0;

}

}
/*==================================================
                SERVICES SECTION
==================================================*/

.services-section{
    background:#f8f9fc;
}

.service-box{

    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    transition:.4s;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    overflow:hidden;
    position:relative;
    height:100%;
}

.service-box::before{

    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:5px;
    background:#0d6efd;
    transition:.4s;

}

.service-box:hover::before{

    left:0;

}

.service-box:hover{

    transform:translateY(-12px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.service-icon{

    width:90px;
    height:90px;
    margin:auto;
    background:#eef5ff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;

}

.service-icon img{

    width:50px;

}

.service-box h4{

    font-size:24px;
    font-weight:700;
    margin-bottom:15px;

}

.service-box p{

    color:#666;
    line-height:1.8;
    margin-bottom:25px;

}

.service-box a{

    color:#0d6efd;
    font-weight:600;

}

.service-box a:hover{

    letter-spacing:1px;

}

/*==================================================
                WHY CHOOSE US
==================================================*/

.why-us-section{

    background:#fff;

}

.why-box{

    display:flex;
    align-items:flex-start;
    margin-bottom:35px;

}

.why-icon{

    width:75px;
    height:75px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-right:20px;
    flex-shrink:0;

}

.why-content h4{

    font-size:22px;
    font-weight:700;
    margin-bottom:10px;

}

.why-content p{

    color:#666;
    line-height:1.8;

}

.why-image img{

    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/*==================================================
                WORK PROCESS
==================================================*/

.process-section{

    background:#f8f9fc;

}

.process-box{

    background:#fff;
    padding:35px 25px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
    position:relative;
    height:100%;
    box-shadow:0 12px 30px rgba(0,0,0,.07);

}

.process-box:hover{

    transform:translateY(-10px);

}

.process-number{

    position:absolute;
    top:-18px;
    right:20px;

    width:42px;
    height:42px;

    border-radius:50%;
    background:#0d6efd;
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-weight:700;

}

.process-icon{

    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;

}

.process-icon i{

    font-size:38px;
    color:#0d6efd;

}

.process-box h4{

    font-weight:700;
    margin-bottom:15px;

}

.process-box p{

    color:#666;
    line-height:1.8;

}

/*==================================================
                INDUSTRIES
==================================================*/

.industries-section{

    background:#fff;

}

.industry-box{

    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.industry-box:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.industry-box img{

    width:100%;
    height:220px;
    object-fit:cover;

}

.industry-content{

    padding:25px;

}

.industry-content h4{

    font-weight:700;
    margin-bottom:12px;

}

.industry-content p{

    color:#666;
    line-height:1.8;
    margin-bottom:20px;

}

.industry-content a{

    color:#0d6efd;
    font-weight:600;

}

.industry-content a:hover{

    letter-spacing:1px;

}

/*==================================================
            SECTION ANIMATION
==================================================*/

.service-box,
.process-box,
.industry-box,
.why-box{

    transition:all .4s ease;

}

.service-box:hover,
.process-box:hover,
.industry-box:hover{

    cursor:pointer;

}

/*==================================================
                RESPONSIVE
==================================================*/

@media(max-width:991px){

.service-box,
.process-box,
.industry-box{

    margin-bottom:30px;

}

.why-box{

    flex-direction:column;
    text-align:center;

}

.why-icon{

    margin:auto;
    margin-bottom:20px;

}

.why-image{

    margin-top:40px;

}

}

@media(max-width:767px){

.service-box{

    padding:25px;

}

.process-box{

    padding:25px;

}

.industry-box img{

    height:200px;

}

.service-box h4,
.process-box h4,
.industry-content h4{

    font-size:22px;

}

}
/*==================================================
            COUNTER SECTION
==================================================*/

.counter-section{
    background:linear-gradient(rgba(13,110,253,.90),rgba(13,110,253,.90)),
    url('../images/background/counter.jpg') center center;
    background-size:cover;
    color:#fff;
}

.counter-box{
    text-align:center;
    padding:35px 20px;
}

.counter-box i{
    font-size:55px;
    margin-bottom:20px;
}

.counter-box h2{
    font-size:50px;
    font-weight:700;
    margin-bottom:10px;
}

.counter-box p{
    font-size:18px;
    margin:0;
}

/*==================================================
            GALLERY
==================================================*/

.gallery-section{
    background:#f8f9fa;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    margin-bottom:25px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(13,110,253,.80);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}

.gallery-overlay i{
    color:#fff;
    font-size:42px;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

/*==================================================
            TESTIMONIAL
==================================================*/

.testimonial-section{
    background:#fff;
}

.testimonial-box{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    text-align:center;
}

.testimonial-box img{
    width:90px;
    height:90px;
    border-radius:50%;
    margin:auto;
    margin-bottom:20px;
    border:4px solid #0d6efd;
}

.testimonial-box h5{
    font-weight:700;
    margin-top:15px;
}

.testimonial-box small{
    color:#0d6efd;
}

.testimonial-box p{
    color:#666;
    line-height:1.9;
}

.rating{
    color:#ffc107;
    margin-bottom:15px;
}

/*==================================================
            FAQ
==================================================*/

.faq-section{
    background:#f8f9fa;
}

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:12px !important;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.06);
}

.accordion-button{
    font-weight:600;
    padding:18px 22px;
}

.accordion-button:not(.collapsed){
    background:#0d6efd;
    color:#fff;
}

.accordion-body{
    line-height:1.9;
    color:#666;
}

/*==================================================
            CTA
==================================================*/

.cta-section{
    background:linear-gradient(135deg,#0d6efd,#0047b3);
    color:#fff;
    text-align:center;
}

.cta-section h2{
    font-size:44px;
    font-weight:700;
    margin-bottom:20px;
}

.cta-section p{
    font-size:18px;
    max-width:700px;
    margin:auto;
    margin-bottom:35px;
}

.cta-section .btn{
    background:#fff;
    color:#0d6efd;
    font-weight:700;
}

.cta-section .btn:hover{
    transform:translateY(-5px);
}

/*==================================================
            CONTACT INFO
==================================================*/

.contact-info{
    background:#fff;
}

.contact-card{
    text-align:center;
    padding:35px 25px;
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.contact-card:hover{
    transform:translateY(-10px);
}

.contact-card i{
    width:80px;
    height:80px;
    line-height:80px;
    border-radius:50%;
    background:#eef5ff;
    color:#0d6efd;
    font-size:34px;
    margin-bottom:20px;
}

.contact-card h4{
    font-weight:700;
    margin-bottom:15px;
}

.contact-card p{
    color:#666;
    margin:0;
}

/*==================================================
            GOOGLE MAP
==================================================*/

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
}

/*==================================================
        FLOATING WHATSAPP
==================================================*/

.whatsapp-btn{
    position:fixed;
    bottom:90px;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:9999;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-btn:hover{
    color:#fff;
    transform:scale(1.08);
}

@keyframes whatsappPulse{

0%{
box-shadow:0 0 0 0 rgba(37,211,102,.5);
}

70%{
box-shadow:0 0 0 18px rgba(37,211,102,0);
}

100%{
box-shadow:0 0 0 0 rgba(37,211,102,0);
}

}

/*==================================================
            BACK TO TOP
==================================================*/

.back-to-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:55px;
    height:55px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
}

.back-to-top:hover{
    color:#fff;
    transform:translateY(-6px);
}

/*==================================================
            FOOTER
==================================================*/

.footer{
    background:#081828;
    color:#fff;
}

.footer a{
    color:#ddd;
}

.footer a:hover{
    color:#0d6efd;
}

.footer h5{
    margin-bottom:20px;
    font-weight:700;
}

.footer p{
    color:#c9c9c9;
    line-height:1.8;
}

.footer hr{
    border-color:rgba(255,255,255,.10);
}

/*==================================================
            RESPONSIVE
==================================================*/

@media(max-width:991px){

.counter-box{
    margin-bottom:30px;
}

.contact-card{
    margin-bottom:30px;
}

.cta-section h2{
    font-size:34px;
}

.map-section iframe{
    height:350px;
}

}

@media(max-width:767px){

.counter-box h2{
    font-size:36px;
}

.counter-box i{
    font-size:42px;
}

.cta-section h2{
    font-size:28px;
}

.gallery-item img{
    height:220px;
}

.testimonial-box{
    padding:30px 20px;
}

.whatsapp-btn{
    width:55px;
    height:55px;
    font-size:28px;
}

.back-to-top{
    width:50px;
    height:50px;
}

.map-section iframe{
    height:280px;
}

}
/* ===== Slider ===== */

.hero-slider,
.carousel,
.carousel-inner,
.carousel-item{
    height:100vh;
}

.carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
}

/* Desktop */
@media (min-width:992px){

.carousel-item{
    height:700px;
}

.carousel-item img{
    height:700px;
}

}

/* Tablet */
@media (max-width:991px){

.carousel-item{
    height:500px;
}

.carousel-item img{
    height:500px;
    object-position:center;
}

}

/* Mobile */
@media (max-width:576px){

.carousel-item{
    height:300px;
}

.carousel-item img{
    height:300px;
    object-fit:cover;
    object-position:center;
}

.carousel-caption{
    bottom:20px;
    left:15px;
    right:15px;
    text-align:left;
}

.carousel-caption h1{
    font-size:24px;
}

.carousel-caption p{
    font-size:14px;
}

}