/* ==== Local Font Import ==== */
@font-face {
    font-family: 'subhead';
    src: url('../fonts/CoveredByYourGrace-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'head';
    src: url('../fonts/TitilliumWeb-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

/* ==== Root Variables ==== */
:root {
    --primary-color: #252924;
    --secondary-color: #68B84F;
    --third-color: #FFCD1E;
    --text-color: #000;
    --color-red: #FF0000;
    --sub-headfont: 'subhead';
    --body-font: 'head';


}

::selection {
    color: #000;
    background-color: #68B84F;
}


/* ==== Reset & Base Styles ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
}

h3 {
    font-family: var(--sub-headfont);
}

h1,
h2,
h4,
h5,
h6 {
    font-family: var(--body-font);
}

p {
    font-family: var(--body-font);
}

a {
    text-decoration: none !important;
    transition: var(--transition);
    font-family: var(--body-font);
}

a:hover {
    text-decoration: underline;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Preloader Wrapper */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

/* Ping Animation */
.ping {
    --uib-size: 80px;
    --uib-speed: 1.2s;
    --uib-color: #68B84F;
    /* Green color */
    position: relative;
    height: var(--uib-size);
    width: var(--uib-size);
}

.ping::before,
.ping::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: var(--uib-color);
    animation: pulse7132 var(--uib-speed) linear infinite;
    transform: scale(0);
    opacity: 0;
}

.ping::after {
    animation-delay: calc(var(--uib-speed) / -2);
}

@keyframes pulse7132 {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* =================header ================================*/
/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #4BAF50, #92C64E);
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
}

.top-bar .social-icons a {
    color: #fff;
    margin-left: 10px;
    transition: color 0.3s;
}

.top-bar .social-icons a:hover {
    color: #f1f1f1;
}

/* Main Navbar */
.navbar {
    padding: 0px 0px !important;
    background: #fff;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    border-radius: 20px;
}

.offcanvas-header img {
    width: 200px;
}

.do-inner .item {
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
    border-radius: 12px;
    background: #fff;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
}

.do-inner .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 245, 220, 0.9) 0%, rgba(180, 230, 180, 0.95) 100%);
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    z-index: -1;
    opacity: 0;
}

.do-inner .item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #7fdb9b;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.do-inner .item:hover {
    transform: translateY(-0px) rotate(1deg);
    box-shadow: 0 15px 30px rgba(120, 200, 150, 0.3);
}

.do-inner .item:hover::before {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 1;
}

.do-inner .item:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.do-inner .item .item-img {
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.do-inner .item:hover .item-img {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.do-inner .item .item-content {
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.do-inner .item:hover .item-content {
    transform: translateY(-8px);
}

.do-inner .item .item-content h4 {
    position: relative;
    display: inline-block;
}

.do-inner .item .item-content h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5ec57e;
    transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0.2s;
}

.do-inner .item:hover .item-content h4::after {
    width: 100%;
}

.do-inner .item .item-content p {
    transform: translateY(5px);
    opacity: 0.8;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}

.do-inner .item:hover .item-content p {
    transform: translateY(0);
    opacity: 1;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler {
    border: none;
}

.navbar-brand img {
    padding-left: 30px;
    max-height: 250px;
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    position: relative;
    padding: 10px 15px;
    transition: color 0.3s;
    font-size: 18px;
    font-weight: bold;
}

.navbar-nav .nav-link {
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link.active {
    transform: scale(1.2);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--secondary-color);

}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 5px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    border-radius: 10px 10px 0 0;
    transform: translateX(-50%);
    transition: width 0.4s ease, left 0.4s ease;
}

.offcanvas-contact i {
    color: var(--secondary-color);
}

.offcanvas {
    width: 100%;
    background-image: url('../image/home/offcanva.png');
    background-position: center;
    background-size: cover;
}

.navbar-nav .nav-link.active::after {
    width: 50%;
    left: 50%;
}

.reach-us-btn {
    background-color: #FF0000;
    color: #fff;
    border-radius: 8px;
    padding: 8px 20px;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}



.reach-us-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.offcanvas-contact {
    color: #333;
    font-size: 0.95rem;
}

.offcanvas-contact i {
    width: 20px;
    text-align: center;
}

.offcanvas-contact a {
    transition: all 0.3s ease;
}

.offcanvas-contact a:hover {
    color: var(--secondary-color) !important;
}

.text-success-hover {
    color: #6c757d;
    transition: all 0.3s ease;
}

.text-success-hover:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.border-top {
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.offcanvas-contact .social-icons a {
    display: inline-block;
    color: #000;
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.offcanvas-contact .social-icons a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.reach-us-btn:hover {
    background-color: #FF0000;


}

.reach-us-btn:hover::before {
    left: 125%;

}

.offcanvas-body .nav-link {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.navbar .navbar-nav {
    display: flex;
    gap: 50px;
    margin-left: 200px;
}


.header-warp .top-bar {
    margin: 0px auto;
    width: 95%;
}

.header-warp .top-bar {
    border-radius: 80px 80px 0px 0px;
    margin-top: 20px;
}

.header-warp .inner-topbar .social-icons {
    display: flex;
    gap: 20px;
    font-style: 24px;
}

.header-warp .inner-topbar {
    padding: 5px 0px;
    display: flex;
    justify-content: start;
    margin: 0px 30px 0px;
    align-items: center;
}

.header-warp .inner-topbar .social-icons {
    margin-left: 300px;
}


.top-bar .contact-info a i {
    margin-right: 5px;
}

.top-bar .contact-info a {
    color: #fff;
    font-size: 14px;
    font-weight: 600;

}

.social-icons a {
    transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
}

.top-bar .contact-info a {
    transition: transform 0.7s ease;

}

.top-bar .contact-info a:hover {
    transform: scale(1.3);
    color: #000 !important;
}

.top-bar .social-icons a:hover {
    transform: scale(1.3) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #000 !important;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    z-index: 9999;
}

/*  
 header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%; 
    z-index: 9999;
    transition: top 0.3s ease;
}

header .container {
    width: 1200px; 
    margin: 0 auto;
} */


/* click to top btn */
.back-to-top-green {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 42px;
    /* Smaller size */
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    /* Green gradient */
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-green.active {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-green:hover {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}


/* ============footer=================== */
footer {
    padding: 30px;
}

footer .copy {
    padding-top: 10px;
}

#year {
    margin-right: 5px;
}

footer .social-icons a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ffffff50;
    transition: all 0.3s ease;
}

footer .social-icons a:hover {
    background-color: #ffffff20;
    border-color: #fff;
    color: #fff;
}

footer a.text-light:hover {
    text-decoration: underline;
}

.hover-arrow-list li {
    position: relative;
    padding-left: 0;
    transition: all 0.3s ease;
}

.hover-arrow-list li a {
    display: block;
    padding: 8px 0;
    padding-left: 0;
    transition: all 0.3s ease;
    position: relative;
}

.hover-arrow-list li a::before {
    content: "→";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #ffffff;
}

.hover-arrow-list li:hover a {
    padding-left: 20px;
    color: var(--secondary-color) !important;
    font-weight: bolder;
}

.hover-arrow-list li:hover a::before {
    opacity: 1;
    left: 0;
}

.hover-arrow-list li a::before {
    content: "→";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--secondary-color);
    font-weight: bold;
}

.hover-arrow-list li:hover a::before {
    opacity: 1;
    left: 0;
    transform: translateY(-50%) scale(1);
}

.icon-scale-list li a {
    display: flex;
    align-items: center;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.icon-scale-list li a i {
    transition: transform 0.3s ease;
    transform-origin: left center;
    display: inline-block;
}

.icon-scale-list li:hover a {
    color: #fff;
}

.icon-scale-list li:hover a i {
    transform: scale(1.3);
    margin-right: 5px;
    color: var(--secondary-color) !important;
}

.error-message {
    font-size: 14px;
    color: var(--color-red);
    font-weight: bold;
}

/* ----------------------banner section--------------------------- */
.inner-banner .owl-prev-btn,
.inner-banner .owl-next-btn {
    display: none;
}

.inner-banner {
    position: relative;
}

.hero-carousel .slide {
    width: 100%;
    /* height: 700px; */
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content h3 {
    font-size: 26px;
    color: var(--third-color);
    font-weight: 500;
}

.slide-content {
    justify-content: start;
}

.slide-content h4 {
    font-size: 58px;
    font-weight: 900;
    max-width: 650px;
}

.slide-content .btn-group {
    margin: 20px 0px;
}

.slide-content .btn-1 {
    padding: 15px 25px;
    font-size: 16px;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    background: linear-gradient(270deg, #92C64E, #4BAF50, #92C64E);
    background-size: 400% 400%;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(75, 175, 80, 0.4);
    transition: all 0.4s ease, background-position 0.5s ease, box-shadow 0.5s ease;
}

.slide-content .btn-1:hover {
    background-position: right center;
    /* Animate gradient */
    box-shadow: 0 10px 25px rgba(75, 175, 80, 0.7);
    transform: scale(1.1);
}

.slide-content .btn-1::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide-content .btn-1:hover::before {
    opacity: 1;
    animation: shine 1s forwards;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }

    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.slide-content .btn-1:active {
    transform: scale(0.96);
    box-shadow: 0 4px 10px rgba(75, 175, 80, 0.5);
}

/* BTN-2 SUPER PREMIUM */
.slide-content .btn-2 {
    padding: 15px 25px;
    font-size: 16px;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    background: var(--third-color);
    margin-left: 20px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease, box-shadow 0.5s ease;
}

.slide-content .btn-2:hover {
    background: linear-gradient(135deg, var(--third-color), #FFD700);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

.slide-content .btn-2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slide-content .btn-2:hover::before {
    opacity: 1;
    animation: shine 1s forwards;
}

.slide-content .btn-2:active {
    transform: scale(0.96);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 10;
}

.inner-banner .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(50, 50, 50, 0.3));
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
    pointer-events: none;
}

.custom-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px
}

.custom-nav-btn:hover {
    background: linear-gradient(135deg, #92C64E, #4BAF50);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.custom-nav-btn.prev {
    left: 20px;
}

.custom-nav-btn.next {
    right: 20px;
}


/* ===============abouts us ==============================*/
.inner-about {
    padding: 80px 0px;
}

.about-right h3 {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 500;
}

.about-right h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: bolder;
    margin: 15px 0px;
}

.about-right p {
    font-size: 16px;
    color: #000;
    max-width: 500px;
}

.click-btn {
    margin: 30px 0px;
}

.click-btn a {
    font-size: 16px;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #FF0000;
    display: inline;
    border-radius: 5px;
}

/* Fixed Liquid Fill Button */
.click-btn {
    display: inline-block;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    /* Essential for containing the effect */
}

.click-btn a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: white;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    /* Changed from red */
    border-radius: 5px;
    z-index: 2;
    text-decoration: none;
    transition: color 0.4s ease;
}

/* Red background layer */
.click-btn a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FF0000;
    z-index: -1;
}

/* Liquid fill element - Fixed positioning */
.click-btn a::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    border-radius: 45% 55% 55% 45% / 45% 45% 55% 55%;
    transform: translate(0, 0);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    opacity: 0;
}

.click-btn:hover a::after {
    opacity: 1;
    transform: translate(-4%, -34%) rotate(15deg);
    border-radius: 50%;
}

.click-btn a i {
    margin-left: 5px;
    transition: transform 0.4s ease 0.1s;
}

.product-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-red);
    /* Your theme color */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-link a .call-icon {
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.product-link a:hover {
    background-color: #c90000;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.product-link a:hover .call-icon {
    opacity: 1;
    transform: translateX(0);
}


.click-btn:hover a i {
    transform: translateX(4px);
}

.form-btn button {
    font-size: 16px;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background-color: #FF0000;
    display: inline;
    border-radius: 5px;
    border: none;
}

.about-left {
    position: relative;
    width: 100%;
    height: auto;
}

.about-left .img-1 img {
    position: absolute;
    bottom: 0;
    right: 10%;
    width: 50%;
    height: 450px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-left .img-2 img {
    position: absolute;
    top: 42%;
    left: 15%;
    width: 50%;
    height: 300px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translate(-20%, -20%);
    animation: floatUpDown 3s ease-in-out infinite;
}


@keyframes floatUpDown {

    0%,
    100% {
        transform: translate(-20%, -20%) translateY(0);
    }

    50% {
        transform: translate(-20%, -20%) translateY(-15px);
    }
}

.about-left .Counter {
    position: absolute;
    top: -12%;
    left: 5%;
    display: block;
    width: 200px;
    height: 160px;
    background-color: var(--secondary-color);
    padding: 15px 10px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-left .Counter h2 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.about-left .Counter h2 strong {
    font-size: 28px;
}

.about-left .Counter h2 span {
    display: block;
    font-size: 28px;
    font-weight: 700;
}

.about-left .Counter {
    transition: all 0.5s ease;
}

.product:hover .img img {
    transform: translateY(-8px) scale(1.03);
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
    /* Optional shadow */
}

.about-left .Counter:hover {
    background-color: var(--third-color);
    box-shadow: 0 0 20px rgba(233, 222, 72, 0.4);
}

.product .img {
    perspective: 1000px;
}

.product .img img {
    transition: transform 0.6s ease;
}

.product:hover .img img {
    transform: rotateX(5deg) rotateY(5deg) scale(1.05);
}

.inner-about {
    position: relative;
}

.about-overlay img {
    width: 400px;
    height: auto;
    position: absolute;
    right: 2%;
    bottom: 0%;
    z-index: -1;

    animation: floatAnimation 4s ease-in-out infinite;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    transform-origin: center;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* ========================== WHAT WE DO ========================== */
.do-inner {
    padding: 30px 0px;
    /* background-color: #f9f9f9; */
}

.small-head {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sub-head {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
}

/* Base Styles (Required) */
.do-inner .item-img img {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform, filter, box-shadow;
}

/* Combined Super Effect */
.do-inner .item:hover .item-img img {
    animation: pop 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    transform: perspective(1000px) rotateY(8deg) translateY(8px) translateZ(15px);

    filter: brightness(1.08) contrast(1.05) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
}

@keyframes pop {
    0% {
        transform: perspective(800px) rotateY(0) translateZ(0) scale(1);
        filter: brightness(1) contrast(1) drop-shadow(0 0 0 transparent);
    }

    40% {
        transform: perspective(1000px) rotateY(12deg) translateZ(25px) scale(1.1);
        filter: brightness(1.15) contrast(1.1) drop-shadow(0 8px 20px rgba(255, 255, 255, 0.5));
    }

    100% {
        transform: perspective(1000px) rotateY(8deg) translateY(-8px) translateZ(15px) scale(1.05);
        filter: brightness(1.08) contrast(1.05) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.3));
    }
}

.do-inner .item {
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0px 40px;
}

.do-overlay img {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
    animation: floatAnimation 3s ease-in-out infinite;
    transform-origin: center;
    display: block;
    max-width: 100%;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-10px) scale(1.02);
        opacity: 1;
    }
}

.do-inner .item-img {
    height: 100px;
    width: 100px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 5px;
    transition: background-color 0.3s ease;
}

.do-inner .item-img img {
    max-width: 60%;
}

.do-inner .item-content h4 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.do-inner .item-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.do-inner .container {
    width: 60%;
}

.do-inner {
    position: relative;
}

.do-overlay img {
    width: 400px;
    height: auto;
    position: absolute;
    right: 0%;
    bottom: 0%;
}

/* ======our works =============================*/
.work-inner {
    padding: 40px 0px;
    background-image: url('../image/home/work-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.work-inner .work-head {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.work-inner .work-head h3 {
    color: #fff;
}

.work-inner .container {
    width: 50%;
    margin: 0px auto !important;
}

.work-inner .item {
    display: flex;
    justify-content: center !important;
    flex-direction: column;
    text-align: center !important;
    align-content: center;
    align-items: center;
}

.work-inner .item .work-img {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    text-align: center;
}

.work-inner .item .work-img img {
    width: 77%;
    object-fit: cover;
}

.work-inner .item .work-img:hover {
    transform: translateY(-8px) rotateX(10deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2),
        inset 0 -3px 10px rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
    transition: all 0.4s ease-out;
}

.work-inner .item .work-content h2 {
    font-size: 32px;
    font-weight: bolder;
    color: #fff;
}

.work-inner .item .work-content p {
    color: #fff;
    font-size: 18px;
}

/* testimonial section */
.inner-testimonial {
    padding: 30px 0px;
    position: relative;
}

.testimonial-overlay img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: auto;
    height: auto;
    max-width: 300px;
    z-index: -1;
    animation: floatOrganic 8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes floatOrganic {
    0% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
        opacity: 0.95;
    }

    25% {
        transform: translate(5px, -8px) rotate(1.5deg) scale(1.01);
        opacity: 1;
    }

    50% {
        transform: translate(-4px, -12px) rotate(-1.5deg) scale(1.02);
        opacity: 0.98;
    }

    75% {
        transform: translate(3px, -6px) rotate(1deg) scale(1.01);
        opacity: 1;
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg) scale(1);
        opacity: 0.95;
    }
}



/* Custom Pagination */
.inner-testimonial .custom-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.inner-testimonial .custom-pagination button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    margin: 0 5px;
    padding: 0;
    transition: all 0.3s;
}

.inner-testimonial .custom-pagination button.active {
    background: #4CAF50;
    transform: scale(1.2);
}

.inner-testimonial .carousel-control-prev,
.inner-testimonial .carousel-control-next {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    border-radius: 50%;
    top: 50%;
    opacity: 1;
    transform: translateY(-50%);
}

.inner-testimonial .carousel-control-prev {
    left: -20px;
}

.inner-testimonial .carousel-control-next {
    right: -20px;
}

.inner-testimonial .carousel-control-prev i,
.inner-testimonial .carousel-control-next i {
    color: white;
    font-size: 20px;
}


/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
    position: relative;
}

.testimonial-nav .prev-btn,
.testimonial-nav .next-btn {
    background-color: var(--secondary-color);
    border: none;
    color: #fff;
    padding: 5px 5px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav .prev-btn:hover,
.testimonial-nav .next-btn:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-nav .custom-dots {
    display: flex;
    gap: 10px;
}

.testimonial-nav .custom-dots button {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    border: none;
    transition: all 0.3s ease;
}

.testimonial-nav .custom-dots button.active {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}

.testimonial-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 50px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 30px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.head-testimonial {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-direction: column;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-head img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
}

.testimonial-head h4 {
    font-size: 22px;
    color: #656565;
    margin-bottom: 0px;
    font-weight: 800;
}

.testimonial-head p {
    font-size: 14px;
    color: #888;
    text-align: left;
    margin: 0;
}

.testimonial-content p {
    font-size: 14px;
    color: #555;
    margin: 0;
    z-index: 2;
    max-width: 370px;
    text-align: justify;
}

/* Decorative Overlays */
.testimonial-overlay-1,
.testimonial-overlay-2 {
    position: absolute;
    opacity: 0.5;
    z-index: 1;
}

.testimonial-overlay-1 {
    bottom: 0%;
    right: 10px;
    width: 100px;
}



.testimonial-overlay-2 {
    top: 12%;
    right: 30px;
    width: 70px;
}


.inner-form {
    width: 100%;
    height: 600px;
    background-image: url('../image/home/form-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: 80px;
}

.inner-form .form-content p {
    color: #333;
    font-size: 16px;
}

.inner-form .form-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 600;
}

.inner-form .form-content {
    position: absolute;
    top: -10%;
    left: 13%;
    background-color: #fff;
    width: 600px;
    border-radius: 8px;
    box-shadow:
        0 -3px 8px rgba(0, 0, 0, 0.08),
        0 3px 8px rgba(0, 0, 0, 0.08),
        3px 0 8px rgba(0, 0, 0, 0.06),
        -3px 0 8px rgba(0, 0, 0, 0.06);

    padding: 50px 30px;
}

.inner-product {
    padding-top: 10px;
    padding-bottom: 50px;
}

.product .img {
    perspective: 1000px;
}

.product .img img {
    transition: transform 0.6s ease;
}

.product:hover .img img {
    transform: rotateX(5deg) rotateY(5deg) scale(1.05);
}

.inner-product .product {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    padding: 40px 10px 5px 10px;
    margin: 0px 20px;
}

.inner-product .product {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-product .product {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.inner-product .product img {
    padding: 20px 0px;
    width: 150px;
    height: auto;
    position: relative;
    z-index: 1;
}

.inner-product .product::after {
    content: "";
    position: absolute;
    bottom: 30%;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #e2e2e2;
    transform: scaleX(0);
    transform-origin: center;
    animation: borderGrow 0.6s ease forwards;
    z-index: 0;
}

.inner-product .product .product-link a {
    background-color: var(--color-red);
    padding: 7px 60px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

@keyframes borderGrow {
    to {
        transform: scaleX(1);
    }
}

.inner-product .product h4 {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600
}

.inner-product .product {
    transition: border 0.5s ease-in-out, box-shadow 0.4s ease;
}

.inner-product .product {
    border: 1px solid transparent;
    box-sizing: border-box;
    border-radius: 10px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.inner-product .product:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}



.inner-product .product .product-link {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.inner-product .product:hover .product-link {
    opacity: 1;
    transform: translateY(0);
}

.link-product a {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-red);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-product a i {
    transition: transform 0.3s ease;
}

.link-product a:hover {
    color: var(--secondary-color);
}

.link-product a:hover i {
    transform: translateX(5px);
}


/* ============================================
                about page
================================================ */
.inner-abouts {
    padding: 70px 0px 30px 0px;
    width: 100%;
    /* background-image: url('../image/about/about-bg.jpg'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.inner-abouts .about-overlay1 img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    animation: shakeEffect 5.5s ease-in-out infinite;
}

@keyframes shakeEffect {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-5px, 0);
    }

    40% {
        transform: translate(5px, 0);
    }

    60% {
        transform: translate(-5px, 0);
    }

    80% {
        transform: translate(5px, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

.inner-abouts .about-overlay1 {
    position: absolute;
    right: 0%;
    bottom: 0%;
    opacity: 0.4;

}



.about-counter .item {
    position: relative;
    flex: 1;
}

.about-counter .item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 2px;
    border-right: 2px dashed var(--secondary-color);
}

.inner-about {
    position: relative;
}


.inner-subbanner {
    position: relative;
}


.inner-subbanner .subbanner {
    width: 100%;
    height: 400px;
}

.inner-subbanner .sub-banner-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.breadcrumb-wrapper {
    position: absolute;
    bottom: 20%;
    right: 5%;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.breadcrumb {
    margin: 0;
    background: transparent;
    display: flex;
    gap: 8px;
}

.breadcrumb-item {
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--body-font);
    font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #ffffffa0;
    margin: 0 8px;
    font-weight: 600;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.breadcrumb a:hover {
    color: #68B84F;
    transform: translateY(-2px);
}

.breadcrumb .active {
    color: #ddd;
    pointer-events: none;
}


.about-counter h2 span {
    font-size: 32px;
    color: var(--secondary-color);
    font-weight: 600;
}

.about-counter {
    margin: 10px 0px;
}

.about-counter h2 {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: bold;
}

.inner-vission .container-fluid {
    width: 70%;
}

.abouts-right p {
    text-align: justify;
}

.abouts-right .first:first-letter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #198754;
    float: left;
    margin-right: 5px;
    line-height: 1;
}

.inner-vission {
    padding: 30px 0px;
}

.vision-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    /* border: 1px dotted var(--secondary-color); */


}

.vision-mission {
    text-align: right;
}

.vision-vision {
    text-align: left;
}

.vision-mission,
.vision-vision {
    flex: 1;
    padding: 20px;
}

.vision-image {
    width: 330px;
    height: 330px;
    flex-shrink: 0;
}

.vision-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* border-radius: 50%; */
    float: left;
    /* shape-outside: circle(50%); */
}

.vision-container h3 {
    font-size: 28px;
    color: var(--secondary-color);
    font-weight: 500;
}

.vision-container p {
    font-size: 16px;
}

.inner-contact {
    position: relative;
    width: 100%;
    background-image: url('../image/banner/banner-2.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    z-index: 1;
    overflow: hidden;
}

.inner-contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    backdrop-filter: blur(5px);
    z-index: -1;
    border-radius: 0;
}


.inner-contact h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: capitalize;
}

.inner-contact a {
    display: inline-block;
    color: #fff;
    font-size: 1.1rem;
    margin: 10px 0;
    text-decoration: none;
}

.inner-contact .click-btn a {
    background-color: #198754;
    padding: 12px 30px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.inner-contact .click-btn a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.inner-contact .contact-btn {
    margin: 10px 0;
    border-radius: 50px;
    padding: 10px 25px;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-left: 20px;
    font-weight: 600;
}

.contact-btn-parent {
    display: inline;
}

.inner-contact .contact-btn i {
    transition: transform 0.4s ease, color 0.4s ease;
}

.inner-contact .contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    z-index: -1;
    transition: all 0.4s ease;
}

.inner-contact .contact-btn:hover::before {
    left: 0;
}

.inner-contact .contact-btn:hover {
    border-color: var(--secondary-color);
    color: #fff !important;
    position: relative;
    z-index: 999;
}

.inner-contact .contact-btn:hover i {
    transform: rotate(360deg);
    color: #fff;
}

.inner-contact .contact-btn span,
.inner-contact .contact-btn i {
    position: relative;
    z-index: 1;
}

.inner-contact h2 span {
    color: var(--color-red);
    font-weight: bolder;
}

/* 
.inner-serve {
    padding: 30px 0px;
} */

.serve-inner {
    width: 80%;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.inner-serve .serve-img {
    display: flex;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.serve-card {
    background: #fff;
    width: 270px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px;
}

.serve-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Important for the effect */
}

/* Animated Border Drawing Effect */
.serve-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    padding: 2px;
    /* Border thickness */
    background: linear-gradient(90deg, #00ff88, #00ffaa, #00ff88);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;

    /* Initial state (hidden) */
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: clip-path 0.6s ease-in-out;
}

.serve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.serve-card:hover::before {
    /* Full border revealed */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.serve-card:hover::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 170, 0.2));
    border-radius: 15px;
    z-index: -1;
    animation: pulse 2s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.serve-card:hover::after {
    opacity: 1;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 0.3;
    }
}

.serve-img {
    width: 60px;
    height: 60px;
    background-size: cover;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-color);

}

.serve-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.serve-title {
    font-size: 20px;
    font-family: var(--body-font);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.serve-inner .owl-item {
    display: flex !important;
    justify-content: center !important;
}

.serve-desc {
    font-size: 16px;
    font-family: var(--body-font);
    color: #000;
    line-height: 1.5;
}

.serve-inner .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.serve-inner .owl-dot {
    width: 12px;
    height: 12px;
    background: #ccc !important;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
    transition: background 0.3s ease;
}

.serve-inner .owl-dot.active {
    background: #198754 !important;
}

.inner-serve {
    position: relative;
}

.inner-vission {
    margin-top: 100px;
}

.serve-img-main img {
    width: 100%;
    height: 400px;
}

.serve-img-main {
    position: relative;
}

.serve-img-main .serve-overlay {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.serve-img-main .serve-overlay h3 {
    color: var(--secondary-color);
    font-size: 24px;
}

.serve-img-main .serve-overlay p {
    font-size: 18px;
    color: #fff;
}

.serve-inner .owl-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
}

.achive-section {
    width: 100%;
    background-image: url('../image/about/about-bg.jpg');
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.inner-achievements {
    padding: 40px 0px;

}

.achievements-inner {
    margin-top: 50px;
}

.achive-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease-in-out;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.achive-card .achive-overlay {
    position: absolute;
    top: -35px;
    left: 8%;
    width: 70px;
    height: 70px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.achive-card .achive-overlay img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.achive-card {
    position: relative;
    transition: all 0.4s ease;
    border-radius: 10px;
}

.achive-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, #a9e6a2, #7ddf74);
}


.achive-card:hover .achive-overlay img {
    animation: floatAndGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 255, 100, 0.7));
}

@keyframes floatAndGlow {

    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 255, 100, 0.7));
    }

    50% {
        transform: translateY(-10px) scale(1.05);
        filter: drop-shadow(0 0 20px rgba(0, 255, 100, 0.9));
    }
}


.achive-card h4 {
    font-size: 18px;
    margin-top: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--primary-color);
}

.achive-card strong {
    color: #68B84F;
    font-weight: 700;
}

.logo-carousel {
    background: #f9f9f9;
    padding: 20px 0;
    border-radius: 10px;
}

.logo-item {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.logo-item img {
    max-height: 80px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.4s ease;
}

.logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}


.inner-contact-from {
    padding: 30px 0px;
    position: relative;
}

.inner-contact-from .contact-overlay-right {
    position: absolute;
    left: 70%;
    top: 20%;
    z-index: -1;
}

.contact-form-head-left p {
    font-size: 16px;
}

.inner-contact-from .row-line {
    border-bottom: 1px solid rgb(228, 228, 228);
    margin-bottom: 10px;
}

.contact-section {
    padding: 40px 20px;
    border-radius: 8px;
}

.info-contact {
    /* background: linear-gradient(135deg, #68B84F 0%, #8FD468 50%, #68B84F 100%); */
    background: linear-gradient(135deg, #68B84F, #8FD468, #68B84F);
    background-size: 200% 200%;
    animation: gradientPulse 6s ease infinite;

    @keyframes gradientPulse {
        0% {
            background-position: 0% 50%
        }

        50% {
            background-position: 100% 50%
        }

        100% {
            background-position: 0% 50%
        }
    }

    color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.info-contact h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.info-contact .contact-desc {
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.contact-list i {
    font-size: 20px;
    margin-right: 10px;
    color: #fff;
    transition: transform 0.3s ease;
}

.contact-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #000;
}

.contact-list li:hover i {
    transform: scale(1.2) rotate(10deg);
}

.contact-form {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-control {
    border: 2px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    border-color: #68B84F;
    box-shadow: 0 0 10px rgba(104, 184, 79, 0.3);
    outline: none;
}

.btn-submit {
    background: #68B84F;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
    background: #4BA74B;
    transform: scale(1.05);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact-list li:hover {
    background: #68B84F;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.contact-list i {
    background: #68B84F;
    color: #fff;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.contact-list li:hover i {
    background: #fff;
    color: #68B84F;
    transform: scale(1.2) rotate(15deg);
}

.contact-list a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-list li:hover a {
    color: #fff;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #68B84F;

    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(135deg, #68B84F, #4BA74B);
    color: #fff;
    box-shadow: 0 8px 20px rgba(104, 184, 79, 0.6);
}

.info-contact {
    position: relative;
    /* Make parent a positioning context */
}

/* .info-contact::after {
    content: "";
    display: block;
    width: 23px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    background: repeating-linear-gradient(to bottom,
            #333333,
            #333333 3px,
            transparent 3px,
            transparent 6px);
    background-size: 100% 6px;
    
} */

/* -------------------product page----------------------- */
.inner-product-section {
    padding: 60px 0px;
}

.inner-product-section .head-product {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.inner-product-section .container-fluid {
    width: 70%;
}

.product-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.topbar-left .category-title {
    font-family: var(--sub-headfont);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    padding-left: 15px;
}

.topbar-left .category-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.search-box:focus-within {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(104, 184, 79, 0.2);
}

.search-box input {
    border: none;
    background: transparent;
    padding: 8px 12px;
    font-family: var(--body-font);
    width: 250px;
    outline: none;
}

.search-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 5px;
}

.search-btn:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-toggle {
    display: flex;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 5px;
}

.toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.toggle-btn.active {
    background: var(--secondary-color);
    color: white;
}

.toggle-btn:not(.active):hover {
    background: rgba(104, 184, 79, 0.1);
    color: var(--secondary-color);
}

.filter-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--third-color);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {}

.product-sidebar-warp {
    position: relative;
    /* width: 280px; */
}

.product-sidebar {

    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    /* height: calc(100vh - 40px); */
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) #f1f1f1;
}

.product-sidebar::-webkit-scrollbar {
    width: 5px;
}

.product-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product-sidebar::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.sidebar-section {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-title {
    font-family: var(--sub-headfont);
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.sidebar-title i {
    transition: transform 0.3s ease;
}

.sidebar-title:hover i {
    color: var(--secondary-color);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.category-list li.active {
    background: rgba(104, 184, 79, 0.1);
    font-weight: bold;
}

.category-list li.active a {
    color: var(--secondary-color);
}

.category-list li:hover:not(.active) {
    background: #f5f5f5;
}

.category-list a {
    color: var(--primary-color);
    text-decoration: none;
    display: block;
}

.price-range {
    padding: 0 5px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-inputs input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--body-font);
}

.price-inputs span {
    color: var(--primary-color);
}

.hero-carousel .slide {
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    /* transition: background-size 5s ease; */
}

.hero-carousel .owl-item.active .slide {
    background-size: 110%;
}

.range-slider {
    position: relative;
    height: 5px;
    background: #eee;
    border-radius: 5px;
    margin-bottom: 20px;
}

.range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: var(--secondary-color);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
}

.apply-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.apply-btn:hover {
    background: var(--primary-color);
}

.popular-products {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.popular-item:hover {
    background: #f9f9f9;
    transform: translateX(3px);
}

.popular-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.product-info h4 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.product-price {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.offer-banner {
    background: rgba(255, 205, 30, 0.1);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.offer-banner img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.offer-banner p {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.view-toggle-container {
    display: inline-block;
    background: #f5f5f5;
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.view-toggle-tabs {
    position: relative;
    display: flex;
}

.view-tab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: #000;
    font-family: var(--body-font);
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.view-tab i {
    font-size: 1rem;
}

.view-tab.active {
    color: white;
    background: var(--secondary-color);
    position: relative;
    font-weight: 600;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow:
        0 2px 5px rgba(104, 184, 79, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Optional: Add a subtle shine effect */
.view-tab.active::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: linear-gradient(45deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    pointer-events: none;
    animation: tabShine 3s infinite;
}

@keyframes tabShine {
    0% {
        left: -20%;
    }

    100% {
        left: 120%;
    }
}

.view-tab:not(.active):hover {
    color: var(--secondary-color);
}

.view-toggle-slider {
    position: absolute;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: calc(50% - 10px);
    background: var(--secondary-color);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

/* Animation when list view is active */
.view-toggle-tabs[data-active-view="list"] .view-toggle-slider {
    transform: translateX(100%);
}

/* Optional: Add this if you want to hide the text on small screens */
@media (max-width: 480px) {
    .view-tab span {
        display: none;
    }

    .view-tab {
        padding: 8px 12px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .product-sidebar-warp {
        width: 100%;
        margin-bottom: 30px;
    }

    .product-sidebar {
        position: static;
        height: auto;
    }
}

.product-views>div {
    display: none;
}

.product-views>div.active {
    display: block;
}


.category-btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    font-family: var(--sub-headfont);
    font-size: 1rem;
    width: 40%;

    text-align: start;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-dropdown {
    display: flex;
    justify-content: center;
    margin: 20px auto;

}

.category-btn:hover,
.category-btn:focus {
    background-color: var(--third-color);
    color: var(--primary-color);
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dropdown-menu {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 8px 0;
    min-width: 200px;
}

.dropdown-item {
    padding: 10px 15px;
    font-family: var(--body-font);
    color: var(--primary-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--secondary-color);
    color: #fff;
}

.dropdown-item.active {
    background-color: var(--third-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
}

.card-product {
    position: relative;
    width: 100%;
    max-width: 300px;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    flex: 1 !important;
}


.card-product .img {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    overflow: hidden;
    border-radius: 10px;
}

.card-product .img img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

.card-product .img-overlay h6 {
    margin-bottom: 0px;
    font-size: 14px;
}

.card-product .img-overlay {
    position: absolute;
    top: 15px;
    left: 25px;
    background: var(--secondary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.card-product .product-details {
    padding: 15px;
    text-align: center;
}

.card-product .product-details h2 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 0 0 5px 0;

}

.card-product .product-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.card-product::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    z-index: 1;
    pointer-events: none;
    box-sizing: border-box;
    transition: all 0.6s ease;
}

.card-product:hover::after {
    border-color: var(--secondary-color);
    animation: drawBorder 1.2s linear forwards;
}

@keyframes drawBorder {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }

    25% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    50% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    75% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-product:hover .img img {
    transform: scale(1.05);
}

.card-product:hover .img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shine 1.5s infinite;
    z-index: 1;
}

@keyframes shine {
    100% {
        left: 150%;
    }
}

.card-product .img {
    margin: 10px;
}

.pagination-container button {
    border-radius: 4px;
    padding: 6px 12px;
    min-width: 40px;
}

.pagination-container .btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

#list-view .card-product .product-details {
    padding: 15px;
    text-align: left;
}

#list-view .card-product {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    align-items: center;
    background-color: #F0F0F0;
    justify-content: left;
    text-align: left !important;
}

#list-view .card-product .img {
    position: relative;
    height: 270px;
}

#list-view .card-product .product-details {
    padding-left: 100px;
}





.card-product h2 {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.card-product p {
    font-size: 16px;
    color: #000 !important;
    font-weight: 400;
}

.card-product a {
    font-size: 16px;
    color: #000;
    text-decoration: underline !important;
    margin: 3px 0px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.card-product a i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.card-product a:hover {
    color: var(--color-red);
    text-decoration: none;
}

.card-product a:hover i {
    transform: translateX(5px);
}

.product-modal .modal-dialog {
    max-width: 1100px;
}

.product-modal .modal-content {
    border-radius: 12px;
    overflow: hidden;
}



.product-modal .tech-specs {
    background-color: #f1f3f5;
    border-left: 4px solid #0d6efd;
}

.product-modal .tech-specs li strong {
    color: #212529;
}

.product-modal .tech-specs li span {
    color: #6c757d;
}

.modal-left {
    position: sticky;
    top: 60px;
    z-index: 1;
}

.modal-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-left img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);

    position: relative;
    z-index: 1;
}

.modal-content h2 {
    position: relative;
    font-size: 24px;
    color: #222;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 20px;
    width: 250px;
}

.modal-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00c853, #64dd17, #aeea00);

    border-radius: 2px;
    transition: width 0.3s ease;
}

.modal-content h2:hover::after {
    width: 100%;
}


.modal-left img::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(168, 224, 99, 0.3), rgba(86, 171, 47, 0.4));
    backdrop-filter: blur(6px);
    clip-path: polygon(0 0, 90% 0, 80% 100%, 10% 100%);
    border-radius: 16px;
    z-index: -1;
    transition: all 0.4s ease;
}

.modal-left:hover img::before {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
    background: linear-gradient(135deg, rgba(168, 224, 99, 0.4), rgba(86, 171, 47, 0.5));
}

.modal-left:hover img {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-list {
    padding-left: 1rem;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 0.5rem;
    height: 0.5rem;
    background: linear-gradient(135deg, #a8e063, #56ab2f);
    border-radius: 50%;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
}

.feature-list li:hover::before {
    transform: scale(1.2);
}

.feature-list h6 {
    font-size: 18px;
    color: #111;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.feature-list p {
    font-size: 16px;
    line-height: 1.5;
}

.modal-body h5 {
    font-size: 24px;
    color: #000;
}

.modal-body .col-md-6.p-4 {
    max-height: 85vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #64dd17 #f1f1f1;
    padding-right: 10px;
}

.modal-body .col-md-6.p-4::-webkit-scrollbar {
    width: 8px;
}

.modal-body .col-md-6.p-4::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body .col-md-6.p-4::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00c853, #64dd17);
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.modal-body .col-md-6.p-4::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #43a047, #388e3c);
}

.modal-body {
    position: relative;
}

.modal-body .modal-overlay {
    position: absolute;
    right: 10%;
    top: 10%;
}

.modal-body .modal-overlay h5 {
    font-size: 18px;
    color: #000;
    background-color: var(--secondary-color);
    padding: 15px 20px;
    border-radius: 15px;
}

.card-product {
    transition: all 0.3s ease;
}
.modal .click-btn1 a{
    background-color: var(--color-red);
    padding: 10px 15px;
    border-radius: 10px;
    color: #000;
    font-weight: 600;
    font-size: 14px;
}
.modal .click-btn1 {
   display: flex;
   justify-content: right;
   margin: 10px 0px;

}
.modal .col-md-7{
    padding: 15px;
}