@import url(https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.5.7/jquery.fancybox.min.css);
@import url(./animate.css);
/* Global */
:root {
    --PrimaryColor: #d22224;
    --SecondaryColor: #1d426f;
    --GrayColor: #696967;
    --PlusJakarta: "Plus Jakarta Sans", sans-serif;
    --e-global-color-dcc9e11: #365d8d;
    --e-global-color-a2e747e: #1d426f;
}
html {
    scroll-behavior: smooth;
    transition: 0.5s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 30px;
    margin: 0px;
    padding: 0px;
    font-weight: 600;
    font-family: var(--PlusJakarta);
}
ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}
li {
    padding: 0px;
    margin: 0px;
    font-size: 15px;
    font-family: var(--PlusJakarta);
}
a {
    font-size: 15px;
    font-family: var(--PlusJakarta);
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
p {
    font-size: 15px;
    padding: 0px;
    margin: 0px;
    font-family: var(--PlusJakarta);
}
body {
    padding: 0px;
    margin: 0px;
    box-sizing: content-box;
    transform: 0.5s;
}
* {
    transition: 0.5s;
}
span {
    padding: 0px;
    margin: 0px;
    font-family: var(--PlusJakarta);
}
input,
textarea,
button,
select {
    font-family: var(--PlusJakarta);
}
::selection {
    background-color: var(--PrimaryColor);
    color: #fff;
}
/* Start CSS */
.floating-whatsapp-container {
    position: fixed;
    bottom: 50px;
    left: 15px;
    z-index: 1;
}
.floating-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: glow 3s infinite;
}
.floating-whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}
.floating-whatsapp-button svg {
    width: 28px;
    height: 28px;
    z-index: 2;
}
/* Reduced Pulse Animation Rings */
.pulse-ring,
.pulse-ring-2 {
    position: absolute;
    border: 2px solid #25d366;
    border-radius: 50%;
    animation: pulse-animation-small 2s infinite;
    opacity: 0;
}
.pulse-ring {
    width: 60px;
    height: 60px;
}
.pulse-ring-2 {
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}
.pulse-ring-2:hover {
    color: #fff;
}
@keyframes pulse-animation-small {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}
.phone_lefts-side a {
    position: fixed;
    bottom: 150px;
    color: white;
    animation: topBottom 4s infinite;
    z-index: 1;
    left: 20px;
    background: var(--SecondaryColor);
    color: white;
    padding: 10px 16px;
    border-radius: 50%;
    font-size: 20px;
    animation: bounce 4s infinite alternate;
}
/* Send Enquire */
.enquiry {
    position: fixed;
    z-index: 1;
    bottom: 230px;
    left: 20px;
    height: 50px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.enquiry i {
    float: left;
    z-index: 1;
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background: var(--PrimaryColor);
    transition: 0.5s;
}
.enquiry strong {
    background-color: #171b1e;
    line-height: 28px;
    color: #000;
    padding: 10px 20px;
    border-radius: 0 30px 30px 0;
    height: 45px;
    float: left;
    font-size: 15px;
    margin-top: 3px;
    margin-left: 35px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}
.modal-header {
    background: #fff;
    border-bottom: 1px solid #e1e1e1;
}
.modal-body {
    background: #fff;
}
.modal-body input {
    height: 45px;
    background-color: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 10px;
    font-size: 14px;
}
.modal-body select {
    height: 45px;
    background-color: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 10px;
    font-size: 14px;
}
.modal-body select option {
    color: #000;
    font-size: 14px;
}
.modal-body select:focus {
    outline: none;
}
.modal-body textarea {
    height: 100px;
    background-color: transparent;
    border: none;
    color: #000;
    border-bottom: 1px solid #e1e1e1;
    font-size: 14px;
}
.modal-body input::placeholder {
    color: #000;
}
.modal-body textarea::placeholder {
    color: #000;
}
.modal-body input:focus {
    outline: none;
}
.modal-body textarea:focus {
    outline: none;
}
.modal-body button {
    width: 100%;
    border: none;
    padding: 10px 0;
    background: var(--PrimaryColor);
    border-radius: 5px;
    transition: 0.5s;
    border-radius: 15px;
}
.modal-body button:hover {
    background-color: var(--SecondaryColor);
    color: #fff;
}
.modal-header span {
    font-size: 25px;
}
.modal-session {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}
.modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    z-index: 2;
}
.floating-whatsapp-container a:hover {
    color: #fff;
}
/* Mobile Buttons */
.mobile-three-item {
    text-align: center;
    display: none;
    position: fixed;
    z-index: 2;
    bottom: 0;
    width: 100%;
}
.mobile-three-item li {
    display: inline-block;
    margin-right: 0;
    width: 32%;
}
.mobile-three-item li:nth-child(1) {
    background-color: var(--PrimaryColor);
}
.mobile-three-item li:nth-child(2) {
    background-color: #64b161;
}
.mobile-three-item li:last-child {
    background-color: var(--SecondaryColor);
}
.mobile-three-item li a {
    padding: 5px 0;
    color: #fff;
}
.mobile-btn-animation {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 30%;
    color: white;
    text-align: center;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 2.5%;
    z-index: 1000;
    background-color: #000;
}
.mobile-btn-animation a {
    color: white;
}
#mobile-call-container a {
    width: 100%;
    min-width: 100%;
}
/*Navbar*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--SecondaryColor);
    justify-content: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li {
    position: relative;
}
.nav-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    padding: 8px 16px;
    transition: 0.3s;
    font-size: 17px;
}
/* .nav-menu a:hover {  background: #222;} */
/* SUBMENU WITH FLIP */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden; /* Flip animation */
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: top;
    transition:
        transform 0.3s ease,
        opacity 0.2s ease,
        visibility 0.3s;
    backface-visibility: hidden;
    z-index: 9;
    border-radius: 15px;
}
.dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: perspective(400px) rotateX(0);
}
/* 3rd level */
.submenu .submenu {
    top: 0;
    left: 100%;
    transform-origin: left;
    transform: perspective(400px) rotateY(90deg);
}
.dropdown:hover > .submenu .submenu {
    transform: perspective(400px) rotateY(0);
}
/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        height: 100vh;
        background: #111;
        flex-direction: column;
        padding-top: 70px;
        transition: 0.4s;
        transform: none; /* Reset flip on mobile */
    }
    .nav-menu.active {
        right: 0;
    }
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none; /* Reset flip on mobile */
        transition: none;
    }
    .dropdown.active > .submenu {
        display: block;
    }
}
.menu-toggle {
    z-index: 99;
}

.menu-toggle {
    z-index: 99999;
}
@media (max-width: 768px) {
    .submenu {
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        display: none;
        transform: none !important;
        transition: none !important;
        background: #323232;
    }
    .dropdown.active > .submenu {
        display: block;
    }
}
.menu-toggle .fa-xmark {
    color: #fff;
}
.mobile-nav li a {
    color: #fff;
}
.mobile-nav ul .submenu li {
    border: 1px solid #2c2933;
}
li.dropdown.mobile-nav ul li {
    border: 1px solid #2c2933;
}
/* populer-categories */
.populer-categories ul {
    display: flex;
    justify-content: space-between;
}
.populer-categories ul li a p {
    color: #000;
    font-weight: 500;
}
.black-mode {
    border: 1px solid #e7e7e7;
    transition: 0.5s;
}
.black-mode a {
    color: #000;
    font-weight: 500;
}
.black-mode p {
    font-size: 17px;
}
.black-mode:hover {
    border: 2px solid var(--PrimaryColor) !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
/* Populer Categories */
.populer-categories .title span {
    font-size: 30px;
    font-weight: 700;
}
.populer-categories .title .line-before {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.populer-categories .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: var(--SecondaryColor);
}
.populer-categories .line-after {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.populer-categories .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Call Inner */
.call_inner {
    background-color: #1e1b1b;
    background-image: radial-gradient(
        at center center,
        var(--e-global-color-dcc9e11) 0%,
        var(--e-global-color-a2e747e) 54%
    );
    border-radius: 30px;
    box-shadow: rgba(29, 66, 111, 0.2) 0px 2px 8px 0px;
}
.call-to-action .title span {
    font-size: 30px;
    font-weight: 700;
}
.call_inner span {
    font-size: 40px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}
.call-to-action .title .line-before {
    width: 30px;
    height: 2px;
    background-color: #fff;
}
.call-to-action .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: #fff;
}
.call-to-action .line-after {
    width: 30px;
    height: 2px;
    background-color: #fff;
}
.call-to-action .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* BTN Set */
.btn-set ul {
    display: flex;
    justify-content: center;
}
.btn-set ul li:first-child {
    background: var(--PrimaryColor);
    padding: 10px 30px;
    border-radius: 15px;
    transition: 0.5s;
}
.btn-set ul li:last-child {
    border: 1px solid lab(98.84% 0.0000298023 -0.0000119209);
    padding: 10px 30px;
    border-radius: 15px;
    background-color: transparent;
    transition: 0.5s;
}
.btn-set ul li:last-child:hover {
    background-color: var(--SecondaryColor);
    transform: translateY(-5px);
}
.btn-set ul li:first-child:hover {
    background-color: #bc181a;
    transform: translateY(-5px);
}
.btn-set ul li {
    margin-right: 20px;
}
/* section-specfic-offerings */
.section-specfic-offerings {
    background: url(../img/bg-size.jpg);
    background-attachment: fixed;
    background-size: cover;
}
.section-specfic-offerings .title span {
    font-size: 30px;
    font-weight: 700;
}
.section-specfic-offerings .title .line-before {
    width: 30px;
    height: 2px;
    background-color: #fff;
}
.section-specfic-offerings .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: #fff;
}
.section-specfic-offerings .line-after {
    width: 30px;
    height: 2px;
    background-color: #fff;
}
.section-specfic-offerings .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.populer-categories {
    background: url(../img/grid_img.jpg) no-repeat;
    background-position: bottom;
}
.sector_box .bg-white {
    border-radius: 15px;
    text-align: center;
    padding: 15px;
}
.sector_box .bg-img {
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 70px;
    border-radius: 50%;
    background-color: #000000;
    border: 1px dotted #de232e;
    color: #de232e;
    font-size: 35px;
    margin-bottom: 15px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
}
.bg-heading span {
    font-size: 16px;
    font-weight: 500;
}
.sector_box {
    margin-bottom: 25px;
    box-shadow: rgba(29, 66, 111, 0.2) 0px 2px 8px 0px;
}
.bg-img img {
    width: 50%;
}
.header_inner {
    max-width: 1272px;
    margin: 0 auto;
    background: url(../img/download.svg);
}
.header_inner {
    padding: 10px 0;
}
.under-under-lst ul {
    padding-left: 35px;
}
.social_meida {
    padding-right: 35px;
}
.social_meida i {
    background-color: #fff;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    border-radius: 15px;
}
.social_meida i.fa-facebook-f {
    color: #395693;
}
.social_meida i.fa-x-twitter {
    color: #000;
}
.social_meida i.fa-instagram {
    color: #f68711;
}
.social_meida i.fa-youtube {
    color: red;
}
.social_meida i.fa-linkedin-in {
    color: #07488b;
}
.navigation_inner {
    background: #fff;
    position: relative;
    position: relative;
    z-index: 9;
}
ul.submenu li a {
    color: #000;
}
ul.submenu li a {
    font-size: 14px;
}
ul.submenu li {
    border-bottom: 1px solid #e9e9e9cc;
}
ul.submenu li:last-child {
    border-bottom: none;
}
ul.submenu i {
    font-size: 11px;
    margin-top: 5px;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #126d30;
}
::-webkit-scrollbar-thumb {
    background-color: #7bb837;
}
body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 0px;
}
body::-webkit-scrollbar-track {
    background: rgba(170, 189, 93, 0.1);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 0px;
}
body::-webkit-scrollbar-thumb {
    background-color: var(--PrimaryColor);
    background-image: -webkit-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.3) 25%,
        transparent 20%,
        transparent 50%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.3) 75%,
        transparent 75%,
        transparent
    );
    border-radius: 0px;
}
/* Main Slider */
.main-slider button.slick-prev.slick-arrow,
.main-slider button.slick-next.slick-arrow {
    background: #1d426fab;
    border-radius: 50%;
    width: 50px;
    height: 50px;
}
.main-slider .slick-next::before,
.main-slider .slick-prev::before {
    content: "";
}
.main-slider .slick-next {
    font-size: 0;
}
.main-slider .slick-next::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: #fff;
}
.main-slider .slick-prev::before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
    color: #fff;
}
.hero-slider .slick-dots li {
    margin: 0px;
}
.hero-slider .slick-dots li button:before {
    font-size: 10px;
}
.hero-slider .slick-dots {
    left: 0px;
    bottom: 10px;
}
.hero-slider .slick-next {
    right: 15px;
    z-index: 1;
}
.hero-slider .slick-prev {
    left: 15px;
    z-index: 1;
}
.hero-slider img {
    border-radius: 50px;
}
header {
    z-index: 9;
    position: relative;
}
.glossy-blue {
    position: relative;
    overflow: hidden;
}
img.set-yellow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.about_img img {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
}
img.set-point {
    position: absolute;
    left: 0;
    z-index: -1;
    border-radius: 0px;
}
.about_content_part p {
    text-align: justify;
    margin-bottom: 15px;
    line-height: 24px;
}
.about-btn a {
    background-color: var(--SecondaryColor);
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
}
.about-btn a:hover {
    background-color: var(--PrimaryColor);
}
.about-btn a i {
    margin-left: 8px;
}
/* .about_content_part {  border-left: 5px solid red;} */
.about_content_part {
    padding-left: 100px;
}
.about_content_part::after {
    content: "";
    width: 4px;
    height: 50vh;
    left: 70px;
    top: 50px;
    background-color: var(--PrimaryColor);
    position: absolute;
}
.header-row-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.header-logo img {
    width: 100%;
}
.header-logo {
    width: 20%;
}
.navigation-mod {
    width: 60%;
}
.pdf-button-design a {
    background-color: var(--SecondaryColor);
    padding: 12px 25px;
    border-radius: 15px;
    transition: 0.5s;
}
.pdf-button-design a:hover {
    background-color: var(--PrimaryColor);
}
.pdf-button-design {
    width: 20%;
    text-align: right;
}
.pdf-button-design i {
    margin-left: 10px;
}
.widget p {
    text-align: justify;
}
.footer-btn a {
    background: var(--PrimaryColor);
    padding: 10px 30px;
    border-radius: 15px;
    transition: 0.5s;
}
.footer-btn a:hover {
    background-color: var(--SecondaryColor);
}
.widget span {
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    width: 70%;
    border-bottom: 2px solid var(--PrimaryColor);
}
.widget ul li {
    margin-bottom: 10px;
}
.widget ul li a {
    color: #000;
}
.reach_us ul li {
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.reach_us ul li:last-child {
    border: none;
}
img.footer-wave {
    position: absolute;
    left: 0;
    z-index: -1;
    top: 0px;
}
img.footer-bg {
    position: absolute;
    right: 0;
}
.copy-right {
    background-color: var(--PrimaryColor);
}
.tagline-and-btn p {
    font-size: 45px;
    font-weight: 500;
}
.tagline-and-btn p span {
    color: var(--SecondaryColor);
    font-weight: 900;
}
.gallery-container {
    text-align: center;
}
/* Buttons */
.filter-buttons {
    margin-bottom: 20px;
}
.filter-buttons button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background: #fff;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
}
.filter-buttons button.active,
.filter-buttons button:hover {
    background: #1d426f;
    color: #fff;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
/* .item {    width: 15%;    height: auto;    overflow: hidden;    transition: all 0.5s ease;} */
.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .item.hide {    opacity: 0;    transform: scale(0.8);    pointer-events: none;}
.item.show {    opacity: 1;    transform: scale(1);} */
.item {
    width: 15%;
    transition: all 0.4s ease;
}
.item.hide {
    display: none;
}
.item.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}
.item.hide {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}
.item.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.category-clients .title span {
    font-size: 30px;
    font-weight: 700;
}
.category-clients .title .line-before {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.category-clients .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: var(--SecondaryColor);
}
.category-clients .line-after {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.category-clients .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* .form-and-testimonial{background: var(--SecondaryColor) url(img/h4_testimonial_shape.png) no-repeat; background-position: center;} */
.white-bg span {
    text-align: center;
    font-size: 25px;
    display: block;
    font-weight: 600;
}
.home_form input {
    margin-bottom: 15px;
    width: 100%;
    height: 45px;
    padding-left: 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.home_form input:focus {
    outline: none;
}
.home_form select:focus {
    outline: none;
}
.home_form textarea:focus {
    outline: none;
}
.home_form select {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    padding-left: 10px;
    color: #777;
}
.home_form textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding-left: 15px;
    padding-top: 10px;
    resize: none;
}
.home_form button {
    margin-top: 10px;
}
.home_form button {
    margin-top: 10px;
    border: none;
    padding: 10px 30px;
    background: var(--PrimaryColor);
    color: #fff;
    border-radius: 10px;
    transition: 0.5s;
}
.home_form button:hover {
    background-color: var(--SecondaryColor);
}
.testimonial_slide .title span {
    font-size: 30px;
    font-weight: 700;
}
.testimonial_slide .title .line-before {
    width: 30px;
    height: 2px;
    background-color: #fff;
}
.testimonial_slide .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: #fff;
}
.testimonial_slide .line-after {
    width: 30px;
    height: 2px;
    background-color: #fff;
}
.testimonial_slide .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-client ul {
    display: flex;
    justify-content: center;
}
.item-client i {
    font-size: 14px;
}
.item-client i {
    color: darkorange;
}
.item-client p {
    line-height: 25px;
}
.white-bg {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main-testimonial .slick-dots {
    left: 0px;
}
.main-testimonial .slick-dots li button:before {
    color: white;
}
.main-testimonial .slick-dots li.slick-active button:before {
    color: var(--PrimaryColor);
}

.white-bg .title span {
    font-size: 30px;
    font-weight: 700;
}
.white-bg .title .line-before {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.white-bg .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: var(--SecondaryColor);
}
.white-bg .line-after {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.white-bg .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-and-testimonial {
    background-color: var(--SecondaryColor);
}
img.img-rotate {
    width: 40%;
    left: 30%;
}
.home_form {
    position: relative;
}
.img-rotate {
    position: absolute;
    animation: rotateImg 50s linear infinite;
}
@keyframes rotateImg {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.logos .title span {
    font-size: 30px;
    font-weight: 700;
}
.logos .title .line-before {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.logos .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: var(--SecondaryColor);
}
.logos .line-after {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.logos .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-item img {
    width: 80%;
    border: 1px solid #f1f1f1;
    padding: 10px;
    filter: grayscale(1);
    transition: 0.5s;
}
.logo-item img:hover {
    filter: grayscale(0);
}

.cards {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    white-space: nowrap;
    z-index: 1;
}
.card {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    cursor: pointer;
    transition: flex 0.5s ease;
    overflow: hidden;
    position: relative;
    will-change: flex;
}
.card:hover {
    flex: 3;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}
.card a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.5s ease,
        filter 0.5s ease;
    filter: grayscale(100%);
    will-change: transform, filter;
    background: linear-gradient(90deg, #333 25%, #444 50%, #333 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
.card:hover img {
    transform: scale(1.2);
    filter: grayscale(0%);
}
.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}
.card:hover::after {
    opacity: 1;
}
.card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 15px;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
    z-index: 2;
}
.card:hover .card-title {
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    transform: translate(-50%, -50%) scale(1.1);
}

.card-desc {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
/* Slide up animation reveals description */
.card:hover .card-desc {
    transform: translateY(0);
}
.card a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}
.card a:focus-visible img {
    filter: grayscale(0%);
}
@media (max-width: 468px) {
    .cards {
        flex-direction: column;
        height: auto;
    }
    .card {
        flex: none;
        width: 100%;
        height: 250px;
    }
    .card:hover {
        flex: none;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    }
    .card::after {
        opacity: 1;
    }
    .card-desc {
        bottom: 0;
        transform: translateY(0);
    }
    .card img {
        filter: grayscale(0%);
    }
}
@media (max-width: 468px) and (hover: none) {
    .card:active {
        flex: 2;
    }
    .card:active img {
        transform: scale(1.1);
    }
}
@media (prefers-reduced-motion: reduce) {
    .card,
    .card img,
    .card-title,
    .card-desc,
    .card::after {
        transition: none;
    }
    .card img {
        animation: none;
    }
}
.author-name {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
    transition: color 0.3s ease;
}
.author-link {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    padding: 0.2em 0.5em;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 500;
}
.author-link:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.author-link:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.5);
    outline-offset: 2px;
    color: #000;
    background: rgba(255, 255, 255, 0.8);
}

@media (prefers-reduced-motion: reduce) {
    .author-name,
    .author-link {
        transition: none;
    }
}
.ss-fourm-side p {
    text-align: justify;
}
.ss_title-side span {
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}
.ss_title-side p {
    text-align: center;
}
/* SS */
.ss_title-side .title span {
    font-size: 30px;
    font-weight: 700;
}
.ss_title-side .title .line-before {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.ss_title-side .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: #fff;
}
.ss_title-side .line-after {
    width: 30px;
    height: 2px;
    background-color: #fff;
}
.ss_title-side .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ss-fourm-side {
    margin-bottom: 25px;
}

.ss-fourn-core {
    background: #f7f7f7;
}
.ss_title-side img {
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.timline-design .title span {
    font-size: 30px;
    font-weight: 700;
}
.timline-design .title .line-before {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.timline-design .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: var(--SecondaryColor);
}
.timline-design .line-after {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.timline-design .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content span {
    font-size: 25px;
    font-weight: bold;
    color: var(--PrimaryColor);
}
.timeline-content h3 {
    font-size: 22px;
    display: block;
    margin-bottom: 14px;
}
.timeline-content p {
    line-height: 26px;
    text-align: right;
}

.timeline-content-2 span {
    font-size: 25px;
    font-weight: bold;
    color: var(--PrimaryColor);
}
.timeline-content-2 h3 {
    font-size: 22px;
    display: block;
    margin-bottom: 14px;
}
.timeline-content-2 p {
    line-height: 26px;
    text-align: left;
}

.timeline-img img {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
}
.woodmart-timeline-line {
    border-color: #e1e1e1;
}
.woodmart-timeline-line {
    border-left-style: dashed;
}
.woodmart-timeline-line {
    position: absolute;
    inset-block: 0;
    left: calc(50% - -15px);
    border-width: 2px;
    width: 15px;
    height: 900px;
    top: 130px;
}
.dot-end {
    background-color: #e1e1e1;
}
.woodmart-timeline-line .dot-start {
    top: -4px;
}
.woodmart-timeline-line .line-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: inset 100px 100px rgba(0, 0, 0, 0.1);
}
.dot-start,
.woodmart-timeline-line .dot-end {
    background-color: #e1e1e1;
}
.woodmart-timeline-line .dot-end {
    bottom: -4px;
}
.woodmart-timeline-line .line-dot {
    position: absolute;
    left: -5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: inset 100px 100px rgba(0, 0, 0, 0.1);
}
.woodmart-timeline-dot {
    background-color: var(--PrimaryColor);
}
.woodmart-timeline-dot {
    position: absolute;
    top: calc(50% - 68px);
    left: calc(50% - -9px);
    width: 10px;
    height: 10px;
    border: solid 2px #fff;
    border-radius: 50%;
    padding: 5px;
}
.timeline-content-2 {
    padding-left: 95px;
}

.our-product .title span {
    font-size: 30px;
    font-weight: 700;
}
.our-product .title .line-before {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.our-product .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: var(--SecondaryColor);
}
.our-product .line-after {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.our-product .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item {
    width: 100%;
}
.grid-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.item-featured img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}
.item-meta {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    padding: 15px;
    z-index: 2;
}
.item-icon img {
    width: 50px;
    margin-bottom: 10px;
}
.item-meta h3 {
    font-size: 18px;
}
.item-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.item-holder-inner {
    padding: 20px;
    padding-top: 0px;
}
.item-holder h3 {
    margin-bottom: 10px;
}
.item-holder p {
    font-size: 14px;
    margin-bottom: 15px;
}
.grid-item-inner:hover .item-holder {
    opacity: 1;
    visibility: visible;
}
.grid-item-inner:hover .item-featured img {
    transform: scale(1.1);
}
a.btn-read {
    background-color: var(--PrimaryColor);
    padding: 10px 30px;
    border-radius: 10px;
}
/* Go to Top */
.go-top-wrap {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    z-index: 9999;
}
.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}
.progress-ring__circle {
    stroke-dasharray: 163;
    stroke-dashoffset: 163;
    transition: stroke-dashoffset 0.2s linear;
}
#goTopBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #1d426f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
}
.go-top-wrap.show #goTopBtn {
    opacity: 1;
}

.certificate .title span {
    font-size: 30px;
    font-weight: 700;
}
.certificate .title .line-before {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.certificate .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: var(--SecondaryColor);
}
.certificate .line-after {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.certificate .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ss-fourn-core .title span {
    font-size: 30px;
    font-weight: 700;
}
.ss-fourn-core .title .line-before {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.ss-fourn-core .line {
    width: 6px;
    height: 6px;
    margin: 0px 10px 0px 10px;
    background-color: var(--SecondaryColor);
}
.ss-fourn-core .line-after {
    width: 30px;
    height: 2px;
    background-color: var(--SecondaryColor);
}
.ss-fourn-core .title .line_style1 {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Why Choose Us */
.why_content ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.why_content span {
    font-size: 28px;
    display: block;
    margin-bottom: 14px;
    font-weight: 800;
}
.why_content p {
    text-align: justify;
}
.why_content ul li {
    width: 30%;
    text-align: left;
    margin-bottom: 16px;
    font-size: 20px;
}
.content-set img {
    width: 55%;
    height: auto;
    filter: grayscale(1) invert(1);
}
.set-width-div {
    width: 45px;
    height: 45px;
    text-align: center;
    background: var(--PrimaryColor);
    padding: 0;
    border-radius: 50px;
    line-height: 45px;
}
.content-set p {
    font-size: 18px;
}
.padding-mode {
    padding-left: 50px;
    padding-right: 50px;
}
.why-choose-us {
    background: url(../img/gray-line.png) no-repeat;
    background-position: bottom right;
}
.main-why-choose-us .item-why img {
    border-radius: 30px;
}
.mission_type span {
    font-size: 30px;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.mission_type p {
    line-height: 22px;
}
.camera-with-content .bg-side {
    background: url(../img/canera_bg.webp) no-repeat;
    background-size: cover;
    border-radius: 35px;
}
.camera-side-content span {
    font-size: 30px;
    font-weight: 800;
    display: block;
    margin-bottom: 15px;
}
.camera-side-content p {
    line-height: 25px;
    text-align: justify;
    padding-right: 40px;
}
.item-holder-inner span {
    font-size: 22px;
    display: block;
    margin-bottom: 12px;
}
.contact-us-form-design img {
    display: none;
}
.contact-us-form-design {
    background-color: #f1f1f1;
}
.contact-us-form-design .home_form {
    width: 70%;
    margin: 0px auto;
}
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    gap: 15px;
    padding: 25px 20px;
    position: relative;
    border-radius: 30px;
    background: var(--SecondaryColor);
    border: 1px solid var(--PrimaryColor);
    transition: 0.5s;
}
.contact-info .content span {
    font-size: 20px;
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--SecondaryColor);
}
a.__cf_email__ {
    color: #000;
}
.icon i {
    font-size: 30px;
}
.site-breadcrumb {
    background: url(../img/breadcumb.jpg) no-repeat;
}
.site-breadcrumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
    z-index: 1;
}
.site-breadcrumb::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: var(--SecondaryColor);
    opacity: 0.85;
    z-index: -1;
}
ul.breadcrumb-menu {
    display: flex;
    justify-content: center;
}

.full-width-type h3 {
    color: #fff;
    margin: 0px;
    padding-top: 10px;
    text-align: center;
    padding-bottom: 10px;
}
.inner-states a {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    border-radius: 15px;
}
.hvr-radial-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
    background: var(--SecondaryColor);
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.color-site {
    border-radius: 12px;
}
.color-site {
    background-color: var(--PrimaryColor);
}
.skin-color {
    background-color: var(--SecondaryColor);
}
.sitema-links-item h2 {
    text-align: center;
    font-size: 20px;
}
.sitema-links-item h3 {
    text-align: center;
    font-size: 20px;
}
.skin-color {
    background-color: var(--SecondaryColor);
}
ul.stlyed-exporter li a {
    background: var(--PrimaryColor);
    padding: 10px 30px;
    border-radius: 15px;
}
ul.stlyed-exporter li {
    width: 32%;
}
.full-width-type {
    background-color: #000;
    margin-top: 20px;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
    border-radius: 15px;
}
.full-width-type h3 {
    color: #fff;
    margin: 0px;
    padding-top: 10px;
    text-align: center;
    padding-bottom: 10px;
}
.product-box {
    margin-bottom: 30px;
}
