@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-color: #e31e24;
    --secondary-color: #FAE013;
    --other-color: #F17E00;
    --light-color: #DD2A1B;
    --dark-color: #141515;
    --white-color: #ffffff;
    --black-color: #000000;
    --bg-color: #f8f9fa;  
}
body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    background-color: var(--white-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.7);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}
/* Top header */
/* ====================================== */
header{
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 0;
}
.social-box {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
}
.social-box img{
    width: 24px;
    height: 24px;
}
.social-box:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* Navbar Section */
/* =================================== */

.navbar {
    position: relative;
    box-shadow: var(--my-shadow);
    z-index: 999;
}

.navbar .navbar-brand>img {
    height: 60px;
}

.navbar .nav-link {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 18px 0 !important;
    margin-left: 2.5rem;
}

.navbar .nav-link::before {
    content: "";
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    height: 2px;
    background-color: var(--primary-color);
}

.navbar .nav-link:hover::before {
    width: 100%;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
        min-width: 22rem;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        border: 0;
        padding: 10px;
        min-width: 5rem;
        left: 50%;
        transform: translate(-50%, 0);
        margin-top: 0;
        border-radius: 0;
        box-shadow: 0 5px 10px rgba(15, 39, 125, 0.1);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0;
        /* box-shadow: none; */
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        /* transform: scaleY(1); */
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 15px;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: var(--fw-500);
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--primary-color);
    }
}

/* Fact of company */
/* ========================== */
.one-slider .slick-slide{
    margin: 0;
}

.factCompany{
    padding: 150px 0;
    position: relative;
    background: rgb(56 54 69);
}

.factCompany:before{
    position: absolute;
    content: '';
    background: url(../images/fact-shape-1.svg) top no-repeat;
    background-size: contain;
    width: 100%;
    height: 150px;
    left: 0;
    top: 0;
}
.factCompany:after{
    position: absolute;
    content: '';
    background: url(../images/fact-shape-2.svg) bottom no-repeat;
    background-size: contain;
    width: 100%;
    height: 150px;
    left: 0;
    bottom: 0;
}
.counterPanel {
    display: flex;
    justify-content: space-between;
}
.counterPanel .itemList {
    text-align: center;
    flex: 1;
    padding: 1rem;
    color: #fff;
}
.counterPanel .itemList img{
    margin-bottom: 1rem;
}
.counterPanel .itemList .counting {
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-weight: 700;
}
.counterPanel .itemList p {
    margin-bottom: 0;
    font-size: 0.9rem;
}


/* Product */
/* ========================== */
.productBox {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.productBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    --webkit-transform: scale(1);
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.productBox:hover img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.productBox .bottomPart {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    /* opacity: 0.9; */
}

.product-slider .slick-next {
    right: -35px;
}

.product-slider .slick-prev {
    left: -35px;
}


/* Testimonial Panel */
/* ========================== */
.testimonial img {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    object-fit: cover;
    -webkit-transition: all 0.3s 0s ease-out;
    -moz-transition: all 0.3s 0s ease-out;
    -ms-transition: all 0.3s 0s ease-out;
    -o-transition: all 0.3s 0s ease-out;
    transition: all 0.3s 0s ease-out;
    display: inline-block;
}
/* .testimonailMain .slick-track{
    margin: inherit;
} */
.testimonailMain .slick-center img {
    object-fit: cover;
    transform: scale(1.36);
    box-shadow: 0px 3px 10px -5px rgba(0, 0, 0, 0.3);
}

.testimonailMain-shape {
    position: relative;
}

.testimonailMain-shape .shape-1 {
    position: absolute;
    top: -20px;
    left: 0px;
    z-index: -1;
}

.testimonailMain-shape .shape-2 {
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: -1;
}

.testimonailMain-shape p {
    margin-bottom: 0;
}

.testimonialPanel .slick-prev {
    left: calc(50% - 50px);
    top: calc(100% + 20px);
}

.testimonialPanel .slick-next {
    right: calc(50% - 50px);
    top: calc(100% + 20px);
}

/* Home Contact Panel */
/* ============================== */
.homeContact {
    position: relative;
    overflow: hidden;
}

.homeContact .shapecircle-1 {
    position: absolute;
    right: 80px;
    top: -20px;
    width: 100px;
    height: 100px;
}

.homeContact .shapecircle-2 {
    position: absolute;
    right: 180px;
    bottom: -20px;
    width: 100px;
    height: 100px;
}

.homeContact .shape-circle {
    width: 100px;
    height: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    border-radius: 100%;
}

/* Blog List */
/* =============================== */
.blogListMain {
    position: relative;
    overflow: hidden;
    background-color: var(--bs-gray-200);
}

.blogListMain .upperBox {
    height: 220px;
    position: relative;
}

.blogListMain .upperBox .timePt {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 3rem;
    font-size: 14px;
    display: inline-table;
}

.rounded-img {
    border-top-left-radius: 0.625rem !important;
    border-top-right-radius: 0.625rem !important;
}

.blogListMain h4{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blogListMain p{
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/* Footer Panel */
/* ======================== */
footer {
    position: relative;
    background-color: #565656;
    padding: 3rem 0 2rem;
    color: var(--white-color);
    font-size: 0.9rem;
}

.footerLogo {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9;
}

footer h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--white-color);
    padding-bottom: 0.5rem;
}

footer .footerMenu {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

footer .footerMenu li {
    list-style: none;
}

footer .footerMenu a {
    color: var(--white-color);
    font-size: 0.9rem;
    font-weight: 400;
    padding-bottom: 0.25rem;
    display: inline-block;
    transition: all 0.3s ease-out;
}

footer .footerMenu a:hover {
    color: var(--theme-color);
    padding-left: 0.5rem;
}


/* About Us */
/* ========================================================== */


.abt-section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--primary-color);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abt-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.abt-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #1e293b;
}

.abt-section-icon {
    background: #fcebec;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.5rem;
}

.abt-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.abt-section-content {
    color: #475569;
}

.abt-section-content p {
    margin-bottom: 16px;
}

.abt-highlight {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 3px solid #1b9c4e;
}

.abt-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.abt-value-item {
    padding: 15px;
    background: #edf9f2;
    border-radius: 8px;
    border-top: 3px solid #1b9c4e;
}

.abt-value-item h4 {
    color: #1b9c4e;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.abt-location-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.abt-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.abt-founder-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.abt-founder-icon {
    width: 50px;
    height: 50px;
    background: #fcebec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e31e24;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.abt-founder-text h4 {
    color: #1e293b;
    margin-bottom: 5px;
}

.abt-founder-text p {
    font-size: 0.95rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .abt-container {
        padding: 15px;
    }
    
    .abt-section {
        padding: 24px;
    }
    
    .abt-logo {
        font-size: 2rem;
    }
    
    .abt-values-grid {
        grid-template-columns: 1fr;
    }
}


.inner-banner ul{
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.inner-banner ul a{
    margin-right: 20px;
    position: relative;
    color: var(--light-color);
}
.inner-banner ul a:after{
    position: relative;
    content: '/';
    right: -10px;
    top: 0;
    color: #c6bfc0;
}

.contactDetails{
    border-radius: 0.5rem;
    background: #e31e24;
    padding: 0.75rem;
    position: relative;
    margin-left: -4rem;
}

.productThumb {
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* margin: 0.75rem; */
    display: block;
    border: 1px solid #ddd;
    aspect-ratio: 4/5;
}

.productThumb img {
    max-width: none;
    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
}

.productThumb:hover img {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.productThumb::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 50%;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) repeat scroll 0 0;
    z-index: 1;
}

.productThumb .content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--white-color);
    z-index: 1;
}

.productThumb .content h5 {
    margin-bottom: 0;
    margin-right: 1rem;
}

.productThumb .content h5 {
    color: var(--white-color);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1rem;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.inner-nav-contain {
    position: sticky;
    top: 30px;
    z-index: 99;
    background: #019846;
    padding: 12px;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.inner-nav-contain h4 {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.inner-nav-contain ul {
    background-color: var(--white-color);
    border-radius: 0 0 10px 10px;
    margin-bottom: 0 !important;
    list-style: none;
}
.inner-nav-contain ul li {
    margin: 0 !important;
}
.inner-nav-contain ul li:before {
    display: none;
}
.inner-nav-contain ul li a {
    font-weight: 500;
    padding: 10px 16px;
    border-bottom: 1px solid #e1f3ea;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    color: #121212;
    transition: all 0.3s ease-out;
}
.inner-nav-contain ul li a:before {
    content: '\EA6B';
    font-family: 'remixicon';
    position: absolute;
    left: 10px;
    font-size: 16px;
    color: var(--primary-color);
}
.inner-nav-contain ul li a:hover {
    padding-left: 2.15rem;
}
.inner-nav-contain ul li:last-child a {
    border: 0;
}

.about-sec img{
    width: 400px;
    float: left;
    margin: 0 30px 10px 0;
}
.about-sec p{
    text-align: justify;
}
.about-sec ul {
    margin-bottom: 1rem;
    list-style: none;
}
.about-sec ul li {
    margin-bottom: 7px;
    position: relative;
}
.about-sec ul li:before {
    position: absolute;
    left: -1.5rem;
    top: 0;
    content: '\EB79';
    font-family: "remixicon";
    color: var(--primary-color);
}
.about-sec ol {
    margin-bottom: 1rem;
}
.about-sec ol li {
    margin-bottom: 7px;
}

.latest {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background-color: #eef4f9;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
}
.latest .lat-post {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: var(--white-color);
    border-radius: 0.5rem;
}

.latest .lat-post img {
    width: 100px;
    border-radius: 5px;
    margin: 0;
    float: none;
}

.latest .lat-post h6 {
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
    margin-bottom: 10px;
}

.latest .lat-post:hover h6 {
    color: var(--red-color);
}

.latest .lat-post p {
    color: var(--black-color);
    font-size: 13px;
    margin-bottom: 0;
}
.packageBox {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    background-color: var(--white-color);
    border: 0.35rem solid #ddd;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
    height: 100%;
}
.packageBox ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.packageBox ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.packageBox ul li:before {
    position: absolute;
    left: 0;
    top: 0;
    content: "\F2E5";
    font-family: "remixicon";
    color: #198754;
    animation: arrowMove 1s infinite linear;
}

@keyframes arrowMove {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(5px);
        /* move right */
        opacity: 0.6;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media(max-width:800px){
    header{
        text-align: center;
        display: none;
    }
    .navbar .nav-link{
        margin-left: 0 !important;
    }
    .counterPanel{
        flex-direction: column;
    }
    .inner-banner ul{
        margin-top: 1rem;
    }
    .contactDetails{
        margin-left: 0;
    }
}