/* head font */
@font-face {
    font-family: 'head-font';
    src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* body font */
@font-face {
    font-family: 'body-font';
    src: url('../fonts/DMSans_18pt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


::selection {
    color: var(--color-white) !important;
    background-color: var(--color-primary, #d6f5d6);
    text-shadow: none;
}


body {
    padding: 0px;
    margin: 0;
    background-color: #ffffff
}

:root {

    --color-primary: #ED2224;
    --color-primary-light: #6f1e1e;
    --color-secondary: #000;
    --color-text: #0B0B0E;
    --color-text-light: #666;
    --color-white: #ffffff;
    --color-black: #000000;
    --bg-color: #F3F3F5;


    /* 🔤 Font Settings */
    --font-head: 'head-font';
    --font-body: 'body-font';



    /* ⏱️ Transitions & Animations */
    --transition-fast: 0.2s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;



    /* 🧭 Others */
    --max-width-container: 1200px;
    --navbar-height: 64px;
}


/* Typography Reset & Base */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-head);
}


p {
    font-family: var(--font-body);
}


a {
    text-decoration: none !important;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary-light);
    text-decoration: underline;
}


ul,
ol {
    margin: 0 0 var(--space-md) var(--space-md);
    padding-left: var(--space-md);
}

ul li,
ol li {
    margin-bottom: var(--space-xs);
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    color: var(--color-text);
}

ul li::marker {
    color: var(--color-primary);
}


.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* loader */
#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

/* Loader */
.loader {
    width: 44.8px;
    height: 44.8px;
    color: #ED2224;
    position: relative;
    background: radial-gradient(11.2px, currentColor 94%, #0000);
}

.loader:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(10.08px at bottom right, #0000 94%, currentColor) top left,
        radial-gradient(10.08px at bottom left, #0000 94%, currentColor) top right,
        radial-gradient(10.08px at top right, #0000 94%, currentColor) bottom left,
        radial-gradient(10.08px at top left, #0000 94%, currentColor) bottom right;
    background-size: 22.4px 22.4px;
    background-repeat: no-repeat;
    animation: loader 1.5s infinite cubic-bezier(0.3, 1, 0, 1);
}

@keyframes loader {
    33% {
        inset: -11.2px;
        transform: rotate(0deg);
    }

    66% {
        inset: -11.2px;
        transform: rotate(90deg);
    }

    100% {
        inset: 0;
        transform: rotate(90deg);
    }
}


/* click to top btn */
.scroll-top-btn {
    position: fixed;
    bottom: 40px;
    right: 30px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #4a8b8b 0%, #3a7d7d 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}

.scroll-top-text {
    color: white;
    font-size: 10px;
    font-weight: 600;
    margin-top: 2px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #5a9b9b 0%, #4a8d8d 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.scroll-top-btn:hover .scroll-top-icon {
    transform: translateY(-3px);
}

.scroll-top-btn:hover .scroll-top-text {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.scroll-top-btn:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

.scroll-top-btn:active {
    transform: scale(0.95) translateY(0);
}

.scroll-top-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 4px rgba(231, 76, 60, 0.4);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #cf3434 0%, #e74c3c 100%);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(231, 76, 60, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.scroll-top-btn::before {
    background: rgba(0, 0, 0, 0.2);
}

.scroll-top-btn:active {
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(231, 76, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
    }
}

.scroll-top-btn.clicked {
    animation: pulse-red 0.4s ease;
}


/* ================================================================================
                                     navbar
==================================================================================== */
.offcanvas {
    width: 100%;
    background-image: url('../image/home/offcanva-bg.png');
    background-position: center;
    background-repeat: no-repeat;
}

.offcanvas-title {
    position: relative;
    padding-bottom: 5px;
}

.offcanvas-header {
    position: relative;
}

.offcanvas-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #e0e0e0d3;
    border-radius: 2px;
}

.offcanva-iso {
    position: absolute;
    top: 0%;
    right: 24%;
    z-index: 999;
}



/* ================================================================================
                                    Footer
==================================================================================== */
.navbar .container-fluid {
    width:96%;

}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

body {
    padding-top: 85px;
}



.navbar-brand img {
    height: 65px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--color-text) !important;
    font-weight: 600;
    position: relative;
    padding: 8px 15px !important;
    margin: 0 5px;
    transition: all 0.3s ease;
    margin: 0px 6px !important;
}

.navbar .nav-item {
    text-transform: uppercase;
}

.nav-item .contact-btn {
    margin-left: 40px;
}

.nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover:before,
.nav-link.active:before {
    visibility: visible;
    width: 100%;
}

.nav-link:hover {
    color: var(--color-primary) !important;
}

.nav-link.active {
    color: var(--color-primary) !important;
    font-weight: 700;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px !important;
}

/* .dropdown-item {
    padding: 8px 20px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--color-primary);
    color: white !important;
    transform: translateX(5px);
} */
.dropdown-item {
    padding: 8px 20px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(var(--color-primary-rgb), 0.1);
    border-left: 3px solid var(--color-primary);
    color: var(--color-primary) !important;
}

.dropdown-item:active {
    transform: scale(0.98);
    background-color: var(--color-primary);
    color: white !important;
}

.contact-btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white !important;
    border: none;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(237, 34, 36, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(237, 34, 36, 0.4);
}

.iso-badge {
    height: 50px;
    transition: transform 0.3s ease;
}

.iso-badge:hover {
    transform: scale(1.05);
}

.gradient-underline {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%, -50%);

    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #ffffff 50%, var(--color-primary));

    border-radius: 3px;
}

.offcanvas-title a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler img {
    width: 40px;
}


/* ================================================================================
                                   footer
==================================================================================== */
.footer a:hover {
    color: var(--color-primary) !important;
}

footer .nav-link {
    font-weight: 400 !important;
}

.footer-info h6 {
    font-size: 32px;
    color: var(--color-white);
    font-weight: 500;
}

.footer-info .list-unstyled li a {
    font-family: var(--font-body);
    font-size: 18px;
    margin-bottom: 10px;
}


#contact-main small {
    color: var(--color-primary);
    font-weight: 600;
}




/* ================================================================================
                                     Home page
==================================================================================== */
/* ----------------banner ----------------------*/
.hero-slider {
    position: relative;
    overflow: hidden;
}

.banner-slide {
    width: 100%;
    height: 450px;
    /* background-size: cover; */
    /* background-position: center; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: bold;
}


.custom-nav {
    position: absolute;
    top: 90%;
    left: 82%;
    width: auto;
    z-index: 10;
    display: flex;
    gap: 30px;
    transform: translateY(-50%);
    padding: 0 30px;
}

.custom-prev,
.custom-next {
    position: relative;
    background-color: var(--color-white);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 24px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}


.custom-prev::before,
.custom-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(255, 0, 0, 0.8) 0%,
            rgba(139, 0, 0, 0.9) 100%);
    animation: pulseBackground 2s infinite;

    @keyframes pulseBackground {
        0% {
            opacity: 0.8;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0.8;
        }
    }



    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.custom-prev:hover,
.custom-next:hover {
    color: #fff;
    border-color: var(--color-primary);
}

.custom-prev:hover::before,
.custom-next:hover::before {
    transform: scale(1);
}

.custom-prev i,
.custom-next i {
    transition: transform 0.3s ease;
}

.custom-prev:hover i {
    animation: pulseLeft 0.6s ease;
}

.custom-next:hover i {
    animation: pulseRight 0.6s ease;
}

@keyframes pulseLeft {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.8);
    }
}

@keyframes pulseRight {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Optional: Add focus states for accessibility */
.custom-prev:focus,
.custom-next:focus {
    outline: 2px solid rgba(var(--color-primary-rgb), 0.5);
    outline-offset: 2px;
}


/* -----------------------about us---------------------------- */
.inner-about {
    padding: 60px 0px;
}

.inner-about .container-fluid {
    width: 90%;
}

.inner-about-top {
    display: flex;
    flex-direction: column;
    /* flex-wrap: wrap; */
    justify-content: center;
}

.about-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    text-align: right;
}

.heat-title {
    position: relative;
}

.heat-title h2::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 130px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #ffffff);
}


.heat-title h2 {
    font-size: 54px;
    font-weight: 600;
    font-family: var(--font-head);
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg,
            #db292c, #ED2224, #F58A69, #ED2224, #db292c, #ED2224, #F58A69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-size: 300% 100%;
    animation: gradientFlow 4s linear infinite;

}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 100% center;
    }
}




.about-cotent {
    padding-left: 20px;
}

.about-cotent h5 {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.about-cotent p {
    font-size: 16px;
    color: var(--color-black);
    text-align: justify;
}

.click-btn a {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-white);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #F58A69 0%, #ED2224 50%, #7C1315 100%);
    box-shadow: 0 4px 15px rgba(125, 19, 21, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.click-btn a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #FF9B7B 0%, #FF2A2C 50%, #8C1B1D 100%);
    box-shadow: 0 7px 20px rgba(125, 19, 21, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.click-btn a:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(125, 19, 21, 0.3),
        inset 0 2px 3px rgba(0, 0, 0, 0.2);
}

/* Wave Effect Container */
.click-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 30px;
    z-index: -1;
    overflow: hidden;
}

/* Animated Wave Effect */
.click-btn a:hover::before {
    animation: wave 1.5s linear infinite;
}

@keyframes wave {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

/* Subtle texture (kept from original) */
.click-btn a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg opacity="0.05" xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"><path d="M1 3h1v1H1V3zm2-2h1v1H3V1z"/></svg>');
    z-index: -1;
}

@keyframes wave {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 34, 36, 0.5);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(237, 34, 36, 0);
    }
}

.glassy-btn {
    /* Glass base styles */
    background: rgba(237, 34, 36, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(251, 38, 40, 0.3);

    /* Continuous glass shimmer animation */
    position: relative;
    overflow: hidden;
}

.glassy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    animation: glassShimmer 2.5s infinite;
}

@keyframes glassShimmer {
    100% {
        left: 100%;
    }
}

.vision-left {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    max-width: 800px;
    justify-content: center;
    padding-top: 30px;
    flex: 1;
}

.vision-left h4 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.vision-left p {
    color: var(--color-black);
    text-align: justify;
}

.vision-left h4 {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}

.vision-left h4::after {
    content: "";
    position: absolute;
    top: -27px;
    right: -5;
    width: 2px;
    height: 80px;
    background-color: #d3d3d3;
}




/* -----------------viseo section---------------------- */
.inner-video {
    padding: 40px;
}

.custom-video {
    width: 100%;
    height: auto;
    display: block;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #ED2224;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    z-index: 10;
    box-shadow: 0 0 0 0 rgba(237, 34, 36, 0.7);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

/* Pulsing Effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 34, 36, 0.7);
        transform: translate(-50%, -50%) scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(237, 34, 36, 0);
        transform: translate(-50%, -50%) scale(1.05);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(237, 34, 36, 0);
        transform: translate(-50%, -50%) scale(1);
    }
}

.video-btn:hover {
    background: #FF2A2C;
    /* animation: pulse 1s infinite, hoverShake 0.5s ease; */
}

.video-btn:active {
    transform: translate(-50%, -50%) scale(0.95);
}

@keyframes hoverShake {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    25% {
        transform: translate(-50%, -50%) rotate(-2deg);
    }

    75% {
        transform: translate(-50%, -50%) rotate(2deg);
    }
}

.video-btn.playing {
    animation: none;
    background: rgba(237, 34, 36, 0.7);
    border: 2px solid white;
}

.video-btn.playing::after {
    content: "❚❚";
    font-size: 28px;
    padding-left: 0;
}

.inner-video .container-fluid {
    width: 80%;
}


/* --------------------product ------------------ */
.product-inner {
    padding: 40px 0px;
}

/* .cta-box {
    display: flex;
    justify-content: right;
} */
.home-product-head {
    display: flex;
    justify-content: center;
}

.product-inner .container-fluid {
    width: 80%;
}

.card-product {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-img {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 350px;
}

.card-img img {
    width: 100%;
    height: 350px;

    object-fit: fill;
    transition: all 0.7s cubic-bezier(0.2, 0.96, 0.34, 1);
}

.card-content {
    position: relative;
    padding: 20px 25px 15px 25px;
    background: var(--bg-color);
    flex-grow: 1;
    overflow: hidden;
    z-index: 1;
}

/* .card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
   background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 0, 0, 0.3) 100%);

    z-index: -1;
    transition: height 0.6s cubic-bezier(0.65, 0, 0.35, 1);
} */

.card-content h4 {
    margin-bottom: 12px;
    color: var(--color-black);
    font-size: 24px;
    transition: color 0.3s ease;
    position: relative;
}

.card-content p {
    color: var(--color-black);
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
    position: relative;
}


.card-link a i {
    color: var(--color-primary) !important;
}

.card-link a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black) !important;

}

.card-link a:hover {
    color: var(--color-primary) !important;
}

.card-link a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Animated underline */
.card-link a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Arrow icon */
.card-link a i {
    font-size: 1.2em;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover Effects */
.card-link a:hover {
    color: var(--color-primary-dark);
    /* Slightly darker shade */
    transform: translateX(3px);
}

.card-link a:hover::after {
    width: 100%;
}

.card-link a:hover i {
    transform: translateX(4px);
    animation: arrowBounce 0.6s ease;
}

/* Arrow bounce animation */
@keyframes arrowBounce {

    0%,
    100% {
        transform: translateX(4px);
    }

    50% {
        transform: translateX(8px);
    }
}

.card-link {
    padding: 15px 20px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-color);
}

.event-card .card-link {
    background-color: transparent !important;
}

.card-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 90%;
    background-color: #dddddd;
    z-index: 1;
}



.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}


.card-product:hover .card-img {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
}

.card-product:hover .card-img img {
    transform: scale(1.1) rotate(0.5deg);
    filter: brightness(1.05) contrast(1.05);
}

/* Liquid Fill Activation */
.card-product:hover .card-content::before {
    height: 100%;
}

.card-product:hover .card-content h4 {
    color: var(--color-primary);
}

.card-product:hover .card-link::before {
    transform: scaleX(1);
}

.card-product:hover .card-link a {
    color: var(--color-primary);
}

.card-product:hover .card-link i {
    transform: translateX(4px);
}

/* -------------------------------client section------------------------ */
.inner-client {
    padding: 40px 0px;
}

.client-logo-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.client-logo-carousel .item img {
    width: 100%;
    max-width: 120px;
    margin: auto;
    display: block;
}

.client-logo-carousel .item img {
    width: 100%;
    max-width: 120px;
    margin: auto;
    display: block;
    transition: transform 0.3s ease;
}

.client-logo-carousel .item {
    margin: 20px 0px;
}

.client-logo-carousel .item img:hover {
    transform: scale(1.1);
}

.client-inner {
    padding: 50px 0px;
}


/* -------------------testimonial section -----------------------------------*/
.inner-testimoial {
    padding: 20px 0px 40px 0px;
}

.heat-title p {
    text-align: center;
    font-size: 16px;
    margin-top: 30px;
    color: var(--color-black);
    font-family: var(--font-body);
    font-weight: 600;
}

.testimonial-carousel .item {
    margin: 10px;
    display: flex !important;
}

.testimonial-card {
    flex: 1 !important;
    padding: 40px 30px;
    border: 1px solid #eeeeee;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card .head img {
    width: 80px;
    height: auto;
    border-radius: 12px;

}

.testimonial-card .head h4 {
    font-family: var(--font-head);
    font-size: 24px;
    color: var(--color-black);
}

.testimonial-card .head {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
}

.testimonial-card .content p {
    font-size: 18px;
    font-family: var(--font-body);
    color: var(--color-black);
}

/* Dot wrapper style */
.testimonial-carousel .owl-dots {
    text-align: center !important;
    margin-top: 30px !important;
}

/* Basic dot shape */
.testimonial-carousel .owl-dot {
    height: 10px !important;
    width: 10px !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
    background-color: #fff !important;
    border: 1px solid var(--color-primary) !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

/* Active dot style */
.testimonial-carousel .owl-dot.active {
    background-color: var(--color-primary) !important;
    width: 12px !important;
    height: 12px !important;
    box-shadow: 0 0 5px rgba(255, 77, 79, 0.5) !important;
    transform: scale(1.1) !important;
}

.testimonial-carousel .owl-carousel .owl-dots.disabled {
    display: block !important;
}

.testimonial-carousel .owl-dots.disabled {
    display: flex !important;
    justify-content: center;
}

.testimonial-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 16px;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Curved Gradient Background Hover */
.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 0;
    height: 0;
    background: radial-gradient(circle at bottom right,
            #FF4D4D 0%,
            #F58A69 50%,
            #ED2224 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition:
        width 1s cubic-bezier(0.77, 0, 0.175, 1),
        height 1s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.8s ease;
}

/* On Hover: expand curved effect */
.testimonial-card:hover::before {
    width: 250%;
    height: 250%;
    opacity: 1;
}

/* Optional card zoom on hover */
.testimonial-card:hover {
    transform: scale(1.02);
}

/* Inner content effects */
.testimonial-content {
    transition: color 0.4s ease 0.2s;
}

.testimonial-card:hover .testimonial-content {
    color: white;
}

.testimonial-card:hover .quote-icon {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-card:hover .testimonial-text {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-info h4 {
    color: white;
    transition: color 0.3s ease;
}

/* ----------------------news----------------- */
.news-carousel-wrapper {
    position: relative;
    padding: 40px 0;
}


.custom-prev-btn,
.custom-next-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 100;
    background: #ff4d4f;
    border: none;
    color: #fff;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.custom-prev-btn:hover,
.custom-next-btn:hover {
    background: #e03c3c;
}

.custom-prev-btn {
    left: -20px;
}

.custom-next-btn {
    right: -20px;
}


.news-inner {
    position: relative;
    padding: 30px 0px 0px 0px;
}

.news-inner .custom-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.news-inner .custom-nav-left {
    left: -80px;
}

.news-inner .custom-nav-right {
    left: 94%;
}

.news-inner .custom-nav button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.news-inner .custom-nav button:hover {
    background-color: #d73838;
}

.news-carousel .item {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    margin: 90px 40px;
    align-items: center;
}

.item {
    margin-left: auto;
    margin-right: auto;
    display: block;
}


.item {
    position: relative;
}

.news-overlay {
    position: absolute;
    top: -30%;
    left: 30px;
}

.item .news-card {
    padding: 30px 30px;
    border-radius: 5px;
    margin-top: 120px;
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.1);
    padding-top: 40px;
}

.news-card h2 {
    transition: color 0.3s ease;
}

.news-card:hover h2 {
    color: var(--color-primary);
}

.news-carousel .news-link a {
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.news-carousel .news-link a i {
    color: var(--color-primary);
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.news-carousel .news-link a:hover {
    color: var(--color-primary);
}

.news-carousel .news-link a:hover i {
    transform: rotate(20deg) scale(1.2);
    color: var(--color-primary);
}


/* ------------events----------------------------- */
.inner-event {
    padding: 0px 0px;
}

.event-inner {
    padding: 40px 0px;
}

.event-card {
    margin: 0px 15px;
    border-radius: 12px;
}

.event-content p {
    font-family: var(--font-body);
    color: var(--color-black);
    font-size: 16px;
}

.event-content h3 {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--color-black);
    font-weight: 500;
    margin-bottom: 10px;
}

.event-content {
    padding: 36px 30px 15px 30px;
    background-color: var(--bg-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

}

.event-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.event-content {
    position: relative;
    padding: 20px;
    color: #333;
    transition: color 0.3s ease;
    z-index: 1;
}

.event-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, #ff6b6b, #ff8e8e); */
    background: radial-gradient(circle at bottom right, #FF4D4D 0%, #F58A69 50%, #ED2224 100%);
    z-index: -1;
    clip-path: circle(0% at 100% 100%);
    transition: clip-path 0.8s ease-in-out;
}

.event-content:hover::before {
    clip-path: circle(150% at 100% 100%);
}

.event-content:hover {
    color: white;
}

.event-content:hover .card-link a {
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.news-carousel .news-overlay img {
    border-radius: 8px;
}

.news-card p {
    font-size: 16px;
    font-family: var(--font-body);
    margin: 5px 0px;
}

.news-card h2 {
    font-size: 24px;
    font-family: var(--font-head);
    font-weight: 500;
    margin-top: 10px;
    color: var(--color-black);
}


/* contact form section */
.contact-container {
    border-radius: 16px;
    overflow: hidden;
}

.contact-container .contact-left a:hover {
    color: #000;
}

.contact-container .contact-left a {
    color: #fff;
    font-weight: 700;
    transition: color 0.5s;

}

.contact-left {
    background: linear-gradient(to bottom right, #b80000, #ff4d4d, #ff9966);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin: 0px 20px;
}

.contact-left h3 {
    margin-bottom: 20px;
}

.contact-info {
    margin: 30px 0;
}

.contact-info .icon {
    background-color: #000;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-right: 15px;
    font-size: 18px;
}

.contact-info .text {
    font-size: 15px;
}

.contact-info small {
    color: #ddd;
}

.social-icons i {
    font-size: 20px;
    color: white;
    margin-right: 15px;
    cursor: pointer;
}

.contact-right {
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #000;

}

.form-control:focus {
    box-shadow: none;
    border-color: #ff4d4d;
}

/* 
.btn-send {
    background-color: #000;
    color: white;
    border-radius: 10px;
    padding: 10px 30px;
    transition: 0.3s;
} */
.btn-send {
    background-color: #000;
    color: white;
    border-radius: 10px;
    padding: 10px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 10px;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
}

.btn-send:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Glassy overlay effect */
.btn-send::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.5s;
}

.btn-send:hover::before {
    left: 100%;
}


.btn-send::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.3));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-send:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {

    .contact-left,
    .contact-right {
        padding: 30px 20px;
    }
}

.inner-form {
    padding: 40px 0px;
}

.contact-container .flex-1 {
    flex: 1 !important;
}

.contact-left {
    position: relative;
}

.contact-left .social-icons {
    position: absolute;
    bottom: 25px;
    left: 30px;
}

.contact-right .form-label {
    font-size: 16px;
    font-weight: 600;
}

.form-header {
    display: flex;
    justify-content: center;
    text-align: center;
}


/* --------------------whychoose us------------------------ */
.choose-head {
    text-align: center;
}

.choose-inner {
    padding: 30px 0px;
}

.choose-inner-1 {
    margin: 0px 250px !important;
}

.choose-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.choose-card {
    padding: 160px 30px 60px 30px;
    margin: 0px 40px;
    border-radius: 10px;
    border: 1px solid var(--color-primary);
    position: relative;
    z-index: -300px;
    background-color: #fff;
}

.choose-img {
    position: absolute;
    left: 30px;
    top: 40px;
}

.choose-card .choose-content h2 {
    font-size: 26px;
    color: var(--color-black);
    font-family: var(--font-head);
}

.choose-card {
    position: relative;
    overflow: hidden;
    transition: transform 1.3s ease, box-shadow 0.3s ease;
    z-index: 10;
}

.choose-card::after {
    content: "";
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 220px;
    height: 220px;
    background-color: #f2f2f2;
    clip-path: circle(75% at 100% 100%);
    z-index: -20;
}

.choose-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    background-color: #f2f2f2;
    clip-path: ellipse(60% 60% at 8% -1%);
    z-index: -10;
}

.choose-card::after,
.choose-card::before {
    transition: all 0.8s cubic-bezier(0.55, 0.05, 0.1, 1);
}

/* Gradient liquid effect on hover with lighter shades */
.choose-card:hover::after {
    background: linear-gradient(135deg, #FFA07A 0%, #FF4D4D 50%, #B22222 100%);
    transform: scale(1.4);
}

.choose-card:hover::before {
    background: linear-gradient(135deg, #FFA07A 0%, #FF4D4D 50%, #B22222 100%);
    transform: scale(1.3);
}

/* Optional moving gradient effect */
.choose-card:hover::after,
.choose-card:hover::before {
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.choose-inner {
    position: relative;
}

.choose-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 2px;
    background-color: var(--color-primary);
    transform: translate(-50%, -50%);
    z-index: -200;
}

.inner-choose {
    padding: 20px 0px;
}

.footer-info li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-info li a i {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    margin-right: 2px;
}

.footer-info li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-bg .social-icons a:hover {
    color: var(--color-primary);
}

.footer-warp .container-fluid {
    width: 70% !important;
    margin: 0px auto !important;
}

/* ---------------blog------------------------- */
.inner-blog {
    padding: 40px 0px;
}

.inner-blog .blog-head {
    text-align: center;
}

/* Ultra-Modern Sub Banner */
.sub-banner {
    position: relative;
    height: 220px;
    margin: 40px 0px 20px 0px;
    overflow: hidden;
    border-radius: 12px;
    isolation: isolate;
    background: linear-gradient(45deg, #272727 0%, var(--color-primary-light) 100%);
}

.sub-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover; */
    background-image: url('../image/banner/sub-banner-2.png');
    mix-blend-mode: multiply;
    opacity: 0.8;
    z-index: -1;
    animation: panImage 30s linear infinite alternate;
}

.sub-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 30% 100%, 0 100%);
}

.banner-content {
    position: relative;
    z-index: 3;
    padding: 0 5%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
}

.banner-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.banner-content p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    max-width: 60%;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.btn-group {
    display: flex;
    gap: px;
    border: none !important;
    opacity: 0;
    animation: fadeInUp 0.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.btn {
    padding: 12px 28px;
    border: none !important;
    border-radius: 45px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(237, 34, 36, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(237, 34, 36, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

/* Breadcrumb - Modern Style */
.breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 5px 0;
    position: relative;
    margin: 0 auto;
    margin: 0px 160px;
}

.breadcrumb-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
}

.page-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-text);
    position: relative;
    padding-left: 25px;
}

.page-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 70%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-primary-light));
    border-radius: 4px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
}

.breadcrumb li {
    position: relative;
    margin-left: 20px;
}

.breadcrumb li::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.breadcrumb li:first-child {
    margin-left: 0;
}

.breadcrumb li:first-child::after {
    display: none;
}

.breadcrumb a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb .active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Keyframe Animations */
@keyframes panImage {
    0% {
        transform: scale(1) translateX(0);
    }

    100% {
        transform: scale(1.1) translateX(-5%);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .sub-banner {
        height: 210px;
    }

    .banner-content p {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .sub-banner {
        height: 220;
    }

    .breadcrumb-wrapper {
        flex-direction: row;
        justify-content: space-between !important;
        align-items: flex-start;
        gap: 15px;
    }

    .sub-banner {
        height: 150px;
    }

    .breadcrumb {
        /* width: 100%; */
        flex-wrap: wrap;
        gap: 5px 20px;
    }

    .breadcrumb li {
        margin-left: 20px;
    }

    .banner-content p {
        max-width: 100%;
    }

    .btn-group {
        /* flex-direction: column; */
        width: 100%;
        display: none;
    }


}

@media (max-width: 576px) {
    .sub-banner {
        height: 130px;
    }

    .sub-banner::after {
        display: none;
    }

    .page-title {
        padding-left: 15px;
    }
}




/* ================================================================================
                                     About page 
==================================================================================== */
/* ------------aboution ------------------------ */
.inner-about {
    padding: 40px 0px;
}

.inner-about .container-fluid {
    width: 80%;
}

.top-about {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}

.top-about-left .heat-title h2 {
    font-size: 24px;
}

.about-left img {
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Glass overlay effect */
.about-left img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0) 60%);
    border-radius: 10px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Animated glowing border */
.about-left img::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            #ff00cc,
            #3333ff,
            #00ccff,
            #ff00cc);
    background-size: 400% 400%;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    animation: glowingBorder 3s linear infinite;
    transition: opacity 0.4s ease;
}

@keyframes glowingBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.about-left img:hover {
    transform: scale(1.02);
}

.about-left img:hover::before {
    opacity: 1;
}

.about-left img:hover::after {
    opacity: 1;
}

.about-left img {
    border-radius: 10px;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Required for pseudo-elements to work properly */
    display: block;
    width: 100%;
    max-width: 100%;
}

/* Glass overlay effect - FIXED */
.about-left img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    border-radius: inherit;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    /* This makes the glass effect visible */
    pointer-events: none;
}

/* Glowing border - FIXED */
.about-left img::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            #6C63FF,
            #FF6584,
            #6C63FF);
    background-size: 200% 200%;
    z-index: -1;
    border-radius: 12px;
    opacity: 0;
    animation: glowingBorder 3s linear infinite;
    transition: opacity 0.4s ease;
}

@keyframes glowingBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.about-left img:hover {
    transform: scale(1.02);
}

.about-left img:hover::before {
    opacity: 1;
}

.about-left img:hover::after {
    opacity: 1;
}

/* Important: Add this container if your image isn't already in a positioned element */
.about-left {
    position: relative;
    display: inline-block;
}

.top-about-left .heat-title h4 {
    font-size: 54px;
    font-family: var(--font-head);
    font-weight: 600;
    max-width: 100%;
    margin: 20px 0px;
}

.top-about-right p {
    font-size: 14;
}

.top-about-right {
    display: flex;
    gap: 20px;
}

.top-about-right .top-card {
    background-color: var(--bg-color);
    padding: 20px 30px;
    max-width: 400px;
    border-radius: 12px;
    position: relative;
    z-index: 99;
}


.top-card img {
    margin: 20px 0px;
}

.top-card {
    position: relative;
    z-index: -20;

}

.top-card {
    position: relative;
    /* ensure pseudo-element is relative to this */
    overflow: hidden;
    /* contain the hover effect */
}

.top-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: 220px;
    background: rgb(219, 219, 219);
    /* initial light shade */
    clip-path: circle(65% at 0 0);
    z-index: -1;
    transition: all 0.8s ease;
}

.top-card:hover::after {
    background: linear-gradient(135deg, #FF9B7B 0%, #FF2A2C 50%, #8C1B1D 100%);
    transform: scale(1.5);
    background-size: 200% 200%;
    animation: liquidFill 3s ease infinite;
}

/* Liquid gradient animation */
@keyframes liquidFill {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



.about-right {
    padding-top: 50px;
}

.about-right h5 {
    font-size: 18px;
}

.about-right h3 {
    font-size: 35px;
    margin: 10px 0px;
}

.about-img {
    width: 100%;
    background-image: url(../image/aboutus/about-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    border-radius: 12px;
    margin: 20px 0px;
}

.about-img h3 strong {
    color: var(--color-primary);
}

.about-img h3 {
    padding: 30px 40px;
    color: var(--color-white);
}

.about-right i {
    color: var(--color-primary);
}

.about-right p:hover i {
    color: var(--color-primary);
}

.about-right p i {
    transition: all 0.3s ease;
    position: relative;
}

.about-right p:hover i {
    color: var(--color-primary);
    left: 5px;
}


/* ---------------about contact-----------------------*/

.about-contact {
    width: 100%;
    background-image: url('../image/aboutus/about-contact.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px 0px;
}

.inner-about-contact {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-contact-img img {
    width: 70%;
    height: auto;
}

.about-contact-img {
    background: linear-gradient(to bottom, #ff4d4d, #990000);
    width: 118px;
    height: 64%;
    padding: 75px 0;
    text-align: center;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    margin: 0 28px;
}

.about-contact-content p {
    font-size: 48px;
    color: #fff;
    font-weight: 600;
    font-family: var(--para-font);
}

.about-contact-content h3 {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--main-font);
}

.inner-about-contact {
    position: relative;
}

.about-contact-overlay {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%);
}

.about-contact-overlay a {
    background-color: #FECE00 !important;
}

.about-contact-content p {
    max-width: 700px;
}

.why-inner {
    padding-bottom: 30px;
}

.why-right img {
    width: 100%;
    height: 350px;
    border-radius: 0px 0px 10px 10px;
}






/* ================================================================================
                                     product page
==================================================================================== */
.product-sidebar {
    max-height: 80vh;
    overflow-y: auto;
    padding-right: 15px;
    overflow-x: hidden;
    padding: 6px;
}

.product-sidebar::-webkit-scrollbar {
    width: 6px;
}

.product-sidebar::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

.product-sidebar::-webkit-scrollbar-thumb:hover {
    background-color: #888;
}

.product-sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.product-sidebar .nav-link {
    margin-top: 10px;
}

.product-sidebar .nav-link:hover {
    background-color: rgba(255, 106, 0, 0.1);
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
}

.product-sidebar .nav-link {
    padding-left: 10px;

}

.product-sidebar .nav-link.active {
    background-color: rgba(255, 0, 0, 0.08);

    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
    font-weight: 600;
}

.product-sidebar .nav-link.active:focus {
    box-shadow: none !important;
}


.quick-link-slider {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

#productTabs li {
    margin: 5px 0px;
}

.quick-link-slider h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: 0.2s ease-in-out;
    padding: 5px;
    border-radius: 4px;
}

.quick-links a:hover i {
    color: var(--color-primary);
}

.quick-links a:hover {
    /* background-color: #e9ecef; */
    color: #000 !important;
}



.filter-bar {
    /* background-color: #151e30; */
    background-color: #fff;
    color: #000;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-bar .left h3 {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    color: #000;
}

.btn-group {
    border: none !important;
}

.filter-bar .center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.filter-bar .center input {
    max-width: 300px;
    color: #000;
    border: none;
    border-bottom: 1px solid #000;
    padding: 6px 12px;
    border-radius: 0px;
}

.filter-bar .center input:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: none;
}

.view-toggle .btn {
    background-color: var(--bg-color);
    border: none !important;
    color: var(--color-black);
}

.view-toggle .btn.active {
    background: linear-gradient(135deg, #8b0000, #ff0000);


    color: #fff;
}

.tab-content {
    padding: 20px;
    background: #0f1b2d;
    color: #fff;
    /* margin-top: 10px; */
    border-radius: 8px;
}

/* 
.sidebar ul li button:hover,
.sidebar ul li a:hover {
    color: #fff;
}

.sidebar ul li button:hover::after,
.sidebar ul li a:hover::after {
    width: 100%;
} */

.tab-content {
    padding: 20px;
    background-color: var(--bg-color);
    min-height: 400px;
    /* border-left: 1px solid #222; */
}

.tab-pane {
    color: #ddd;
}

.product-card-list {
    display: flex;
    ;
    flex-direction: column;
    /* background-color: #0f1b2d; */
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.inner-product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.product-card-list:hover {
    /* box-shadow: 0 8px 25px rgba(255, 106, 0, 0.25); */
    transform: translateY(-4px);
}

.product-card-list img {
    width: 240px;
    height: auto;
    object-fit: contain;
    margin-right: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.product-card-list:hover img {
    transform: scale(1.05);
}

.product-card-list h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-card-list p {
    font-size: 0.95rem;
    color: #000;
    max-width: 600px;
    margin-bottom: 15px;
}

.product-card-list .click-btn {
    text-align: right;
    margin-top: 10px;
}


.product-card-list .click-btn a {
    background-color: var(--color-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product-card-list .click-btn a:hover {
    background-color: #e65c00;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    overflow: hidden;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#listViewTab .product-card {
    text-align: left;
}

#listViewTab .product-card::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 8px;
}

.product-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3); */
}

.product-card img {
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-weight: 600;
}

.product-card p {
    font-size: 16px;
    color: var(--color-black);
    font-family: var(--font-body);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .click-btn a {
    background-color: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.product-card .click-btn a:hover {
    background-color: #e65c00;
}

.inner-product .container-fluid {
    max-width: 1500px;
}

.inner-product {
    padding: 60px 0px;
}

/* 
.sidebar {
  
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 20px;
    position: sticky;
    height: 100vh;
    top: 100px;
    max-height: 650px;
    margin-top: 10px;
    overflow-y: visible !important;
    overflow-x: hidden;

} */
/* 
.sidebar h3 {
    font-size: 20px;
    color: var(--color-primary);
    font-family: var(--font-head);
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
    margin-left: 15px;
} */
/* 
.sidebar ul {
    list-style: none;
    padding-left: 0;
} */
/* 
.sidebar ul li button,
.sidebar ul li a {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 8px 0;
    color: #ccc;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
} */

.quick-link-slider ul li a {
    color: #000;
    font-weight: 600;
}

/* 
.sidebar ul li button::after,
.sidebar ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-primary);
    transition: width 0.3s;
} */

.pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.pagination .page-item .page-link {
    border: none;
    background-color: #f1f1f1;
    color: #333;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
}

.pagination .page-item .page-link:hover {
    background-color: #e0e0e0;
    color: #000;
}

.pagination .page-item.active .page-link {
    background-color: var(--color-black);
    color: #fff;
    font-weight: 500;
}

.product-head {
    display: flex;
    justify-content: center;
    text-align: center;
}

.click-btn-product {
    display: flex;
    justify-content: end;
}

.click-btn-product a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    text-align: right;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.click-btn-product a i {
    color: var(--color-primary);
    transition: transform 0.3s ease, color 0.3s ease;
}


.click-btn-product a:hover {
    color: var(--color-primary);
}

.click-btn-product a:hover i {
    transform: translateX(4px);
    color: var(--color-primary);
}




/* ================================================================================
                                    product detail page 
==================================================================================== */
.detail-left {
    position: sticky;
    top: -250px;
    display: flex;
    justify-content: center;
    height: calc(100vh + 250px);
    margin-top: -250px;
}

.detail-left img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 250px;
}

.head-detail {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}



/* ================================================================================
                                   certificate  page 
==================================================================================== */
.inner-certificates {
    padding: 40px 0px;
}

.certificate-head {
    text-align: center;
}

.certificate-right .certificate-carousel img {
    width: 60%;
    margin: 0px auto;
}

.certificate-detail p {
    font-size: 16px;
    font-family: var(--font-body);
}

.certificate-detail h2 {
    font-size: 26px;
    color: var(--color-black);
    font-family: var(--font-head);
    font-weight: 500;
}

.certification-list {
    --icon-color: #ED2224;

    --hover-bg: rgba(237, 34, 36, 0.05);
    --transition-speed: 0.3s;
    padding: 0;
    margin: 0;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animation */
.certificate-content {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.certificate-content:nth-child(1) {
    animation-delay: 0.1s;
}

.certificate-content:nth-child(2) {
    animation-delay: 0.2s;
}

.certificate-content:nth-child(3) {
    animation-delay: 0.3s;
}

.certificate-content:nth-child(4) {
    animation-delay: 0.4s;
}

.certificate-content:nth-child(5) {
    animation-delay: 0.5s;
}

.certification-list li {
    display: flex;
    gap: 15px;
    padding: 16px 20px;
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 8px;
    align-items: flex-start;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hover Effect */
.certification-list li:hover {
    background: var(--hover-bg);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-color: rgba(237, 34, 36, 0.1);
}


.certification-list li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--icon-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition-speed) ease;
}

.certification-list li:hover::after {
    transform: scaleY(1);
}

*/

/* Icon Styling */
.certification-list .bi {
    color: var(--icon-color);
    min-width: 24px;
    margin-top: 2px;
    transition: all var(--transition-speed) ease;
}

.certification-list li:hover .bi {
    transform: scale(1.1);
}

.certification-list h6 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #0B0B0E;
    transition: all var(--transition-speed) ease;
}

.certification-list li:hover h6 {
    color: var(--icon-color);
}

.certification-list small {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
    display: block;
}

.certificate-content {
    flex: 1;
}

.doc-section {
    padding: 80px 0;
    background-color: #F9F9F9;
}

.certificate-content {
    position: relative;
    padding: 40px;
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
    border-left: 4px solid #ED2224;
}

/* Hover Effects */
.certificate-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-left-width: 8px;
}

/* Title Styling */
.certificate-content h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0B0B0E;
    position: relative;
    display: inline-block;
}

.certificate-detail p i {
    color: var(--color-primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.certificate-detail p:hover i {
    transform: scale(1.3) rotate(10deg);
    color: var(--color-secondary);
}

.certificate-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ED2224;
    transition: width 0.4s ease;
}

.certificate-content:hover h4::after {
    width: 100px;
}

/* Content Styling */
.certificate-content p {
    font-size: 16px;
    line-height: 1.4;
    text-align: justify;
    color: #444;
    margin-bottom: 0;
}

.certificate-content strong {
    color: #ED2224;
    font-weight: 600;
}

/* Decorative Elements */
.certificate-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 230px;
    height: 230px;
    background: rgba(237, 34, 36, 0.05);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.certificate-content:hover::before {
    transform: scale(1.5);
    opacity: 0.1;
}

.why-content-inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-height: 370px;
    overflow-y: auto;
    padding-right: 15px;
    margin-top: 20px;

    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: var(--color-primary) var(--bg-color);
    /* Firefox */
}

/* Chrome, Safari, Edge */
.why-content-inner::-webkit-scrollbar {
    width: 8px;
}

.why-content-inner::-webkit-scrollbar-track {
    background: var(--bg-color);
    /* Background track */
    border-radius: 10px;
}

.why-content-inner::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    /* Scroll thumb */
    border-radius: 10px;
    border: 2px solid var(--bg-color);
    /* Padding around thumb */
}

.why-content-inner::-webkit-scrollbar-thumb:hover {
    background-color: #b30000;
    /* Optional darker hover effect */
}

/* Custom Scrollbar */
.why-content-inner::-webkit-scrollbar {
    width: 6px;
}

.why-content-inner::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-radius: 3px;
}

.why-content-inner::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 3px;
}

/* Card Styles */
.why-child {
    background: var(--color-white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    border-left: 4px solid var(--color-primary);
    display: flex;
    gap: 25px;
    flex-direction: column;
    align-items: flex-start;
}

.why-child:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left-width: 6px;
}

/* Icon Container */
.why-child img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding: 12px;
    background: rgba(237, 34, 36, 0.1);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.why-child:hover img {
    background: rgba(237, 34, 36, 0.2);
    transform: rotate(-5deg);
}

/* Content Area */
.why-child>div {
    flex: 1;
}

.why-child h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-text);
    position: relative;
    display: inline-block;
}

.why-child h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.4s ease;
}

.why-child:hover h4::after {
    width: 100%;
}

.why-child p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .why-content-inner {
        max-height: 500px;
    }

    .why-child {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .why-child img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .why-child {
        padding: 20px;
    }

    .why-child h4 {
        font-size: 1.1rem;
    }

    .why-child p {
        font-size: 0.9rem;
    }
}

/* ================================================================================
                                     Blog page 
==================================================================================== */
/* Blog Section Styles */
.blog-section {
    padding: 40px 0;

}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Blog Card */
.blog-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ED2224, #6f1e1e);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card:hover::before {
    opacity: 0.05;
}

/* Blog Image */
.blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-img::after {
    opacity: 1;
}

/* Blog Content */
.blog-content {
    padding: 15px;
    position: relative;
}

.blog-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 25px;
    width: 40px;
    height: 4px;
    background: #ED2224;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-content::before {
    width: 80px;
    background: #ED2224;
}

.blog-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date i {
    color: #ED2224;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0B0B0E;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #ED2224;
}

.blog-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Read More Button */
.read-more i {
    color: var(--color-primary);
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more {
    color: var(--color-primary);
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* Modal Styles */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px;
}

.modal-content {
    max-width: 900px;
    margin: 50px auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.modal-title {
    font-size: 1.8rem;
    color: #fff;
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ED2224;
}

.modal-body img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal-body p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-card {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.blog-card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background-color: var(--bg-color);
    border-radius: 50%;
    bottom: -75px;
    right: -75px;
    z-index: -99;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.blog-card:hover::after {
    opacity: 0;
    /* fades out on hover */
}

.head-blog {
    text-align: center;
}





/* Responsive */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .modal-content {
        margin: 20px auto;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }
}



.contact-map {
    margin-top: 20px;
}




/* ================================================================================
                                     news  letter page 
==================================================================================== */
.vertical-nav {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vertical-nav.visible {
    opacity: 1;
}

.vertical-nav {
    position: fixed;
    left: 30px;
    bottom: 0% !important;
    transform: translateY(-50%);
    z-index: 1000;
}

.vertical-nav nav ul {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.vertical-nav li {
    position: relative;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding: 15px 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vertical-nav a:hover {
    color: var(--color-primary);
}

.vertical-nav a {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    position: relative;
    display: block;
    padding: 8px 0;
}

.vertical-nav .active {
    color: var(--color-primary);

}




.vertical-nav li.active::after,
.vertical-nav li:hover::after {
    transform: scaleY(1);
}

/* Breadcrumb Connector Lines */
.vertical-nav li:not(:last-child)::before {
    content: '';
    position: absolute;
    right: 21px;
    bottom: 91%;
    height: 20px;
    width: 1px;
    background: var(--color-black);
    z-index: -1;
}

/* Hover Animation */




/* Responsive */
@media (max-width: 992px) {
    .vertical-nav {
        left: 15px;
    }

    .vertical-nav a {
        font-size: 14px;
    }
}

/* Card Styling */
.card-blog {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-blog:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.img-blog img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-black);
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--color-black);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Blog Button Styling */
.blog-btn a {
    color: var(--color-black);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-btn a i {
    font-size: 1.2rem;
    margin-left: 5px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.blog-btn a:hover {
    color: var(--color-primary);
}

.blog-btn a:hover i {
    transform: translateX(4px);
}

.custom-nav-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.inner-blog {
    position: relative;
    z-index: 1;
}

.inner-blog::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translateX(-50%);
    width: 100%;
    height: 160px;
    background-color: var(--color-primary);
    z-index: -1;
}

.owl-carousel-wrapper {
    position: relative;
    padding: 30px 0px 30px 0px;
}

.custom-nav-buttons {
    position: absolute;
    top: -80px;
    right: 10%;
}

.blog-btn {
    position: relative;
    margin-top: 20px;
    padding-top: 20px;
}

.blog-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: var(--bg-color);
}

.card-blog h4 {
    transition: color 0.5s;
}

.card-blog:hover h4 {
    color: var(--color-primary);
}

.product-card {
    position: relative;
    transition: transform 0.3s ease;
}

.product-card::after {
    content: "";
    position: absolute;
    top: 3%;
    left: 2%;
    width: 3px;
    height: 150px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

.product-tab-inner .nav-link:focus {
    box-shadow: none !important;
}

.product-card:hover::after {
    background-color: var(--color-primary);
    transform: scaleY(1.1);

}

.product-tab-inner {
    background-color: var(--bg-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px 40px;

}

.product-tab-inner ul li .active {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 8px;

}



/* product popup sectio */
.inner-product .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.inner-product .modal-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: #ffffff;
    border-bottom: none;
    padding: 1.2rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.inner-product .modal-title {
    font-weight: 600;
    font-size: 1.4rem;
}

.inner-product .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.inner-product .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.inner-product .modal-body {
    padding: 2rem;
    background-color: var(--bg-color);
}

.inner-product .main-image {
    max-height: 400px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: white;
    padding: 10px;
}

.inner-product .main-image:hover {
    transform: scale(1.02);
}

.inner-product .thumb-row {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.inner-product .thumb-col {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

.inner-product .thumb {
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    object-fit: cover;
    height: 140px;
    width: 100%;
    background-color: white;
    padding: 5px;
}

.inner-product .thumb:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(237, 34, 36, 0.2);
}

.inner-product .thumb.active-thumb {
    border-color: var(--color-primary);
    position: relative;
}

.inner-product .thumb.active-thumb::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--color-primary);
}

/* Description Styling */
.inner-product .modal-body p {
    color: var(--color-text);
    margin-bottom: 0.8rem;
}

.inner-product .modal-body p strong {
    color: var(--color-primary);
}

/* Footer Styling */
.inner-product .modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.2rem 2rem;
    background-color: white;
}

.inner-product .btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.inner-product .btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
}

.inner-product .btn-secondary {
    color: var(--color-text);
    background-color: white;
    border: 1px solid var(--color-text-light);
}

.inner-product .btn-secondary:hover {
    background-color: var(--bg-color);
}

.image-zoom-container {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.main-image {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    width: 70%;
    height: auto;
    cursor: zoom-in;
}

.image-zoom-container::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-zoom-container:hover::after {
    opacity: 1;
}

.popup-detail-warp h3 i {
    color: var(--color-primary);
    font-size: 18px;
}

.popup-detail-warp h3 {
    font-size: 24px;
    margin-bottom: 4px;
}

.detail-specification {
    padding: 2rem;
    background-color: #f9f9f9;
    /* Light background */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-text);
}

.detail-specification h3 {
    display: flex;
    align-items: center;
    font-size: 22px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    /* border-left: 4px solid var(--color-primary-light); */
    padding-left: 0.6rem;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-specification h3 i {
    font-size: 18px;
    margin-right: 8px;
    color: var(--color-primary-light);
}

.detail-specification ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.detail-specification ul li {
    position: relative;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    margin-bottom: 0.8rem;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.detail-specification ul li:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.detail-specification ul li::before {
    content: "→";
    font-family: "Bootstrap Icons";
    color: var(--color-primary);
    font-size: 1.2rem;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.detail-specification p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-left: 4px solid var(--color-primary);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.tab-content .tab-pane h2 {
    color: #000;
}

.certificate-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}


.custom-prev {
    left: 10px;
}

.custom-next {
    right: 10px;
}

.certificate-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.footer-list a {
    color: #fff !important;
}

.application-inner .dropdown-menu {
    width: 300px;
}

.application-inner .dropdown .btn {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 8px;
    padding: 10px 20px;
    border: none;
    font-weight: 600;
    width: 300px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


.application-inner .dropdown .btn:hover {
    background: var(--color-primary-light);
}

.application-inner .dropdown-menu {
    border-radius: 8px;
    border: 1px solid var(--color-primary);
    padding: 10px;
    background: var(--color-white);
}

.application-inner .dropdown-item {
    color: var(--color-text);
    font-weight: 500;
    transition: 0.3s;
}

.application-inner .dropdown-item:hover {
    background: #ececec;
    color: var(--color-white);
}

.application-inner .dropdown {
    display: flex;
    justify-content: center;
    align-items: center;
}

.application-inner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* max-width: 800px; */
    margin: 0 auto;
}

.application-inner .dropdown-toggle {
    width: 100%;
    text-align: left;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.75rem 1rem;
}

.application-inner .dropdown-menu {
    /* width: 100%; */
    border-radius: 8px;
    padding: 0.5rem 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.application-inner .dropdown-item {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}

.application-inner .dropdown-item:hover {
    background: #f1f5f9;
    color: #0d6efd;
}

.application-inner .app-tab-content {
    margin-top: 1.5rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.25rem;
}

.application-inner .app-tab-pane h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.application-inner .app-tab-pane p {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
    color: #374151;
}



/* ===========================new produt page ============================= */
.sidebar {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 120px;
    /* distance from the top of the viewport */
}


.sidebar-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    display: block;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    transition: background 0.3s;
}

.sidebar-menu a:hover {
    background: #e9ecef;
}

.sidebar-menu .collapse a {
    font-size: 14px;
}

.product-detail-inner {
    margin-top: 30px;
}

.product-detail-inner .container-fluid {
    width: 90%;
}

.sidebar-title {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #430001, #e60023);
    border-radius: 3px;
}

.sidebar-title::before {
    content: "\f07c";
    /* Font Awesome folder icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #e60023;
}

.sidebar-menu {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 250px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* Collapse animation */
.collapse {
    transition: height 0.3s ease;
}

.product-detail-inner .sidebar-menu {
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    border-radius: 12px;
    padding: 20px 0;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.07),
        inset 1px 0 0 rgba(255, 255, 255, 0.5);
    width: 100%;
    overflow: hidden;
}

/* Category styling */
.product-detail-inner .category {
    margin-bottom: 4px;
    position: relative;
}

.product-detail-inner .category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-secondary);
    padding: 14px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
    border-left: 4px solid transparent;
}

.product-detail-inner .category-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 34, 36, 0.08), transparent);
    transition: left 0.6s ease;
}

.product-detail-inner .category-link:hover:before {
    left: 100%;
}

.product-detail-inner .category-link:hover {
    background-color: rgba(237, 34, 36, 0.05);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    padding-left: 25px;
}

.product-detail-inner .category-link:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--color-text-light);
}

.product-detail-inner .category-link:hover:after {
    color: var(--color-primary);
    transform: translateY(2px);
}

.product-detail-inner .category-link[aria-expanded="true"]:after {
    transform: rotate(180deg);
}

.product-detail-inner .category-link.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    border-radius: 0px !important;
    padding: 14px 14px;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.25px;
    box-shadow:
        0 4px 12px rgba(237, 34, 36, 0.25),
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    overflow: hidden;
    z-index: 1;
}

.product-detail-inner .category-link.active::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
}

.product-detail-inner .category-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    width: 4px;
    height: 80%;
    background: var(--color-white);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}


.product-detail-inner .category-link.active:hover {
    transform: translateY(-1px);
    box-shadow:
        0 6px 16px rgba(237, 34, 36, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.product-detail-inner .category-link.active:hover::after {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

/* Minimal shimmer effect on hover */
.product-detail-inner .category-link.active:hover {
    background: linear-gradient(135deg,
            var(--color-primary) 0%,
            var(--color-primary-light) 50%,
            var(--color-primary) 100%);
    background-size: 200% 100%;
    animation: subtleShimmer 3s infinite;
}

@keyframes subtleShimmer {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* For the product links active state */
.product-detail-inner .product-link.active {
    background: rgba(237, 34, 36, 0.08);
    color: var(--color-primary);
    font-weight: 500;
    /* border-left: 2px solid var(--color-primary); */
    padding-left: 28px;
    position: relative;
    transition: all 0.25s ease;
}

.product-detail-inner .product-link.active::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(237, 34, 36, 0.2);
    transition: all 0.3s ease;
}

.product-detail-inner .product-link.active:hover::before {
    box-shadow: 0 0 0 4px rgba(237, 34, 36, 0.1);
}

.product-detail-inner .category-link.active:after {
    color: var(--color-white);
}

.product-detail-inner .product {
    margin: 2px 0;
    position: relative;
}

.product-detail-inner .child-menu:before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--color-text-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.product-detail-inner .child-menu {
    padding-left: 42px !important;
    display: block;
    padding: 12px 20px 12px 40px;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    position: relative;
    border-left: 2px solid transparent;
    margin-top: 4px;
}

.product-detail-inner .product-link {
    display: block;
    padding: 12px 20px 12px 40px;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    position: relative;
    border-left: 2px solid transparent;
    margin-top: 4px;
}

.product-detail-inner .product-link:before {
    content: '';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--color-text-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}



.product-detail-inner .product-link:hover {
    background-color: rgba(237, 34, 36, 0.03);
    color: var(--color-primary);
    padding-left: 45px;
    border-left-color: rgba(237, 34, 36, 0.3);
}

.product-detail-inner .product-link:hover:before {
    background-color: var(--color-primary);
    left: 30px;
    box-shadow: 0 0 0 3px rgba(237, 34, 36, 0.2);
}

.product-detail-inner .product-link:hover:after {
    opacity: 1;
}

.product-detail-inner .product-link.active {
    background-color: rgba(237, 34, 36, 0.08);
    color: var(--color-primary);
    font-weight: 500;
}

.product-detail-inner .product-link.active:before {
    background-color: var(--color-primary);
    width: 8px;
    height: 8px;
}

.product-detail-inner .product-link.active:after {
    opacity: 1;
}

.product-detail-inner .collapse {
    transition: height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-detail-inner .sidebar-menu {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}



@media (max-width: 768px) {
    .product-detail-inner .sidebar-menu {
        width: 100%;
        border-radius: 8px;
    }
}

.thumbnail-warp {

    margin: auto;
}

.image-zoom-container {
    overflow: hidden;
    border-radius: 8px;
}

.product-wrapper .main-image {
    width: 80%;
    height: 400px;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: zoom-in;
    margin-bottom: 20px;
}

.product-wrapper .main-image:hover {
    transform: scale(1.05);
}


.main-image:hover {
    transform: scale(1.05);
}

/* Thumbnail Slider */
.thumbnail-slider {
    overflow-x: auto;
    margin-top: 15px;
}

.product-wrapper .thumbnail-slider::-webkit-scrollbar {
    display: none;
    /* hide scrollbar in Chrome, Safari, Opera */
}

.thumb-wrapper {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: auto;
    gap: 10px;
    margin-bottom: 10px;
}

.thumb {
    flex: 0 0 auto;
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.thumb:hover {
    /* transform: scale(1.05); */
    border-color: #ff0000;
}

.active-thumb {
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

/* Hide scrollbar for all browsers */
.thumbnail-slider::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-slider::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.thumbnail-slider::-webkit-scrollbar-track {
    background: transparent;
}

.product-warpper .heat-title {
    margin-bottom: 20px;
    display: flex;
    justify-content: center !important;
    text-align: center !important;
}

.product-warpper h2 {
    font-size: 32px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    font-family: var(--font-head);
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #db292c, #ED2224, #F58A69, #ED2224, #db292c, #ED2224, #F58A69);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    background-size: 300% 100%;
    animation: gradientFlow 4s linear infinite;
}

.product-header i {
    color: var(--color-primary);
    font-size: 18px;
}

.product-header {
    font-size: 24px;
    margin-bottom: 4px;
    color: var(--color-black);
}

.product-warp-left p {
    font-size: 16px;
    color: #222;
    text-align: justify;
    font-family: var(--font-body);
}

.enquery-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: var(--color-primary);
    border: none !important;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(237, 34, 36, 0.3);
}

.enquery-btn a i {
    margin-right: 8px;
    transition: transform 0.4s ease;
}

.enquery-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    transform: skewX(-20deg);
}

.enquery-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(237, 34, 36, 0.4);
}

.enquery-btn a:hover i {
    transform: rotate(20deg) scale(1.1);
}

.enquery-btn a:hover::before {
    left: 100%;
}

.technical-inner .table-responsive {
    margin-top: 1.5rem;
}

.technical-inner .table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);

}

.technical-inner .table thead {
    background: linear-gradient(135deg, var(--color-primary), #ff6b6b);
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.technical-inner .table thead th {
    font-weight: 700;
    text-align: center;
    padding: 10px 5px;
    font-size: 14px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    position: relative;
}

.technical-inner .table tbody td {
    padding: 8px 8px;
    text-align: center;
    border-top: 1px solid #f1f1f1;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 0.9rem;
}

.technical-inner .table tbody tr:hover td {
    background: rgba(237, 34, 36, 0.08);
    transform: scale(1.02);
}

.technical-inner .table tbody tr:nth-child(even) td {
    background: rgba(237, 34, 36, 0.03);
}

.technical-inner .table td:first-child {
    font-weight: 500;
    text-align: left;
    padding-left: 20px;
    color: #333;
}

.application-inner .app-tab-content h4 {
    color: var(--color-primary);
}

.sidebar .category-head {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    position: relative;
}

.sidebar .category-head::after {
    content: "";
    position: absolute;
    right: 30%;
    bottom: 20px;
    width: 40px;
    height: 2px;
    border-radius: 2px;
}

.product-detail-inner .product {
    padding-left: 20px;
}



.sidebar {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
}


.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #600;
}

.coming-soon img {
    width: 600px;
    height: 100%;
}

.child-menu.active {
    background: #f5f5f5;
    font-weight: bold;
    border-left: 3px solid var(--color-primary);
    padding-left: 8px;
}

.child-menu i {
    transition: transform 0.3s ease;
}

.child-menu.active i {
    transform: rotate(180deg);
}

.product-inner .card-content p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    text-align: justify;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    text-align: justify;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.product-application {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    margin: 20px 0px;
}

.product-application li {
    flex: 1 1 calc(33.333% - 15px);
    min-width: 250px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 2px solid var(--color-primary);
    padding: 15px 10px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-application li strong {
    color: var(--color-black);
}

.product-application li:hover {
    transform: translateY(-6px);
    border-color: var(--color-text);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}



.footer-contact-wrapper {
    max-width: 400px;
    margin: auto;
    border-top: 1px solid rgba(230, 230, 230, 0.753);
    margin-top: 20px;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 16px;
    color: #333;
}

.footer-contact a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-contact {
    margin-top: 10px;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-social {
    margin-top: 20px;
}

.footer-social h6 {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-social h6::after {
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background: var(--color-primary);
    margin: 5px auto 0;
    border-radius: 2px;
}

.footer-social a {
    color: var(--color-primary);
    font-size: 18px;
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
    color: var(--color-primary-light);
    transform: scale(1.3);
}

* Modal Background */ .blog-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px 20px;
}

/* Modal Content Box */
.blog-modal .modal-content {
    background: var(--bg-color);
    margin: auto;
    border-radius: 16px;
    max-width: 800px;
    padding: 30px 25px;
    border: 2px solid var(--color-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for modal box */
.blog-modal .modal-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

/* Modal Header */
.blog-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.blog-modal .modal-header h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin: 0;
}

/* Close Button */
.blog-modal .modal-header .close-modal {
    font-size: 28px;
    font-weight: bold;
    color: var(--color-primary-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.blog-modal .modal-header .close-modal:hover {
    color: var(--color-primary);
}

/* Modal Body */
.blog-modal .modal-body img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid var(--color-primary-light);
}

.blog-modal .modal-body h4 {
    color: var(--color-primary-light);
    font-size: 20px;
    margin: 20px 0 10px;
    border-left: 4px solid var(--color-primary);
    padding-left: 10px;
}

.blog-modal .modal-body p {
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-modal .modal-body ul {
    margin: 10px 0 20px 20px;
}

.blog-modal .modal-body ul li {
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    position: relative;
}

/* .blog-modal .modal-body ul li::before {
    content: "\f105"; 
    font-family: 'Bootstrap Icons';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
} */

.blog-modal .modal-body i {
    color: var(--color-primary);
    margin-right: 5px;
}

/* ====global network page ==== */
.network-inner {
    padding: 60px 0px;
}

.network-wrap {
    padding: 40px 20px;
}

.network-wrap .network-card {
    width: 100%;
    background-image: url('../image/home/bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.network-wrap .network-card {
    position: relative;
    border-top: 5px solid var(--color-primary);
    border-radius: 0px 0px 60px 0px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 25px 25px 20px 25px;
    text-align: left;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.network-wrap .network-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg,
            #f9f9f9 0%,
            #eaeaea 50%,
            #dcdcdc 100%);



    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease-in-out;
    z-index: 0;
    opacity: 0.2;
}

.network-wrap .network-card:hover::before {
    width: 300%;
    height: 300%;
    opacity: 1;
}

.network-wrap .network-card * {
    position: relative;
    z-index: 2;
}

.network-wrap .network-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.2);
}


.network-wrap .network-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.network-wrap .network-card h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    border-radius: 2px;
}

.network-wrap .network-card ul {
    margin: 0;
    padding: 0;
}

.network-wrap .network-card ul li {
    list-style: none;
    padding: 10px 0px;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease;
}


.network-wrap .network-card ul li strong {
    color: var(--color-primary);
    padding-right: 6px;
    font-weight: 600;
}

.network-wrap .network-card ul li a {
    color: var(--color-black);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.network-wrap .network-card ul li a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.network-cta {
    padding: 40px 0px;
}

/* .network-cta {

    width: 100%;
    background-image: url('../image/home/cta-bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
} */

.network-cta h4 {
    font-size: 19px;
    margin-bottom: 5px;
}

.network-cta h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

#joinModal input {
    padding: 5px;
}

#joinModal input::placeholder,
#joinModal textarea::placeholder {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

#joinModal .modal-content {
    transform: translateY(30px);
    transition: all 0.35s ease-in-out;
}

#joinModal .modal.show .modal-content {
    transform: translateY(0);
}

#joinModal .form-control:focus {
    border-color: #ed2224;
    box-shadow: 0 0 8px rgba(237, 34, 36, 0.2);
}

#joinModal .input-group-text {
    border-radius: 10px 0 0 10px;
    border-right: none;
}

#joinModal .btn-close {
    color: #000 !important;
}
#joinModal .form-control {
    border-radius: 0 10px 10px 0;
    border-left: none;
    padding: 0.75rem 1rem;
    transition: 0.3s ease;
}

#joinModal .modal-body{
    padding: 40px 30px ;
}
#joinModal .btn:hover {
    background: linear-gradient(135deg, #ff4a4a, #ff8a8a);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}