/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

.topbar .top-link a {
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, 0.20);
    transition: all 0.3s ease;
}

    .topbar .top-link a i {
        transition: all 0.3s ease;
    }

    .topbar .top-link a:hover {
        background: #23d69a !important;
        border-color: #23d69a;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(35, 214, 154, 0.30);
    }

        .topbar .top-link a:hover i {
            color: #ffffff !important;
        }

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: #000 !important;
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}
 

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

/* Move carousel dots upward */
#carouselId .carousel-indicators {
    bottom: 13px;
    margin-bottom: 0;
    z-index: 5;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

/* =========================
   CAROUSEL DESKTOP HEIGHT
========================= */

.carousel-item {
    height: 600px;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

    .carousel-item img {
        width: 100%;
        height: 600px;
        object-fit: cover;
        object-position: center;
    }

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}


@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1,
    .carousel-item h2 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1,
    .carousel-item h2 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: #23d69a !important;
    border-color: #23d69a !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(35, 214, 154, 0.30);
}

    .footer .hightech-link a:hover i {
        color: #ffffff !important;
    }

/* =========================
   FOOTER MIRO LOGO
========================= */

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo {
    width: 220px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* MIRO FOOTER ADDRESS */

.miro-footer-address {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
}

    .miro-footer-address i {
        flex-shrink: 0;
        margin-top: 6px;
    }

    .miro-footer-address span {
        display: block;
        flex: 1;
        text-align: justify;
        line-height: 1.6;
    }

/*** Footer End ***/

.container-fluid.bg-primary {
    position: fixed;
    background-color: #ffffff !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030; /* Ensures the navbar stays on top of images and carousels */
}

body {
    padding-top: 49px; /* Adjust this value based on your navbar's height */
}

/* Custom styling to match the mockup perfectly and fix the bottom gap */
.navbar-brand .custom-logo {
    height: 55px;            /* 1. INCREASED from 38px to force it to fill the top gap */
    width: auto;
    display: block;
    object-fit: contain;
    
    /* 2. REDUCED scale slightly to 2.0 so it doesn't get too massive with the new height */
    transform: scale(3.0) translateY(2px);   
    transform-origin: left center; 
    
    margin-left: 15px;       
}

/* Ensure the parent link container doesn't restrict or cut off our logo */
.navbar-brand {
    display: flex !important;
    align-items: center !important;
    overflow: visible !important; /* Crucial so the scaled image doesn't get clipped */
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* =========================================
   MIRO MODERN HERO DESIGN
========================================= */

.miro-hero-content {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 18px 20px;
}

.miro-hero-tag {
    display: inline-block;
    padding: 7px 18px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: #23d69a;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(35, 214, 154, 0.45);
    border-radius: 40px;
    backdrop-filter: blur(8px);
}

.miro-hero-content h1,
.miro-hero-content h2 {
    max-width: 950px;
    margin: 0 auto 14px;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
}

    .miro-hero-content h1 span,
    .miro-hero-content h2 span {
        display: block;
        color: #23d69a;
    }

.miro-hero-typing {
    margin: 0 auto 10px !important;
    font-size: 18px !important;
    font-weight: 600;
    color: #fff;
}

.miro-hero-desc {
    max-width: 720px !important;
    margin: 0 auto 20px !important;
    font-size: 16px !important;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}


/* BUTTONS */

.miro-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 22px;
}

.miro-primary-btn,
.miro-secondary-btn {
    min-width: 180px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.miro-primary-btn {
    background: #23d69a;
    color: #07251d;
    border: 1px solid #23d69a;
}

    .miro-primary-btn:hover {
        background: #fff;
        color: #111;
        transform: translateY(-3px);
    }

.miro-secondary-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

    .miro-secondary-btn:hover {
        background: #fff;
        color: #111;
        transform: translateY(-3px);
    }


/* FEATURE CARDS */

.miro-hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.miro-feature {
    min-width: 170px;
    padding: 9px 15px;
    border: 1px solid rgba(35, 214, 154, 0.28);
    border-radius: 7px;
    background: rgba(4, 18, 15, 0.55);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
}

    .miro-feature i {
        margin-right: 7px;
        color: #23d69a;
    }

    .miro-feature:hover {
        transform: translateY(-3px);
        border-color: #23d69a;
        background: rgba(4, 25, 20, 0.8);
    }

@media (max-width: 992px) {

    .miro-hero-content h1,
    .miro-hero-content h2 {
        font-size: 40px;
    }

    .miro-hero-typing {
        font-size: 16px !important;
    }

    .miro-hero-desc {
        font-size: 15px !important;
    }
}

@media (max-width: 768px) {

    .miro-hero-content {
        padding: 15px;
    }

    .miro-hero-tag {
        font-size: 10px;
        padding: 6px 12px;
    }

    .miro-hero-content h1,
    .miro-hero-content h2 {
        font-size: 30px;
    }

    .miro-hero-typing {
        font-size: 13px !important;
    }

    .miro-hero-desc {
        font-size: 13px !important;
        line-height: 1.5;
    }

    .miro-hero-buttons {
        gap: 8px;
    }

    .miro-primary-btn,
    .miro-secondary-btn {
        min-width: auto;
        padding: 10px 16px;
        font-size: 13px;
    }

    .miro-feature {
        min-width: 135px;
        font-size: 11px;
        padding: 7px 10px;
    }
}

/* =====================================
   MIRO HOME ABOUT SECTION
===================================== */

.miro-about-home {
    padding: 60px 0;
    background: radial-gradient(circle at 15% 50%, rgba(35, 214, 154, 0.08), transparent 35%), linear-gradient(135deg, #ffffff, #f7fffb);
}


/* LEFT SIDE */

.miro-about-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-85px) scale(1.05);
    transform-origin: center;
}

/* CENTER LOGO */

.miro-about-logo {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 7px solid rgba(35, 214, 154, 0.18);
    border-radius: 50%;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 2;
}

    .miro-about-logo::before {
        content: "";
        position: absolute;
        inset: -14px;
        border: 2px dashed rgba(35, 214, 154, 0.45);
        border-radius: 50%;
    }

    .miro-about-logo img {
        width: 120px;
        max-width: 80%;
    }


/* SERVICE BOXES */

.miro-service-item {
    position: absolute;
    width: 225px;
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px 10px 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(35, 214, 154, 0.35);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(17, 70, 52, 0.09);
    transition: all 0.3s ease;
}

    .miro-service-item:hover {
        transform: translateX(7px);
        border-color: #23d69a;
        box-shadow: 0 15px 35px rgba(35, 214, 154, 0.16);
    }

.miro-service-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35, 214, 154, 0.12);
    border-radius: 10px;
    color: #16b77d;
    font-size: 20px;
}

.miro-service-item span {
    color: #15251f;
    font-size: 14px;
    font-weight: 700;
}


/* POSITIONS */

.miro-service-item.item-1 {
    top: 45px;
    right: -25px;
}

.miro-service-item.item-2 {
    top: 130px;
    right: -55px;
}

.miro-service-item.item-3 {
    top: 215px;
    right: -70px;
}

.miro-service-item.item-4 {
    top: 300px;
    right: -55px;
}

.miro-service-item.item-5 {
    top: 385px;
    right: -25px;
}

/* CONNECTING LINE */

.miro-service-item::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 1px;
    left: -115px;
    background: linear-gradient( to left, #23d69a, rgba(35, 214, 154, 0.08) );
}


/* RIGHT CONTENT */

.miro-about-content {
    max-width: 650px;
}

.miro-about-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #16b77d;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.miro-about-line {
    width: 42px;
    height: 2px;
    background: #16b77d;
    display: inline-block;
}

.miro-about-content h2 {
    margin-bottom: 22px;
    color: #111;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

    .miro-about-content h2 span {
        color: #17ba7f;
    }

.miro-about-content p {
    color: #626d68;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* =================================
   MIRO ABOUT STATS - PILL STYLE
================================= */

.miro-about-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 25px 0 22px;
}


/* EACH PILL */

.miro-about-stat {
    flex: 1;
    min-width: 0;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 8px 13px 8px 17px;
    background: #ffffff;
    border: 2px solid rgba(35, 214, 154, 0.55);
    border-radius: 40px;
    box-shadow: 0 9px 22px rgba(25, 105, 79, 0.12);
    transition: all 0.3s ease;
}


    /* NUMBER */

    .miro-about-stat strong {
        flex-shrink: 0;
        color: #174dc5;
        font-size: 27px;
        line-height: 1;
        font-weight: 800;
    }


    /* TEXT */

    .miro-about-stat .miro-stat-title {
        flex: 1;
        margin: 0;
        color: #394a44;
        font-size: 12px;
        line-height: 1.3;
        font-weight: 700;
    }


/* RIGHT ICON */

.miro-stat-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35, 214, 154, 0.12);
    border-radius: 50%;
    color: #16b77d;
    font-size: 17px;
    transition: all 0.3s ease;
}


/* HOVER */

.miro-about-stat:hover {
    transform: translateY(-5px);
    border-color: #23d69a;
    box-shadow: 0 14px 28px rgba(35, 214, 154, 0.18);
}

    .miro-about-stat:hover .miro-stat-icon {
        background: #23d69a;
        color: #ffffff;
        transform: scale(1.08);
    }


/* BUTTON */

/* ==============================
   MIRO ABOUT PREMIUM BUTTON
============================== */

.miro-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 265px;
    height: 54px;
    padding: 0 7px 0 24px;
    background: linear-gradient(135deg, #22d49a, #18bd83);
    border-radius: 8px;
    color: #07291f;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(24, 189, 131, 0.20);
    transition: all 0.35s ease;
}


/* RIGHT ICON BOX */

.miro-about-btn-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #16b77d;
    border-radius: 7px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    transition: all 0.35s ease;
}


/* HOVER */

.miro-about-btn:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #0f4938, #092f25);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

    .miro-about-btn:hover .miro-about-btn-icon {
        background: #23d69a;
        color: #ffffff;
        transform: translateX(3px);
    }


/* TABLET */

@media (max-width: 991px) {

    .miro-about-home {
        padding: 60px 0;
    }

    .miro-about-visual {
        min-height: 520px;
        max-width: 600px;
        margin: auto;
        transform: scale(1);
    }

    .miro-service-item.item-1,
    .miro-service-item.item-2,
    .miro-service-item.item-3,
    .miro-service-item.item-4,
    .miro-service-item.item-5 {
        right: 20px;
    }

    .miro-about-content {
        margin: auto;
    }
}


/* MOBILE */

@media (max-width: 576px) {

    .miro-about-home {
        padding: 45px 0;
    }

    .miro-about-visual {
        min-height: auto;
        display: grid;
        gap: 10px;
        padding-top: 20px;
    }

    .miro-about-logo {
        position: relative;
        width: 140px;
        height: 140px;
        margin: 0 auto 20px;
    }

    .miro-service-item {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        width: 100%;
        min-height: 58px;
    }

        .miro-service-item::before {
            display: none;
        }

    .miro-about-content h2 {
        font-size: 32px;
    }

   
}

/* TABLET / MOBILE */

@media (max-width: 767px) {

    .miro-about-stats {
        flex-direction: column;
        align-items: stretch;
    }

    .miro-about-stat {
        width: 100%;
        max-width: 300px;
    }
}

/* ========================================
   MIRO HOME SERVICES
======================================== */

.miro-services-home {
    padding: 75px 0 85px;
    background: radial-gradient( circle at 50% 40%, rgba(35, 214, 154, 0.07), transparent 42% ), #ffffff;
}


/* ===============================
   HEADING
================================ */

.miro-services-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.miro-services-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #16b77d;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

    .miro-services-label span {
        width: 35px;
        height: 2px;
        background: #16b77d;
    }

.miro-services-heading h2 {
    margin: 0;
    color: #111;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

    .miro-services-heading h2 strong {
        display: block;
        color: #18bd83;
        font-weight: 800;
    }

.miro-services-heading p {
    max-width: 650px;
    margin: 17px auto 0;
    color: #66716c;
    font-size: 15px;
    line-height: 1.7;
}


/* ==================================
   SERVICE CARDS
================================== */

.miro-services-grid {
    row-gap: 52px !important;
}

.miro-service-card {
    position: relative;
    min-height: 155px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 46px 20px 20px;
    text-align: center;
    background: linear-gradient( 135deg, #123e32, #0b2f27 );
    border: 2px solid rgba(35, 214, 154, 0.45);
    border-radius: 30px;
    box-shadow: 0 18px 38px rgba(11, 55, 43, 0.13);
    overflow: visible;
    transition: all 0.35s ease;
}


    /* subtle shine */

    .miro-service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: radial-gradient( circle at top right, rgba(35, 214, 154, 0.15), transparent 36% );
        pointer-events: none;
    }


/* ==================================
   TOP ROUND ICON
================================== */

.miro-service-card-icon {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 5px solid #effcf7;
    border-radius: 50%;
    color: #16b77d;
    font-size: 27px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
    z-index: 3;
    transition: all 0.35s ease;
}


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

.miro-service-card h4 {
    position: relative;
    z-index: 2;
    min-height: 45px;
    margin: 8px 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}


/* ==================================
   READ MORE BUTTON
================================== */

.miro-service-read {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 15px;
    background: linear-gradient( 135deg, #23d69a, #18bd83 );
    border-radius: 5px;
    color: #07271e;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .miro-service-read i {
        font-size: 10px;
        transition: transform 0.3s ease;
    }


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

.miro-service-card:hover {
    transform: translateY(-8px);
    background: linear-gradient( 135deg, #0d503d, #092d25 );
    border-color: #23d69a;
    box-shadow: 0 22px 45px rgba(20, 133, 96, 0.20);
}

    .miro-service-card:hover .miro-service-card-icon {
        background: #23d69a;
        color: #ffffff;
        border-color: #ddfff3;
        transform: translateX(-50%) translateY(-4px) rotate(-4deg);
    }

.miro-service-read:hover {
    background: #ffffff;
    color: #0b382b;
}

    .miro-service-read:hover i {
        transform: translateX(3px);
    }


/* ==================================
   TABLET
================================== */

@media (max-width: 991px) {

    .miro-services-home {
        padding: 65px 0;
    }

    .miro-services-heading h2 {
        font-size: 36px;
    }

    .miro-services-grid {
        row-gap: 55px !important;
    }
}


/* ==================================
   MOBILE
================================== */

@media (max-width: 576px) {

    .miro-services-home {
        padding: 50px 0 55px;
    }

    .miro-services-heading {
        margin-bottom: 55px;
    }

        .miro-services-heading h2 {
            font-size: 29px;
        }

        .miro-services-heading p {
            font-size: 14px;
        }

    .miro-service-card {
        max-width: 340px;
        margin: auto;
        min-height: 165px;
    }
}

/* =====================================
   MIRO SERVICE READ MORE BUTTON
===================================== */

.miro-service-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 130px;
    height: 44px;
    padding: 0 20px;
    background: #23d69a;
    color: #082d22;
    border: 1px solid #23d69a;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .miro-service-read i {
        font-size: 13px;
        transition: transform 0.3s ease;
    }

    /* HOVER */
    .miro-service-read:hover {
        background: #ffffff;
        color: #0b4938;
        border-color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
    }

        .miro-service-read:hover i {
            transform: translateX(5px);
        }


/* Footer Copyright Logo */
.miro-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.miro-copyright-logo {
    width: 65px;
    height: auto;
    object-fit: contain;
}

/* =========================
   FOOTER COPYRIGHT AREA
========================= */

.footer-divider {
    margin: 35px 0 0;
    border: 0;
    border-top: 1px solid #444;
}

/* White copyright strip */
.miro-footer-bottom {
    background: #ffffff;
    padding: 18px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}
/* Ensure the body or main wrapper handles horizontal overflow safely as a backup */
html, body {
    overflow-x: hidden;
}

/* Copyright content */
.miro-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #111111;
    font-size: 16px;
    font-weight: 500;
}

    /* Copyright icon */
    .miro-copyright i {
        color: #111111 !important;
    }

/* Small MIRO logo */
.miro-copyright-logo {
    width: 70px;
    height: auto;
    object-fit: contain;
}

/* =====================================
   MIRO CONTACT SECTION
===================================== */

.miro-contact-section {
    padding: 70px 0;
    background: radial-gradient(circle at 85% 35%, rgba(35, 214, 154, 0.08), transparent 30%), linear-gradient(135deg, #ffffff, #f7fffb);
}


/* ===============================
   LEFT FORM
=============================== */

.miro-contact-form-box {
    min-height: 620px;
    padding: 42px 45px;
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, 0.25);
    border-right: 4px solid #23d69a;
    border-bottom: 4px solid #23d69a;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(13, 75, 57, 0.08);
}

.miro-contact-form-heading {
    text-align: center;
    margin-bottom: 30px;
}

    .miro-contact-form-heading span {
        color: #16b77d;
        font-size: 13px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .miro-contact-form-heading h2 {
        margin: 7px 0 8px;
        color: #111111;
        font-size: 34px;
        font-weight: 800;
    }

    .miro-contact-form-heading p {
        margin: 0;
        color: #6a746f;
        font-size: 14px;
    }


/* LABELS */

.miro-contact-form-box label {
    margin-bottom: 7px;
    color: #27332e;
    font-size: 14px;
    font-weight: 700;
}

    .miro-contact-form-box label span {
        color: #23d69a;
    }


/* INPUTS */

.miro-contact-form-box .form-control,
.miro-contact-form-box .form-select {
    min-height: 52px;
    padding: 11px 15px;
    background: #fbfdfc;
    border: 1px solid #dce8e3;
    border-radius: 9px;
    color: #27332e;
    box-shadow: none;
    transition: all .3s ease;
}

.miro-contact-form-box textarea.form-control {
    min-height: 125px;
    resize: none;
}

.miro-contact-form-box .form-control:focus,
.miro-contact-form-box .form-select:focus {
    border-color: #23d69a;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(35, 214, 154, 0.10);
}


/* SUBMIT BUTTON */

.miro-contact-submit {
    min-width: 220px;
    height: 54px;
    padding: 0 7px 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #22d49a, #18bd83);
    color: #092c21;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 22px rgba(24, 189, 131, .20);
    transition: all .3s ease;
}

    .miro-contact-submit span {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        border-radius: 7px;
        color: #16b77d;
    }

    .miro-contact-submit:hover {
        background: #0c4938;
        color: #ffffff;
        transform: translateY(-3px);
    }


/* ===============================
   RIGHT AREA
=============================== */

.miro-contact-info-area {
    position: relative;
}


/* COMPANY CARD */

.miro-company-card {
    position: relative;
    padding: 65px 35px 28px;
    margin-top: 55px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, .30);
    border-bottom: 3px solid #23d69a;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 72, 54, .09);
}


.miro-company-logo {
    position: absolute;
    width: 115px;
    height: 115px;
    top: -58px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 7px solid #eefaf6;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
}


    .miro-company-logo img {
        width: 80px;
        height: auto;
    }


.miro-company-small {
    color: #16b77d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.miro-company-card h3 {
    margin: 7px 0 8px;
    color: #174dc5;
    font-size: 27px;
    font-weight: 800;
}

.miro-company-card p {
    margin-bottom: 8px;
    color: #59645f;
    line-height: 1.6;
}

.miro-map-link {
    color: #16b77d;
    font-weight: 700;
    text-decoration: none;
}


/* ===============================
   TIMELINE
=============================== */

.miro-contact-timeline {
    position: relative;
    min-height: 385px;
    margin-top: 18px;
}

    .miro-contact-timeline::before {
        content: "";
        position: absolute;
        width: 3px;
        height: 310px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient( #23d69a, rgba(35, 214, 154, .18) );
    }

/* MINI CONTACT CARDS */

.miro-contact-mini {
    position: absolute;
    width: 220px;
    min-height: 98px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px;
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, .30);
    border-bottom: 3px solid #23d69a;
    border-radius: 18px;
    box-shadow: 0 13px 30px rgba(15, 72, 54, .08);
    transition: all .3s ease;
}

    .miro-contact-mini:hover {
        transform: translateY(-5px);
        box-shadow: 0 17px 34px rgba(35, 214, 154, .15);
    }

    .miro-contact-mini::before {
        content: "";
        position: absolute;
        width: 13px;
        height: 13px;
        background: #23d69a;
        border: 4px solid #e7faf3;
        border-radius: 50%;
    }


    /* RIGHT SIDE CARDS */

    .miro-contact-mini.mini-right {
        right: 10px;
    }

        .miro-contact-mini.mini-right::before {
            left: -35px;
        }


    /* LEFT SIDE CARD */

    .miro-contact-mini.mini-left {
        left: 10px;
    }

        .miro-contact-mini.mini-left::before {
            right: -35px;
        }


    /* POSITIONS */

    .miro-contact-mini:nth-child(1) {
        top: 20px;
    }

    .miro-contact-mini:nth-child(2) {
        top: 140px;
    }

    .miro-contact-mini:nth-child(3) {
        top: 260px;
    }


/* ICON */

.miro-contact-mini-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(35, 214, 154, .12);
    border-radius: 50%;
    color: #16b77d;
    font-size: 18px;
}

.miro-contact-mini h4 {
    margin: 0 0 5px;
    color: #17241f;
    font-size: 16px;
    font-weight: 800;
}

.miro-contact-mini a {
    color: #174dc5;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}


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

@media (max-width: 991px) {

    .miro-contact-form-box {
        min-height: auto;
    }

    .miro-contact-info-area {
        max-width: 620px;
        margin: auto;
    }
}

@media (max-width: 576px) {

    .miro-contact-section {
        padding: 45px 0;
    }

    .miro-contact-form-box {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .miro-contact-form-heading h2 {
        font-size: 28px;
    }

    .miro-company-card {
        margin-top: 55px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .miro-contact-timeline {
        min-height: auto;
        margin-top: 25px;
    }

        .miro-contact-timeline::before {
            display: none;
        }

    .miro-contact-mini,
    .miro-contact-mini.mini-left,
    .miro-contact-mini.mini-right {
        position: relative;
        width: 100%;
        top: auto !important;
        left: auto;
        right: auto;
        margin-bottom: 15px;
    }

        .miro-contact-mini::before {
            display: none;
        }
}

/* =========================================
   MIRO ABOUT PAGE - MISSION VISION VALUES
========================================= */

.miro-about-page {
    padding: 70px 0 80px;
    background: radial-gradient(circle at 18% 55%, rgba(35, 214, 154, 0.08), transparent 30%), linear-gradient(135deg, #ffffff, #f7fffb);
}


/* HEADING */

.miro-about-page-heading {
    margin-bottom: 55px;
}

.miro-about-page-label {
    position: relative;
    display: inline-block;
    padding-left: 48px;
    margin-bottom: 13px;
    color: #16b77d;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

    .miro-about-page-label::before {
        content: "";
        position: absolute;
        width: 35px;
        height: 2px;
        left: 0;
        top: 50%;
        background: #16b77d;
    }

.miro-about-page-heading h1,
.miro-about-page-heading h2 {
    margin: 0;
    color: #111;
    font-size: 43px;
    line-height: 1.18;
    font-weight: 800;
}

    .miro-about-page-heading h1 span,
    .miro-about-page-heading h2 span {
        color: #18bd83;
    }


/* ========================
   LEFT CIRCLES
======================== */

.miro-values-visual {
    position: relative;
    width: 620px;
    height: 515px;
    max-width: 100%;
    margin: auto;
}


.miro-value-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(35,214,154,0.28);
    border-radius: 50%;
    box-shadow: 0 18px 45px rgba(28,110,83,0.08);
    transition: all .35s ease;
}


    .miro-value-circle:hover {
        transform: translateY(-7px);
        background: #ffffff;
        border-color: #23d69a;
        box-shadow: 0 22px 50px rgba(35,214,154,0.16);
    }


/* POSITIONS */

.mission-circle {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

    .mission-circle:hover {
        transform: translateX(-50%) translateY(-7px);
    }


/* VALUES - move inward and upward */

.values-circle {
    left: 40px;
    bottom: 0;
    z-index: 2;
}


/* VISION - move inward and upward */

.vision-circle {
    right: 40px;
    bottom: 0;
    z-index: 2;
}

/* ICON */

.miro-value-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 50%;
    background: rgba(35,214,154,0.12);
    color: #16b77d;
    font-size: 25px;
}


.miro-value-circle h3 {
    margin-bottom: 16px;
    color: #174dc5;
    font-size: 23px;
    font-weight: 800;
}


    .miro-value-circle h3::after {
        content: "";
        display: block;
        width: 45px;
        height: 2px;
        margin: 9px auto 0;
        background: #23d69a;
    }


.miro-value-circle p {
    margin: 0;
    max-width: 175px;
    color: #57655f;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 600;
}


/* ========================
   RIGHT CARDS
======================== */

.miro-about-highlights {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}


/* FIRST ROW 3 */

.miro-highlight-card:nth-child(1) {
    grid-column: span 2;
}

.miro-highlight-card:nth-child(2) {
    grid-column: span 2;
}

.miro-highlight-card:nth-child(3) {
    grid-column: span 2;
}


/* SECOND ROW 2 CENTERED */

.miro-highlight-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.miro-highlight-card:nth-child(5) {
    grid-column: 4 / span 2;
}


.miro-highlight-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 18px;
    background: #ffffff;
    border: 1px solid rgba(35,214,154,0.28);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(17,70,52,0.07);
    transition: all .35s ease;
}


    .miro-highlight-card:hover {
        transform: translateY(-7px);
        border-color: #23d69a;
        box-shadow: 0 18px 40px rgba(35,214,154,0.15);
    }


/* CARD ICON */

.miro-highlight-icon {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    background: rgba(35,214,154,0.11);
    border-radius: 12px;
    color: #16b77d;
    font-size: 23px;
}


.miro-highlight-card strong {
    display: block;
    margin-bottom: 9px;
    color: #174dc5;
    font-size: 27px;
    font-weight: 800;
}


.miro-highlight-card span {
    color: #56635e;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
}


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

.miro-about-page-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}


.miro-about-project-btn,
.miro-about-contact-btn {
    min-width: 190px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 22px;
    padding-right: 6px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}


.miro-about-project-btn {
    background: linear-gradient(135deg, #174dc5, #2166db);
    color: #fff;
}


.miro-about-contact-btn {
    background: linear-gradient(135deg, #22d49a, #16b77d);
    color: #07291f;
}


.miro-about-page-buttons a span {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 7px;
    color: #174dc5;
    transition: all .3s ease;
}


.miro-about-page-buttons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.14);
}


    .miro-about-page-buttons a:hover span {
        transform: translateX(3px);
    }


/* ========================
   TABLET
======================== */

@media (max-width: 991px) {

    .miro-about-page {
        padding: 60px 0;
    }

    .miro-values-visual {
        margin-bottom: 50px;
    }

    .miro-about-highlights {
        max-width: 650px;
        margin: auto;
    }
}


/* ========================
   MOBILE
======================== */

@media (max-width: 576px) {

    .miro-about-page {
        padding: 45px 0;
    }

    .miro-about-page-heading {
        margin-bottom: 35px;
    }

        .miro-about-page-heading h1,
        .miro-about-page-heading h2 {
            font-size: 30px;
        }


    .miro-values-visual {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }


    .miro-value-circle,
    .mission-circle,
    .values-circle,
    .vision-circle {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        width: 240px;
        height: 240px;
        margin: auto;
    }


        .mission-circle:hover {
            transform: translateY(-7px);
        }


    .miro-about-highlights {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }


    .miro-highlight-card:nth-child(1),
    .miro-highlight-card:nth-child(2),
    .miro-highlight-card:nth-child(3),
    .miro-highlight-card:nth-child(4),
    .miro-highlight-card:nth-child(5) {
        grid-column: auto;
    }


    .miro-highlight-card {
        min-height: 150px;
    }


    .miro-about-page-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* =====================================
   MIRO WHY PARTNER SECTION
===================================== */

.miro-why-section {
    padding: 75px 0;
    background: radial-gradient(circle at 15% 50%, rgba(35, 214, 154, 0.07), transparent 35%), #ffffff;
}


/* HEADING */

.miro-why-heading {
    max-width: 850px;
    margin: 0 auto 65px;
}

    .miro-why-heading span {
        display: block;
        margin-bottom: 12px;
        color: #16b77d;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .miro-why-heading h2 {
        margin: 0;
        color: #151515;
        font-size: 40px;
        line-height: 1.25;
        font-weight: 800;
    }

        .miro-why-heading h2 strong {
            color: #18bd83;
            font-weight: 800;
        }


/* CARD */

.miro-why-card {
    position: relative;
    min-height: 175px;
    padding: 22px 28px 24px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #18bd83;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 15px 38px rgba(21, 96, 72, 0.08);
    transition: all .35s ease;
}


/* FLOATING CIRCLE ICON */

.miro-why-icon {
    position: absolute;
    width: 54px;
    height: 54px;
    top: -28px;
    left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #23d69a, #174dc5);
    color: #ffffff;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(24, 189, 131, .25);
    transition: all .35s ease;
}


/* TITLE */

.miro-why-card h3 {
    margin: 0 0 17px;
    color: #174dc5;
    font-size: 19px;
    font-weight: 800;
}


/* PARAGRAPH */

.miro-why-card p {
    max-width: 390px;
    margin: auto;
    color: #626d68;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
}


/* HOVER */

.miro-why-card:hover {
    transform: translateY(-7px);
    border-color: #174dc5;
    box-shadow: 0 20px 45px rgba(35, 214, 154, .16);
}

    .miro-why-card:hover .miro-why-icon {
        transform: rotate(8deg) scale(1.08);
        background: linear-gradient(135deg, #174dc5, #23d69a);
    }


/* TABLET */

@media (max-width: 991px) {

    .miro-why-heading h2 {
        font-size: 34px;
    }
}


/* MOBILE */

@media (max-width: 576px) {

    .miro-why-section {
        padding: 55px 0;
    }

    .miro-why-heading {
        margin-bottom: 45px;
    }

        .miro-why-heading h2 {
            font-size: 28px;
        }

    .miro-why-card {
        min-height: auto;
        padding: 25px 20px;
    }
}

/* =====================================
   MIRO CONTACT FAQ
===================================== */

.miro-faq-section {
    padding: 75px 0 85px;
    background: radial-gradient(circle at 50% 45%, rgba(35, 214, 154, 0.08), transparent 32%), linear-gradient(135deg, #ffffff, #f7fffb);
}


/* HEADING */

.miro-faq-heading {
    max-width: 700px;
    margin: 0 auto 55px;
}

    .miro-faq-heading span {
        display: inline-block;
        margin-bottom: 8px;
        color: #16b77d;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 1.5px;
    }

    .miro-faq-heading h2 {
        margin-bottom: 12px;
        color: #151515;
        font-size: 38px;
        font-weight: 800;
    }

    .miro-faq-heading p {
        margin: 0;
        color: #65706b;
        font-size: 15px;
        line-height: 1.7;
    }


/* ACCORDION */

.miro-faq-accordion .accordion-item {
    margin-bottom: 15px;
    background: transparent;
    border: 0;
}

.miro-faq-accordion .accordion-button {
    min-height: 62px;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, 0.28);
    border-radius: 10px !important;
    color: #17251f;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(21, 84, 64, 0.07);
    transition: all .3s ease;
}


    /* OPEN ITEM */

    .miro-faq-accordion .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, #174dc5, #23d69a);
        color: #ffffff;
        box-shadow: 0 12px 28px rgba(35, 214, 154, 0.18);
    }


    /* REMOVE BOOTSTRAP BLUE SHADOW */

    .miro-faq-accordion .accordion-button:focus {
        border-color: rgba(35, 214, 154, .45);
        box-shadow: none;
    }


    /* ARROW */

    .miro-faq-accordion .accordion-button::after {
        transition: transform .3s ease;
    }

    .miro-faq-accordion
    .accordion-button:not(.collapsed)::after {
        filter: brightness(0) invert(1);
    }


/* ANSWER */

.miro-faq-accordion .accordion-body {
    margin-top: 5px;
    padding: 17px 20px;
    background: #ffffff;
    border-left: 3px solid #23d69a;
    border-radius: 7px;
    color: #616c67;
    font-size: 13px;
    line-height: 1.7;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.04);
}


/* =====================================
   CENTER DESIGN
===================================== */

.miro-faq-visual {
    position: relative;
    max-width: 310px;
    min-height: 330px;
    margin: auto;
    padding: 55px 25px 25px;
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, .30);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(21, 91, 68, .09);
}


/* BIG ICON */

.miro-faq-main-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #23d69a, #174dc5);
    color: #ffffff;
    font-size: 40px;
    box-shadow: 0 12px 30px rgba(35, 214, 154, .24);
}


.miro-faq-visual h3 {
    margin-bottom: 10px;
    color: #174dc5;
    font-size: 22px;
    font-weight: 800;
}


.miro-faq-visual p {
    max-width: 230px;
    margin: 0 auto 20px;
    color: #65706b;
    font-size: 13px;
    line-height: 1.6;
}


/* FLOATING CHAT CIRCLES */

.miro-faq-chat {
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #16b77d;
    font-size: 18px;
    border: 1px solid rgba(35, 214, 154, .35);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .09);
}

.chat-one {
    top: 40px;
    right: -17px;
}

.chat-two {
    top: 140px;
    left: -18px;
}


/* BUTTON */

.miro-faq-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 190px;
    height: 48px;
    padding-left: 19px;
    background: #23d69a;
    border-radius: 8px;
    color: #082a20;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

    .miro-faq-contact-btn span {
        width: 40px;
        height: 40px;
        margin-right: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        border-radius: 6px;
        color: #174dc5;
    }

    .miro-faq-contact-btn:hover {
        background: #174dc5;
        color: #ffffff;
        transform: translateY(-3px);
    }


/* TABLET */

@media (max-width: 991px) {

    .miro-faq-visual {
        margin: 25px auto 35px;
    }
}


/* MOBILE */

@media (max-width: 576px) {

    .miro-faq-section {
        padding: 55px 0;
    }

    .miro-faq-heading h2 {
        font-size: 29px;
    }

    .miro-faq-heading {
        margin-bottom: 35px;
    }

    .miro-faq-visual {
        max-width: 100%;
    }
}

/* =====================================
   MIRO CONTACT MAP
===================================== */

.miro-map-section {
    padding: 45px 0 70px;
    background: #f7fffb;
}

.miro-map-box {
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, 0.25);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(18, 73, 56, 0.08);
}


/* MAP TOP */

.miro-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 15px;
}

    .miro-map-header h3 {
        margin: 0;
        color: #111111;
        font-size: 20px;
        font-weight: 800;
    }


/* OPEN MAP BUTTON */

.miro-map-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    color: #174dc5;
    background: #ffffff;
    border: 1px solid #d7e2dd;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .miro-map-open-btn i {
        color: #23d69a;
    }

    .miro-map-open-btn:hover {
        background: #23d69a;
        border-color: #23d69a;
        color: #092b21;
        transform: translateY(-2px);
    }

        .miro-map-open-btn:hover i {
            color: #092b21;
        }


/* MAP */

.miro-map-frame {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e3eee9;
}

    .miro-map-frame iframe {
        display: block;
        width: 100%;
        height: 450px;
        border: 0;
    }


/* TABLET */

@media (max-width: 991px) {

    .miro-map-frame iframe {
        height: 400px;
    }
}


/* MOBILE */

@media (max-width: 576px) {

    .miro-map-section {
        padding: 35px 0 50px;
    }

    .miro-map-box {
        padding: 12px;
    }

    .miro-map-header {
        align-items: flex-start;
        flex-direction: column;
    }

        .miro-map-header h3 {
            font-size: 18px;
        }

    .miro-map-open-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .miro-map-frame iframe {
        height: 320px;
    }
}

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

.miro-process-section {
    position: relative;
    padding: 35px 0 100px;
    background: radial-gradient(circle at 15% 30%, rgba(35, 214, 154, 0.08), transparent 26%), 
                radial-gradient(circle at 85% 70%, rgba(23, 77, 197, 0.07), transparent 26%), 
                #ffffff;
    overflow: hidden;
}


/* =========================
   HEADING
========================= */

.miro-process-heading {
    max-width: 760px;
    margin: 0 auto 70px;
}

    .miro-process-heading > span {
        display: inline-block;
        margin-bottom: 10px;
        color: #174dc5;
        font-size: 16px;
        font-weight: 800;
        letter-spacing: 1.8px;
    }

    .miro-process-heading h2 {
        margin: 0 0 14px;
        color: #111111;
        font-size: 42px;
        line-height: 1.2;
        font-weight: 800;
    }

        .miro-process-heading h2 strong {
            color: #18bd83;
            font-weight: 800;
        }

    .miro-process-heading p {
        max-width: 650px;
        margin: auto;
        color: #66736e;
        font-size: 15px;
        line-height: 1.7;
    }


/* =========================
   TIMELINE WRAPPER
========================= */

.miro-process-timeline {
    position: relative;
    max-width: 1050px;
    margin: auto;
    padding: 10px 0;
}


    /* CENTER LINE */

    .miro-process-timeline::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 6px;
        background: linear-gradient( to bottom, #174dc5, #23d69a, #174dc5 );
        transform: translateX(-50%);
        border-radius: 10px;
    }


/* =========================
   EACH ITEM
========================= */

.miro-process-item {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 170px;
    margin-bottom: 28px;
}


    /* RIGHT CARD */

    .miro-process-item.process-right {
        justify-content: flex-end;
        padding-left: 53%;
    }


    /* LEFT CARD */

    .miro-process-item.process-left {
        justify-content: flex-start;
        padding-right: 53%;
    }


/* =========================
   CENTER NUMBER
========================= */

.miro-process-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 4px solid #23d69a;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(35, 214, 154, 0.18);
    z-index: 3;
}

    .miro-process-dot span {
        color: #174dc5;
        font-size: 14px;
        font-weight: 800;
    }


/* =========================
   PROCESS CARD
========================= */

.miro-process-card {
    position: relative;
    width: 100%;
    min-height: 155px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 25px;
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, 0.35);
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(30, 110, 83, 0.08);
    transition: all 0.35s ease;
}


/* LEFT / RIGHT SMALL CONNECTOR */

.process-right .miro-process-card::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    width: 18px;
    height: 2px;
    background: #23d69a;
}

.process-left .miro-process-card::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    width: 18px;
    height: 2px;
    background: #23d69a;
}


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

.miro-process-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(35, 214, 154, 0.12);
    color: #16b77d;
    font-size: 25px;
    transition: all 0.35s ease;
}


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

.miro-step {
    display: block;
    margin-bottom: 5px;
    color: #23b685;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.miro-process-card h3 {
    margin: 0 0 8px;
    color: #174dc5;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
}

.miro-process-card p {
    margin: 0;
    color: #60706a;
    font-size: 13px;
    line-height: 1.65;
}


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

.miro-process-card:hover {
    transform: translateY(-7px);
    border-color: #23d69a;
    box-shadow: 0 20px 45px rgba(35, 214, 154, 0.15);
}

    .miro-process-card:hover .miro-process-icon {
        background: linear-gradient( 135deg, #23d69a, #17b77e );
        color: #ffffff;
        transform: rotate(-5deg) scale(1.08);
    }


/* =========================
   DOT HOVER
========================= */

.miro-process-item:hover .miro-process-dot {
    background: #174dc5;
    border-color: #174dc5;
}

    .miro-process-item:hover .miro-process-dot span {
        color: #ffffff;
    }


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .miro-process-section {
        padding: 70px 0 80px;
    }

    .miro-process-heading h2 {
        font-size: 36px;
    }

    .miro-process-item.process-right {
        padding-left: 55%;
    }

    .miro-process-item.process-left {
        padding-right: 55%;
    }

    .miro-process-card {
        padding: 20px;
        gap: 13px;
    }

    .miro-process-icon {
        width: 55px;
        height: 55px;
        font-size: 21px;
    }

    .miro-process-card h3 {
        font-size: 18px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .miro-process-section {
        padding: 60px 0 70px;
    }

    .miro-process-heading {
        margin-bottom: 45px;
    }

        .miro-process-heading h2 {
            font-size: 31px;
        }

        .miro-process-heading p {
            font-size: 14px;
        }


    /* MOVE LINE LEFT */

    .miro-process-timeline::before {
        left: 27px;
        transform: none;
    }


    /* ALL CARDS RIGHT SIDE */

    .miro-process-item,
    .miro-process-item.process-right,
    .miro-process-item.process-left {
        justify-content: flex-start;
        padding-left: 75px;
        padding-right: 0;
        min-height: auto;
        margin-bottom: 25px;
    }


    /* DOT */

    .miro-process-dot {
        left: 28px;
        top: 50%;
        width: 48px;
        height: 48px;
        transform: translate(-50%, -50%);
    }


    /* REMOVE CONNECTOR DIFFERENCE */

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

    .process-right .miro-process-card::before,
    .process-left .miro-process-card::before {
        content: "";
        display: block;
        position: absolute;
        left: -22px;
        top: 50%;
        width: 22px;
        height: 2px;
        background: #23d69a;
    }


    .miro-process-card {
        padding: 20px 18px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .miro-process-heading h2 {
        font-size: 27px;
    }

    .miro-process-card {
        display: block;
    }

    .miro-process-icon {
        margin-bottom: 14px;
    }

    .miro-process-card h3 {
        font-size: 18px;
    }
}

/* =====================================
   MIRO ABOUT PAGE HERO
===================================== */

.miro-about-hero {
    position: relative;
    width: 100%;
    min-height: 460px;
    background-image: url('../img/about-banner1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;

}

/* Dark overlay */
.miro-about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 25, 20, 0.68) 50%, rgba(0, 0, 0, 0.40) 100% );
}

.miro-about-hero .container {
    position: relative;
    z-index: 2;
}

.miro-about-hero-content {
    max-width: 720px;
    color: #fff;
}

.about-hero-small {
    display: inline-block;
    color: #23d69a;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.miro-about-hero-content h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 20px;
}

    .miro-about-hero-content h1 span {
        color: #23d69a;
    }

.miro-about-hero-content p {
    max-width: 650px;
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    background: #23d69a;
    color: #071b16;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

    .about-hero-btn:hover {
        background: #174dc5;
        color: #fff;
        transform: translateY(-3px);
    }

    .about-hero-btn i {
        transition: transform 0.3s ease;
    }

    .about-hero-btn:hover i {
        transform: translateX(5px);
    }


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

@media (max-width: 991px) {

    .miro-about-hero {
        min-height: 400px;
    }

    .miro-about-hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {

    .miro-about-hero {
        min-height: 380px;
        background-position: center;
    }

    .miro-about-hero-content {
        padding: 50px 10px;
    }

        .miro-about-hero-content h1 {
            font-size: 34px;
        }

        .miro-about-hero-content p {
            font-size: 16px;
            line-height: 1.6;
        }
}

.service-hero {
    background-image: url('../img/service-banner.png');
}

.project-hero {
    background-image: url('../img/project-banner.png');
}

.contact-hero {
    background-image: url('../img/contact-banner.png');
}

/* ==========================================
   MIRO CLIENT / PARTNER LOGO SECTION
========================================== */

.miro-clients-section {
    padding: 75px 0 80px;
    background: radial-gradient(circle at 25% 50%, rgba(35, 214, 154, 0.08), transparent 35%), #ffffff;
    overflow: hidden;
}


/* HEADING */

.miro-clients-heading {
    max-width: 850px;
    margin: 0 auto 50px;
}

    .miro-clients-heading > span {
        display: inline-block;
        color: #16b77d;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .miro-clients-heading h2 {
        margin: 0;
        color: #111111;
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
    }

        .miro-clients-heading h2 strong {
            color: #23c98c;
            font-weight: 800;
        }

    .miro-clients-heading p {
        max-width: 680px;
        margin: 18px auto 0;
        color: #65736e;
        font-size: 16px;
        line-height: 1.7;
    }


/* LOGO AREA */

.miro-logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 0;
}


    /* SOFT FADE LEFT + RIGHT */

    .miro-logo-marquee::before,
    .miro-logo-marquee::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        z-index: 5;
        pointer-events: none;
    }

    .miro-logo-marquee::before {
        left: 0;
        background: linear-gradient( to right, #ffffff 5%, rgba(255,255,255,0) );
    }

    .miro-logo-marquee::after {
        right: 0;
        background: linear-gradient( to left, #ffffff 5%, rgba(255,255,255,0) );
    }


/* TRACK */

.miro-logo-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 28px;
    will-change: transform;
}


/* FIRST ROW */

.miro-track-one {
    animation: miroScrollLeft 38s linear infinite;
}


/* SECOND ROW */

.miro-track-two {
    animation: miroScrollRight 42s linear infinite;
}


/* LOGO CARD */

.miro-logo-item {
    width: 155px;
    height: 100px;
    flex: 0 0 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, 0.20);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(15, 80, 58, 0.07);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


    .miro-logo-item img {
        width: 100%;
        height: 100%;
        max-width: 130px;
        max-height: 76px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }


    .miro-logo-item:hover {
        transform: translateY(-5px);
        border-color: #23d69a;
        box-shadow: 0 14px 30px rgba(35, 214, 154, 0.15);
    }


        .miro-logo-item:hover img {
            transform: scale(1.07);
        }


/* PAUSE ROW ON HOVER */

.miro-logo-marquee:hover .miro-logo-track {
    animation-play-state: paused;
}


/* ANIMATION */

@keyframes miroScrollLeft {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


@keyframes miroScrollRight {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}


/* ===========================
   RIGHT CTA CARD
=========================== */

.miro-client-cta {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 48px;
    background: linear-gradient( 145deg, #164fc7 0%, #0e8471 48%, #18c98c 100% );
    border-radius: 22px;
    box-shadow: 0 25px 55px rgba(16, 95, 77, 0.18);
}


    .miro-client-cta::before {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        right: -70px;
        top: -80px;
        background: rgba(255,255,255,0.08);
    }


    .miro-client-cta::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        left: -80px;
        bottom: -100px;
        background: rgba(255,255,255,0.07);
    }


    .miro-client-cta > span {
        position: relative;
        z-index: 2;
        color: rgba(255,255,255,0.85);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }


    .miro-client-cta h3 {
        position: relative;
        z-index: 2;
        color: #ffffff;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 15px;
    }


    .miro-client-cta p {
        position: relative;
        z-index: 2;
        color: rgba(255,255,255,0.90);
        font-size: 16px;
        line-height: 1.7;
        max-width: 380px;
        margin-bottom: 25px;
    }


.miro-client-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    background: #ffffff;
    color: #174dc5;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}


    .miro-client-btn:hover {
        background: #111111;
        color: #ffffff;
        transform: translateY(-3px);
    }


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

@media (max-width: 991px) {

    .miro-clients-section {
        padding: 60px 0;
    }

    .miro-clients-heading h2 {
        font-size: 34px;
    }

    .miro-client-cta {
        margin-top: 20px;
        min-height: 280px;
    }
}


@media (max-width: 576px) {

    .miro-clients-heading h2 {
        font-size: 28px;
    }

    .miro-logo-item {
        width: 130px;
        height: 85px;
        flex-basis: 130px;
    }

        .miro-logo-item img {
            max-width: 110px;
            max-height: 65px;
        }

    .miro-logo-track {
        gap: 18px;
        margin-bottom: 18px;
    }

    .miro-client-cta {
        padding: 32px 25px;
    }

        .miro-client-cta h3 {
            font-size: 30px;
        }
}

/* =========================================
   MIRO COMPLETED PROJECTS SECTION
========================================= */

.miro-completed-projects {
    padding: 75px 0 85px;
    background: radial-gradient(circle at 20% 20%, rgba(35, 214, 154, 0.07), transparent 32%), radial-gradient(circle at 85% 75%, rgba(23, 77, 197, 0.06), transparent 30%), #ffffff;
}


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

.miro-projects-heading {
    max-width: 780px;
    margin: 0 auto 35px;
}

    .miro-projects-heading > span {
        display: inline-block;
        position: relative;
        color: #16b77d;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

        .miro-projects-heading > span::before {
            content: "";
            display: inline-block;
            width: 38px;
            height: 2px;
            background: #16b77d;
            margin-right: 10px;
            vertical-align: middle;
        }

    .miro-projects-heading h2 {
        margin: 0 0 14px;
        color: #111111;
        font-size: 40px;
        line-height: 1.2;
        font-weight: 800;
    }

        .miro-projects-heading h2 strong {
            color: #20c997;
        }

    .miro-projects-heading p {
        max-width: 700px;
        margin: 0 auto;
        color: #65736e;
        font-size: 16px;
        line-height: 1.7;
    }


/* =========================================
   PROJECT FILTER
========================================= */

.miro-project-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

    .miro-project-filter button {
        border: 1px solid rgba(35, 214, 154, 0.45);
        background: #ffffff;
        color: #34443f;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .miro-project-filter button:hover {
            background: #e9fbf5;
            border-color: #23d69a;
            color: #0c9e6f;
            transform: translateY(-2px);
        }

        .miro-project-filter button.active {
            background: linear-gradient(135deg, #174dc5, #23d69a);
            color: #ffffff;
            border-color: transparent;
            box-shadow: 0 8px 20px rgba(23, 77, 197, 0.18);
        }


/* =========================================
   PROJECT GRID
========================================= */

.miro-project-grid {
    row-gap: 28px !important;
}


/* =========================================
   PROJECT CARD
========================================= */

.miro-project-item {
    display: flex;
}

.miro-project-card {
    position: relative;
    width: 100%;
    min-height: 245px;
    padding: 28px 26px 25px;
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, 0.32);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(37, 84, 69, 0.08);
    transition: all 0.35s ease;
}

    .miro-project-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, #23d69a, #174dc5);
        transition: width 0.35s ease;
    }

    .miro-project-card::after {
        content: "";
        position: absolute;
        width: 110px;
        height: 110px;
        right: -55px;
        top: -55px;
        border-radius: 50%;
        background: rgba(35, 214, 154, 0.08);
        transition: all 0.35s ease;
    }

    .miro-project-card:hover {
        transform: translateY(-8px);
        border-color: #23d69a;
        box-shadow: 0 22px 45px rgba(35, 214, 154, 0.16);
    }

        .miro-project-card:hover::before {
            width: 7px;
        }

        .miro-project-card:hover::after {
            width: 145px;
            height: 145px;
            background: rgba(35, 214, 154, 0.12);
        }


/* =========================================
   CARD CONTENT
========================================= */

.miro-project-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.miro-project-type {
    display: inline-flex;
    align-self: flex-start;
    padding: 6px 12px;
    margin-bottom: 16px;
    background: rgba(35, 214, 154, 0.11);
    border-radius: 20px;
    color: #13a977;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.miro-project-info h3 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    transition: color 0.3s ease;
}

.miro-project-card:hover h3 {
    color: #174dc5;
}

.miro-project-info p {
    margin: 0 0 20px;
    color: #68756f;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   VISIT WEBSITE BUTTON
========================================= */

.miro-project-info a {
    display: inline-flex;
    align-items: center;
    width: max-content;
    gap: 8px;
    margin-top: auto;
    padding: 9px 16px;
    background: #174dc5;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .miro-project-info a:hover {
        background: #23c992;
        color: #071c15;
        transform: translateX(3px);
        box-shadow: 0 7px 18px rgba(35, 214, 154, 0.22);
    }


/* =========================================
   OPTIONAL: NON-LINK / COMPLETED PROJECT
========================================= */

.miro-project-status {
    display: inline-flex;
    align-items: center;
    width: max-content;
    gap: 7px;
    margin-top: auto;
    padding: 9px 15px;
    background: #eef8f4;
    border-radius: 8px;
    color: #15966d;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .miro-completed-projects {
        padding: 60px 0 70px;
    }

    .miro-projects-heading h2 {
        font-size: 34px;
    }

    .miro-project-card {
        min-height: 225px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .miro-completed-projects {
        padding: 50px 0 60px;
    }

    .miro-projects-heading {
        margin-bottom: 28px;
    }

        .miro-projects-heading h2 {
            font-size: 29px;
        }

        .miro-projects-heading p {
            font-size: 14px;
        }

    .miro-project-filter {
        gap: 8px;
        margin-bottom: 30px;
    }

        .miro-project-filter button {
            padding: 8px 14px;
            font-size: 12px;
        }

    .miro-project-card {
        min-height: auto;
        padding: 24px 22px;
    }

    .miro-project-info h3 {
        font-size: 20px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .miro-projects-heading h2 {
        font-size: 25px;
    }

    .miro-project-filter {
        justify-content: flex-start;
    }

        .miro-project-filter button {
            flex: 1 1 calc(50% - 8px);
        }
}

/* =====================================
   MIRO PREMIUM SITE LOADER
===================================== */

#miroLoader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .55s ease, visibility .55s ease;
}

    #miroLoader.hide-loader {
        opacity: 0;
        visibility: hidden;
    }


/* LOADER CONTENT */

.miro-loader-box {
    text-align: center;
}


/* ROTATING RING */

.miro-loader-ring {
    width: 115px;
    height: 115px;
    margin: auto;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient( #23d69a 0deg, #174dc5 110deg, #23d69a 220deg, transparent 300deg );
    animation: miroSpin 1.4s linear infinite;
}


    /* WHITE INNER CIRCLE */

    .miro-loader-ring::before {
        content: "";
        position: absolute;
        width: 98px;
        height: 98px;
        background: #ffffff;
        border-radius: 50%;
    }


    /* LOGO */

    .miro-loader-ring img {
        width: 75px;
        height: auto;
        position: relative;
        z-index: 2;
        animation: miroReverseSpin 1.4s linear infinite;
    }


/* TITLE */

.miro-loader-box h4 {
    margin-top: 20px;
    margin-bottom: 5px;
    color: #174dc5;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 2px;
}


/* TEXT */

.miro-loader-box p {
    margin: 0 0 15px;
    color: #59645f;
    font-size: 13px;
    letter-spacing: .8px;
}


/* LOADING LINE */

.miro-loader-line {
    width: 170px;
    height: 4px;
    margin: auto;
    background: #e7f5f0;
    border-radius: 20px;
    overflow: hidden;
}

    .miro-loader-line span {
        display: block;
        width: 45%;
        height: 100%;
        border-radius: 20px;
        background: linear-gradient( 90deg, #174dc5, #23d69a );
        animation: miroLoadingLine 1.3s ease-in-out infinite;
    }


/* ANIMATIONS */

@keyframes miroSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes miroReverseSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes miroLoadingLine {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(250%);
    }
}

.miro-header-call,
.miro-header-call-text {
    cursor: pointer;
}

    .miro-header-call-text .text-secondary {
        transition: 0.3s ease;
    }

    .miro-header-call-text:hover .text-secondary {
        opacity: 0.7;
    }

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

.miro-testimonial-section {
    padding: 80px 0 95px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 100%, rgba(35, 214, 154, 0.12), transparent 45%), #f9fffd;
}


/* HEADING */

.miro-testimonial-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

    .miro-testimonial-heading > span {
        display: inline-block;
        margin-bottom: 10px;
        color: #174dc5;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .miro-testimonial-heading h2 {
        margin: 0 0 15px;
        color: #111;
        font-size: 40px;
        font-weight: 800;
    }

        .miro-testimonial-heading h2 strong {
            color: #20c98b;
        }

    .miro-testimonial-heading p {
        margin: 0;
        color: #67736f;
        font-size: 16px;
        line-height: 1.7;
    }


/* CAROUSEL */

.miro-testimonial-carousel {
    position: relative;
    padding: 15px 0 25px;
}

    .miro-testimonial-carousel .owl-stage {
        display: flex;
        align-items: center;
    }

    .miro-testimonial-carousel .owl-item {
        opacity: 0.32;
        transform: scale(0.86);
        transition: all 0.45s ease;
    }


        /* ACTIVE CENTER */

        .miro-testimonial-carousel .owl-item.center {
            opacity: 1;
            transform: scale(1);
            position: relative;
            z-index: 5;
        }


/* CARD */

.miro-testimonial-card {
    min-height: 325px;
    padding: 35px 38px 28px;
    background: #ffffff;
    border: 1px solid rgba(35, 214, 154, 0.28);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(22, 101, 78, 0.08);
    transition: all 0.4s ease;
}


/* CENTER CARD */

.miro-testimonial-carousel .owl-item.center
.miro-testimonial-card {
    border: 2px solid #20c98b;
    box-shadow: 0 22px 55px rgba(35, 214, 154, 0.17), 0 8px 25px rgba(23, 77, 197, 0.07);
}


/* LOGO */

.miro-testimonial-logo {
    height: 82px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .miro-testimonial-logo img {
        width: auto !important;
        max-width: 210px;
        max-height: 72px;
        object-fit: contain;
    }


/* STARS */

.miro-testimonial-stars {
    margin-bottom: 18px;
}

    .miro-testimonial-stars i {
        margin: 0 2px;
        color: #ffc107;
        font-size: 18px;
    }


/* TEXT */

.miro-testimonial-text {
    margin: 0 auto 10px;
    max-width: 470px;
    color: #596762;
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
}


/* READ MORE */

.miro-testimonial-more {
    display: inline-block;
    margin-top: 2px;
    color: #174dc5;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
}

    .miro-testimonial-more:hover {
        color: #20c98b;
    }


/* CLIENT NAME */

.miro-testimonial-client {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e4efeb;
    color: #174dc5;
    font-size: 17px;
    font-weight: 800;
}


/* =========================
   ARROWS
========================= */

.miro-testimonial-carousel .owl-nav {
    margin: 0;
}

    .miro-testimonial-carousel .owl-nav button.owl-prev,
    .miro-testimonial-carousel .owl-nav button.owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50% !important;
        background: #ffffff !important;
        border: 1px solid rgba(35, 214, 154, 0.4) !important;
        color: #174dc5 !important;
        font-size: 28px !important;
        line-height: 42px !important;
        box-shadow: 0 10px 25px rgba(35, 214, 154, 0.15);
        transition: all 0.3s ease;
    }

    .miro-testimonial-carousel .owl-nav button.owl-prev {
        left: -35px;
    }

    .miro-testimonial-carousel .owl-nav button.owl-next {
        right: -35px;
    }

    .miro-testimonial-carousel .owl-nav button:hover {
        background: #20c98b !important;
        color: #ffffff !important;
        border-color: #20c98b !important;
    }


/* REMOVE DOTS */

.miro-testimonial-carousel .owl-dots {
    display: none;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .miro-testimonial-heading h2 {
        font-size: 34px;
    }

    .miro-testimonial-carousel .owl-nav button.owl-prev {
        left: 5px;
    }

    .miro-testimonial-carousel .owl-nav button.owl-next {
        right: 5px;
    }
}


@media (max-width: 767px) {

    .miro-testimonial-section {
        padding: 60px 0 70px;
    }

    .miro-testimonial-heading {
        margin-bottom: 35px;
    }

        .miro-testimonial-heading h2 {
            font-size: 29px;
        }

    .miro-testimonial-card {
        min-height: auto;
        padding: 30px 22px 25px;
    }

    .miro-testimonial-carousel .owl-item {
        opacity: 1;
        transform: none;
    }
}

/* =========================
   REDUCE TESTIMONIAL BOTTOM GAP
========================= */

.miro-testimonial-section {
    padding-bottom: 35px !important;
    margin-bottom: 0 !important;
}

.miro-testimonial-carousel {
    margin-bottom: 0 !important;
}

.miro-testimonial-section .owl-stage-outer {
    margin-bottom: 0 !important;
}