﻿

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    /*font-family: "Open Sans", sans-serif;*/
    color: #000000;
}


a {
    /* padding-left: 20px; */
    padding-top: 15px;
    text-decoration: none;
    color: #222222;
}

    a:hover {
        color: #3c86d5;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
}
/*.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}*/

/* Define Custom Bootstrap Colors */
:root {
    --primary-color: #003d80;
   
    /*--primary-color: #0056b3;*/
    --primary-hover: #FFD042;
    /*--primary-hover: #003d80;*/
    --secondary-color: #6c757d;
    --secondary-hover: #545b62;
    --success-color: #28a745;
    --success-hover: #1e7e34;
    --danger-color: #dc3545;
    --danger-hover: #bd2130;
}

/* Apply Variables to Bootstrap Button Classes */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

    .btn-primary:hover {
        background-color: var(--primary-hover) !important;
        border-color: var(--primary-hover) !important;
    }

.btn-secondary {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

    .btn-secondary:hover {
        background-color: var(--secondary-hover) !important;
        border-color: var(--secondary-hover) !important;
    }

.btn-success {
    background-color: var(--success-color) !important;
    border-color: var(--success-color) !important;
}

    .btn-success:hover {
        background-color: var(--success-hover) !important;
        border-color: var(--success-hover) !important;
    }

.btn-danger {
    background-color: var(--danger-color) !important;
    border-color: var(--danger-color) !important;
}

    .btn-danger:hover {
        background-color: var(--danger-hover) !important;
        border-color: var(--danger-hover) !important;
    }

.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*--------------------------------------------------------------
# Mobile View
--------------------------------------------------------------*/
/* Mobile Menu Modal */
.mobile-menu-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    z-index: 1000; /* Ensure it's on top */
    animation: fadeIn 0.3s ease-in-out; /* Fade-in animation */
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px; /* Fixed width for the menu */
    height: 100%;
    background-color: #FFD042; /* Dark background color */
    padding: 20px;
    overflow-y: auto; /* Enable scrolling if content is long */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transform: translateX(-100%); /* Start off-screen */
    animation: slideIn 0.3s ease-in-out forwards; /* Slide-in animation */
}

.mobile-menu-close {
    font-size: 24px;
    cursor: pointer;
    text-align: right;
    margin-bottom: 20px;
    color: #fff; /* White color for the close button */
}

.mobile-menu-modal .navbar-nav {
    flex-direction: column;
    padding: 0;
    margin: 0;
}

.mobile-menu-modal .nav-item {
    margin-bottom: 15px;
    list-style: none; /* Remove bullet points */
}

.mobile-menu-modal .nav-link {
    /* color: #ecf0f1; /* Light gray color for links */ */ font-size: 18px;
    text-decoration: none; /* Remove underline */
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth hover effect */
    display: block; /* Make the entire area clickable */
}

    .mobile-menu-modal .nav-link:hover {
        background-color: #34495e; /* Darker background on hover */
        color: #fff; /* White text on hover */
    }

    .mobile-menu-modal .nav-link.active {
        background-color: #003D80; /* Highlight color for active link */
        color: #fff; /* White text for active link */
        font-weight: bold;
    }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* Hide desktop navbar on mobile */
@media (max-width: 768px) {
    #navbarNav {
        display: none;
    }
}

@media (min-width: 1024px) {
    .mobile-menu-modal {
        display: none !important;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99 6;
    background: #382C7F;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    transition: all 0.4s;
}

    .back-to-top i {
        /* font-size: 10px;*/
        color: #fff;
        /*line-height: 0;*/
    }

    .back-to-top:hover {
        background: #314236;
        /*color: #fff;*/
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

.bi bi-list mobile-nav-toggle {
    padding-left: 3px;
}
/*--------------------------------------------------------------
#  Hero/Banner/Slider
--------------------------------------------------------------*/

.carousel {
    height: 100vh; /* Full viewport height */
    overflow: auto; /* Hide the carousel content that overflows the viewport */
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

    .carousel-item img {
        width: 100%;
        object-fit: contain; /* Ensures the image covers the entire viewport */
    }

/* Media Queries for Responsive Adjustments */

/* For small devices (phones, 576px and below) */
@media (max-width: 576px) {
    .carousel {
        height: auto; /* Removes full height */
    }

    .carousel-item {
        min-height: auto; /* Allows content to define height */
    }

        .carousel-item img {
            height:auto !important;
            object-fit: inherit; /* Ensures the full image is visible */
        }
}

/* For medium devices (tablets, 577px to 992px) */
@media (min-width: 577px) and (max-width: 992px) {
    .carousel {
        height: auto; /* Removes full height */
    }

    .carousel-item {
        min-height: auto; /* Allows content to define height */
    }

        .carousel-item img {
            object-fit: contain; /* Ensures the full image is visible */
        }
}

/* For large devices (desktops, 993px and above) */
@media (min-width: 993px) {
    .carousel {
        height: auto; /* Removes full height */
    }

    .carousel-item {
        min-height: auto; /* Allows content to define height */
    }

        .carousel-item img {
            object-fit: contain; /* Ensures the full image is visible */
        }
}
/* For large devices (desktops, 993px and above) */
@media (min-width: 1025) {
    .carousel {
        height: auto; /* Removes full height */
    }

    .carousel-item {
        min-height: auto; /* Allows content to define height */
    }

        .carousel-item img {
            object-fit: contain; /* Ensures the full image is visible */
        }
}
/* For large devices (desktops, 993px and above) */
@media (min-width: 1440) {
    .carousel {
        height: auto; /* Removes full height */
    }

    .carousel-item {
        min-height: auto; /* Allows content to define height */
    }

        .carousel-item img {
            object-fit: contain; /* Ensures the full image is visible */
        }
}
/* For large devices (desktops, 993px and above) */
@media (min-width: 2560) {
    .carousel {
        height: auto; /* Removes full height */
    }

    .carousel-item {
        min-height: auto; /* Allows content to define height */
    }

        .carousel-item img {
            object-fit: contain; /* Ensures the full image is visible */
        }
}

.custom-carousel-icon {
    background-color: #FFD042; /* Custom background */
    border-radius: 50%;
    padding: 5px; /* Reduce padding */
    font-size: 12px; /* Smaller font size */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    width: 30px; /* Smaller width */
    height: 30px; /* Smaller height */
}

/* Reduce Bootstrap chevron size */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px !important; /* Reduce width */
    height: 25px !important; /* Reduce height */
    background-size: 15px 15px !important; /* Resize background SVG */
}

/* Adjust positioning */
.carousel-control-prev {
    width: auto;
    left: 10px; /* Move closer */
}

.carousel-control-next {
    width: auto;
    right: 10px; /* Move closer */
}

    /* Hover Effect */
    .carousel-control-prev:hover .custom-carousel-icon,
    .carousel-control-next:hover .custom-carousel-icon {
        background-color: #FFD042;
        transform: scale(1.1);
    }


/*--------------------------------------------------------------
# UnderDevelopement Footer
--------------------------------------------------------------*/
.under-development {
    /* background-color: #f8f9fa;*/
    color: #333;
    padding: 0px 0;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
}

    .under-development p {
        margin: 0;
    }

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #fbfbfb;
    font-size: 15px;
    height: 40px;
    padding: 0;
}

    #topbar .contact-info a {
        line-height: 0;
        color: #444444;
        transition: 0.3s;
    }

        #topbar .contact-info a:hover {
            color: #5cb874;
        }

    #topbar .contact-info i {
        color: #5cb874;
        line-height: 0;
        margin-right: 5px;
    }

    #topbar .contact-info .phone-icon {
        margin-left: 15px;
    }

    #topbar .social-links a {
        color: #6f6f6f;
        padding: 4px 12px;
        display: inline-block;
        line-height: 1px;
        transition: 0.3s;
    }

        #topbar .social-links a:hover {
            color: #5cb874;
        }



#clients {
    /*  background-color: #f8f9fa;*/
    Light-background-color: padding: 60px 0;
}

    #clients .img-fluid {
        max-height: 100px;
        transition: transform 0.3s;
    }

        #clients .img-fluid:hover {
            transform: scale(1.1);
        }

    #clients h2 {
        padding: 70px 0 0 0;
        font-size: 35px;
        /* margin-bottom: 10px; */
        color: #333;
        font-weight: 700;
        font-style: normal;
    }

    #clients p {
        color: #666;
        font-size: 1rem;
        margin-bottom: 40px;
    }

/*--------------------------------------------------------------
# Page Loader
--------------------------------------------------------------*/
.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .loader.hidden {
        display: none;
    }

.spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #ffc107c2;
    transition: all 0.5s;
    z-index: 997;
    height: 50px;
    height: 70px;
    /* padding: 0 0 0 0px; */
    margin: 0px 0px 0px 0px;
}

    #header.header-scrolled {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

    #header .logo {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

        #header .logo a {
            color: #5cb874;
        }

        #header .logo img {
            max-height: 40px;
        }

.scrolled-offset {
    margin-top: 44px;
}

/*--------------------------------------------------------------
# page open
--------------------------------------------------------------*/
.active-custom {
    background-color: #5cb874;
}






/*@media (min-width: 1920px) {
    .navbar-nav {
        margin-left: auto;
    }
}*/
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
/*.navbar*/

.mobile-navbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0 15px 0px;
    font-size: 15px;
    font-weight: bold;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
}

.nav-sidebar .nav-item > .nav-link {
    position: relative;
}


.navbar a i, .navbar a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 62px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    /*color: #5cb874;*/
    color:white;

}

/*
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    background: #767977;
    color: #fff;
}*/

.navbar .dropdown ul {
    display: block;
    /*  position: absolute;*/
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        text-transform: none;
    }

        .navbar .dropdown ul a i {
            font-size: 12px;
        }

        .navbar .dropdown ul a:hover,
        .navbar .dropdown ul .active:hover,
        .navbar .dropdown ul li:hover > a {
            color: #5cb874;
        }

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
        padding-right: 60px;
    }


.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #222222;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #5cb874;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #5cb874;
            }


/*@media (max-width: 991px) {*/
/* .navbar navbar-mobile {
        
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: .5rem 1rem;
    }
    .mobile-nav-toggle {
        display: block;
        padding-left: 470px;
        padding-right: 46px;
    }

    .navbar ul {
        display: flex;
    }*/
/*}*/

/*.mobile-nav-toggle.bi-x {
}
*/

/*--------------------------------------------------------------
#Index Product Section
--------------------------------------------------------------*/
.product-img-top {
    width: 168px;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
    padding: 5px;
}
/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/
/*.product-catelog{
    display:flex;
}*/
.arrow_one {
    display: flex;
}

.arrow_two {
    display: flex;
}

.navbar {
    /* position: relative; */
    display: -ms-flexbox;
    display: contents;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
}

.services {
    padding: 0px 0;
}

.container {
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

    .brand-link img {
        margin-right: 10px;
    }

.brand-text {
    font-size: 1.2em;
    font-weight: bold;
}


.main-title {
    font-size: 28px;
    margin-bottom: 35px;
    padding-left: 20px;
    font-weight: 600;
    color: #222323;
    /* font-style: italic; */
}

.catalog_main {
    padding: 50px 0 0px 0px;
}

aside {
    /* background-color: #ffff; */
    padding: 0px 0 0px 0px;
    border-radius: 8px;
    font-size: large;
    font-family: sans-serif;
}

.nav-pills .nav-link {
    color: #34495b;
}

#product-container {
    width: 100%;
}

.Sidebar-content {
    /*margin: 40px 0px 0em;*/
    padding: 0;
    font-size: .92em;
    color: #767676;
}

/*.nav-parents {
    margin-top: 10px;
}

.nav-item {
    margin-bottom: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-radius: 4px;
}

    .nav-link:hover {
        background-color: #e9ecef;
    }

.nav-icon {
    margin-right: 10px;
}*/
.catalog-main {
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title {
    /*  margin-bottom: 20px;*/
}

    .section-title h2 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .section-title p {
        font-size: 1em;
        color: #666;
    }

#product-card-container {
    display: flex;
    flex-wrap: wrap;
    /*  gap: 20px;*/ /*
    justify-content: center;*/
}

/*#product-card-container_one {
    display: flex;
    flex-wrap: wrap;*/
/*  gap: 20px;*/ /**/
/*justify-content: center;
}*/
.section-title h2 {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: -webkit-xxx-large;
}

.section-title p {
    margin-bottom: 2rem;
}



.pagination {
    justify-content: center;
}

.card-body .li {
    color: #222222;
}

.card-body.h4 {
    color: #222222
}

.nav-link.open p {
    text-decoration: underline;
}


/*--------------------------------------------------------------
# Search Section
--------------------------------------------------------------*/
.container-fluid {
    /*  background-color: #352f2f;*/
    /*  background-color: #f7f8f9;*/
}
/*}
.search-container {
    background-color:none;
    padding: 1rem;
    border-radius: 5px;
    color:aliceblue
}*/

/*.form-control-sidebar {
    background-color: #222;
    color: none;
    border: none;
}
*/
/*.form-control-sidebar::placeholder {
        color: #aaa;
    }

.button.btn btn-sidebar {
    background-color: transparent;
    border: none;
    color: none;
}

.search-container .input-group {
    max-width: 300px;
}*/


/*--------------------------------------------------------------
# General Styles
--------------------------------------------------------------*/
@media (min-width: 320px) and (max-width: 426px) {
    /* cotact info*/
    .info-box {
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* cotact info*/
    .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 0.5px;
        margin-left: 0.5px;
    }

    .category-row, .subcategory-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-sidebar .nav-treeview .nav-item .toggle-arrow {
        margin-left: auto; /* Align button to the right */
    }

    .nav-sidebar .nav-treeview .nav-item {
        margin-top: 5px;
    }

    .fa, .fas {
        font-weight: 900;
    }

    .underline {
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    .nav-link p {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 10px 0;
    }

    .toggle-arrow {
        background: none;
        border: none;
        padding: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        font-size: 16px;
        transition: transform 0.3s ease;
        color: inherit;
    }

    .rotate {
        transform: rotate(-180deg);
    }

    .nav-treeview {
        display: none;
    }

        .nav-treeview.show {
            display: block;
        }

    .navbar-nav .nav-link.active {
        border-bottom: 2px solid #000;
        padding-left: 12px;
    }

    .sidebar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 320px;
        background-color: #343a40d4;
        color: white;
        padding: 20px;
        display: none;
        z-index: 9999;
    }

    hr {
        margin-top: 1px;
        margin-bottom: 1px;
        border: 0;
        border-top: 1px solid rgb(23 22 22);
        padding: 0px 235px 0 70px;
    }

    .navbarLogoCustom {
        width: 97px;
        height: auto;
        /* padding: 0 28px 3px 0px; */
        margin: 0 0 4px -36px;
    }

    .catalog-main {
        padding-top: 55px;
    }

    .navbar-toggler-icon {
        font-size: 23px;
        padding: -1px 0 0px 30px;
        /* margin-top: 5px; */
        margin: 12px -23px 0px -20px;
    }
    /* Mobile view */
    .navbar-collapse {
        justify-content: center;
    }


    .company-text {
        display: block; /* Ensure the marquee is visible */
        text-align: center;
        width: 100%;
    }

    .product-description {
        padding-top: 12px;
        padding-left: -3px;
        margin-top: 12px;
        margin-bottom: 0px;
        border-top: 1px solid #2e3742;
        margin: 0 26px -3px 26px;
    }

    .company-text p {
        font-size: small;
        margin-top: 10px;
    }

    .col-md-1, .col-md-1, .col-md-1 {
        flex: 0 0 auto;
        max-width: 15.3333%;
    }

    .col-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 auto;
        max-width: 18.666667%;
    }

    .footer-reponsive {
        text-align: center;
    }


    .services {
        /*   padding: 0 10px;*/
        /* background: #f8f9fa;*/
        /*position: fixed;*/
        top: 0; /* Adjust as needed */
        left: 0; /* Adjust as needed */
        width: 100%; /* Full width */
    }

    .section-title h2 {
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .product-img {
        max-width: 90%;
        object-fit: contain;
        margin: -15px 0 0px 0px;
    }
    .product-showcase {
        display: flex;
        flex-direction: column;
        background-color: #f0f2f5;
        /* border-radius: 0px; */
        overflow: hidden;
        padding: 32px 40px 0px 22px;
        /* box-shadow: 0 12px 31px rgba(0, 0, 0, 0.2); */
        height: 100%;
    }

    .product_series {
        margin-bottom: 0;
        margin-right: 200px;
        font-size: 18px;
    }

    .product-sales {
        padding-top: -11px;
        padding-left: 343px;
        margin-top: 0px;
        /* margin-bottom: 94px; */
        border-top: 1px solid #2e3742;
    }

    #pagination-controls {
        text-align: center;
        padding-bottom: 16px;
    }

    #product-card-container {
        display: flex;
        flex-wrap: wrap;
        /*  gap: 20px;*/ /*
    justify-content: center;*/
    }

    .short-description {
        padding-right: 0px;
        text-align: left;
        font-size: small;
        margin-left: 0;
    }

    .product-title {
        font-size: small;
        font-weight: bold;
        color: #000;
        transition: color .2s;
        padding-right: 100px;
        padding-top: 20px;
    }

    .footer p, .footer a {
        color: #d1d1d1;
        margin-bottom: 2px;
        font-size: small;
    }

    .footer h5 {
        color: #ffffff;
        margin-bottom: 7px;
        /* text-align: center; */
        /* margin-left: 78px; */
    }

    .footer p, .footer a {
        color: #d1d1d1;
        margin-bottom: 10px;
        font-size: small;
    }

    .section-title {
        text-align: center;
        /* padding-bottom: 30px; */
        padding-top: 33px;
    }

    .product-description {
        padding-top: 12px;
        padding-left: -3px;
        margin-top: 12px;
        margin-bottom: 0px;
        border-top: 1px solid #2e3742;
        margin: 0 0 5px 0;
    }
    .contact .info p {
        padding: 0px 0 10px 35px;
        margin-bottom: 20px;
        font-size: 11px;
        color: #555555;
    }

    .contact .info p {
        padding: 0 0 10px 60px;
        margin-bottom: 20px;
        font-size: 11px;
        color: #555555;
    }

    .spc-img {
        max-width: 306px;
        /* margin-right: 14px; */
        margin: 0px 0px 0px 0px;
    }

    .product-img-wrapper {
        width: 100%;
        height: 224px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar .nav-link {
        color: #1d1b1b;
        font-weight: 700;
    }
    /*.mobile-search-icon {
        display: none;
    }*/

    .search.desktop-search-icon a {
        display: inline-block;
        border: 2px solid #000;
        border-radius: 4px;
        padding: 4px 9px 4px 9px;
    }

        .search.desktop-search-icon a i {
            color: #000;
            font-size: 11px;
        }

        .search.desktop-search-icon a:hover {
            background-color: #22202038; /* Add a hover effect if desired */
        }
    /*  .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 0.5px;
        margin-left: 0.5px;
    }*/

}

@media (min-width: 426px) and (max-width: 768px) {
    /* cotact info*/
    .info-box {
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
        margin-bottom: 10px;
    }


    /* cotact info*/

    .search-section {
        padding: 10px;
    }

    .category-row, .subcategory-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-sidebar .nav-treeview .nav-item .toggle-arrow {
        margin-left: auto; /* Align button to the right */
    }

    .nav-sidebar .nav-treeview .nav-item {
        margin-top: 5px;
    }

    .fa, .fas {
        font-weight: 900;
    }


    .underline {
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    .nav-link p {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 10px 0;
    }

    .toggle-arrow {
        background: none;
        border: none;
        padding: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        font-size: 16px;
        transition: transform 0.3s ease;
        color: inherit;
    }

    .rotate {
        transform: rotate(-180deg);
    }

    .nav-treeview {
        display: none;
    }

        .nav-treeview.show {
            display: block;
        }

    .navbar-nav .nav-link.active {
        border-bottom: 2px solid #000;
    }

    .sidebar {
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 430px;
        background-color: #343a40d4;
        color: white;
        padding: 20px;
        display: none;
        z-index: 9999;
    }

    .product-img-wrapper {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    hr {
        margin-top: 1px;
        margin-bottom: 1px;
        border: 0;
        border-top: 1px solid rgb(23 22 22);
        padding: 0px 155px 0 70px;
    }

    .section-title h2 {
        font-size: 18px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .product-description {
        padding-top: 12px;
        padding-left: -3px;
        margin-top: 12px;
        margin-bottom: 0px;
        border-top: 1px solid #2e3742;
        margin: 0 0px 1px 0px;
    }

    .navbar-toggler-icon {
        font-size: 23px;
        padding: -1px 0 0px 30px;
        /* margin-top: 5px; */
        /* margin: 0 0 0px 53px; */
    }
    /* Tablet view */
    .navbar-collapse {
        justify-content: center;
    }


    .company-text {
        display: block;
        text-align: center;
        width: 100%;
    }

        .company-text p {
            font-size: small;
            margin-top: 10px;
        }

    .Services {
        padding-top: 40px;
        /* background: #f8f9fa; */
    }


    .container, .container-md, .container-sm {
        max-width: 760px;
    }

    #pagination-controls {
        text-align: center;
        margin-bottom: 20px;
    }

    .product-catalog {
        /*  display: flex;*/
        width: 100%;
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        /* max-width: 50%; */
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 100%;
    }

    .product-showcase {
        display: flex;
        flex-direction: column;
        background-color: #f0f2f5;
        overflow: hidden;
        padding: 50px 0px 0px 0px;
    }


    .product-sales {
        padding-top: -11px;
        padding-left: 193px;
        margin-top: 0px;
        border-top: 1px solid #2e3742;
    }
    /*   .product-img {
        max-width: 95%;
        object-fit: contain;
    }*/
    .product-img {
        max-width: 95%;
        object-fit: contain;
        /* padding: 0px 0px 0px 28px; */
        margin: -39px 0 0 0px;
    }

    #product-card-container {
        display: flex;
        flex-wrap: wrap;
    }

    .short-description {
        /* padding-right: 30px; */
        text-align: left;
        font-size: x-small;
    }

    .product-title {
        font-size: 1.1rem;
        font-weight: bold;
        color: #000;
        transition: color .2s;
        padding-right: 94px;
        padding-top: 20px;
    }

    .product-description {
        padding-top: 12px;
        padding-left: -3px;
        margin-top: 12px;
        margin-bottom: 0px;
        border-top: 1px solid #2e3742;
        margin: 0 0px 1px 0px;
    }

    .navbarLogoCustom {
        width: 115px;
        height: auto;
        /* padding: 0 28px 3px 0px; */
        margin: 0 0 4px -27px;
    }

    .product-title a {
        font-size: small;
        text-decoration: none;
        color: inherit;
        font-weight: 700;
        margin-left: 8px;
        /* margin-bottom: 27px; */
    }

    .spc-img {
        max-width: 380px;
        margin: 0px 0px -6px 0px;
    }

    .sidebar .nav-link {
        color: #1d1b1b;
        font-weight: 700;
    }
    /*  .mobile-search-icon {
        display: none;
    }*/
    .search.desktop-search-icon a {
        display: inline-block;
        padding: 2px 8px 2px 8px;
        border: 2px solid #000;
        border-radius: 4px;
        margin: 0px 0 6px 0px;
    }

        .search.desktop-search-icon a i {
            color: #000; /* Set the icon color */
            font-size: 16px; /* Adjust the size of the icon as needed */
        }

        .search.desktop-search-icon a:hover {
            background-color: #22202038; /* Add a hover effect if desired */
        }

    .col-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 9.333333%;
        max-width: 10.333333%;
    }

    /*.col-md-1, .col-md-1, .col-md-1 {
        flex: 0 0 auto;
        max-width: 1.333333%;
    }*/
    .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 0.5px;
        margin-left: 0.5px;
    }

    .info-box, .contact-form {
        margin-bottom: 30px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    /*    contact info*/
    /*   .vh {
        height: 153vh !important;
    }*/
    /*    contact info*/

    /* cotact info*/
    .info-box {
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    /* cotact info*/
    .category-row, .subcategory-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-sidebar .nav-treeview .nav-item .toggle-arrow {
        margin-left: auto; /* Align button to the right */
    }

    .nav-sidebar .nav-treeview .nav-item {
        margin-top: 5px;
    }

    .fa, .fas {
        font-weight: 900;
    }


    .underline {
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    .nav-link p {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 10px 0;
    }

    .toggle-arrow {
        background: none;
        border: none;
        padding: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        font-size: 16px;
        transition: transform 0.3s ease;
        color: inherit;
        margin-left: 590px;
    }

    .rotate {
        transform: rotate(-180deg);
    }

    .nav-treeview {
        display: none;
    }

        .nav-treeview.show {
            display: block;
        }

    .navbar-nav .nav-link.active {
        border-bottom: 2px solid #000;
    }



    .sidebar {
        position: fixed;
        top: 0;
        /* left: 0; */
        right: 0;
        height: 100%;
        width: 600px;
        background-color: #343a40;
        color: white;
        padding: 20px;
        display: none;
        z-index: 9999;
    }

    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 100%;
    }

    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 auto;
        max-width: 9.333333%;
    }
    /* .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 34.666667%;
    }*/
    .product-img-wrapper {
        width: 100%;
        height: 176px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    hr {
        margin-top: 1px;
        margin-bottom: 1px;
        border: 0;
        border-top: 1px solid rgb(23 22 22);
        padding: 0px 200px 0 200px;
    }

    .contact .info p {
        padding: 0 0 10px 60px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #555555;
    }


    /* .nav-sidebar .nav-link p {
        display: inline;
        margin: 8px;
        white-space: normal;
        font-weight: 600;
    }*/
    .navbarLogoCustom {
        width: 150px;
        height: auto;
        /* padding: 0 28px 3px 0px; */
        margin: 0 0 4px -27px;
    }

    .navbar .nav-link {
        font-size: 10px;
        margin: 0px 0 0px 1px;
    }

    .company-text {
        display: block; /* Ensure the marquee is visible */
        text-align: center;
        width: 100%;
    }

    .navbar {
        position: relative;
        display: -ms-flexbox;
        display: contents;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: flex-end;
        padding: 0.5rem 1.5rem;
    }

    .col-md-2, .col-md-4, .col-md-6 {
        flex: 0 0 auto;
        max-width: 21.3333%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 24%;
        /* max-width: 50%; */
    }

    .product-description {
        padding-top: 12px;
        padding-left: -3px;
        margin-top: 12px;
        margin-bottom: 0px;
        border-top: 1px solid #2e3742;
        margin: 0 0px 1px 0px;
    }

 

    .product-catalog {
        flex-wrap: wrap;
        width: 100%;
    }

    .navbar-nav .nav-item {
        /*  margin-right: -5px;*/
        /*margin-left: 1px;*/
    }
    /*.container, .container-lg, .container-md, .container-sm {
        max-width: 1024px;
    }*/
    .product-showcase {
        display: flex;
        flex-direction: column;
        background-color: #f0f2f5;
        border-radius: 0px;
        overflow: hidden;
        padding: 17px 0px 0px 9px;
    }

    .product-img {
        max-height: 100%;
        max-width: 85%;
        object-fit: contain;
        padding-bottom: 0;
    }

    #product-card-container {
        display: flex;
        flex-wrap: wrap;
        /* gap: 1px;
        justify-content: center;*/
    }
    /*
    .col-lg-3 {
       
        flex: 1 0 25%;
        max-width: 25%;
    }*/
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 1 0 25%;
        max-width: 33%;
    }

    .short-description {
        /* padding-right: 15px; */
        text-align: left;
        font-size: smaller;
    }

    .product-title {
        font-weight: bold;
        color: #000;
        transition: color .2s;
        padding-right: 62px;
        padding-top: 20px;
        font-size: 15px;
    }

    .footer-reponsive {
        display: flex;
    }

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .spc-img {
        max-width: 410px;
        margin: 0px 0px -6px 0px;
    }

    .spc-detail {
        margin: 80px 0px 0px 24px;
    }

    .product-img-wrapper {
        width: 100%;
        height: 140px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-nav {
        flex-direction: column;
        text-align: center;
        /*        background: #d6d3ca;
        padding: 48px 0px 110px 0;*/
    }

    .sidebar .nav-link {
        color: #fff8f8;
        font-weight: 700;
    }
    /*.mobile-search-icon {
        display: inline-block;
        margin-right: 10px;*/ /* Add margin to space it from the toggle button */
    /*}*/
    .search.desktop-search-icon a {
        display: inline-block;
        padding: 4px 7px 4px 7px;
        border: 2px solid #000;
        border-radius: 4px;
    }

        .search.desktop-search-icon a i {
            color: #000; /* Set the icon color */
            font-size: 16px; /* Adjust the size of the icon as needed */
        }

        .search.desktop-search-icon a:hover {
            background-color: #22202038; /* Add a hover effect if desired */
        }

    .navbar a i, .navbar a:focus i {
        font-size: 14px;
        line-height: 0;
        margin-left: 50px;
    }

    .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 0.5px;
        margin-left: 0.5px;
    }
}

@media (min-width:1025px) and (max-width: 1270px) {
    /*    contact info*/

    /*    contact info*/
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
        box-shadow: 1px 0px -1px 2px rgba(0, 0, 0, 0.1);
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
        position: relative;
        padding-left: 14px;
        box-shadow: 1px 0px -1px 2px rgba(0, 0, 0, 0.1);
    }
    /*.col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 32.666667%;
    }*/
    .category-row, .subcategory-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-sidebar .nav-treeview .nav-item .toggle-arrow {
        margin-left: auto; /* Align button to the right */
    }

    .nav-sidebar .nav-treeview .nav-item {
        margin-top: 5px;
    }

    .fa, .fas {
        font-weight: 900;
    }


    .underline {
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    .nav-link p {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 10px 0;
    }

    .toggle-arrow {
        background: none;
        border: none;
        padding: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        font-size: 16px;
        transition: transform 0.3s ease;
        color: inherit;
    }

    .rotate {
        transform: rotate(-180deg);
    }

    .nav-treeview {
        display: none;
    }

        .nav-treeview.show {
            display: block;
        }

    .navbar-nav .nav-link.active {
        border-bottom: 2px solid #000;
    }

    hr {
        margin-top: 1px;
        margin-bottom: 1px;
        border: 0;
        border-top: 1px solid rgb(23 22 22);
        padding: 0px 100px 0 100px;
    }

    .contact .info p {
        padding: 0 0 10px 60px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #555555;
    }

    /*  .nav-sidebar .nav-link p {
        display: inline;
        margin: 8px;
        white-space: normal;
        font-weight: 600;
    }*/
    .navbarLogoCustom {
        width: 150px;
        height: auto;
        /* padding: 0 28px 3px 0px; */
        margin: 0 0 4px -27px;
    }

    .navbar-collapse {
        justify-content: space-between;
    }

    .navbar-nav {
        flex-direction: row;
        justify-content: flex-end;
        /*margin: 0 -60px 0px 0px;*/
    }
        /*.navbar-nav .nav-item {
            margin-right: -11px;*/
        /* margin-left: 3px; */
        /*}*/
        .navbar-nav .nav-item:last-child {
            margin-right: 0;
        }

        .navbar-nav .nav-link {
            font-size: 12px;
            margin: 0 0 0px 3px;
        }

    .product-description {
        padding-top: 12px;
        padding-left: -3px;
        margin-top: 12px;
        margin-bottom: 0px;
        border-top: 1px solid #2e3742;
        margin: 0 11px 1px 11px;
    }

    .company-text {
        display: block; /* Ensure the marquee is visible */
        text-align: center;
        width: 100%;
    }

    .product-title a {
        font-size: small;
        text-decoration: none;
        color: inherit;
        font-weight: 700;
        margin-left: 0px;
        /* margin-bottom: 27px; */
    }

    .col-md-2, .col-md-4, .col-md-6 {
        flex: 0 14 auto;
        /*   max-width: 60.3333%;*/
    }

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .footer-reponsive {
        display: flex;
    }

    .Services {
        padding-top: 33px;
    }

    .product-catalog {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .product-img {
        max-width: 90%;
        object-fit: contain;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds shadow */
        padding-left: 10px; /* Optional padding */
    }

    #product-card-container {
        display: flex;
        flex-wrap: wrap;
        /* gap: 1px;*/
        /*justify-content: center;*/
    }

    .product-title {
        font-weight: bold;
        color: #000;
        transition: color .2s;
        padding-right: 62px;
        padding-top: 20px;
    }

    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .product-showcase {
        display: flex;
        flex-direction: column;
        background-color: #f0f2f5;
        border-radius: 0px;
        overflow: hidden;
        padding: 18px 0px 0px 0px;
    }

    .short-description {
        text-align: left;
        font-size: small;
    }

    .footer p, .footer a {
        color: #d1d1d1;
        margin-bottom: 15px;
    }
    /*.product-title a {
        font-size: initial;
        text-decoration: none;
        color: inherit;
        font-weight: 700;
        margin-left: 9px;*/
    /* margin-bottom: 27px; */
    /*}*/
    .product-img-wrapper {
        width: 100%;
        height: 149px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .spc-img {
        max-width: 463px;
        margin: 0px 0px -6px 0px;
    }

    .spc-detail {
        margin: 80px 0px 0px 24px;
    }


    /* .desktop-search-icon {
        display: block;
    }*/
    .search.desktop-search-icon a {
        display: inline-block;
        padding: 0px 5px 4px 6px;
        border: 2px solid #000;
        border-radius: 4px;
        margin: 0px 0 0 55px;
    }

        .search.desktop-search-icon a i {
            color: #000; /* Set the icon color */
            font-size: 16px; /* Adjust the size of the icon as needed */
        }

        .search.desktop-search-icon a:hover {
            background-color: #22202038; /* Add a hover effect if desired */
        }

    .navbar a i, .navbar a:focus i {
        font-size: 14px;
        line-height: 0;
        margin-left: -36px;
    }

    .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 0.5px;
        margin-left: 0.5px;
    }
}

@media only screen and (min-width: 1270px) and (max-width:1620px) {
    /*    contact info*/

    /*    contact info*/

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
        box-shadow: 2px 0px 4px 2px rgba(0, 0, 0, 0.1);
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
        position: relative;
        padding-left: 14px;
    }

    .col-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 6.333333%;
        max-width: 6.333333%;
    }
    /* .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 40.666667%;
        max-width: 33.666667%;
    }*/
    .category-row, .subcategory-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-sidebar .nav-treeview .nav-item .toggle-arrow {
        margin-left: auto; /* Align button to the right */
    }

    .nav-sidebar .nav-treeview .nav-item {
        margin-top: 5px;
    }

    .fa, .fas {
        font-weight: 900;
    }


    .underline {
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    .nav-link p {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 10px 0;
    }

    .toggle-arrow {
        background: none;
        border: none;
        padding: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        font-size: 16px;
        transition: transform 0.3s ease;
        color: inherit;
    }

    .rotate {
        transform: rotate(-180deg);
    }

    .nav-treeview {
        display: none;
    }

        .nav-treeview.show {
            display: block;
        }

    .navbar-nav .nav-link.active {
        border-bottom: 2px solid #000;
    }

    hr {
        margin-top: 1px;
        margin-bottom: 1px;
        border: 0;
        border-top: 1px solid rgb(23 22 22);
        padding: 0px 160px 0 160px;
    }

    .contact .info p {
        padding: 0 0 10px 60px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #555555;
    }

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

    .navbarLogoCustom {
        width: 150px;
        height: auto;
        /* padding: 0 28px 3px 0px; */
        margin: 0 0 4px -27px;
    }

    .navbar-nav .nav-link {
        /* padding: 7px 03px 0px; */
        font-size: 14px;
        margin: 0 0 0px 5px;
    }

    .col-md-2, .col-md-4, .col-md-6 {
        flex: 0 0 auto;
        /*       max-width: 33.3333%;*/
    }

    .footer-reponsive {
        display: flex;
    }

    .product-title a {
        font-size: small;
        text-decoration: none;
        color: inherit;
        font-weight: 700;
    }

    #product-card-container {
        display: flex;
        flex-wrap: wrap;
    }

    .product-img {
        max-width: 100%;
        object-fit: contain;
        padding-bottom: -42px;
        /* padding-right: 42px; */
        margin: -50px 0 0 0px;
    }

    .Services {
        padding-top: 20px;
    }

    .product-catalog {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        padding: 0px 0 0 0;
    }

    .footer-reponsive {
        display: flex;
    }

    .product-showcase {
        display: flex;
        flex-direction: column;
        background-color: #f0f2f5;
        /* border-radius: 0px; */
        overflow: hidden;
        padding: 60px 0px 0px 0px;
    }

    .product-title {
        font-size: 1.1rem;
        font-weight: bold;
        color: #000;
        transition: color .2s;
        padding-right: 125px;
        padding-top: 20px;
    }

    .short-description {
        /* padding-right: 15px; */
        text-align: left;
        font-size: smaller;
    }

    .footer h5 {
        color: #ffffff;
        margin-bottom: 7px;
    }

    .footer p, .footer a {
        color: #d1d1d1;
        margin-bottom: 15px;
    }

    .product-description {
        padding-top: 12px;
        padding-left: -3px;
        margin-top: 12px;
        margin-bottom: 0px;
        border-top: 1px solid #2e3742;
        margin: 0 11px 1px 11px;
    }

    .spc-detail {
        margin: 116px 0px 0px 24px;
        font-size: larger;
    }

    .spc-img {
        max-width: 527px;
        margin: 23px 156px -6px 0px;
    }

    .product-img-wrapper {
        width: 100%;
        height: 176px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search.desktop-search-icon a {
        display: inline-block;
        padding: 10px 20px 10px 20px;
        border: 2px solid #000;
        border-radius: 4px;
    }

        .search.desktop-search-icon a i {
            color: #000; /* Set the icon color */
            font-size: 16px; /* Adjust the size of the icon as needed */
        }

        .search.desktop-search-icon a:hover {
            background-color: #22202038; /* Add a hover effect if desired */
        }

    .navbar a i, .navbar a:focus i {
        font-size: 14px;
        line-height: 0;
        margin-left: 0px;
    }

    .navbar-nav {
        margin: 0px 5px 0px 0;
    }

    .row {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: 0.5px;
        margin-left: 0.5px;
    }
}

@media (min-width: 1620px) and (max-width:2560px) {
    /*    contact info*/

    /*    contact info*/
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
        box-shadow: 1px 0px -1px 2px rgba(0, 0, 0, 0.1);
    }

    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
        position: relative;
        padding-left: 14px;
        box-shadow: 1px 0px -1px 2px rgba(0, 0, 0, 0.1);
    }

    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 3.333333%;
        max-width: 3.333333%;
    }

    .category-row, .subcategory-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-sidebar .nav-treeview .nav-item .toggle-arrow {
        margin-left: auto; /* Align button to the right */
    }

    .nav-sidebar .nav-treeview .nav-item {
        margin-top: 5px;
    }

    .fa, .fas {
        font-weight: 900;
    }


    .underline {
        border-bottom: 1px solid #ccc;
        width: 100%;
    }

    .nav-link p {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0;
        padding: 10px 0;
    }

    .toggle-arrow {
        background: none;
        border: none;
        padding: 14px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        font-size: 16px;
        transition: transform 0.3s ease;
        color: inherit;
    }

    .rotate {
        transform: rotate(-180deg);
    }

    .nav-treeview {
        display: none;
    }

        .nav-treeview.show {
            display: block;
        }

    .navbar-nav .nav-link.active {
        border-bottom: 2px solid #000;
    }

    hr {
        margin-top: 1px;
        margin-bottom: 1px;
        border: 0;
        border-top: 1px solid rgb(23 22 22);
        padding: 0px 160px 0 160px;
    }

    .product-img-wrapper {
        width: 100%;
        height: 230px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .contact .info p {
        padding: 0 0 10px 60px;
        margin-bottom: 20px;
        font-size: 14px;
        color: #555555;
    }
    /*
    .nav-sidebar .nav-link p {
        display: inline;
        margin: 8px;
        white-space: normal;
        font-weight: 600;
    }*/

    .navbarLogoCustom {
        width: 150px;
        height: auto;
        /* padding: 0 28px 3px 0px; */
        margin: 0 0 4px -27px;
    }

    .product-title {
        font-size: 1.1rem;
        font-weight: bold;
        color: #000;
        transition: color .2s;
        padding-right: 149px;
        padding-top: 20px;
    }

    .navbar-nav {
        font-size: x-large;
        margin: 0 77px 0px 0;
    }

    .col-md-2, .col-md-4, .col-md-6 {
        flex: 0 0 auto;
        /* max-width: 33.3333%;*/
    }


    .product-img {
        max-width: 100%;
        object-fit: contain;
        margin: -45px 0 0 0;
    }

    .container, .container-lg, .container-md, .container-sm {
        max-width: 1345px;
    }

    #product-card-container {
        display: flex;
        flex-wrap: wrap;
    }

    .short-description {
        text-align: left;
        font-size: medium;
    }

    .product-showcase {
        display: flex;
        flex-direction: column;
        background-color: #f0f2f5;
        /* border-radius: 0px; */
        overflow: hidden;
        padding: 45px 40px 0px 40px;
        /* box-shadow: 0 12px 31px rgba(0, 0, 0, 0.2); */
        /* height: 100%; */
    }

    .navbarLogoCustom {
        width: 150px;
        height: auto;
        /* padding: 0 28px 3px 0px; */
        margin: 0 0 4px -26px;
    }

    /*.navbar ul {
        margin: 0;*/
    /* padding: 3px; */
    /*padding-right: 0px;
        display: flex;
        list-style: none;
        align-items: center;
        padding-right: -11px;
        margin: -60px;
    }*/


    .Services {
        padding-top: 66px;
    }

    .product-catalog {
        display: flex;
        flex-wrap: wrap;
    }

    .footer-reponsive {
        display: flex;
    }

    .spc-img {
        max-width: 665px;
        margin: 0px 169px -6px -152px;
    }

    .spc-detail {
        margin: 135px 0px 0px 24px;
        font-size: x-large;
    }

    .search.desktop-search-icon a {
        display: inline-block;
        padding: 10px; /* Adjust padding as needed */
        border: 2px solid #000; /* Set the border color */
        border-radius: 4px; /* Slightly round the corners */
    }

        .search.desktop-search-icon a i {
            color: #000; /* Set the icon color */
            font-size: 16px; /* Adjust the size of the icon as needed */
        }

        .search.desktop-search-icon a:hover {
            background-color: #f0f0f0; /* Add a hover effect if desired */
        }

    .search.desktop-search-icon a {
        display: inline-block;
        padding: 10px;
        border: 2px solid #000;
        border-radius: 4px;
        margin-left: 60px;
    }

        .search.desktop-search-icon a i {
            color: #000; /* Set the icon color */
            font-size: 16px; /* Adjust the size of the icon as needed */
        }

        .search.desktop-search-icon a:hover {
            background-color: #f0f0f0; /* Add a hover effect if desired */
        }

    .navbar a i, .navbar a:focus i {
        font-size: 14px;
        line-height: 0;
        /* margin-left: 0px; */
    }

    .navbar-nav .nav-link {
        font-size: 13px;
        margin: 0 0 0px 10px;
    }
}

/*--------------------------------------------------------------
# Search Bar
--------------------------------------------------------------*/
.navbar .search-bar {
    position: relative;
    margin-left: 30px;
}

    .navbar .search-bar .form-control-sidebar {
        width: 200px;
        background-color: #352f2f;
        color: white;
        border: none;
        padding-right: 30px; /* Ensure text doesn't overlap with the button */
        border: 2px solid #5cb874;
    }

        .navbar .search-bar .form-control-sidebar::placeholder {
            color: #5cb874;
        }

    .navbar .search-bar .btn-sidebar {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        border: none;
        background: transparent;
    }

        .navbar .search-bar .btn-sidebar i {
            color: white;
        }



/*--------------------------------------------------------------
# Brand Text Hover
--------------------------------------------------------------*/
.brand-link .brand-text {
    color: #000000; /* Ensure the text color is inherited by default */
}

    .brand-link .brand-text:hover {
        color: #000000; /* Black color on hover */
    }



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/



section {
    padding: 0px 0;
}

.section-bg {
    background-color: #f8fcf9;
}

.section-title {
    text-align: center;
    padding-bottom: 20px;
}

    .section-title h2::before {
        content: "";
        position: absolute;
        display: block;
        width: 120px;
        height: 1px;
        background: #ddd;
        bottom: 1px;
        left: calc(50% - 60px);
    }

    .section-title h2::after {
        content: "";
        position: absolute;
        display: block;
        width: 40px;
        height: 3px;
        background: #5cb874;
        bottom: 0;
        left: calc(50% - 20px);
    }

    .section-title p {
        margin-bottom: 0;
        font-size: 14px;
        color: #919191;
    }

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
    padding: 20px 0;
}

    .featured-services .icon-box {
        padding: 20px;
    }

    .featured-services .icon-box-bg {
        background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
    }

    .featured-services .icon {
        margin-bottom: 15px;
    }

        .featured-services .icon i {
            color: #5cb874;
            font-size: 42px;
        }

    .featured-services .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 18px;
    }

        .featured-services .title a {
            color: #222222;
            transition: 0.3s;
        }

    .featured-services .icon-box:hover .title a {
        color: #5cb874;
    }

    .featured-services .description {
        line-height: 24px;
        font-size: 14px;
    }

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 700;
    font-size: 28px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding-bottom: 10px;
    }

    .about .content ul i {
        font-size: 20px;
        padding-right: 4px;
        color: #5cb874;
    }

.about .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    padding: 0;
}

    .why-us .row {
        overflow: hidden;
    }

    .why-us .content-item {
        padding: 40px;
        border-left: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin: -1px;
    }

        .why-us .content-item span {
            display: block;
            font-size: 24px;
            font-weight: 400;
            color: #6ec083;
        }

        .why-us .content-item h4 {
            font-size: 26px;
            font-weight: 300;
            padding: 0;
            margin: 20px 0;
        }

        .why-us .content-item p {
            color: #aaaaaa;
            font-size: 15px;
            margin: 0;
            padding: 0;
        }

@media (max-width: 768px) {
    .why-us .content-item {
        padding: 40px 0;
    }
}

/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
    /*opacity: 0.5;*/
    transition: 0.3s;
}

    .clients .swiper-slide img:hover {
        opacity: 1;
    }

.clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .clients .swiper-pagination .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
        background-color: #fff;
        opacity: 1;
        border: 1px solid #5cb874;
    }

    .clients .swiper-pagination .swiper-pagination-bullet-active {
        /* background-color: #5cb874;*/
    }

.swp-clas {
    padding: 0 88px 0px 88px;
}
/*--------------------------------------------------------------
# Product Pagination
--------------------------------------------------------------*/
#pagination-controls {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.page-btn {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #ffffff;
    padding: 8px 12px;
    border-radius: 5px;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn {
    background-color: #ffffff;
    color: #2d2828;
    /* border: 1px solid #007bff; */
    padding: 8px 12px;
    /* border-radius: 5px; */
    margin: 0px 5px;
    /* cursor: pointer; */
    transition: all 0.3s ease;
}

    .page-btn:hover, .page-btn.active {
        background-color: #b8b8b8;
        border-color: #f7fbff;
    }

@media (max-width: 768px) {
    #pagination-controls {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

    .services .icon-box .icon {
        margin: 0 auto;
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: ease-in-out 0.3s;
        position: relative;
    }

        .services .icon-box .icon i {
            font-size: 36px;
            transition: 0.5s;
            position: relative;
        }

        .services .icon-box .icon svg {
            position: absolute;
            top: 0;
            left: 0;
        }

            .services .icon-box .icon svg path {
                transition: 0.5s;
                fill: #f5f5f5;
            }

    .services .icon-box h4 {
        font-weight: 600;
        margin: 10px 0 15px 0;
        font-size: 22px;
    }

        .services .icon-box h4 a {
            color: #222222;
            transition: ease-in-out 0.3s;
        }

    .services .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .icon-box:hover {
        border-color: #fff;
        box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
    }

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-blue:hover .icon path {
    fill: #47aeff;
}

.services .iconbox-orange i {
    color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-orange:hover .icon path {
    fill: #ffa76e;
}

.services .iconbox-pink i {
    color: #e80368;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-pink:hover .icon path {
    fill: #e80368;
}

.services .iconbox-yellow i {
    color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
    color: #fff;
}

.services .iconbox-yellow:hover .icon path {
    fill: #ffbb2c;
}

.services .iconbox-red i {
    color: #ff5828;
}

.services .iconbox-red:hover .icon i {
    color: #fff;
}

.services .iconbox-red:hover .icon path {
    fill: #ff5828;
}

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

.services .iconbox-teal:hover .icon path {
    fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: #0c1542;
    padding: 0 0;
}

    .cta h3 {
        color: #fff;
        font-size: 28px;
        font-weight: 700;
    }

    .cta p {
        color: #fff;
    }

    .cta .cta-btn {
        font-family: "Raleway", sans-serif;
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 30px;
        border-radius: 2px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid #fff;
        color: #fff;
        border-radius: 4px;
    }

        .cta .cta-btn:hover {
            background: #fff;
            color: #5cb874;
        }

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (min-width: 769px) {
    .cta .cta-btn-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

    .portfolio #portfolio-flters li {
        cursor: pointer;
        display: inline-block;
        padding: 8px 15px 10px 15px;
        font-size: 14px;
        font-weight: 600;
        line-height: 1;
        text-transform: uppercase;
        color: #444444;
        margin-bottom: 5px;
        transition: all 0.3s ease-in-out;
        border-radius: 3px;
    }

        .portfolio #portfolio-flters li:hover,
        .portfolio #portfolio-flters li.filter-active {
            color: #fff;
            background: #5cb874;
        }

        .portfolio #portfolio-flters li:last-child {
            margin-right: 0;
        }

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(34, 34, 34, 0.6);
}

    .portfolio .portfolio-wrap::before {
        content: "";
        background: rgba(34, 34, 34, 0.6);
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        transition: all ease-in-out 0.3s;
        z-index: 2;
        opacity: 0;
    }

    .portfolio .portfolio-wrap img {
        transition: all ease-in-out 0.3s;
    }

    .portfolio .portfolio-wrap .portfolio-info {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        transition: all ease-in-out 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 20px;
    }

        .portfolio .portfolio-wrap .portfolio-info h4 {
            font-size: 20px;
            color: #fff;
            font-weight: 600;
        }

        .portfolio .portfolio-wrap .portfolio-info p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            text-transform: uppercase;
            padding: 0;
            margin: 0;
            font-style: italic;
        }

    .portfolio .portfolio-wrap .portfolio-links {
        text-align: center;
        z-index: 4;
    }

        .portfolio .portfolio-wrap .portfolio-links a {
            color: #fff;
            margin: 0 5px 0 0;
            font-size: 28px;
            display: inline-block;
            transition: 0.3s;
        }

            .portfolio .portfolio-wrap .portfolio-links a:hover {
                color: #6ec083;
            }

    .portfolio .portfolio-wrap:hover::before {
        opacity: 1;
    }

    .portfolio .portfolio-wrap:hover img {
        transform: scale(1.2);
    }

    .portfolio .portfolio-wrap:hover .portfolio-info {
        opacity: 1;
    }

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

    .portfolio-details .portfolio-details-slider img {
        width: 100%;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid #5cb874;
        }

        .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
            background-color: #5cb874;
        }

    .portfolio-details .portfolio-info {
        padding: 30px;
        box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
    }

        .portfolio-details .portfolio-info h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .portfolio-details .portfolio-info ul {
            list-style: none;
            padding: 0;
            font-size: 15px;
        }

            .portfolio-details .portfolio-info ul li + li {
                margin-top: 10px;
            }

    .portfolio-details .portfolio-description {
        padding-top: 30px;
    }

        .portfolio-details .portfolio-description h2 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .portfolio-details .portfolio-description p {
            padding: 0;
        }

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
    padding: 30px 20px;
    background: #fff;
}

    .team .member img {
        max-width: 60%;
        border-radius: 50%;
        margin: 0 0 30px 0;
    }

    .team .member h4 {
        font-weight: 700;
        margin-bottom: 2px;
        font-size: 18px;
    }

    .team .member span {
        font-style: italic;
        display: block;
        /*font-size: 13px;*/
        font-size: medium;
    }

    .team .member p {
        padding-top: 10px;
        font-size: 14px;
        font-style: italic;
        color: #aaaaaa;
    }

    .team .member .social {
        margin-top: 15px;
    }

        .team .member .social a {
            color: #919191;
            transition: 0.3s;
        }

            .team .member .social a:hover {
                color: #5cb874;
            }

        .team .member .social i {
            font-size: 18px;
            margin: 0 2px;
        }

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    border-top: 3px solid #5cb874;
    border-bottom: 3px solid #5cb874;
    padding: 30px;
    background: #fff;
    width: 100%;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

    .contact .info i {
        font-size: 20px;
        color: #5cb874;
        float: left;
        width: 44px;
        height: 44px;
        background: #eaf6ed;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
    }

    .contact .info h4 {
        padding: 0 0 0 60px;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #222222;
    }


    .contact .info .social-links {
        padding-left: 60px;
    }

        .contact .info .social-links a {
            font-size: 18px;
            display: inline-block;
            background: #333;
            color: #fff;
            line-height: 1;
            padding: 8px 0;
            border-radius: 50%;
            text-align: center;
            width: 36px;
            height: 36px;
            transition: 0.3s;
            margin-right: 10px;
        }

            .contact .info .social-links a:hover {
                background: #5cb874;
                color: #fff;
            }

    .contact .info .email:hover i,
    .contact .info .address:hover i,
    .contact .info .phone:hover i {
        background: #5cb874;
        color: #fff;
    }

.contact .php-email-form {
    width: 100%;
    border-top: 3px solid #5cb874;
    border-bottom: 3px solid #5cb874;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

    .contact .php-email-form .form-group {
        padding-bottom: 8px;
    }

    .contact .php-email-form .error-message {
        display: none;
        color: #fff;
        background: #ed3c0d;
        text-align: left;
        padding: 15px;
        font-weight: 600;
    }

        .contact .php-email-form .error-message br + br {
            margin-top: 25px;
        }

    .contact .php-email-form .sent-message {
        display: none;
        color: #fff;
        background: #18d26e;
        text-align: center;
        padding: 15px;
        font-weight: 600;
    }

    .contact .php-email-form .loading {
        display: none;
        background: #fff;
        text-align: center;
        padding: 15px;
    }

        .contact .php-email-form .loading:before {
            content: "";
            display: inline-block;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            margin: 0 10px -6px 0;
            border: 3px solid #18d26e;
            border-top-color: #eee;
            animation: animate-loading 1s linear infinite;
        }

    .contact .php-email-form input,
    .contact .php-email-form textarea {
        border-radius: 0;
        box-shadow: none;
        font-size: 14px;
        border-radius: 4px;
    }

        .contact .php-email-form input:focus,
        .contact .php-email-form textarea:focus {
            border-color: #5cb874;
        }

    .contact .php-email-form input {
        height: 44px;
    }

    .contact .php-email-form textarea {
        padding: 10px 12px;
    }

    .contact .php-email-form button[type=submit] {
        background: #5cb874;
        border: 0;
        padding: 10px 24px;
        color: #fff;
        transition: 0.4s;
        border-radius: 4px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: #6ec083;
        }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #fbfbfb;
    min-height: 40px;
}



    .breadcrumbs h2 {
        font-size: 28px;
        font-weight: 300;
    }

    .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 14px;
    }

        .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .breadcrumbs ol li + li::before {
                display: inline-block;
                padding-right: 10px;
                color: #3c3c3c;
                content: "/";
            }

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

        .breadcrumbs ol li {
            display: inline-block;
        }
}

/*-------------------------------------------------------------
# About animation
--------------------------------------------------------------*/
/* Additional custom styles */
.text-primary {
    color: #eef5fb; /* Gold color for primary text, adjust if needed */
}

.text-secondary {
    color: #f8f9fa; /* Off-white for secondary text */
}

.rounded-lg {
    border-radius: 0.5rem; /* Adjust border-radius if needed */
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Light shadow effect */
}
/* Keyframes for drop-in animation */
.about {
    background: linear-gradient(to bottom right, #333333, #666666); /* Light black to gray ombre */
    color: white;
}

@keyframes dropInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes dropInFromRight {
    from {
        opacity: 0;
        transform: translateX(50%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
.animate-drop-in-left {
    animation: dropInFromLeft 1s ease-out;
}

.animate-drop-in-right {
    animation: dropInFromRight 1s ease-out;
}

/* Ensure Tailwind CSS transition classes work with animations */
.transition-transform {
    transition: transform 0.5s ease;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background-color: #212143;
    color: white;
    padding: 65px 0;
    /* margin: 140px 0px 0px 0px;*/
}

    .footer p,
    .footer a {
        color: #d1d1d1;
        /* margin-bottom: 10px;*/
    }

        .footer a:hover {
            color: #ffffff;
        }

    /*.footer .list-unstyled li {
        margin-bottom: 10px;
    }*/

    .footer .list-unstyled li a {
        text-decoration: none;
    }

        .footer .list-unstyled li a:hover {
            text-decoration: underline;
        }

    .footer .input-group {
        max-width: 400px;
        margin: auto;
    }

        .footer .input-group .form-control {
            border-radius: 0;
        }

      /*  .footer .input-group .btn-primary {
            border-radius: 0;
            background-color: #007bff;
            border-color: #007bff;
        }*/

           /* .footer .input-group .btn-primary:hover {
                background-color: #0056b3;
                border-color: #0056b3;
            }*/

    .footer .text-center {
        margin-top: 20px;
    }


#footer .social-links a:hover {
    background: #449d5b;
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
# CK EDITOR CSS
--------------------------------------------------------------*/

