/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: normal;
}

.icon-box-primary,
.icon-box-light {
    position: relative;
    padding: 0 0 10px 10px;
    z-index: 1;
}

.icon-box-primary i,
.icon-box-light i {
    font-size: 60px;
    line-height: 0;
}

.icon-box-primary::before,
.icon-box-light::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    left: 0;
    bottom: 0;
    border-radius: 35px;
    transition: .5s;
    z-index: -1;
}

.icon-box-primary::before {
    background: var(--bs-primary);
}

.icon-box-light::before {
    background: var(--bs-light);
}


/*** Navbar ***/
/* .sticky-top {
    top: -100px;
    transition: .5s;
} */

.navbar .navbar-brand {
    margin-right: 2.8rem;
}

.img-fluids {
    height: 68px;         /* Bigger logo height */
    width: auto;
    display: block;
    padding: 6px 18px;    /* More space around logo */
    object-fit: contain;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        margin-right: 1.2rem;
    }
    .img-fluids {
        height: 42px;     /* Bigger on mobile too */
        padding: 2px 8px;
    }
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--bs-dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    color: var(--bs-green);
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .sticky-top {
        margin-top: -34px;
    }

    .navbar {
        height: 68px;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
/* Mega menu */
.navbar .dropdown-menu.mega-menu {
    width: 1200px;
    max-width: 98vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    background: #fff;
    border: none;
}

.mega-menu .row {
    flex-wrap: nowrap;
    gap: 0 1rem;
}

.mega-menu-col {
    min-width: 220px;
    max-width: 270px;
    flex: 1 1 0;
    border-right: 1px solid #eee;
    padding-right: 1rem; 
    margin-right: 1rem;
    white-space: nowrap; /* Prevent text wrap */
}

.mega-menu-col:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.mega-menu-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    color: #222;
    display: flex;
    align-items: center;
    white-space: nowrap; /* Prevent text wrap */
}

.mega-menu-list li i {
    margin-right: 8px;
    font-size: 1.1em;
    color: #888;
}

.mega-menu-img {
    width: 100%;
    max-width: 140px;
    border-radius: 8px;
    margin-bottom: 0.7rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.mega-menu-address,
.mega-menu-contact {
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .navbar .dropdown-menu.mega-menu {
        left: auto !important;
        right: 0 !important;
        transform: translateX(60%); /* Push it to the left */
    }
}

@media (max-width: 1200px) {
    .navbar .dropdown-menu.mega-menu {
        left: auto !important;
        right: 0 !important;
        transform: translateX(70%); /* Push it to the left */
        width: 80vw;
        padding: 1.2rem 0.5rem;
    }
    .mega-menu-col {
        width: 75%;
        padding-right: 0.3rem;
        margin-right: 0.3rem;
    }
    .mega-menu-title {
        font-weight: 500;
        font-size: 1.0rem;
    }
    .mega-menu-list li {
        margin-bottom: 0.8rem;
        font-size: 0.8rem;
    }

}
@media (max-width: 991.98px) {
    .navbar .dropdown-menu.mega-menu {
        width: 100vw;
        padding: 1rem 0.5rem;
        transform: none;
    }
    .mega-menu .row {
        flex-wrap: wrap;
        flex-direction: column;
        gap: 0;
    }
    .mega-menu-col {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        margin-right: 0;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-bottom: 1rem;
        white-space: normal; /* Allow wrap on mobile */
        display: block;
    }
    .mega-menu-col:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    .navbar .dropdown-menu.mega-menu {
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        /* Optional: add a subtle shadow for clarity */
        box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    }
}

/* Nice hover effect for submenu (mega menu) items */
.mega-menu-list li {
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
    cursor: pointer;
    border-radius: 6px;
    padding: 4px 10px 4px 0;
}

.mega-menu-list li:hover {
    background: #f5f9f6;
    color: var(--bs-primary);
    padding-left: 12px;
    font-weight: 500;
}

.mega-menu-list li:hover i {
    color: var(--bs-primary);
    transition: color 0.18s;
}

/*** Header ***/
@media (min-width: 992px) {
    .header-carousel,
    .page-header {
        margin-top: -34px;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(3, 27, 78, .3);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--bs-green);
    border: 15px solid var(--bs-green);
}

@media (max-width: 767.98px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/printing_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);
}


/*** Features ***/
.feature {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/products.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}

.experience .nav-pills .nav-link {
    color: var(--dark);
}

.experience .nav-pills .nav-link.active {
    color: #FFFFFF;
}

.experience .tab-content hr {
    width: 30px;
}


/*** About ***/
.about-fact {
    width: 220px;
    height: 220px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

@media (min-width: 576px) {
    .about-fact.mt-n130 {
        margin-top: -130px;
    }
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--bs-primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--bs-primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.container-service {
    position: relative;
}

.container-service::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 70%);
    z-index: -1;
}

.service-item {
    position: relative;
    height: 100%;
    padding: 45px 30px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: .5s;
    background: var(--bs-primary);
}

.service-item:hover::before {
    height: 100%;
    top: 0;
}

.service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--bs-white);
}

.service-item:hover .icon-box-primary::before {
    background: var(--bs-dark);
}

.service-item:hover .icon-box-primary i {
    color: var(--bs-white) !important;
}


/*** Team ***/
.container-team {
    position: relative;
}

.container-team::before {
    position: absolute;
    content: '';
    background: var(--bs-light);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    clip-path: polygon(0 70%, 100% 30%, 100% 100%, 0% 100%);
    z-index: -1;
}

.team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/Illustration.jpg) left center no-repeat;
    background-size: cover;
}

.testimonial-item img {
    width: 80px !important;
    height: 60px !important;
    border-radius: 60px;
    ;
}
.testimonial-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    color: var(--bs-primary);
    font-size: 30px;
    line-height: 0;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/footer.png) center center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    border-top: 1px dashed rgba(255, 255, 255, .2);
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}



/* Custom CSS for Logo in Navbar */
.img-fluids {
    height: 53px;         /* Adjust to match your navbar height */
    width: auto;          /* Maintain aspect ratio */
    display: block;
    padding: 4px 12px;    /* Optional: space around the logo */
    object-fit: contain;  /* Ensures the logo scales nicely */
    vertical-align: middle;
}
#logo_up{
    height: auto;         /* Adjust to match your navbar height */
    width: 291px;          /* Maintain aspect ratio */
    display: block;
    padding: 4px 12px;    /* Optional: space around the logo */
    object-fit: contain;  /* Ensures the logo scales nicely */
    vertical-align: middle;
}
@media(min-width: 991.98px) {
    .img-fluids {
        height: 25px;       /* Smaller height for mobile nav */
        padding: 0;   /* Optional: reduce padding */
    }
}
/* Custom CSS for Live Chat Button */
#liveChatBtn {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 1050;
    background:#28a745;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}
#liveChatBtn:hover {
    background:#218838;
}
#liveChatOptionsMenu {
    position: fixed;
    left: 30px;
    bottom: 100px;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 1051;
    min-width: 180px;
}
.live-chat-option {
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}
.live-chat-option:hover {
    background: #1ebc59;
    color: #fff;
    text-decoration: none;
}
.live-chat-option i {
    font-size: 1.3rem;
}


/* Product slider custom Css */
.product-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin-left: 15px;
    color: var(--bs-primary);
    font-size: 30px;
    line-height: 0;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}

/* Product Slider Container */
#product-slider {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Product Card Styles */
#product-slider .card {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    margin-bottom: 20px;
}

#product-slider .card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-6px) scale(1.02);
}

/* Product Image */
#product-slider .card-img-top {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    background: #f8f9fa;
}

/* Card Body */
#product-slider .card-body {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    text-align: left;
}

#product-slider .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
}

#product-slider .card-text {
    font-size: 0.98rem;
    color: #555;
    margin-bottom: 0px;
    min-height: 48px;
}

#product-slider .btn {
    font-size: 0.95rem;
    border-radius: 6px;
    margin-right: 8px;
    margin-bottom: 0px;
    transition: background 0.2s, color 0.2s;
}

#product-slider .btn-primary {
    background: #28a745;
    border: none;
}

#product-slider .btn-primary:hover {
    background: #218838;
}

/* Owl Carousel Dots */
#product-slider .owl-dots {
    text-align: center;
    margin-top: 18px;
}

#product-slider .owl-dot span {
    width: 14px;
    height: 14px;
    background: #e0e0e0;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    transition: background 0.2s;
}

#product-slider .owl-dot.active span,
#product-slider .owl-dot:hover span {
    background: #28a745;
}


/*** Product Background ***/
.product-slider {
    background: linear-gradient(rgba(3, 27, 78, .3), rgba(3, 27, 78, .3)), url(../img/products.jpg) left center no-repeat;
    background-size: cover;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #product-slider .card-img-top {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    #product-slider .row {
        flex-direction: column;
    }
    #product-slider .col-md-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    #product-slider .card-img-top {
        height: 160px;
    }
}
.position-relative {
    position: relative;
}

.onTop {
    position: absolute;
    top: -0.5px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Adjust video modal */
.modal-video .modal-content {
    border-radius: 18px;
    background: #181c24;
    color: #fff;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    padding: 0;
    overflow: hidden;
    animation: modalPop 0.3s cubic-bezier(.4,2,.6,1) both;
}
@keyframes modalPop {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.modal-video .modal-header {
    border-bottom: none;
    background: #232a36;
    color: #fff;
    padding: 1.2rem 1.5rem 1rem 1.5rem;
    align-items: center;
}
.modal-video .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.modal-video .btn-close {
    filter: invert(1) grayscale(1);
    opacity: 0.7;
    transition: opacity 0.2s;
}
.modal-video .btn-close:hover {
    opacity: 1;
}
.modal-video .modal-body {
    padding: 0;
    background: #181c24;
}
.modal-video .ratio {
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    background: #000;
}
@media (max-width: 575.98px) {
    .modal-video .modal-content {
        border-radius: 10px;
    }
    .modal-video .ratio {
        border-radius: 0 0 10px 10px;
    }
}

/* Gallery */
.gallery-thumb {
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.15s;
    border: 2px solid #22222222;
    box-shadow: none; /* Remove heavy shadow */
}
.gallery-thumb:hover {
    transform: scale(1.04);
    border-color: #28a745;
}
#galleryModal .modal-content {
    background: #181c24;
    border-radius: 18px;
    border: none;
}
#galleryModal .carousel-inner img {
    max-height: 70vh;
    object-fit: contain;
    margin: 0 auto;
    background: #111;
}

/* Copyright section */
.copyright {
    font-size: 1rem;
    background: #181c24;
    border-top: 1px solid #222;
}
.copyright p {
    margin-bottom: 0;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    color: #bbb;
}
.copyright a {
    text-decoration: underline;
    transition: color 0.2s;
}
.copyright a:hover {
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .copyright p {
        font-size: 0.9rem;
        text-align: center !important;
    }
    .copyright .row > div {
        text-align: center !important;
        margin-bottom: 6px;
    }
}

@media (max-width: 575.98px) {
   
    .copyright p {
        font-size: 0.82rem;
        padding-left: 8px;
        padding-right: 8px;
    }
}
/* Reduce slider title size and add spacing for better CTA visibility */
.carousel-caption h1.display-1,
.carousel-caption .display-1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.carousel-caption .btn {
    margin-top: 0.5rem;
    font-size: 1.05rem;
    padding: 0.75rem 2.2rem;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(40,167,69,0.08);
}

@media (max-width: 991.98px) {
    .carousel-caption h1.display-1,
    .carousel-caption .display-1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    .carousel-caption .btn {
        font-size: 0.98rem;
        padding: 0.6rem 1.5rem;
    }
}
/* companies we worked with */
.company-carousel .company-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s;
    width: 90%;  
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.company-carousel .company-item:hover {
    box-shadow: 0 4px 24px rgba(40,167,69,0.10);
}
.company-logo {
    max-width: 280px;
    max-height: 70px;
    object-fit: contain;
    margin-bottom: 8px;
}
.company-name {
    font-size: 1.05rem;
    color: #222;
    font-weight: 500;
    margin-top: 4px;
    white-space: nowrap;
}
/* Product slider custom Css */
.company-carousel .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.company-carousel .owl-nav .owl-prev,
.company-carousel .owl-nav .owl-next {
    margin-left: 15px;
    color: var(--bs-primary);
    font-size: 30px;
    line-height: 0;
    transition: .5s;
}

.company-carousel .owl-nav .owl-prev:hover,
.company-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}
