/* ===================================
    Crafto - Logistics 
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
/* variable */
:root {      
    --alt-font: "Inter", sans-serif;
    --primary-font: "Urbanist", sans-serif;
    --base-color: #2D7EBA;
    --dark-gray: #141414;
    --medium-gray: #707070;
    --aluminium-gray: rgba(255, 255, 255, 0.4);
}
/* reset */
body{
    font-size: 18px;
    line-height: 30px;
}
a:hover{
    color: var(--dark-gray);
}
/* header */
.navbar .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 600;
}
.navbar .navbar-nav .dropdown.open .dropdown-menu {
    background-color: var(--dark-gray);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    font-size: 17px;
    font-weight: 500;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .navbar-brand img {
    max-height: 60px    ;
}
.header-top-bar div>a {
    color: var(--light-gray);
}
.header-top-bar div>a:hover {
    color: var(--white);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
    font-size: 30px;
}
.navbar .navbar-nav .dropdown .dropdown-menu a i {
    width: 35px;
}
header .btn.btn-box-shadow.btn-base-color,
.btn.btn-base-color {
    color: var(--dark-gray);
}
header .btn.btn-box-shadow.btn-base-color:hover,
.btn.btn-box-shadow.btn-base-color:hover {
    color: var(--dark-gray);
}
header .btn.btn-small {
    font-size: 15px; 
    padding: 10px 18px;
}
/* btn */
.btn.btn-hover-animation-switch.btn-link {
    padding-top: 0;
}
.btn { 
    text-transform: inherit;
    font-weight: 600;
    letter-spacing: 0;
}
.btn.btn-extra-large {
    font-size: 18px;
    padding: 16px 32px;
}
.btn.btn-large {
    font-size: 17px;
    padding: 14px 28px;
}
.gallery-zoom-only .gallery-box img {
    transform: scale(1);
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}
.gallery-zoom-only .gallery-box:hover img {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}
.btn.btn-medium {
    font-size: 16px; 
    padding: 12px 24px;
}
.btn.btn-small {
    font-size: 15px;
}
.btn.btn-very-small {
    font-size: 14px; 
    padding: 9px 20px;
}

/* counter style */
.counter-style-04 .vertical-counter:after {
    color: var(--base-color);
}
.review-star-icon i {
    color: var(--base-color);
}

.google-maps-link a:hover {
    color: var(--white);
}

/* footer style */
footer ul li {
    margin-bottom: 1px;
}
footer p {
    line-height: 28px;
}

footer .footer-logo img {
    max-height: 80px;
}

/* page title */
.page-title-double-large h1 {
    font-size: 4.375rem;
    line-height: 4.688rem;
}
.page-title-double-large h2 {
    font-size: 16px;
    line-height: 28px;
}

/* top bottom left right class */
.right-12 {
    right: 12%;
}

.bg-jungle-green {
    background-color: #2ebb79;
}
/* Outside box */
.outside-box-top-205px {
    margin-top: -205px;
}
/* Transparent background color */
.bg-gradient-gray-light-dark-transparent {
    background-image: linear-gradient(to top, #f7f7f7 0%, transparent 100%);
}
.hero-slide {
    position: relative;
}
.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-slide .hero-content {
    position: relative;
    z-index: 2;
}
.project-slider .project-slide-card {
    border-radius: 6px;
}
.project-slider .project-slide-card .box-image {
    border-radius: 6px;
    background-color: #fff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.project-slider .project-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.project-slider .project-slide-card .box-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}
.project-slider .project-slide-title {
    position: absolute;
    left: 18px;
    bottom: 16px;
    padding: 6px 12px;
    font-size: 12px;
    letter-spacing: 0.3px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
    z-index: 2;
    pointer-events: none;
}
.project-slider .project-slide-count {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.4px;
    color: #fff;
    background: rgba(35, 35, 35, 0.75);
    border-radius: 999px;
    z-index: 2;
    pointer-events: none;
}
.project-slider .project-slide-card:hover .box-image::after {
    opacity: 1;
}
.project-slider .project-slide-card:hover .project-slide-title {
    opacity: 1;
    transform: translateY(0);
}
.project-slider .project-slide-card .box-image::after,
.project-slider .project-slide-card:hover .box-image::after,
.project-gallery .project-slide-card .box-image::after,
.project-gallery .project-slide-card:hover .box-image::after {
    opacity: 0;
}
.services-box-style-01 .box-overlay,
.services-box-style-01:hover .box-overlay {
    opacity: 0;
}
.project-slider-pagination {
    position: static;
    margin-top: 18px;
    text-align: center;
}
.project-slider-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 6px;
    background-color: var(--dark-gray);
    opacity: 0.25;
}
.project-slider-pagination .swiper-pagination-bullet-active {
    background-color: var(--base-color);
    opacity: 1;
}
.slider-four-slide-pagination {
    position: static;
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.slider-four-slide-pagination .swiper-pagination-bullet {
    width: 22px;
    height: 4px;
    border-radius: 999px;
    background-color: rgba(32, 35, 41, 0.2);
    opacity: 1;
    transition: width 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}
.slider-four-slide-pagination .swiper-pagination-bullet-active {
    width: 36px;
    background-color: var(--base-color);
    box-shadow: 0 6px 16px rgba(41, 70, 243, 0.35);
}
.slider-four-slide-pagination .swiper-pagination-bullet:focus-visible {
    outline: 2px solid var(--base-color);
    outline-offset: 4px;
}
@media (max-width: 575px) {
    .slider-four-slide-pagination .swiper-pagination-bullet {
        width: 16px;
    }
    .slider-four-slide-pagination .swiper-pagination-bullet-active {
        width: 26px;
    }
}
.project-gallery .project-slide-card {
    border-radius: 6px;
    border: 1px solid #f1f1f1;
    background-color: #fff;
}
.project-gallery .project-slide-card .box-image {
    border-radius: 6px;
    background-color: #fff;
}
.services-box-style-01 .box-image {
    background-color: #fff;
}
.services-box-style-01 .box-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.services-box-style-01 .position-relative.box-image {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-gallery .project-slide-card .box-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}
.project-gallery .project-slide-title {
    position: absolute;
    left: 18px;
    bottom: 16px;
    padding: 6px 12px;
    font-size: 14px;
    letter-spacing: 0.3px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.35s ease;
    z-index: 2;
    pointer-events: none;
}
.project-gallery .project-slide-card:hover .box-image::after {
    opacity: 1;
}
.project-gallery .project-slide-card:hover .project-slide-title {
    opacity: 1;
    transform: translateY(0);
}
.project-gallery.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.project-gallery.project-gallery-grid > li {
    margin: 0;
}
.project-gallery.project-gallery-grid .project-slide-card .box-image {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.project-gallery.project-gallery-grid .project-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 1199px) {
    .project-gallery.project-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 991px) {
    .project-gallery.project-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575px) {
    .project-gallery.project-gallery-grid {
        grid-template-columns: 1fr;
    }
}
.project-gallery-link {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.project-gallery-link:focus {
    outline: none;
}
.project-gallery-link:focus-visible {
    outline: 2px solid var(--base-color);
    outline-offset: 4px;
    border-radius: 6px;
}
.project-tabs {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}
.project-tabs li {
    list-style: none;
    padding: 0;
}
.project-tabs li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgb(20, 20, 20);
    background-color: #fff;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100%;
}
.project-tabs li.active a {
    background-color: var(--base-color);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(45, 126, 186, 0.2);
}
.project-tabs li a:hover {
    background-color: var(--base-color);
    color: #fff;
    border-color: rgba(20, 20, 20, 0.12);
    box-shadow: none;
}
.gallery-zoom-only .project-slide-card img {
    transform: scale(1);
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}
.gallery-zoom-only .project-slide-card:hover img {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}
.project-modal .modal-dialog {
    margin: 0;
}
.project-modal .modal-content {
    height: 100vh;
    border-radius: 0;
    background-color: #f7f7f7;
}
.project-modal .modal-body {
    height: 100%;
    padding: 0;
}
.project-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 5;
    background-color: #fff;
    border-radius: 100%;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.project-modal-shell {
    height: 100%;
    display: flex;
    align-items: center;
    padding: clamp(20px, 4vw, 50px);
}
.project-modal-shell > .container-xxl {
    width: 100%;
}
.project-modal-card {
    width: 100%;
    background-color: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.project-modal-meta {
    display: grid;
    gap: 12px;
    background-color: #fafafa;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #f0f0f0;
}
.project-modal-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}
.project-modal-meta-item span:last-child {
    color: var(--dark-gray);
    font-weight: 600;
}
.project-modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.project-modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background-color: var(--base-color);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2px;
    border: 1px solid transparent;
    box-shadow: 0 16px 30px rgba(45, 126, 186, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.project-modal-cta:hover {
    background-color: var(--dark-gray);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(20, 20, 20, 0.22);
}
.project-modal-cta:focus-visible {
    outline: 2px solid var(--base-color);
    outline-offset: 4px;
}
.project-modal-media {
    position: relative;
    width: 100%;
    max-width: 980px;
}
.project-modal-media .swiper {
    border-radius: 24px;
    overflow: hidden;
    background-color: #fff;
    height: min(70vh, 720px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.project-modal-media .swiper-wrapper,
.project-modal-media .swiper-slide {
    height: 100%;
}
.project-modal-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.project-modal-navigation .swiper-button-prev,
.project-modal-navigation .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.project-modal-navigation .swiper-button-prev {
    left: 16px;
}
.project-modal-navigation .swiper-button-next {
    right: 16px;
}
.project-modal-navigation .swiper-button-prev::after,
.project-modal-navigation .swiper-button-next::after {
    content: none;
}
.project-modal-pagination {
    position: static;
    margin-top: 18px;
    text-align: center;
}
.project-modal-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 6px;
    background-color: var(--dark-gray);
    opacity: 0.25;
}
.project-modal-pagination .swiper-pagination-bullet-active {
    background-color: var(--base-color);
    opacity: 1;
}
.project-modal.is-single .project-modal-navigation .swiper-button-prev,
.project-modal.is-single .project-modal-navigation .swiper-button-next {
    opacity: 0.35;
    pointer-events: none;
}
.project-modal.is-single .project-modal-pagination {
    opacity: 0.4;
}
@media (max-width: 991px) {
    .project-modal-shell {
        align-items: flex-start;
        padding: 20px;
    }
    .project-modal-media .swiper {
        height: 55vh;
        border-radius: 18px;
    }
    .project-modal-card {
        border-radius: 18px;
        padding: 24px;
    }
    .project-modal-close {
        top: 16px;
        right: 16px;
    }
    .project-modal-navigation .swiper-button-prev {
        left: 10px;
    }
    .project-modal-navigation .swiper-button-next {
        right: 10px;
    }
}
.services-slider .services-box-style-03 img,
.projects-slider .services-box-style-03 img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
@media (max-width: 991px) {
    .services-slider .services-box-style-03 img,
    .projects-slider .services-box-style-03 img {
        height: 220px;
    }
}
@media (max-width: 575px) {
    .services-slider .services-box-style-03 img,
    .projects-slider .services-box-style-03 img {
        height: 200px;
    }
}
@media (max-width: 1399px) {
    .xl-h-180px {
        height: 180px;
    }
    .xl-w-180px {
        width: 180px;
    }
}
@media (max-width: 1199px) {
    .outside-box-top-200px {
        margin-top: -150px;
    }
}
@media (max-width: 991px) {
    .outside-box-top-200px {
        margin-top: 0;
    }
    .navbar .navbar-nav .dropdown.open .dropdown-menu {
        padding-bottom: 15px;
    }
    .navbar .navbar-nav .dropdown .dropdown-menu.show {
        background-color: var(--dark-gray);
    }
}

/* blog */
.blog-listing .blog-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-listing .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px rgba(20, 20, 20, 0.12);
}
.blog-listing .blog-card .blog-image {
    position: relative;
}
.blog-listing .blog-card .blog-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.blog-listing .blog-card .blog-categories {
    position: absolute;
    left: 20px;
    top: 20px;
}
.blog-listing .blog-card .entry-meta {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    max-width: calc(100% - 180px);
    justify-content: flex-end;
}
.blog-listing .blog-card .entry-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 20px rgba(20, 20, 20, 0.08);
    font-size: 12px;
    line-height: 1;
}
.blog-listing .blog-card .entry-meta span a {
    color: var(--dark-gray);
    font-weight: 600;
}
.blog-post-hero .entry-meta {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    justify-content: flex-end;
}
.blog-post-hero .entry-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 20px rgba(20, 20, 20, 0.08);
    font-size: 12px;
    line-height: 1;
    color: var(--dark-gray);
    font-weight: 600;
}
.blog-listing .blog-card .card-body {
    padding: 32px;
}
.blog-grid .card .blog-image {
    background-color: #fff;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blog-grid .card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.blog-post-content h2,
.blog-post-content h3 {
    line-height: 1.35;
}
.blog-post-content p {
    margin-bottom: 20px;
}
.blog-post-content ul {
    padding-left: 18px;
}
.blog-post-callout {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.blog-post-callout .btn:hover .btn-text,
.blog-post-callout .btn:hover .btn-icon,
.blog-post-callout .btn:hover i {
    color: var(--white) !important;
}
.blog-related-card {
    display: block;
    padding: 20px 22px;
    border: 1px solid rgba(20, 20, 20, 0.1);
    border-radius: 10px;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-related-card:hover {
    border-color: var(--base-color);
    box-shadow: 0 16px 30px rgba(20, 20, 20, 0.08);
    transform: translateY(-3px);
}
@media (max-width: 991px) {
    .blog-listing .blog-card .blog-image img {
        height: 260px;
    }
    .blog-listing .blog-card .card-body {
        padding: 26px;
    }
}
@media (max-width: 575px) {
    .blog-listing .blog-card .blog-image img {
        height: 220px;
    }
}
