@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');


:root {
    --primary-color: #F09206;
    --secondary-colot: #000;

    --bg-light: #FFFAF3;
    --text-white: #fff;
    --text-black: #000;
    --text-light: #777;

    --rating-color: #F5821F;
    --title-fonts: "Marcellus", serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Figtree", sans-serif;
    font-size: 16px;
    line-height: 20px;
    overflow-x: hidden;
    color: var(--text-black);
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: var(--text-black);
}

ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

img {
    max-width: 100%;
}

.form-control {
    min-height: 45px !important;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

/* ------------------------------------------
            Loader
--------------------------------------------*/
#preloader {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 99999;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    /* visibility: visible; */
}

.loader {
    width: 52px;
    height: 52px;
    border: 3px dotted var(--primary-color);
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted var(--secondary-colot);
    border-style: solid solid dotted;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    animation: rotationBack 1s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Page content styling */
#content {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

/* Fade-in animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

/* ------------------------------------------------------
                1. header
----------------------------------------------------------*/
/* header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}


.nav_bar {
    background-color: #fff;
    padding: 22px 0;
    color: white;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
}

.nav_bar .navigation,
.header_icon ul {
    display: flex;
    align-items: center;
}

.nav_bar .navigation li {
    padding: 0 15px;
}

.nav_bar .navigation li:first-child {
    padding-left: 0;
}

.nav_bar .navigation li a {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-black);
    transition: all .3s ease;
}

.nav_bar .navigation li a:hover {
    color: var(--primary-color);
    font-weight: 700;
}


.main_menu {
    position: relative;
}

.main_menu .dropdown {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    top: 50px;
    left: 0;
    width: 200px;
    z-index: 10;
    transform: translateY(-10px);
    transition: all 0.5s ease-in-out;
}

.main_menu .dropdown li {
    margin: 0;
    padding: 0;
}

.main_menu .dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.main_menu .dropdown li a:hover {
    background-color: #f6f6f6;
    color: var(--primary-color);
}


.main_menu:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


@media (max-width: 767px) {
    .navigation {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .menu-toggle input:checked~.navigation {
        display: flex;
    }

    .main_menu {
        position: relative;
    }

    .main_menu .dropdown {
        display: none;
        flex-direction: column;
        padding-left: 15px;
        position: static;
        background-color: #f9f9f9;
    }

    .main_menu.active .dropdown {
        display: flex;
        overflow-y: scroll;
        max-height: 500px;
        padding: 0;
    }

    .main_menu .dropdown li {
        padding: 10px 15px;
    }
}


@media (max-width: 480px) {
    .brand_logo img {
        width: 150px;
    }

    .menu-toggle {
        display: block;
    }

    .header_icon ul {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 10px 0;
    }
}




.main_menu .sub_menu {
    position: a;
}

.nav_bar .brand_logo img {
    width: 130px;
}

.header_icon ul li {
    padding: 0 7px;
}

.header_icon ul li:last-child {
    padding-right: 0;
}

.header_icon ul li a {
    color: var(--text-black);
}

.menu-toggle {
    display: none;
}

#checkbox {
    display: none;
}

.toggle {
    position: relative;
    width: 30px;
    cursor: pointer;
    margin: auto;
    display: block;
    height: 21px;
}

.bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 2px;
    background: var(--secondary-colot);
    opacity: 1;
    transition: 0.35s cubic-bezier(.5, -0.35, .35, 1.5) 0s;
}

.bar--top {
    bottom: calc(50% + 11px + 2px);
}

.bar--middle {
    top: calc(50% - 2px);
}

.bar--bottom {
    top: calc(50% + 11px + 2px);
}

#checkbox:checked+.toggle .bar--top {
    transform: rotate(45deg) translate(11px, 11px);
}

#checkbox:checked+.toggle .bar--middle {
    opacity: 0;
}

#checkbox:checked+.toggle .bar--bottom {
    transform: rotate(-45deg) translate(11px, -11px);
}

.nav_bar .navigation li a.active {
    color: var(--primary-color);
} */

.header.header-scrolled {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

#header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    transition: all 0.3s ease;
    padding: 20px 15px;
}

.header {
    padding: 22px 0;
    color: #fff;
    position: relative;
}

.brand_logo img {
    width: 130px;
}

.header .nav_bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav>li {
    position: relative;
}

.nav a {
    color: var(--text-black);
    text-decoration: none;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 600;
}

.nav a:hover {
    color: var(--primary-color);
}

.main_menu:hover .submenu,
.main_menu .submenu li:hover .petamenu {
    display: block;
    z-index: 9999;
}

/* Submenu */
.submenu,
.petamenu {
    display: none;
    background-color: #fff;
    position: absolute;
    left: 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.submenu {
    top: 100%;
    width: 230px;
}

.submenu li {
    width: 100%;
    padding: 12px 15px;
}

.submenu li a {

    font-size: 16px;
}

.petamenu {
    top: 0;
    left: 100%;
    width: 200px;
}

.submenu li a,
.petamenu li a {
    padding: 0;
}

/* Mobile Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background: var(--text-black);
    height: 3px;
    margin: 4px 0;
    width: 25px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .submenu {
    display: none;
}

.mobile-menu .submenu.active,
.mobile-menu .petamenu.active {
    display: block;
}

.nav_bar .header_icon ul {
    display: flex;
    align-items: center;
    gap: 13px;
}

.nav .active {
    color: var(--primary-color);
}


@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu .submenu,
    .mobile-menu .petamenu {
        position: static;
        box-shadow: none;
        width: 100%;
    }


    .mobile-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .mobile-menu li {
        padding: 15px 0;
    }

    .submenu li {
        padding: 12px 20px;
    }

    .header_icon {
        display: none;
    }


}


/* --------------------------------------------------
            2. slider css
------------------------------------------------------*/
.hero_section .slider {
    position: relative;
    overflow: hidden;
    height: 700px;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease-in-out;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slide:nth-child(1) {
    background-color: #fce7eb;
}

.slide:nth-child(2) {
    background-color: #e7f0fc;
}

.slide:nth-child(3) {
    background-color: #e7fcf0;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide .content {
    max-width: 50%;
    padding: 2rem 2rem 2rem 16rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-out 0.3s;
}

.slide.active .content {
    opacity: 1;
    transform: translateY(0);
}

.heading {
    font-family: var(--title-fonts);
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slider_btn {
    padding: 0.875rem 1.7rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.slider_btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: #f90;
    color: white;
    transition: all .3s ease;
}

.btn-primary:hover {
    background: var(--secondary-colot);
}

.btn-secondary {
    background-color: white;
    color: #333;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.5s ease-out 0.5s;
}

.slide.active .image-container {
    transform: translateX(0);
    opacity: 1;
}

.slide-image {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 2rem;
    height: 0.25rem;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #f90;
}

@media (max-width: 768px) {
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .content {
        padding: 1rem;
    }

    .buttons {
        justify-content: center;
    }

    .image-container {
        margin-top: 2rem;
    }

    .slide-image {
        max-width: 80%;
    }
}


/* --------------------------------------------------
            3. our feature
------------------------------------------------------*/
section {
    margin: 80px 0 0 0;
}

.feature_area {
    background: var(--bg-light);
    padding: 15px 0;
}

.feature_area .company_feature {
    display: flex;
    justify-content: space-between;
}

.feature_area .company_feature .feature_list {
    display: flex;
    gap: 8px;
}

.feature_area .company_feature .feature_list .icon i {
    color: var(--primary-color);
    font-size: 20px;
}

.feature_area .company_feature .feature_list .text span {
    font-weight: 700;
    font-size: 14px;
}

/* Horizontal scroll on small screens */
@media (max-width: 991px) {
    .feature_area .company_feature {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 10px;
    }

    .feature_area .company_feature::-webkit-scrollbar {
        display: none;
    }

    .feature_area .company_feature .feature_list {
        flex: 0 0 auto;
    }
}

/* ------------------------------------------------------
            4. category list
---------------------------------------------------------*/
.category_area .category_title {
    text-align: center;
    margin: 0 0 30px 0;
}

.category_area .category_title h4 {
    font-size: 36px;
    font-family: var(--title-fonts);
    color: var(--primary-color);
}

.category_area .category_title h5 {
    font-size: 36px;
    font-family: var(--title-fonts);
    color: var(--secondary-colot-color);
}

.industry_service {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.industry_service .industry_list a .card {
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    padding: 15px 0;
    transition: all .3s ease;
    height: 100%;
}

.industry_service .industry_list a .card:hover {
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, .1);
    border: transparent;
}

.industry_service .industry_list a .card .card-body {
    padding: 15px;
}


.industry_service .industry_list a {
    text-align: center;
}

.industry_img img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.industry_name h5 {
    margin: 15px 0 0 0;
    font-size: 20px;
    font-family: var(--title-fonts);
    color: #333;
}


/* ------------------------------------------------------
            5. why choose us
---------------------------------------------------------*/
.why_choose_area .about_me .text_details .sub_heading h4 {
    font-size: 26px;
    color: var(--primary-color);
    padding: 0 0 10px 0;
}

.why_choose_area .about_me .text_details .main_title h3 {
    font-family: var(--title-fonts);
    font-size: 38px;
}

.why_choose_area .about_me .text_details .feature_list .feature {
    display: flex;
    gap: 10px;
    margin: 0 0 30px 0;
}

.feature_icon img {
    max-width: 64px;
    max-height: 64px;
}

.why_choose_area .about_me .text_details .feature_list .feature .feature_text h5 {
    font-size: 24px;
    font-weight: 600;
    padding: 0 0 6px 0;
}

.why_choose_area .about_me .text_details .feature_list .feature .feature_text p {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 24px;
}

.why_choose_area .about_me .feature_images {
    display: flex;
    position: relative;
}

.why_choose_area .about_me .feature_images .feature_image_left {
    margin: 50px 20px 0 0;
}

.why_choose_area .about_me .feature_images .feature_image_left img,
.why_choose_area .about_me .feature_images .feature_image_right img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

.why_choose_area .about_me .feature_images .feature_image_left img:first-child,
.why_choose_area .about_me .feature_images .feature_image_right img:first-child {
    margin: 0 0 20px 0;
}

.why_choose_area .about_me .feature_images .feature_bottom {
    position: absolute;
    z-index: -1;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    justify-content: center;
}

.why_choose_area .about_me .feature_images .feature_bottom .box {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #FFE3CB;
}


/* ----------------------------------------------------------
            6. Video Section
-------------------------------------------------------------*/
.video_play_area {
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
        url('../image/banner-2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.video_play_area .video_section .process-section .video_content {
    text-align: center;
    color: white;
    max-width: 1200px;
    position: relative;
}

.video_play_area .video_section .process-section .video_content h1 {
    font-size: 4rem;
    font-family: 'Marcellus', serif;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.play-button {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 50%;
}

.play-button:hover {
    transform: scale(1.1);
}

.circle-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
    padding: 4px;
}

.circle-text svg {
    width: 100%;
    height: 100%;
    fill: none;
}

.circle-text path {
    fill: none;
}

.circle-text text {
    font-size: 12px;
    letter-spacing: 3px;
    fill: #000;
    text-transform: uppercase;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #ff4444;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .play-button {
        width: 90px;
        height: 90px;
    }
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 800px;
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: -30px;
    top: -30px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .play-button {
        width: 90px;
        height: 90px;
    }

    .modal-content {
        width: 95%;
    }

    .close {
        right: 0;
        top: -40px;
    }
}


/* ----------------------------------------------
            7. product area
-------------------------------------------------*/
.product_area .product_title {
    text-align: center;
    margin: 0 0 30px 0;
}

.product_area .product_title h4 {
    font-size: 36px;
    font-family: var(--title-fonts);
    color: var(--primary-color);
}

.product_area .product_title h5 {
    font-size: 36px;
    font-family: var(--title-fonts);
    color: var(--secondary-colot-color);
}

.product_area .product_list .product_item {
    border: 1px solid #E6E6E6;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    height: 100%;
    transition: all .3s ease;
}

.product_area .product_list .product_item:hover {
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, .1);
    border: transparent;
}

.product_area .product_list .product_item .product_image img {
    object-fit: cover;
    border-radius: 10px;
    margin: 0 0 15px 0;
}

.product_area .product_list .product_item .product_detail .title h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.product_area .product_list .product_item .product_detail .product_desc p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 18px;
    color: var(--text-light);
    margin: 0 0 13px 0;
    font-weight: 500;
}

.product_area .product_list .product_item .product_detail .price_rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product_area .product_list .product_item .product_detail .price_rating .price span {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
}

.product_area .product_list .product_item .product_detail .price_rating .rating i {
    font-size: 12px;
    color: var(--primary-color);
}


/* ----------------------------------------------
            8. brand slider
-------------------------------------------------*/
.brand_logo_area {
    background: var(--bg-light);
    padding: 50px 0;
    text-align: center;
}

.brand_logo_area .brand_logo_text h5 {
    font-size: 35px;
    font-family: var(--title-fonts);
    color: var(--primary-color);
    margin: 0 0 40px 0;
}

.brand-slider .swiper-wrapper {
    display: flex;
    align-items: center;
}

.brand-slider .swiper-wrapper .swiper-slide {
    text-align: center;
}

/* --------------------------------------------------
                9. testimonial slider
------------------------------------------------------*/

.testimonial_area .testimonial_title {
    text-align: center;
    margin: 0 0 40px 0;
}

.testimonial_area .testimonial_title h4 {
    font-size: 36px;
    font-family: var(--title-fonts);
    color: var(--primary-color);
}

.testimonial_area .testimonial_title h5 {
    font-size: 36px;
    font-family: var(--title-fonts);
    color: var(--secondary-colot);
}

.testimonial_area .testimonial_slider .swiper-slide {
    border: 1px solid #E6E6E6;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.testimonial_area .testimonial_slider .swiper-slide .client_review .rating {
    margin: 0 0 10px 0;
}

.testimonial_area .testimonial_slider .swiper-slide .client_review .rating i {
    color: var(--primary-color);
    padding: 0 3px 0 0;
}

.testimonial_area .testimonial_slider .swiper-slide .client_review .review {
    margin: 0 0 25px 0;
}

.testimonial_area .testimonial_slider .swiper-slide .client_review .review p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial_area .testimonial_slider .swiper-slide .client_review .client_details {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial_area .testimonial_slider .swiper-slide .client_review .client_details .photo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}


.testimonial_area .testimonial_slider .swiper-slide .client_review .client_details .name h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.testimonial_area .testimonial_slider .swiper-slide .client_review .client_details .name h6 {
    font-size: 14px;
    color: var(--text-light);
}

/* --------------------------------------------------------
            10. Blog Section
-----------------------------------------------------------*/
.blog_area .blog_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 25px 0;
}

.blog_area .blog_title h4 {
    font-size: 35px;
    font-family: var(--title-fonts);
    color: var(--primary-color);
}

.blog_area .blog_title .all_btn a {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    transition: all .3s ease;
}

.blog_area .blog_title .all_btn a:hover {
    background: var(--secondary-colot);
}

.blog_area .blog_title .all_btn a span {
    padding: 0 0 0 5px;
}

.blog_area .blog_list .blog_item .blog_img img {
    border-radius: 10px;
    min-height: 260px;
    object-fit: cover;
    margin: 0 0 15px 0;
}

.blog_area .blog_list .blog_item .cate_date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px 0;
}

.blog_area .blog_list .blog_item .cate_date .category {
    background: #FFF4EB;
    color: var(--primary-color);
    padding: 3px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
}

.blog_area .blog_list .blog_item .blog-title h4 {
    font-family: var(--title-fonts);
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: 500;
}

.blog_area .blog_list .blog_item .blog_desc p {
    font-size: 14px;
    line-height: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    color: var(--text-light);
}

/* ------------------------------------------------------
                Blog Details
----------------------------------------------------------*/
.blog_title {
    margin: 0 0 20px 0;
}

.blog_author .blog_owner {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog_author .blog_owner img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50px;
}

.blog_author .blog_owner .name h5 {
    font-weight: 600;
}

.blog_author .blog_owner .name p {
    font-size: 14px;
    color: #666;
}

.blog_img {
    margin: 30px 0;
}

.blog_img img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.blog_description p {
    padding: 0 0 15px 0;
}

/* -------------------------------------------------
        11. newsletter
----------------------------------------------------*/
.newsletter {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    padding: 30px 0;
}

.newsletter .newsletter_contact .form_title h5 {
    font-family: var(--title-fonts);
    font-size: 36px;
}

.newsletter .newsletter_contact .form-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter .newsletter_contact .form-group button {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 9.5px 40px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s ease;
}

.newsletter .newsletter_contact .form-group button:hover {
    background: var(--secondary-colot);
}

/* -----------------------------------------------------
            12. Footer 
---------------------------------------------------------*/
.footer_area {
    margin: 40px 0;
}

.footer_area .company_info {
    border-right: 1px solid #d2d2d2;
}

.footer_area .company_info .logo img {
    width: 180px;
    margin: 0 0 20px 0;
}

.footer_area .company_info .company_desc p {
    font-size: 15px;
    color: var(--text-light);
    padding: 0 10px 0 0;
    margin: 0 0 20px 0;
}

.footer_area .company_info .company_social ul {
    display: flex;
    align-items: center;
    gap: 10px
}

.footer_area .footer_menu .contact h6 {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
    padding: 0 0 5px 0;
}

.footer_area .footer_menu .contact h5 {
    font-weight: 600;
    font-size: 15px;
}

.footer_area .footer_menu .contact h4 {
    font-size: 16px;
}

.footer_area .footer_menu .contact:first-child {
    margin: 0 0 30px 0;
}

.footer_area .footer_menu .footer_list h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.footer_area .footer_menu .footer_list ul li {
    padding: 0 0 10px 0;
}

.footer_area .footer_menu .footer_list ul li a {
    color: #737373;
    transition: all 0.4s ease;
    font-weight: 500;
}

.footer_area .footer_menu .footer_list ul li a:hover {
    padding-left: 5px;
    color: var(--primary-color);
}

.footer_bottom {
    border-top: 1px solid #e6e6e6;
    text-align: center;
    padding: 15px 0;
}

.footer_bottom h4 {
    font-size: 16px;
}


/* ----------------------------------------------------
            13. About us page design
--------------------------------------------------------*/
.breadcumb {
    background: #f0f0f0;
    padding: 15px 0;
}

.breadcumb .breadcumb_text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.breadcumb .breadcumb_text h5 {
    font-size: 18px;
}

/* ----------- our story area------------------------ */
.about_us .about_text h5 {
    color: var(--primary-color);
    text-transform: uppercase;
    padding: 0 0 8px 0;
    font-size: 22px;
}

.about_us .about_text h4 {
    font-family: var(--title-fonts);
    font-size: 36px;
    margin: 0 0 20px 0;
}

.about_us .about_text p {
    color: var(--text-light);
    font-weight: 500;
}

.about_us .about_text p:last-child {
    margin: 15px 0 0 0;
}

.about_us .about_image img {
    border-radius: 10px;
    max-height: 430px;
    object-fit: cover;
    width: 100%;
}


/* --------------- brand story ---------------------- */
.brand_story_area .brand_image img {
    border-radius: 10px;
    margin: 0 0 20px 0;
}

.brand_story_area .brand_story_text p {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 0 15px 0;
    font-weight: 500;
}

/* -----------------------------------------------------------
           14. Contact Us Page
--------------------------------------------------------------*/
.contact_bg {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
}

.contact_bg .title h5 {
    font-family: var(--title-fonts);
    font-size: 35px;
    margin: 0 0 20px 0;
}

.contact_bg .contact_add {
    margin: 0 0 30px 0;
}

.contact_bg .contact_add h6 {
    padding: 0 0 5px 0;
}

.contact_bg .contact_add h5 {
    font-size: 16px;
    color: var(--text-light);
    padding: 0 0 5px 0;
}

.contact_bg .contact_add p span {
    padding-right: 10px;
}

.contact_bg .contact_add p a {
    padding: 0 10px 0 0;
}

.form_btn {
    background: var(--primary-color);
    width: 100%;
    text-align: center;
    color: var(--text-white);
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s ease;
}

.form_btn:hover {
    background: none;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 0;
}


/* -----------------------------------------------------------
           15. product Us Page
--------------------------------------------------------------*/

.product_list_sidebar {
    position: sticky;
    top: 100px;
}

.product_list_area .product_list_sidebar .filter_area h5 {
    font-weight: 600;
    padding: 0 0 18px 0;
}

.product_list_area .product_list_sidebar .filter_area .filter_list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 13px 0;
}


.price-range {
    padding-top: 16px;
    margin: 0 0 20px 0;
}

.price-range h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 5px;
    background-color: #e5e5e5;
    border-radius: 2.5px;
}

.slider-range {
    position: absolute;
    height: 100%;
    background-color: #333;
    border-radius: 2.5px;
}

.slider-thumb {
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.price-values span {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}


/* -----------------------------------------------------------
           16. product detail Page
--------------------------------------------------------------*/

.product_image img {
    width: 100%;
}

.product_details .product_info .stock_tag h6 {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 5px 25px;
    border-radius: 50px;
    text-transform: uppercase;
    width: max-content;
    margin: 0 0 15px 0;
}

.product_details .product_info h3 {
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.product_details .product_info .price h5 {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 700;
    padding: 0 0 10px 0;
}

.product_details .product_info .inquiry_btn {
    border-bottom: 1px solid #ddd;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
}

.product_details .product_info .inquiry_btn button {
    background: var(--primary-color);
    color: var(--text-white);
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 0;
    transition: all .3s ease;
}

.product_details .product_info .inquiry_btn button:hover {
    background-color: var(--secondary-colot);
}

.product_details .product_info .product_categorie h5 {
    font-size: 16px;
    font-weight: 600;
}

.product_details .product_info .product_categorie h5 span {
    color: var(--text-light);
}

/* ------------- product information tab------------------ */

#tile-1 .tab-pane {
    padding: 15px;
}

#tile-1 .nav-tabs {
    position: relative;
    background-color: #fff;
    /*   box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); */
    border-radius: 6px;
}

#tile-1 .nav-tabs li {
    margin: 0px !important;
}

#tile-1 .nav-tabs li a {
    position: relative;
    margin-right: 0px !important;
    padding: 0 40px 13px 40px !important;
    font-size: 16px;
    font-weight: 600;
    border: none !important;
    color: #989898;
}



#tile-1 .slider {
    display: inline-block;
    width: 30px;
    height: 1px;
    border-radius: 3px;
    background-color: var(--secondary-colot);
    position: absolute;
    z-index: 1200;
    bottom: 0;
    transition: all .4s linear;

}

#tile-1 .nav-tabs .active {
    background-color: transparent !important;
    border: none !important;
    color: var(--secondary-colot) !important;
}

.product_description p {
    padding: 0 0 20px 0;
    color: #737373;
    line-height: 20px;
    font-size: 16px;
    font-weight: 500;
}

.product_description p:last-child {
    padding: 0;
}

.client_review .review_list .review {
    display: flex;
    gap: 20px;
    margin: 0 0 30px 0;
}

.client_review .review_list .review .photo img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.client_review .review_list .review .review_details .rating {
    padding: 0 0 1px 0;
}

.client_review .review_list .review .review_details .rating i {
    font-size: 12px;
    color: var(--rating-color);
}

.client_review .review_list .review .review_details .name h5,
.client_review .review_list .review .review_details .date h6 {
    font-size: 14px;
    padding: 0 0 2px 0;
}

.client_review .review_list .review .review_details .review_desc p {
    padding: 5px 0 0 0;
    font-size: 16px;
    color: var(--text-light);
}

.review_add_form .title {
    font-family: var(--title-fonts);
    font-size: 30px;
    margin: 0 0 20px 0;
}

.releted_title h5 {
    font-size: 26px;
    margin: 0 0 20px 0;
}

.rating {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.rating i {
    font-size: 18px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.rating i.selected {
    color: #f39c12;
}

.rating i:hover,
.rating i:hover~i {
    color: #f39c12;
}


/* ------ inquiry form---------------- */
.modal_inquiry .modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
}

#inquiryModal h2 {
    text-align: center;
    font-family: var(--title-fonts);
    font-size: 26px;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #e6e6e6;
    margin: 0 0 20px 0;
}

/* Modal content */
.modal_inquiry .modal-content {
    background-color: white;
    margin: auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    /* text-align: center; */
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close button */
.modal_inquiry .modal-content .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .modal_inquiry .modal-content {
        width: 95%;
    }
}

.submit_btn {
    padding: 8px 40px;
    text-transform: uppercase;
    font-weight: 600;
    border: none;
}

/*--------------------------------------------------------------
#          17. Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 25px;
    bottom: 25px;
    z-index: 99999;
    background: #F4932A;
    width: 45px;
    height: 45px;
    border-radius: 40px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 20px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--secondary-colot);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
               18. Privacy Policy
--------------------------------------------------------------*/
.policy_content .policy_text h3 {
    padding: 0 0 10px 0;
    font-family: var(--title-fonts);
    font-weight: 600;
    font-size: 24px;
}

.policy_content .policy_text p {
    padding: 0 0 20px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #666;
}

.policy_content .policy_text ul {
    padding-left: 20px;
    margin: 0 0 10px 0;
}

.policy_content .policy_text ul li {
    list-style-type: disc;
    padding: 0 0 10px 0;
}

/*--------------------------------------------------------------
               19. Terms And Condition
--------------------------------------------------------------*/
.terms_text h4 {
    font-family: var(--title-fonts);
    font-weight: 600;
    padding: 0 0 10px 0;
    font-size: 20px;
}

.terms_text p {
    color: #737373;
    padding: 0 0 20px 0;
}

.terms_text ul {
    margin: 0 0 10px 0;
    padding-left: 20px;
}

.terms_text ul li {
    list-style-type: disc;
    padding: 0 0 10px 0;
}

pre {
    text-wrap: auto;
    font-family: jost;
    font-size: 16px;
    text-align: justify;
    overflow-y: hidden;
}


/* ----------------------------------------------
          Pagination and spinner
-------------------------------------------------*/
#pagination-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.pagination-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pagination-btn:disabled {
    background-color: #d4d4d4;
    cursor: not-allowed;
}

.pagination_button {
    display: flex;
    align-items: center;
    gap: 5px;
}

#page-input {
    width: 50px;
    padding: 5px;
    text-align: center;
}

.arrow-btn {
    background-color: #e0e0e0;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.arrow-btn:disabled {
    background-color: #d4d4d4;
    cursor: not-allowed;
}


/* Animation for hospital cards */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Dark overlay with opacity */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner inside the overlay */
.spinner {
    width: 30px;
    height: 30px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Fade-in animation for hospital cards */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}