.fade_up, .fade_down, .zoom_in, .zoom_out {
    opacity: 0;
    transition: 2s;
}

.fade_up {
    transform: translateY(-50%);
}

.fade_down {
    transform: translateY(100%);
}

.zoom_in {
    transform: scale(0.5);
}

.zoom_out {
    transform: scale(1.5);
}

.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: 2s;
}

.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: 2s;
}

.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: 2s;
    filter: brightness(0) saturate(100%) invert(47%) sepia(88%) saturate(3930%) hue-rotate(152deg) brightness(96%) contrast(101%);
}

.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: 2s;
}

.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: 2s;
}

.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: 2s;
}

.show {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.img-animation-style1, .img-animation-style2, .img-animation-style3 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.img-animation-style1 img, .img-animation-style2 img, .img-animation-style3 img {
    transform-origin: 50% 50%;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}

.img-animation-style1.active, .img-animation-style2.active, .img-animation-style3.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.img-animation-style1.active img, .img-animation-style2.active img, .img-animation-style3.active img {
    transform: scale(1) translate(0px, 0px);
}

.img-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.img-animation-style1 img {
    transform: scale(1.5) translate(-100px, 0px);
}

.img-animation-style2 {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}

.img-animation-style2 img {
    transform: scale(1.5) translate(100px, 0px);
}

.img-animation-style3 {
    clip-path: polygon(0px 0px, 100% 0px, 100% 0px, 0px 0px);
}

.img-animation-style3 img {
    transform: scale(1.5) translate(0px, -100px);
}

*, ::before, ::after {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none !important;
}

html, body {
    margin: 0px;
    padding: 0px;
    scroll-behavior: smooth;
    user-select: none;
}

body {
    cursor: none;
}

body .bubbles {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

body .bubbles span {
    position: absolute;
    bottom: -20px;
    width: 5px;
    height: 5px;
    background-color: rgb(0, 176, 173);
    border-radius: 50%;
    opacity: 0.5;
    animation: 8s linear 0s infinite normal none running bubble;
}

@keyframes bubble {
    0% {
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(20px) translateY(-150px) scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: translateX(-20px) translateY(-300px) scale(1);
        opacity: 0;
    }
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-corner {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: content-box content-box rgb(0, 176, 173);
}

::-webkit-scrollbar-track {
    background-color: rgb(23, 24, 25);
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0px;
    padding: 0px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-100 {
    margin-top: 100px;
}

header {
    width: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    transition: 0.5s;
    background-color: transparent;
}

.logo img {
    width: 300px;
    max-width: 100%;
    height: auto;
    transition: width 0.3s;
}

header.scrolled {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar_header {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 15px 30px;
}

.header_containt {
    padding: 10px 20px;
}

.sidebar_logo {
    display: none;
}

.nav li a {
    color: white;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
}

header.scrolled .nav li a {
    color: rgb(0, 176, 173);
}

.headerarrow {
    margin-left: 5px;
}

.dropdown {
    position: relative;
}

.dropdown_menu {
    position: absolute;
    min-width: 210px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    border-radius: 8px;
    top: calc(100% + 15px);
    left: 0px;
    background-color: rgb(255, 255, 255);
    z-index: 99;
    padding-left: 0px;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: 0.3s;
}

.navbar_header .dropdown_menu {
    display: none;
    position: absolute;
    left: 0px;
    top: 100%;
    background: rgb(255, 255, 255);
    list-style: none;
    padding: 0px;
    margin: 0px;
    min-width: 300px;
    z-index: 100;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
}

.navbar_header .dropdown:hover > .dropdown_menu {
    display: block;
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown_menu_sub {
    display: none;
    position: absolute;
    left: 100%;
    top: 0px;
    background: rgb(255, 255, 255);
    min-width: 200px;
    list-style: none;
    padding: 0px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

.dropdown-submenu:hover > .dropdown_menu_sub {
    display: block;
    opacity: 1;
    transform: translateX(0px);
}

.sub-arrow {
    width: 12px;
    margin-left: 5px;
    transition: transform 0.3s, filter 0.3s;
    filter: invert(60%) sepia(23%) saturate(3496%) hue-rotate(151deg) brightness(95%) contrast(90%);
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.dropdown-submenu:hover .sub-arrow, .dropdown-submenu.active .sub-arrow {
    transform: rotate(90deg);
    filter: none;
}

.dropdown_menu_sub li a {
    padding: 10px 20px;
    font-size: 16px;
    color: rgb(0, 0, 0);
    transition: color 0.3s, margin-left 0.3s;
}

.dropdown_menu_sub li:hover a {
    color: rgb(0, 176, 173) !important;
    margin-left: 5px;
}

.dropdown.active .dropdown_menu, .dropdown:hover > .dropdown_menu {
    opacity: 1;
    transform: translateY(0px);
    visibility: visible;
}

.dropdown_menu li {
    list-style: none;
}

.dropdown_menu li a {
    display: block;
    color: var(--3, #000);
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 20px;
    text-decoration: none;
    transition: color 0.3s, margin-left 0.3s;
}

.dropdown_menu li:hover a {
    color: rgb(0, 176, 173) !important;
    margin-left: 5px;
}

.headerarrow {
    margin-left: 5px;
    width: 24px;
    height: 24px;
    transition: transform 0.3s, filter 0.3s, fill 0.3s;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    filter: invert(60%) sepia(23%) saturate(3496%) hue-rotate(151deg) brightness(95%) contrast(90%) !important;
}

.dropdown.active .headerarrow, .dropdown:hover > .demo_txt .headerarrow {
    transform: rotate(180deg);
    filter: none;
    fill: rgb(0, 176, 173);
}

.dropdown.active .demo_txt, .dropdown:hover > .demo_txt p {
    color: rgb(0, 176, 173);
}

.mobile-social {
    display: none;
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    .navbar_header {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgb(255, 255, 255);
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        transition: 0.4s;
        z-index: 1000;
        overflow-y: auto;
    }

    .navbar_header .mobile-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    body.sidebar-open .navbar_header {
        right: 0px;
    }

    .navbar_header .nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav li a, .nav li p.demo_txt {
        color: rgb(0, 176, 173) !important;
        font-size: 18px;
    }

    .navbar_header .dropdown_menu, .dropdown-submenu .dropdown_menu_sub {
        position: static;
        display: none;
        box-shadow: none;
        background: none;
        padding-left: 15px;
    }

    .dropdown.show > .dropdown_menu, .dropdown-submenu.show > .dropdown_menu_sub {
        display: block !important;
    }

    .sub-arrow {
        filter: invert(100%) !important;
    }

    .headerarrow {
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    z-index: 1000;
    height: 40px;
    width: 40px;
    background-color: rgb(0, 176, 173);
    border-radius: 10px;
}

.mobile-contact {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-top: 1px solid rgb(238, 238, 238);
}

.mobile-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.mobile-contact i {
    color: var(--main-color, #00b0ad);
}

.mobile-contact a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 991px) {
    .navbar_header {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgb(255, 255, 255);
        padding: 30px 20px;
        transition: 0.4s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 9999;
    }

    .navbar_header.active {
        right: 0px;
    }

    .navbar_header .nav {
        flex-direction: column;
        gap: 18px;
    }

    .navbar_header .nav li a {
        font-size: 16px;
        font-weight: 500;
    }

    .mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgb(238, 238, 238);
    }

    .mobile-contact .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .mobile-contact i {
        color: var(--main-color, #00b0ad);
    }

    .mobile-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 25px;
    }

    .mobile-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgb(245, 245, 245);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgb(51, 51, 51);
        transition: 0.3s;
    }

    .mobile-social a:hover {
        background: var(--main-color, #00b0ad);
        color: rgb(255, 255, 255);
    }
}

.hamburger span {
    display: block;
    height: 3px;
    width: 25px;
    background: rgb(255, 255, 255);
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger span:nth-child(1) {
    top: 5px;
}

.hamburger span:nth-child(2) {
    top: 13px;
}

.hamburger span:nth-child(3) {
    top: 21px;
}

.nav a.active {
    color: rgb(0, 176, 173) !important;
}

.body-overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 90;
}

.body-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.sidebar-open {
    overflow: hidden;
}

.navbar_header {
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.header_button {
    flex-shrink: 0;
}

#language-switch {
    display: none;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgb(0, 176, 173);
    color: rgb(255, 255, 255);
    border-radius: 10px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

#language-switch:hover {
    background-color: rgb(0, 138, 133);
    transform: scale(1.05);
}

@media (max-width: 991px) {
    #language-switch {
        display: flex;
    }

    .logo img {
        width: 180px;
    }
}

@media (max-width: 991px) {
    .fixed-cta-group #language-button {
        display: none;
    }
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        width: 50px;
        height: 50px;
        background-color: rgb(0, 176, 173);
        border-radius: 10px;
        z-index: 1001;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: rgb(255, 255, 255);
        border-radius: 2px;
        transition: 0.3s;
    }

    .navbar_header {
        position: fixed;
        top: 0px;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgb(255, 255, 255);
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        transition: right 0.3s;
        z-index: 1000;
        overflow-y: auto;
        box-shadow: rgba(0, 0, 0, 0.1) -4px 0px 15px;
    }

    body.sidebar-open .navbar_header {
        right: 0px;
    }

    .navbar_header .nav {
        flex-direction: column;
        gap: 10px;
    }

    .navbar_header .nav li a, .navbar_header .nav li p.demo_txt {
        color: rgb(0, 0, 0);
        font-size: 20px;
        font-weight: 700;
        width: 100%;
        padding: 10px 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar_header .dropdown_menu, .navbar_header .dropdown_menu_sub {
        position: static;
        display: none;
        background: none;
        box-shadow: none;
        padding-left: 15px;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .dropdown.show .headerarrow {
        fill: rgb(0, 176, 173);
        transform: rotate(180deg) !important;
        filter: none !important;
    }

    .dropdown-submenu.show .sub-arrow {
        transform: rotate(90deg) !important;
        filter: none !important;
    }

    .sub-arrow {
        width: 12px;
        margin-left: 5px;
        filter: invert(0%) !important;
    }
}

.second_hero_section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home_second_slider {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.swiper-slide .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slider_content {
    max-width: 630px;
    color: white;
    text-align: start;
    position: relative;
    z-index: 2;
}

.serviceSwiper .swiper-slide {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.serviceSwiper .swiper-slide img {
    width: 100%;
    height:400px;
    object-fit: cover;
    display: block;
}

.serviceSwiper .swiper-button-next, .serviceSwiper .swiper-button-prev {
    background-color: rgb(0, 176, 173);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9 !important;
}

.serviceSwiper .swiper-button-next::after, .serviceSwiper .swiper-button-prev::after {
    color: rgb(255, 255, 255);
    font-size: 20px;
}

.slider_content h1 {
    font-family: Outfit, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 5px;
    text-align: center;
    color: rgb(0, 224, 216);
}

.border_txt {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.border_txt p {
    font-family: Outfit, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: white;
    margin: 0px;
}

.second_hero_section .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: rgb(0, 176, 173);
}

.swiper-pagination-bullet {
    background: rgb(255, 255, 255);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: rgb(0, 176, 173);
    opacity: 1;
}

@media (max-width: 992px) {
    .home_second_slider {
        height: 70vh;
    }

    .slider_content h1 {
        font-size: 36px;
        line-height: 48px;
    }

    .border_txt p {
        font-size: 16px;
        line-height: 24px;
    }
}

@media (max-width: 576px) {
    .home_second_slider {
        height: 50vh;
    }

    .slider_content {
        max-width: 100%;
        text-align: justify;
        height: 100%;
        display: flex;
        flex-direction: column;
        color: rgb(255, 255, 255);
        padding: 10px;
        align-items: start !important;
        justify-content: start !important;
    }

    .slider_content h1 {
        font-size: 24px;
        line-height: 32px;
        color: rgb(255, 255, 255);
        text-align: justify;
    }

    .border_txt {
        flex-direction: column;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }

    .border_txt p {
        font-size: 14px;
        line-height: 22px;
        color: rgb(255, 255, 255);
    }

    .second_hero_section .swiper-slide {
        padding: 0px !important;
        margin: 0px !important;
        &::before {
            background: rgba(0, 0, 0, 0.4) !important;
        }
    }
}

.offer_p {
    color: gray;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.offer_h2 {
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
    background: linear-gradient(90deg, rgb(0, 176, 173), rgb(0, 224, 216), rgb(0, 176, 173)) text;
    -webkit-text-fill-color: transparent;
    text-align: justify !important;
}

.offer_paragraph {
    max-width: 630px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.offer_section {
    padding: 100px 0px;
}

.offer_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offer_box {
    overflow: hidden;
}

.offer_box .read_more {
    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 10px;
    width: fit-content;
    margin-top: 30px;
    margin-left: -100px;
    transition: 0.3s;
}

.offer_box .read_more_text {
    opacity: 1;
    display: inline;
    white-space: nowrap;
    color: var(--10, #00b0ad);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    transition: 0.3s;
}

.offer_box:hover .read_more {
    margin-left: 1px;
}

.offer_box:hover .read_more img {
    transition: transform 0.3s;
    filter: brightness(0) saturate(100%) invert(21%) sepia(97%) saturate(3253%) hue-rotate(348deg) brightness(103%) contrast(101%);
}

.offer_head {
    gap: 20px;
    margin-top: 10px;
}

.offer_h3 {
    max-width: 260px;
    margin-top: 20px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.offer_ptxt {
    margin-top: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.chhose_section {
    background-color: rgb(245, 246, 247);
    margin: 100px 100px 0px;
    border-radius: 100px;
    padding: 100px;
}

.choose_p {
    margin-top: 100px;
    max-width: 550px;
    margin-left: 70px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.choose_img {
    border-radius: 50px;
}

.choose_row {
    gap: 100px;
    z-index: 1;
}

.choose_p2 {
    max-width: 630px;
    margin-top: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.choose_boxes {
    margin-top: 30px;
    gap: 30px;
}

.choose_h3 {
    margin: 10px 0px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}

.choose_box {
    max-width: 300px;
}

.choose_box_ptxtx {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.choose2 {
    border-radius: 50px;
    margin-top: 100px;
}

.choose_img1 {
    top: -107px;
    right: 0px;
    z-index: 0;
}

.choose_img2 {
    bottom: -55px;
    left: -100px;
    animation: 4s ease-in-out 0s infinite normal none running brushFloat2;
    z-index: 0;
}

@keyframes brushFloat2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }
}

.img-mask {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
}

.img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.border_hero1 {
    position: relative;
    width: 6px;
    background-color: rgb(0, 176, 173);
    display: flex;
    align-items: center;
}

.who_ptxt {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.border_txt1 {
    display: flex;
    align-items: stretch;
    gap: 20px;
    margin-top: 30px;
}

.who_ptxt1 {
    max-width: 630px;
    margin-top: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.who_ptxt2 {
    margin-top: 5px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.who_right {
    margin-top: 30px;
    gap: 20px;
}

.who_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.who_help_h3 {
    color: var(--5, #fff);
    font-family: Outfit;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.who_help_p {
    margin-top: 2px;
    color: var(--5, #fff);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.who_help {
    gap: 10px;
    width: 100%;
    border-radius: 50px;
    padding: 6px 30px 6px 6px;
    background-color: rgb(0, 0, 0);
}

.whohelp {
    width: 24px;
    height: 24px;
}

.who_help_img {
    width: 48px;
    height: 48px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
}

.who_imgs {
    margin: 30px 0px;
    gap: 20px;
}

.who4 {
    border-radius: 50px;
}

.whor_row {
    gap: 30px;
}

.who_help_p:hover {
    color: rgb(0, 176, 173);
}

.who1_img {
    border-radius: 0px 0px 30px 30px;
}

.who2_img {
    border-radius: 30px 30px 0px 0px;
}

.who_img_section {
    max-width: 630px;
    width: 100%;
}

.meet_section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../image/home/meet.jpg");
    background-repeat: no-repeat;
    border-radius: 100px;
    margin: 0px 100px;
    background-size: cover;
}

.meet_button {
    gap: 30px;
}

.meet_h2 {
    max-width: 740px;
    color: var(--5, #fff);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 64px;
}

.work_section {
    margin: 100px 100px 0px;
}

.work_box {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 2;
    overflow: hidden;
    border-radius: 20px;
}

.work_desc {
    max-width: 600px;
    margin: 10px auto 0px;
    font-size: 16px;
    line-height: 26px;
    color: rgb(119, 119, 119);
}

.work_link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s;
}

.work_img {
    width: 100%;
    transition: transform 0.4s, filter 0.4s;
}

.work_link:hover .work_img {
    transform: scale(1.05);
    filter: brightness(0.9);
}

.work_text {
    margin-top: 12px;
}

.work_h3 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(0, 122, 117);
    margin-bottom: 4px;
}

.work_ptxt {
    font-size: 14px;
    color: rgb(119, 119, 119);
}

.work_link:hover {
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .work_h3 {
        font-size: 16px;
    }

    .work_desc {
        font-size: 14px;
    }
}

.work_box .work_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .work_box {
        height: 240px;
    }
}

.experience_stats {
    padding: 80px 0px;
    background: url("../image/home/pattern.webp") center center / cover no-repeat;
    position: relative;
    color: rgb(255, 255, 255);
}

.experience_stats::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: rgba(5, 20, 40, 0.85);
}

.experience_stats .container {
    position: relative;
    z-index: 2;
}

.experience-title {
    font-size: 36px;
    font-weight: 600;
}

.experience-title span {
    color: rgb(0, 224, 216);
}

.experience-desc {
    margin-top: 15px;
    color: rgb(204, 204, 204);
    line-height: 1.7;
}

.stats-card, .growth-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
}

.stats-card h1 {
    font-size: 80px;
    color: rgb(0, 224, 216);
    margin-bottom: 10px;
}

.stats-card h4 {
    margin-bottom: 10px;
}

.stats-card p {
    color: rgb(221, 221, 221);
    line-height: 1.6;
}

.growth-card h5 {
    margin-bottom: 20px;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 180px;
}

.bars li {
    list-style: none;
    width: 18%;
    background: linear-gradient(to top, rgb(0, 224, 216), rgb(0, 122, 117));
    height: var(--h);
    border-radius: 6px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 12px;
    padding-bottom: 5px;
}

.dream2 {
    max-width: 550px;
    width: 100%;
    margin-left: -265px;
}

.dream_row {
    max-width: 630px;
}

.dream_pxtx {
    margin-top: 30px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.dream_input::placeholder {
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.deream_inp {
    padding: 12px 15px;
    border-radius: 10px;
    border: 2px solid var(--12, #f5f6f7);
    background: var(--5, #fff);
}

.deream_inp input[type="number"]::-webkit-outer-spin-button, .deream_inp input[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    margin: 0px;
}

.deream_inp input[type="number"] {
    appearance: textfield;
}

.dream_input {
    outline: none;
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.dream_form {
    margin-top: 30px;
    gap: 30px;
}

.dream_input1 {
    outline: none;
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

.dream_input1::placeholder {
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.dropdown_icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s;
    pointer-events: none;
}

.dream_inp.open .dropdown_icon {
    transform: translateY(-50%) rotate(180deg);
}

.custom_dropdown {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(204, 204, 204);
    border-radius: 8px;
    margin-top: 5px;
    display: none;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
}

.custom_dropdown li {
    padding: 10px 15px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    transition: background 0.2s;
}

.custom_dropdown li:hover {
    background-color: rgb(255, 36, 36);
    color: rgb(255, 255, 255);
}

.dream_txtarea {
    width: 100%;
    height: 95px;
    border-radius: 10px;
    border: 2px solid var(--12, #f5f6f7);
    background: var(--5, #fff);
    padding: 12px 15px;
    outline: none;
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    resize: none;
}

.dream_txtarea::placeholder {
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.dream_button {
    margin-top: 30px;
}

.dream_section_row {
    gap: 30px !important;
}

.dream1 {
    border-radius: 40px;
}

.drop:hover a {
    color: rgb(255, 36, 36);
}

.ui-datepicker {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(204, 204, 204);
    border-radius: 12px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 20px;
    font-family: Poppins, sans-serif;
}

.ui-datepicker-header {
    background: rgb(255, 36, 36);
    color: rgb(255, 255, 255);
    border-radius: 8px 8px 0px 0px;
    padding: 8px 0px;
}

.ui-state-active, .ui-widget-content .ui-state-active {
    background: rgb(255, 36, 36);
    border-radius: 50%;
    color: rgb(255, 255, 255) !important;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    top: 3px;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid rgb(255, 36, 36);
    background: rgb(255, 36, 36);
    color: rgb(255, 255, 255);
}

.ui-state-active, .ui-widget-content .ui-state-active {
    background: rgb(255, 36, 36);
    border-radius: 45%;
    color: rgb(255, 255, 255) !important;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid transparent;
    background: rgb(168, 169, 173);
}

.it_work {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: color-burn;
    height: 700px;
    object-fit: cover;
}

.offer_h21 {
    margin: auto;
    max-width: 630px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.it_work_ptxt {
    padding-top: 30px;
    margin: auto;
    max-width: 850px;
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.itwork_h3 {
    margin-top: 20px;
    color: var(--3, #000);
    text-align: center;
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.itwork_p {
    margin-top: 10px;
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.itwork_row {
    gap: 40px;
}

.itwork_box {
    position: relative;
    cursor: pointer;
    perspective: 1000px;
}

.itwork_img {
    position: relative;
    background-color: rgb(255, 255, 255);
    width: 140px;
    height: 140px;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.9s;
    transform-style: preserve-3d;
}

.itwork_box:hover .itwork_img {
    transform: rotateY(180deg);
}

.itwork_img img {
    position: relative;
    z-index: 2;
    transition: filter 0.3s;
}

.itwork_img::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: bottom 0.5s;
}

.itwork_box:hover .itwork_img::before {
    bottom: 0px;
}

.itwork_box:hover .itwork_img img {
    transition: unset;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(6%) hue-rotate(262deg) brightness(102%) contrast(104%);
}

.itwork_choose {
    right: 0px;
    bottom: -160px;
    animation: 4s ease-in-out 0s infinite normal none running floatUpDown;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.blog-date::before {
    bottom: 0px;
    left: -30px;
    height: 60px;
    width: 30px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.blog-date::after {
    content: "";
    bottom: 0px;
    right: -30px;
    height: 60px;
    width: 30px;
    border-bottom-left-radius: 20px;
    transition: 0.4s;
}

.blog-date {
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 20px;
    background: rgb(255, 255, 255);
    position: absolute;
    bottom: 0px;
    left: 30px;
    border-radius: 20px 20px 0px 0px;
    transition: 0.4s;
}

.blog-date::before, .blog-date::after {
    content: "";
    position: absolute;
    background-color: transparent;
    height: 60px;
    width: 30px;
    box-shadow: rgb(255, 255, 255) 0px 20px 0px 0px;
    transition: 0.4s;
}

.new_containt {
    padding: 30px;
}

.new_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_p {
    width: 100%;
    max-width: 350px;
    margin-top: 10px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_box {
    border-radius: 20px;
    border: 2px solid var(--12, #f5f6f7);
    background: var(--5, #fff);
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.new_row {
    gap: 30px;
    z-index: 1;
}

.new_img {
    height: 300px;
    width: 100%;
    border-radius: 20px 20px 20px 0px;
    transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news_box:hover .new_img {
    transform: scale(1.05);
    border-radius: 20px 20px 0px 0px;
}

.news_main_effect {
    overflow: hidden;
}

.news_box:hover {
    border-color: rgb(0, 176, 173);
}

.news_box:hover .new_h3 {
    color: rgb(0, 176, 173);
}

.news1, .news2 {
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.news2 {
    left: -280px;
}

.news1 {
    right: -278px;
}

.rollimage_section {
    margin: 0px 100px;
    border-radius: 100px;
}

.expand-img-main {
    overflow: hidden;
}

.expand-img {
    width: 100%;
}

.creative-footer {
    font-family: Poppins, sans-serif;
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 10;
}

.creative-footer .primary-footer {
    background: linear-gradient(135deg, rgb(1, 5, 16), rgb(18, 22, 40));
    border-radius: 20px 20px 0px 0px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s, background 0.3s;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: justify;
}

.footer-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.footer-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-card p {
    font-size: 14px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background-color: rgb(34, 34, 34);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: var(--theme-color);
    transform: translateY(-4px);
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.quick-links a i {
    color: rgb(0, 176, 173);
    margin-right: 5px;
}

.quick-links a:hover {
    background: rgb(0, 176, 173);
    color: rgb(1, 5, 16);
    transform: translateX(5px);
}

.quick-links a:hover i {
    color: rgb(1, 5, 16);
}

.contact-info h5 {
    margin-bottom: 10px;
}

.contact-info a {
    color: white !important;
}

.contact-info ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: rgb(255, 255, 255);
}

.contact-info ul li i {
    color: rgb(0, 176, 173);
    font-size: 18px;
    margin-right: 6px;
}

.contact_btn {
    background-color: rgb(0, 176, 173);
    color: rgb(255, 255, 255);
    font-family: Outfit, sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    width: 30%;
    margin: 20px auto 0px;
    text-align: center;
}

.contact_btn:hover {
    background-color: rgb(0, 139, 135);
}

.primary-footer .row > [class*="col-"] {
    display: flex;
}

.secondary-footer {
    background: linear-gradient(135deg, rgb(1, 5, 16), rgb(18, 22, 40));
    color: rgb(170, 170, 170);
}

.secondary-footer a {
    color: rgb(0, 176, 173);
    text-decoration: none;
}

.secondary-footer a:hover {
    text-decoration: underline;
}

#preloader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

#preloader .preloader-img img {
    width: 300px;
    height: 400px;
    animation: 2s ease-in-out 0s infinite normal none running fadeInOut;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

#preloader .bubbles {
    position: absolute;
    inset: 0px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

#preloader .bubbles span {
    position: absolute;
    bottom: -50px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    animation: auto linear 0s infinite normal none running bubbleMove;
    opacity: 0;
}

@keyframes bubbleMove {
    0% {
        transform: translateY(0px) scale(0.5);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.graf {
    width: fit-content;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text_pre {
    font-family: Outfit;
    font-size: 5em;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    position: relative;
    transform: rotate(-5deg);
}

.droplets {
    position: relative;
    width: 200px;
}

.gota1 {
    width: 8px;
    height: 150px;
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    left: calc(50% - 30px);
    top: 15px;
    animation: 15s ease-out 0s infinite normal none running gota1-move;
}

.gota2 {
    width: 6px;
    height: 70px;
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    left: calc(50% - 20px);
    top: 15px;
    animation: 10s ease-out 0s infinite normal none running gota2-move;
}

.gota1 {
    animation-timing-function: ease-out;
}

.gota1 {
    animation-timing-function: ease-out;
}

@-webkit-keyframes gota1-move {
    0% {
        height: 0px;
    }

    50% {
        height: 150px;
        background-color: rgb(255, 36, 36);
    }

    90% {
        background-color: rgb(255, 36, 36);
    }

    100% {
        background-color: transparent;
    }
}

@keyframes gota1-move {
    0% {
        height: 0px;
    }

    50% {
        height: 150px;
        background-color: rgb(255, 36, 36);
    }

    90% {
        background-color: rgb(255, 36, 36);
    }

    100% {
        background-color: transparent;
    }
}

.gota2 {
    animation-timing-function: ease-out;
}

.gota2 {
    animation-timing-function: ease-out;
}

@-webkit-keyframes gota2-move {
    0% {
        height: 0px;
    }

    50% {
        height: 70px;
        background-color: rgb(255, 36, 36);
    }

    90% {
        background-color: rgb(255, 36, 36);
    }

    100% {
        background-color: transparent;
    }
}

@keyframes gota2-move {
    0% {
        height: 0px;
    }

    50% {
        height: 50px;
        background-color: rgb(255, 36, 36);
    }

    90% {
        background-color: rgb(255, 36, 36);
    }

    100% {
        background-color: transparent;
    }
}

.scroll-top {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: rgb(0, 176, 173);
    color: rgb(255, 255, 255);
    bottom: 40px;
    inset-inline-start: 20px;
    z-index: 999;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: none;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
    transform: translateY(6px);
}

.scroll-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0px);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 8px 18px;
}

.circle-cursor {
    position: fixed;
    top: 0px;
    left: 0px;
    pointer-events: none;
    border-radius: 10px;
    box-sizing: border-box;
    z-index: 99999;
    transform-origin: center center;
    will-change: transform;
}

.circle-cursor--outer {
    width: 40px;
    height: 40px;
    border: 2px solid rgb(0, 176, 173);
}

.circle-cursor--inner {
    width: 6px;
    height: 6px;
    background: rgb(0, 176, 173);
}

.about_hero_section {
    background-image: url("../image/home/pattern.webp");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.about_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.about_heading {
    padding: 20px 0px;
    color: var(--5, #fff);
    font-family: Outfit;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 100px;
    margin: 50px 0;
}

.about_content {
    position: relative;
    z-index: 2;
    padding: 100px 0px;
}

.breadcrumb-item a {
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.breadcrumb-item a:hover {
    color: var(--10, #00b0ad);
}

.breadcrumb-item.active {
    color: var(--5, #fff);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    margin-right:15px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url("../image/svg/about_arrow.svg");
    margin: 7px 10px 0px;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0px;
}

.about_border {
    gap: 20px;
}

.border_hero2 {
    border-left: 10px solid rgb(0, 176, 173);
}

.about_who_p {
    margin-top: 30px;
    margin-bottom: 40px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.about_border1 {
    border-top: 2px solid rgb(245, 246, 247);
    margin: 30px 0px;
}

.about_flex_img {
    gap: 30px;
}

.about_flex_img1 {
    margin-top: 60px;
    gap: 40px;
}

.about_flex {
    gap: 30px;
}

.about_img {
    border-radius: 30px;
    width: 100%;
}

.about_img1 {
    margin-right: 60px;
}

.about_brush {
    top: 138px;
    z-index: 1;
    right: 0px;
    animation: 4s ease-in-out 0s infinite normal none running brushFloat2;
}

.about_help_img {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.1);
}

.about_p_txt {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.about_p_txt1 {
    color: var(--10, #00b0ad);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.about_call {
    gap: 10px;
}

.about_p_txt1:hover {
    color: rgb(0, 0, 0);
}

.about_call_row {
    gap: 100px;
}

.about_call_row1 {
    max-width: 550px;
}

.about_balty {
    top: -370px;
    left: -100px;
    z-index: 1;
    animation: 4s ease-in-out 0s infinite normal none running floatUpDown;
}

.counter_section {
    position: relative;
    z-index: 2;
}

.wedo_row {
    gap: 100px;
}

.wedo_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
}

.wedo_p_txt {
    margin-top: 10px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.baby_row {
    gap: 30px;
}

.baby_row img {
    width: 80px;
}

.wedo_img {
    border-radius: 30px;
}

.wedo_h31 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.wedo_h32 {
    max-width: 90px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

.years {
    gap: 20px;
    margin-left: 300px;
    padding-bottom: 30px;
}

.dream3 {
    max-width: 700px;
    width: 100%;
    margin-left: -265px;
}

.accordion-button:not(.collapsed) {
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    background-color: rgba(255, 36, 36, 0.1);
    box-shadow: none;
}

.accordion-item {
    border: none;
    outline: none;
}

.accordion-body {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 15px 0px;
}

.accordion-button {
    margin-top: 15px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    background-color: rgb(245, 246, 247);
    border: 0px;
    border-radius: 0px;
    overflow-anchor: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../image/svg/acc.svg");
    width: 30px;
    height: 30px;
    background-size: cover;
    filter: brightness(0) saturate(100%) invert(21%) sepia(100%) saturate(2288%) hue-rotate(345deg) brightness(104%) contrast(108%);
}

.accordion-button::after {
    width: 30px;
    height: 30px;
    content: "";
    background-image: url("../image/svg/acc.svg");
    background-size: cover;
}

.wedo_row1 {
    width: 630px;
}

.wedo_row2 {
    max-width: 550px;
}

.process_hero_section {
    background-image: url("../image/process/process.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.process_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.buiding_section {
    background-color: rgb(245, 246, 247);
}

.offer_h22 {
    margin: auto;
    max-width: 850px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.building_box {
    gap: 40px;
}

.building_slider {
    margin-right: -300px;
}

.work_section1 {
    margin: 100px;
}

.team_hero_section {
    background-image: url("../image/team/team_hero.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.team_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.team_member {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}

.blog-date1::before {
    bottom: 0px;
    left: -40px;
    height: 60px;
    width: 40px;
    border-bottom-right-radius: 20px;
}

.blog-date1::after {
    content: "";
    bottom: 0px;
    right: -40px;
    height: 60px;
    width: 40px;
    border-bottom-left-radius: 20px;
    transition: 0.4s;
}

.blog-date1 {
    background: rgb(255, 255, 255);
    position: absolute;
    bottom: 0px;
    right: 40px;
    border-radius: 25px 25px 0px 0px;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 10px 15px;
    height: auto;
    overflow: visible;
}

.blog-date1::before, .blog-date1::after {
    content: "";
    position: absolute;
    background-color: transparent;
    height: 60px;
    width: 40px;
    box-shadow: rgb(255, 255, 255) 0px 20px 0px 0px;
    transition: 0.4s;
}

.new_img1 {
    height: 300px;
    width: 100%;
    border-radius: 20px;
    transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.new_h4 {
    margin-top: 10px;
    color: var(--4, #222);
    text-align: center;
    text-overflow: ellipsis;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.team_box {
    border-radius: 20px;
    border: 2px solid var(--12, #f5f6f7);
    background: var(--5, #fff);
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team_box:hover .new_img1 {
    transform: scale(1.05);
    border-radius: 20px 20px 0px 0px;
}

.blog-date1 .main-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.social-icons {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.social-icons .icon {
    background: rgb(25, 25, 25);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
    transform: translateY(10px);
    opacity: 0;
    transition: 0.3s;
}

.team_box:hover .social-icons {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0px);
}

.team_box:hover .social-icons .icon {
    opacity: 1;
    transform: translateY(0px);
}

.team_box:hover .social-icons .icon:nth-child(1) {
    transition-delay: 0.1s;
}

.team_box:hover .social-icons .icon:nth-child(2) {
    transition-delay: 0.2s;
}

.team_box:hover .social-icons .icon:nth-child(3) {
    transition-delay: 0.3s;
}

.team_box:hover .social-icons .icon:nth-child(4) {
    transition-delay: 0.4s;
}

.team_icon {
    width: 40px;
    height: 40px;
    background-color: rgb(25, 25, 25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s;
}

.team_icon img {
    width: 22px;
    height: 22px;
    z-index: 2;
    position: relative;
}

.team_icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    z-index: 1;
}

.team_icon:hover::before {
    width: 120%;
    height: 120%;
}

.extra-team {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.extra-team.show {
    opacity: 1;
    transform: translateY(0px);
}

.team_buttom {
    margin-top: 60px !important;
}

.team_detail {
    gap: 140px;
}

.team_detail_ptxt {
    margin-top: 30px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.progress_bar {
    padding: 30px;
    border-radius: 20px;
    background: var(--12, #f5f6f7);
    margin-top: 30px;
}

.progress-bar {
    overflow: hidden;
    text-align: start;
    background-color: transparent;
}

.progress-title-holder {
    position: relative;
}

.progress-title-holder1 {
    margin-top: 30px;
}

.progress-title {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.progress-number-wrapper, .progress-number-mark {
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.progress-number-mark {
    margin-bottom: 4px;
    position: absolute;
    bottom: 0px;
    transform: translateX(-50%);
}

.progress-content-outter {
    margin-top: 15px;
    height: 4px;
    background-color: rgb(255, 255, 255);
}

.progress-content {
    height: 4px;
    width: 0%;
}

.team_detail_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.right_img {
    max-width: 36px;
    width: 100%;
    height: 36px;
}

.rigth_line {
    margin-top: 20px;
    gap: 15px;
}

.right_ptxt {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.tema_detail1 {
    position: sticky;
    top: 120px;
}

.parent-section {
    overflow: visible;
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
}

.team-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 5;
    border-radius: inherit;
}

.detail_icon {
    position: absolute;
    width: 48px;
    height: 48px;
    background-color: rgb(255, 255, 255);
    top: 10px;
    right: 10px;
    z-index: 20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail_icon img {
    width: 60%;
    height: 60%;
}

.social-media-icons {
    position: absolute;
    top: 70px;
    right: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    z-index: 15;
}

.social-media-icons .team_icon {
    width: 40px;
    height: 40px;
    background-color: rgb(25, 25, 25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-media-icons .team_icon img {
    width: 50%;
    filter: brightness(0) invert(1);
}

.tema_detail1:hover .team-image-wrapper::after {
    opacity: 1;
}

.tema_detail1:hover .social-media-icons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.team_detail_h3txt {
    color: var(--3, #000);
    text-align: center;
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.faq_hero_section {
    background-image: url("../image/faq/faq_hero.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.faq_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.pricing_hero_section {
    background-image: url("../image/pricing/pricing1.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.pricing_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.pricing_ptxt {
    margin: 20px auto auto;
    max-width: 630px;
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0px;
    height: 0px;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0px;
    background-color: rgb(204, 204, 204);
    transition: 0.4s;
}

.slider::before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
}

input:checked + .slider::before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round::before {
    border-radius: 50%;
}

.toggle-label1 {
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.toggle-label2 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.plan_boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    opacity: 1;
    transform: scale(1);
    transition: 0.4s;
}

.show-animate {
    animation: 0.6s ease 0s 1 normal forwards running fadeInUp;
}

.hide-animate {
    animation: 0.4s ease 0s 1 normal forwards running fadeOutDown;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
}

.plan_box {
    max-width: 410px;
    border: 1px solid var(--3, #000);
}

.plan_containt {
    background-color: rgb(0, 0, 0);
    padding: 30px;
}

.plan_ptxt {
    margin-top: 15px;
    color: var(--5, #fff);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
}

.plan_ptxt_span {
    color: var(--12, #f5f6f7);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.plan_containt2 {
    padding: 30px;
}

.plan_containt1 li {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}

.plan_containt1 {
    padding: 0px 30px;
}

.plan_button {
    margin-top: 30px;
}

.appointment_hero_section {
    background-image: url("../image/appointment/appointment.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.appointment_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.chhose_section2 {
    background-color: rgb(245, 246, 247);
    margin: 100px;
    border-radius: 100px;
    padding: 100px;
}

.testimonial_hero_section {
    background-image: url("../image/testimonial/testimonial.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.testimonial_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.testimonial_back1 {
    margin-top: 60px;
    max-width: 600px;
    border-radius: 30px;
    background: var(--5, #f5f6f7);
}

.testi_mySwiper1 {
    padding-top: 60px;
}

.who1_img_test {
    border-radius: 30px;
}

.who2_img_test {
    border-radius: 30px;
}

.testi_slide_box1 {
    padding: 30px;
}

.whor_row1 {
    gap: 30px;
}

.error_hero_section {
    background-image: url("../image/error/error.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.error_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.error-main-image {
    max-width: 415px;
    animation: 10s linear 0s infinite normal none running brushRotate;
}

@keyframes brushRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error-number {
    animation: 3s ease-in-out 0s infinite normal none running float404, 3s ease-in-out 0s infinite normal none running glow404;
}

@keyframes float404 {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.error-image-area {
    margin-top: 25px;
}

.error_txt {
    margin-top: 45px;
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
}

.error_button {
    margin-top: 40px !important;
}

.error-number {
    min-height: 360px;
    max-width: 274px;
}

.redirect_link img {
    transition: transform 0.6s, filter 0.5s;
}

.redirect_link:hover {
    background-color: rgb(0, 0, 0);
}

.redirect_link:hover .redirect_txt {
    color: rgb(255, 255, 255);
}

.redirect_link:hover img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(100%) saturate(0%) hue-rotate(360deg) brightness(105%) contrast(101%);
    transform: rotate(-30deg);
}

.redirect_link.active {
    background-color: rgb(0, 0, 0);
}

.redirect_link.active .redirect_txt {
    color: rgb(255, 255, 255);
}

.redirect_link.active img {
    filter: brightness(0) saturate(100%) invert(83%) sepia(100%) saturate(0%) hue-rotate(360deg) brightness(105%) contrast(101%);
    transform: rotate(-30deg);
}

.redirect_link::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    transition: left 0.6s;
    z-index: 0;
}

.redirect_link:hover::before, .redirect_link.active::before {
    left: 0px;
}

.redirect_txt, .redirect_link img {
    position: relative;
    z-index: 1;
}

.pdf_box {
    margin: 40px 0px;
    padding: 10px;
    border: 2px solid var(--12, #f5f6f7);
}

.pdf {
    width: 60px;
    height: 60px;
    background-color: rgb(245, 246, 247);
}

.pdf_icon_box {
    gap: 15px;
}

.pdf_icon_box_ptxt {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.pdf_arrow_box {
    width: 100%;
    margin-left: 10px;
    max-width: 48px;
    height: 48px;
    border: 2px solid var(--3, #000);
}

.service_back_image {
    width: 100%;
    max-width: 410px;
    min-height: 485px;
    background-image: url("../image/service/service1.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: darken;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-box {
    max-width: 210px;
}

.service_pimage {
    color: var(--5, #fff);
    text-align: center;
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.service_pimage1 {
    margin-top: 15px;
    color: var(--5, #fff);
    text-align: center;
    font-family: Outfit;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.service_h2 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px;
}

.service_title {
    gap: 30px;
}

.servive_p {
    margin-top: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.service_image {
    margin: 40px 0px;
    border-radius: 30px;
}

.service_h3 {
    margin-top: 40px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.serivce_two_iamge {
    margin-top: 40px;
}

.service_play {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin-top: 40px;
}

.service_paly_img {
    width: 100%;
    border-radius: 30px;
    display: block;
    object-fit: cover;
}

.service_play1 {
    display: flex;
    width: 100px;
    height: 100px;
    background-color: rgb(255, 255, 255);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s;
    justify-content: center;
    align-items: center;
}

.service_play1:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-placeholder {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s;
    pointer-events: none;
}

/* .service_sticky {
    position: sticky;
    top: 120px;
} */
.col-lg-12:nth-child(2) {
    margin-top: 40px;
}
/* ======================= Tables ======================= */
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 1rem;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

thead {
    background: linear-gradient(135deg, rgb(0, 176, 173), rgb(0, 122, 117));
    color: #fff;
}

thead th {
    padding: 14px 18px;
    text-align: justify;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

tbody tr {
    transition: background-color 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:hover {
    background-color: rgba(0, 176, 173, 0.06);
}

tbody td {
    padding: 14px 18px;
    color: var(--4, #222);
    vertical-align: middle;
}

tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

tbody tr:nth-child(even):hover {
    background-color: rgba(0, 176, 173, 0.08);
}

/* Table wrapper for horizontal scroll on small screens */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-responsive table {
    min-width: 500px;
}

/* Rich content inside col (WYSIWYG / editor output) */
.project-content,
.col-lg-12.project-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--4, #222);
}

.project-content > div,
.project-content > p,
.col-lg-12.project-content > div {
    text-align: justify;
    margin-bottom: 0.85em;
}

.project-content > div:empty,
.col-lg-12.project-content > div:empty {
    margin-bottom: 0.5em;
    min-height: 0;
}

.project-content h2,
.col-lg-12.project-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--3, #000);
    margin: 1.5em 0 0.6em;
    padding-bottom: 0.35em;

    text-align: justify;
}

.project-content h2:first-child,
.col-lg-12.project-content h2:first-child {
    margin-top: 0;
}

.project-content strong,
.col-lg-12.project-content strong {
    font-weight: 600;
    font-size: 1.15rem;
    color: rgb(0, 176, 173);
}

/* Tables inside rich content – override inline styles & first row as header */
.project-content table,
.col-lg-12.project-content table {
    margin: 1.25em 0;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    border: none !important;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.project-content table tbody tr:first-child td,
.col-lg-12.project-content table tbody tr:first-child td {
    background: linear-gradient(135deg, rgb(0, 176, 173), rgb(0, 122, 117));
    color: #fff !important;
    font-weight: 600;
    padding: 14px 18px;
    text-align: center;
    border: none;
}

.project-content table tbody tr td,
.col-lg-12.project-content table tbody tr td {
    padding: 14px 18px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    text-align: center;
    vertical-align: middle;
    height: auto !important;
}

.project-content table tbody tr:not(:first-child):hover td,
.col-lg-12.project-content table tbody tr:not(:first-child):hover td {
    background-color: rgba(0, 176, 173, 0.06);
}

.project-content table tbody tr:nth-child(even):not(:first-child) td,
.col-lg-12.project-content table tbody tr:nth-child(even):not(:first-child) td {
    background-color: rgba(0, 0, 0, 0.02);
}

.project_hero_section {
    background-image: url("../image/project/project_back.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.project_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.quick-view-content {
    display: none;
}

.project {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.project_img {
    border-radius: 30px;
}

.filters {
    gap: 40px;
}

.filters a {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.filter_link.active {
    color: rgb(0, 176, 173);
    border-bottom: 2px solid rgb(0, 176, 173);
}

.project_h2 {
    font-family: Outfit;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    background: linear-gradient(90deg, rgb(0, 176, 173), rgb(0, 224, 216), rgb(0, 122, 117)) text;
    -webkit-text-fill-color: transparent;
}

.project_ptxt {
    margin-top: 30px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.project_ptxt2 {
    max-width: 150px;
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.project_box {
    border: 2px solid var(--12, #f5f6f7);
    padding: 12px 20px;
}

.project_ptxt1 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
}

.project_box1 {
    margin-top: 30px;
}

.project_box2 {
    margin-top: 10px;
}

.project_two_image {
    margin-top: 30px;
    gap: 30px;
}

.project3_img {
    margin-top: 30px;
    border-radius: 30px;
}

.project_masonry {
    column-count: 3;
    --webkit-column-count: 3;
    --moz-column-count: 3;
    gap: 30px;
}

.masonry_product {
    margin-bottom: 30px;
}

.blog_hero_section {
    background-image: url("../image/blog/blog_back.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.blog_hero_section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
}

.new_row1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.custom-pagination {
    margin-top: 40px;
    gap: 20px;
}

.page-item {
    width: 60px;
    height: 60px;
    border: 2px solid rgb(245, 246, 247);
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    background: transparent;
    transition: 0.3s;
    cursor: pointer;
}

.page-item.active {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
    opacity: 1;
}

.page-item.arrow {
    cursor: pointer;
    background-color: rgb(245, 246, 247);
}

.page-item.arrow:hover {
    background-color: rgb(0, 0, 0);
}

.page-item.arrow:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(273deg) brightness(103%) contrast(103%);
}

.page-item:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
}

.searchbar {
    max-width: 60px;
    width: 100%;
    height: 60px;
    background: var(--12, #f5f6f7);
}

.blogsearch {
    padding: 10px 15px;
    width: 100%;
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    outline: none;
}

.blogsearch::placeholder {
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.search_box {
    padding: 10px;
    border: 2px solid var(--12, #f5f6f7);
    background: var(--5, #fff);
}

.blog_ptxt {
    margin-top: 40px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.blog_p_color {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.blog_color {
    gap: 10px;
}

.blog_read {
    gap: 20px;
}

.blog_tag {
    gap: 20px;
}

.blog_tab {
    margin-top: 20px;
}

.blog_ptxt1 {
    margin-top: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.blog_p_cote {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 60px;
}

.nav-link {
    padding: 0px;
}

.cote_box {
    margin-top: 40px;
    gap: 30px;
}

.blog_line {
    max-width: 100px;
    width: 100%;
    height: 2px;
    background-color: rgb(34, 34, 34);
}

.blog_line_part {
    margin-top: 20px;
    gap: 12px;
}

.blog_line_txt {
    color: var(--4, #222);
    text-align: center;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.youtub_btn {
    width: 80px;
    height: 80px;
    background-color: rgb(255, 255, 255);
}

.youtub_btn {
    transform: translate(-50%, -50%);
}

.blog_play {
    margin-top: 40px;
    overflow: hidden;
    border-radius: 30px;
}

.blog_play img.video_thumb {
    width: 100%;
    display: block;
}

.youtub_btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.3s;
}

.video-loaded iframe {
    max-width: 850px;
    width: 100%;
    height: 500px;
    border-radius: 30px;
}

.blog_border1 {
    margin: 40px 0px;
    border-top: 2px solid rgb(245, 246, 247);
}

.blog_tag_color {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 18px 20px;
    background: var(--12, #f5f6f7);
    display: inline-block;
    transition: transform 0.3s;
}

.blog_tag_color:hover {
    color: rgb(255, 255, 255);
    transform: translateY(-5px);
    background-color: rgb(255, 36, 36);
}

.blog_color_tag {
    gap: 10px;
}

.blog_heart {
    width: 60px;
    height: 60px;
    border: 2px solid rgb(245, 246, 247);
}

.blog_heart_tag {
    gap: 30px;
    position: relative;
}

.blog_heart {
    position: relative;
    width: 50px;
    height: 50px;
    background-color: rgb(255, 255, 255);
    transition: transform 0.3s;
    overflow: hidden;
}

.blog_heart img {
    position: relative;
    z-index: 5;
}

.blog_heart:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(273deg) brightness(103%) contrast(103%) !important;
}

.blog_heart::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0px;
    height: 0px;
    background-color: rgb(255, 36, 36);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s, opacity 0.4s;
    z-index: 1;
    opacity: 0;
}

.blog_heart:hover::before {
    width: 120%;
    height: 120%;
    opacity: 1;
}

.arrow-text {
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.9px;
    gap: 10px;
}

.link-title {
    max-width: 350px;
    width: 100%;
    margin-top: 10px;
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.prev a {
    text-align: left;
}

.prev .arrow-text {
    justify-content: flex-start;
}

.next {
    text-align: right;
}

.next .arrow-text {
    justify-content: flex-end;
}

.blog_h3 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.comment_inp {
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    outline: none;
    padding: 0px 10px 10px 0px;
    border-bottom: 2px solid rgb(245, 246, 247) !important;
}

.comments {
    margin-top: 30px;
    gap: 30px;
}

.comment_inp::placeholder {
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.comment_textare::placeholder {
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.comment_textare {
    color: var(--8, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    outline: none;
    resize: none;
    height: 100px;
    border-bottom: 2px solid rgb(245, 246, 247) !important;
}

.consent-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin-top: 30px;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid rgb(136, 136, 136);
    border-radius: 9px;
    margin-right: 10px;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visually-hidden:checked + .custom-checkbox {
    border-color: rgb(255, 36, 36);
    background-color: rgb(255, 36, 36);
}

.visually-hidden:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 15px;
    border-style: solid;
    border-color: white;
    border-image: initial;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
}

.agree_ptxt {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.blog_button {
    margin-top: 30px;
}

.blod_resend {
    padding: 30px;
    margin-top: 40px;
    border: 2px solid var(--12, #f5f6f7);
}

.blog_h4 {
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.blog_ptxt2 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.resent_blog {
    gap: 15px;
}

.resent_blog_border {
    border-top: 2px solid rgb(245, 246, 247);
    margin: 20px 0px;
}

.service_back_image1 {
    margin-top: 40px;
}

.new_row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact_ptxt {
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.contact_call {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.1);
}

.contact_pcall {
    color: var(--8, #a8a9ad);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.contact_pcall1 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.contact_pcall1:hover {
    color: rgb(0, 176, 173);
}

.contact_con {
    gap: 10px;
    padding-top: 20px;
    /* max-width: 300px; */
    width: 100%;
}

.contact_pcall2 {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.contact_pcall2 a {
    color: rgb(0, 0, 0);
}

.contact_icon {
    gap: 20px;
    margin-top: 10px;
}

.contact_icon a img {
    transition: transform 0.3s;
    filter: brightness(0) saturate(100%) invert(57%) sepia(93%) saturate(462%) hue-rotate(131deg) brightness(94%) contrast(95%);
}

.contact_icon a:hover img {
    transform: scale(1.2);
}

.contact_form {
    padding: 30px;
    background: rgba(168, 169, 173, 0.1);
}

.contact_inp {
    padding: 15px 20px;
    color: var(--4, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    outline: none;
}

.contact_inp[type="number"]::-webkit-inner-spin-button {
    appearance: none;
    margin: 0px;
}

.contact_inp::placeholder {
    color: var(--4, #222);
}

.contact_inp1 {
    margin-top: 20px;
}

.contact_txtarea {
    padding: 15px 20px;
    color: var(--4, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    outline: none;
    resize: none;
    height: 120px;
}

.contact_txtarea::placeholder {
    color: var(--4, #222);
}

.contact_button {
    margin-top: 30px;
}

.map-iframe {
    width: 100%;
    height: 500px;
}

.deream_inp {
    position: relative;
    align-items: center;
    gap: 8px;
}

.dream_input {
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

.calendar_icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.hidden_date {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.pulse {
    animation: 2s ease 0s infinite normal none running pulse;
}

.pulse:hover {
    animation: auto ease 0s 1 normal none running none;
}

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

    70% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 20px;
    }

    100% {
        box-shadow: rgba(255, 255, 255, 0) 0px 0px 0px 0px;
    }
}

.demo-box {
    display: block;
    background: rgb(255, 255, 255);
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 15px;
}

.demo-box img {
    border-radius: 15px;
}

.demo-box p {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    padding-top: 15px;
    text-align: center;
}

.offcanvas {
    background: rgb(245, 246, 247);
    z-index: 9999;
}

.offcanvas-title img {
    max-width: 80%;
}

.btn-close {
    --bs-btn-close-focus-shadow: none;
}

.fixed-cta-group {
    position: fixed;
    bottom: 20px;
    inset-inline-end: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fixed-cta-group .cta-icon {
    width: 50px;
    height: 50px;
    background: rgb(0, 176, 173);
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.fixed-cta-group .cta-icon:hover {
    background: rgb(0, 122, 117);
    transform: scale(1.1);
}

.fixed-cta-group .cta-icon i {
    font-size: 24px;
}

.home-qc-creative {
    position: relative;
    padding: 100px 0px;
    overflow: hidden;
}

.home-qc-creative .overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url("assets/media/lab-bg.png") center center / cover no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.home-qc-creative .container {
    position: relative;
    z-index: 2;
}

.home-qc-creative .qc-header h2 {
    font-size: 36px;
    color: rgb(13, 110, 253);
    margin-bottom: 10px;
}

.home-qc-creative .qc-header p {
    color: rgb(51, 51, 51);
    font-size: 16px;
    margin-bottom: 60px;
}

.qc-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    margin-bottom: 60px;
}

.qc-step {
    background: rgb(255, 255, 255);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 20px;
    transition: transform 0.3s;
}

.qc-step:hover {
    transform: translateY(-10px);
}

.qc-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.qc-step h4 {
    font-size: 18px;
    color: rgb(0, 138, 133);
    margin-bottom: 10px;
}

.qc-step p {
    font-size: 14px;
    color: rgb(85, 85, 85);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.device {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px;
    transition: transform 0.3s;
}

.device:hover {
    transform: translateY(-8px);
}

.device img {
    width: 180px;
    margin-bottom: 15px;
}

.device h5 {
    font-size: 18px;
    color: rgb(0, 138, 133);
}

.qc-banner {
    background: linear-gradient(135deg, rgb(13, 110, 253), rgb(10, 88, 202));
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 100px 20px;
}

.qc-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.qc-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

.qc-section, .qc-standards {
    padding: 60px 0px;
    text-align: center;
}

.qc-section h2, .qc-standards h2 {
    font-size: 32px;
    color: rgb(0, 139, 135);
    margin-bottom: 20px;
}

.qc-section p, .qc-standards p {
    font-size: 16px;
    color: rgb(85, 85, 85);
    line-height: 1.8;
}

.qc-process {
    background: rgb(245, 248, 255);
    padding: 80px 20px;
}

.qc-process h2 {
    text-align: center;
    font-size: 32px;
    color: rgb(13, 110, 253);
    margin-bottom: 50px;
}

.qc-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.qc-step {
    background: rgb(255, 255, 255);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    width: 250px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 20px;
    transition: transform 0.3s;
}

.qc-step:hover {
    transform: translateY(-8px);
}

.qc-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.qc-step h4 {
    color: rgb(0, 176, 173);
    margin-bottom: 10px;
    font-size: 18px;
}

.qc-step p {
    font-size: 14px;
    color: rgb(85, 85, 85);
    line-height: 1.6;
}

.qc-equipment {
    padding: 80px 20px;
    text-align: center;
}

.qc-equipment h2 {
    font-size: 32px;
    color: rgb(0, 122, 117);
    margin-bottom: 50px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.equipment-item {
    background: rgb(255, 255, 255);
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px;
    transition: transform 0.3s;
}

.equipment-item:hover {
    transform: translateY(-8px);
}

.equipment-item img {
    width: 180px;
    margin-bottom: 15px;
}

.equipment-item h4 {
    color: rgb(0, 122, 117);
    font-size: 18px;
    margin-bottom: 10px;
}

.equipment-item p {
    font-size: 14px;
    color: rgb(85, 85, 85);
    line-height: 1.6;
}

.qc-commitment {
    background: linear-gradient(135deg, rgb(0, 138, 133), rgb(0, 176, 173));
    color: rgb(255, 255, 255);
    padding: 80px 20px;
    text-align: center;
}

.qc-commitment h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.qc-commitment p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: auto;
}

.key-differentiators {
    padding: 100px 0px;
    background: rgb(247, 248, 250);
}

.section-header h2 {
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(90deg, rgb(0, 176, 173), rgb(0, 224, 216), rgb(0, 176, 173)) text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: rgb(119, 119, 119);
    font-size: 18px;
    margin-bottom: 10px;
}

.diff-card {
    position: relative;
    background: rgb(255, 255, 255);
    padding: 40px 32px;
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 40px;
}

.diff-card:hover {
    transform: translateY(-12px);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 30px 60px;
}

.glow-line {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 4px;
    height: 0px;
    background: linear-gradient(rgb(0, 180, 219), rgb(0, 131, 176));
    transition: height 0.4s;
}

.key-differentiators .row > div:nth-child(1) .glow-line {
    background: linear-gradient(rgb(0, 198, 255), rgb(0, 114, 255));
}

.key-differentiators .row > div:nth-child(2) .glow-line {
    background: linear-gradient(rgb(247, 151, 30), rgb(255, 210, 0));
}

.key-differentiators .row > div:nth-child(3) .glow-line {
    background: linear-gradient(rgb(86, 171, 47), rgb(168, 224, 99));
}

.diff-card:hover .glow-line {
    height: 100%;
}

.diff-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: 3s ease-in-out 0s infinite normal none running float;
}

.diff-card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.diff-card p, .diff-card li {
    color: rgb(102, 102, 102);
    font-size: 15px;
    line-height: 1.7;
}

.diff-card ul {
    padding-left: 18px;
}

.diff-card.pet .glow-line {
    background: linear-gradient(rgb(0, 198, 255), rgb(0, 114, 255));
}

.diff-card.color .glow-line {
    background: linear-gradient(rgb(247, 151, 30), rgb(255, 210, 0));
}

.diff-card.lab .glow-line {
    background: linear-gradient(rgb(86, 171, 47), rgb(168, 224, 99));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }
}

.equipment-timeline {
    padding: 100px 0px;
    background: rgb(249, 250, 251);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0px;
    width: 4px;
    height: 100%;
    background: linear-gradient(rgb(0, 138, 133), rgb(0, 176, 173));
    animation: 2s ease 0s 1 normal none running growLine;
    z-index: 0;
}

.timeline-item {
    width: 55%;
    padding: 18px 30px;
    position: relative;
}

.timeline-item.left {
    left: 0px;
    transform: translateX(-9%);
}

.timeline-item.right {
    left: 50%;
}
[dir="rtl"]  .timeline-item.left {
    right: 50% !important;
    left:0 !important;
    transform: translateX(2px);
}

[dir="rtl"] .timeline-item.right {
    left: 0 !important;
   
        transform: translateX(52px) !important;
}
.timeline-item::before {
    content: "";
    position: absolute;
    top: 36px;
    width: 18px;
    height: 18px;
    background: rgb(255, 255, 255);
    border: 4px solid rgb(0, 176, 173);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.left::before {
    right: -9px;
}

.timeline-item.right::before {
    left: -9px;
}

.timeline-item .content {
    background: rgb(255, 255, 255);
    padding: 22px 24px;
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 40px;
    transition: 0.4s;
    text-align: left;
}

.timeline-item .content:hover {
    transform: translateY(-8px);
}
@media (max-width:768px){
    .timeline {
    position: relative;
  width: 100% !important;

  
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 4px;
    height: 100%;
    background: linear-gradient(rgb(0, 138, 133), rgb(0, 176, 173));
    animation: 2s ease 0s 1 normal none running growLine;
    z-index: 0;
}

.timeline-item {
    width: 55%;
    padding: 18px 30px;
    position: relative;
}

.timeline-item.left {
    left: 0px;
    transform: translateX(0) !important;
}

.timeline-item.right {
   left:0;
     transform: translateX(0) !important;
}
[dir="rtl"]  .timeline-item.left {
    right: 0% !important;
    left:0 !important;
    transform: translateX(2px);
}

[dir="rtl"] .timeline-item.right {
    left: 0 !important;
   
        transform: translateX(0px) !important;
}
.timeline-item::before {
    content: "";
    position: absolute;
    top: 36px;
    width: 18px;
    height: 18px;
    background: rgb(255, 255, 255);
    border: 4px solid rgb(0, 176, 173);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.left::before {
    right: 0px;
}
  [dir="rtl"]  .timeline-item.left::before {
    left: 0px !important;
      right:auto !important;
}

.timeline-item.right::before {
    left: 0px;
}

.timeline-item .content {
    background: rgb(255, 255, 255);
    padding: 22px 24px;
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 15px 40px;
    transition: 0.4s;
    text-align: left;
}

.timeline-item .content:hover {
    transform: translateY(-8px);
}
}
.img-box {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}

.img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.timeline-item .content:hover img {
    transform: scale(1.05);
}

.timeline-item .icon {
    font-size: 34px;
    display: inline-block;
    margin-bottom: 10px;
    animation: 2.5s ease 0s infinite normal none running pulse;
}

.timeline-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgb(0, 176, 173);
}

[dir="rtl"] .timeline-item h4{
    text-align:start;
}

.timeline-item p {
    color: rgb(102, 102, 102);
    font-size: 15px;
    line-height: 1.6;
}

@keyframes growLine {
    0% {
        height: 0px;
    }

    100% {
        height: 100%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .timeline::before {
        left: 8px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 40px;
        text-align: left;
        left: 0px !important;
    }

    .timeline-item::before {
        left: 0px;
        right: auto;
    }

    .img-box {
        height: 160px;
    }
}

.descsection {
    padding: 80px 0px;
}

.quote-box {
    position: relative;
    max-width: 850px;
    margin: auto;
    padding: 50px 40px;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 40px;
    div:nth-child(2) {
       color: rgb(0, 176, 173);
       font-size: 22px;
    }
}

.quote-text {
    font-size: 22px;
    line-height: 1.9;
    font-style: italic;
    color: rgb(68, 68, 68);
    position: relative;
}

.quote-box::before {
    content: "❝";
    position: absolute;
    top: -25px;
    inset-inline-start: 20px;
    font-size: 80px;
    color: rgb(228, 232, 240);
    font-family: serif;
}

.quote-box {
    border-left: 5px solid rgb(2 176 173);
}
[dir="rtl"] .quote-box {
    border-right: 5px solid rgb(2 176 173);
    border-left: none;
}


.creative-section {
    padding: 100px 0px;
    background: linear-gradient(135deg, rgb(245, 247, 250), rgb(238, 242, 255));
    position: relative;
    overflow: hidden;
}

.creative-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 60px;
    position: relative;
    transition: 0.4s;
    text-align: justify !important;
}

.creative-box:hover {
    transform: translateY(-8px);
}

.creative-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, rgb(0, 176, 173), rgb(0, 224, 216), rgb(0, 176, 173)) text;
    -webkit-text-fill-color: transparent;
    text-align: justify;
}

.creative-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgb(85, 85, 85);
    margin-bottom: 30px;
}

.creative-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: rgb(0, 176, 173);
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    margin-top:10px;
    text-align: justify;
}

.creative-btn:hover {
    transform: scale(1.05);  
    color:white !important;
}
