/* ----------------------------------------------------------------------------------------
* Glasco Traders — Public site styles (based on Framex template foundation)
* ---------------------------------------------------------------------------------------- */

/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Our Work css
08. Our Projects css
09. Intro Video css
10. How It Work cssG
11. Our Team css
12. Our Testimonials css
13. Our Faqs css
14. Contact Us css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Projects Page css
23. Project Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQ's Page css
31. Contact Us Page css
32.	404 Error Page css
33. Responsive css
34. Home - Version 2 css
35. Home - Version 3 css
-------------------------------------------------------------------------------------- */

/************************************/

/*** 	 01. Global Variables	  ***/

/************************************/

:root {
    --primary-color: #181818;
    --secondary-color: #FFFFFF;
    --bg-color: #F6F5ED;
    --text-color: #83827F;
    --accent-color: #EDC701;
    --white-color: #FFFFFF;
    --divider-color: #1818181A;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Stack Sans Headline", sans-serif;
    ;
}

/************************************/

/*** 	   02. General css		  ***/

/************************************/

html,
body {
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--bg-color);
}

::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
    width: 7px;
    background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--accent-color);
    filter: invert(1);
}

p {
    line-height: 1.7em;
    margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    line-height: 1.2em;
    color: var(--primary-color);
    margin: 0;
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 30px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters>* {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--primary-color);
    background: var(--accent-color);
    border-radius: 100px;
    padding: 17px 54px 17px 24px;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.btn-default:hover {
    color: var(--white-color);
}

.btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translateY(-50%) rotate(45deg);
    filter: brightness(0) invert(1);
}

.btn-default::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after {
    right: auto;
    left: 0;
    width: 100%;
}

.btn-default.btn-highlighted:hover {
    color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
    filter: none;
}

.btn-default.btn-highlighted::after {
    background-color: var(--white-color);
}

.readmore-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25em;
    text-transform: capitalize;
    color: var(--primary-color);
    padding-right: 28px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-image: url('../images/arrow-primary.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--white-color) transparent var(--white-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 140px;
    transform: translate(-50%, -50%);
}

#loading-icon img {
    width: 100%;
    height: auto;
}

.main-header-metal .navbar-brand img {
    max-height: 70px;
    width: auto;
    height: auto;
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.light-section {
    width: 100%;
    background-color: var(--secondary-color);
}

.light-section .container-fluid {
    padding: 0;
}

.dark-section {
    background-color: var(--primary-color);
    background-image: url('../images/dark-section-bg-image.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-row .section-title.section-title-center {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    margin-top: 30px;
    text-align: left;
}

.section-title-content p {
    margin-bottom: 20px;
}

.section-title-content p:last-child {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-sub-heading .section-sub-title,
.section-title .section-sub-title {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: normal;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    border-radius: 100px;
    padding: 8px 16px 8px 32px;
    margin-bottom: 15px;
}

.section-sub-heading .section-sub-title::before,
.section-title .section-sub-title::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    border-radius: 50%;
    width: 5px;
    height: 5px;
}

.section-sub-heading .section-sub-title,
.section-title.section-sub-heading .section-sub-title {
    margin-bottom: 0;
}

.section-title h1 {
    font-size: 58px;
    line-height: 1.2em;
    font-weight: 500;
    margin-bottom: 0;
    cursor: none;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 500;
    line-height: 1.2em;
    margin-bottom: 0;
    cursor: none;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.light-section .section-sub-heading .section-sub-title,
.light-section .section-title .section-sub-title {
    background-color: var(--bg-color);
}

.dark-section .section-sub-heading .section-sub-title,
.dark-section .section-title .section-sub-title {
    background: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.dark-section .section-sub-heading .section-sub-title,
.dark-section .section-title .section-sub-title,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
    color: var(--white-color);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/

/**** 	    03. Header css		 ****/

/************************************/

header.main-header {
    position: absolute;
    left: 0px;
    right: 0px;
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    background: transparent;
    border-radius: 0;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    background: var(--primary-color);
    border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
    padding: 30px 0px;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: center;
    margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    position: relative;
    margin: 0 10px;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2em;
    padding: 12px 10px !important;
    color: var(--white-color);
    background: transparent;
    border-radius: 0px;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
    content: '\f105';
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--primary-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--white-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    position: relative;
    top: 0;
}

.slicknav_btn {
    background: var(--accent-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--accent-color);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 7px 20px;
    color: var(--primary-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--white-color);
}

.slicknav_menu ul ul li a {
    padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: '\f107';
    position: absolute;
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--primary-color);
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--white-color);
}

/************************************/

/*** 	    04. Hero css	      ***/

/************************************/

.hero {
    position: relative;
    background-image: url('../images/hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 250px 0 120px;
    height: auto;
    min-height: 100vh;
    align-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(24, 24, 24, 0.8) 0%, rgba(24, 24, 24, 0.72) 36.01%, transparent 63.02%), linear-gradient(180deg, rgba(24, 24, 24, 0.8) 0%, transparent 18.18%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-content-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-content-list ul li {
    position: relative;
    width: calc(50% - 10px);
    color: var(--white-color);
    line-height: 1.5em;
    padding-left: 25px;
}

.hero-content-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.hero-content-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 50px;
    padding-top: 50px;
}

.video-play-button {
    display: inline-flex;
    align-items: center;
}

.video-play-button a {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: none;
    gap: 10px;
}

.video-play-button a span {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-play-button a span.bg-effect:before,
.video-play-button a span.bg-effect:after {
    content: '';
    position: absolute;
    width: 160%;
    height: 160%;
    border: 35px solid var(--white-color);
    opacity: 50%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a span.bg-effect:after {
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a span i {
    font-size: 16px;
    color: var(--primary-color);
    margin-left: 2px;
}

.video-play-button p {
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
}

/************************************/

/*** 	   05. About-Us css	      ***/

/************************************/

.about-us {
    padding: 120px 0;
}

.about-us-image-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    margin-right: 15px;
}

.about-us-image-box-1 {
    position: relative;
    width: 73%;
    height: 100%;
}

.about-us-image-box-1 .about-us-image,
.about-us-image-box-1 .about-us-image figure,
.about-us-image-box-1 .about-us-image img {
    height: 100%;
}

.about-us-image figure {
    display: block;
    border-radius: 20px;
}

.about-us-image img {
    width: 100%;
    aspect-ratio: 1 / 1.36;
    object-fit: cover;
    border-radius: 20px;
}

.about-us-image-box-2 {
    position: relative;
    width: 27%;
    z-index: 1;
}

.about-us-image-box-2 .about-us-image figure {
    border: 10px solid var(--bg-color);
    margin-left: -137px;
    border-radius: 30px 20px 20px 30px;
    border-right: none;
}

.about-us-image-box-2 .about-us-image figure img {
    aspect-ratio: 1 / 1.21;
}

.about-us-counter-box {
    position: absolute;
    bottom: 55px;
    right: -70px;
    background-color: var(--accent-color);
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease-in-out;
    animation: experienceboxmove 3s infinite linear alternate;
    z-index: 2;
}

.about-us-counter-box:hover {
    background-color: var(--white-color);
}

@keyframes experienceboxmove {
    50% {
        transform: translateX(30px);
    }
}

.about-us-counter-box .icon-box img {
    width: 100%;
    max-width: 50px;
}

.about-us-counter-content {
    width: calc(100% - 65px);
}

.about-us-counter-content h2 {
    font-size: 40px;
    line-height: 1em;
}

.about-us-counter-content p {
    color: var(--primary-color);
    margin: 5px 0 0;
}

.about-us-content {
    height: 100%;
    align-content: center;
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.about-us-body-content {
    width: calc(65% - 30px);
}

.about-us-body-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-us-body-list ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.about-us-body-list ul li:last-child {
    margin-bottom: 0px;
}

.about-us-body-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.about-us-btn {
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
    margin-top: 40px;
}

.about-us-counter-list {
    width: calc(35% - 30px);
}

.about-us-counter-item {
    text-align: center;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.about-us-counter-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.about-us-counter-item h2 {
    font-size: 46px;
    line-height: 1em;
}

.about-us-counter-item p {
    margin: 5px 0 0;
}

/************************************/

/***     06. Our Services css     ***/

/************************************/

.our-services {
    background-image: url('../images/service-bg-image.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto;
    padding: 120px 0;
}

.service-item {
    position: relative;
    background: var(--bg-color);
    border-radius: 20px;
    min-height: 450px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-color);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
    transform: translate(100%, -100%);
}

.service-item-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-image,
.service-item:hover .service-item-image {
    opacity: 1;
}

.service-item-image a {
    position: relative;
    display: block;
    height: 100%;
    cursor: none;
}

.service-item-image a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 50%;
    width: 100%;
    height: 100%;
}

.service-item-image figure {
    display: block;
    height: 100%;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
}

.service-item-body .icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.service-item-body .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-item.active .service-item-body .icon-box::before,
.service-item:hover .service-item-body .icon-box::before {
    transform: rotate(0) scale(1);
}

.service-item-body .icon-box img {
    position: relative;
    width: 100%;
    max-width: 40px;
    z-index: 1;
}

.service-item-content-box {
    position: relative;
    z-index: 1;
}

.service-item-content {
    max-width: 240px;
}

.service-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
    transition: all 0.4s ease-in-out;
}

.service-item-content h2 a {
    color: inherit;
}

.service-item.active .service-item-content h2,
.service-item:hover .service-item-content h2 {
    color: var(--white-color);
}

.service-item-btn {
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
    margin-top: 30px;
    transition: all 0.3s ease-in-out;
}

.service-item.active .service-item-btn,
.service-item.hover .service-item-btn {
    border-color: var(--dark-divider-color);
}

.service-item.active .service-item-btn a.readmore-btn,
.service-item:hover .service-item-btn a.readmore-btn {
    color: var(--white-color);
}

.service-item.active .service-item-btn a.readmore-btn::before,
.service-item:hover .service-item-btn a.readmore-btn::before {
    filter: brightness(0) invert(1);
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    color: var(--primary-color);
    margin-bottom: 0;
}

.section-footer-text p span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    background: var(--accent-color);
    color: var(--primary-color);
    line-height: 1em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-right: 10px;
}

.section-footer-text p a {
    display: inline-block;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

.section-footer-text ul {
    width: 100%;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.section-footer-text ul li {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-color);
    margin-right: 10px;
}

.section-footer-text ul li:last-child {
    margin: 0;
}

.section-footer-text ul li i {
    font-size: 16px;
    background: var(--accent-color);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-section .section-footer-text p,
.dark-section .section-footer-text ul li {
    color: var(--white-color);
}

.dark-section .section-footer-text p a {
    color: var(--accent-color);
}

.dark-section .section-footer-text p a:hover {
    color: var(--white-color);
}

.section-footer-text.section-footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
    width: 30px;
    height: 30px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
    width: 100%;
    max-width: 16px;
}

.satisfy-client-images {
    display: inline-flex;
    align-items: center;
}

.satisfy-client-image {
    position: relative;
    display: inline-block;
    margin-left: -10px;
    border: 1px solid var(--white-color);
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.satisfy-client-image:first-child {
    margin-left: 0;
}

.satisfy-client-image figure {
    display: block;
    border-radius: 50%;
}

.satisfy-client-image figure img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.satisfy-client-image.add-more {
    width: 42px;
    height: 42px;
    background-color: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.satisfy-client-image.add-more i {
    font-size: 14px;
    color: var(--primary-color);
}

.satisfy-client-image.add-more h3 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
    margin: 0;
}

.section-footer-text.section-satisfy-img {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
    margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image:first-child {
    margin-left: 0;
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
    max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
    width: 32px;
    height: 32px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
    width: 100%;
    max-width: 16px;
}

.section-footer-text.section-satisfy-img ul {
    margin: 5px 0 0;
}

/************************************/

/***   	   07. Our Work css       ***/

/************************************/

.our-works {
    padding: 120px 0;
}

.our-work-item-list {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.our-work-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(50% - 15px);
    gap: 15px;
}

.our-work-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.our-work-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: rotate(180deg) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.our-work-item:hover .icon-box::before {
    transform: rotate(0) scale(1);
}

.our-work-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.our-work-item:hover .icon-box img {
    filter: brightness(0) invert(1)
}

.our-work-item-content {
    width: calc(100% - 65px);
}

.our-work-item-content h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.work-content-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
    margin-top: 40px;
}

.work-contact-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.work-contact-box .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.work-contact-box .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.work-contact-box:hover .icon-box::before {
    transform: scale(1)
}

.work-contact-box .icon-box i,
.work-contact-box .icon-box img {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.work-contact-box .icon-box i {
    font-size: 22px;
    color: var(--primary-color);
}

.work-contact-box:hover .icon-box i {
    color: var(--white-color);
}

.work-contact-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.work-contact-box:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.work-contact-box-content {
    width: calc(100% - 65px);
}

.work-contact-box-content p {
    margin: 0px;
}

.work-contact-box-content h3 {
    font-size: 20px;
    margin-top: 5px;
}

.work-contact-box-content h3 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.work-contact-box-content h3 a:hover {
    color: var(--accent-color);
}

.our-work-image {
    margin-left: 15px;
}

.our-work-image figure {
    position: relative;
    display: block;
    mask-image: url('../images/our-work-image-bg-shape.svg');
    background-image: url('../images/our-work-image-bg-shape.svg');
    mask-size: cover;
    mask-position: center center;
    mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.our-work-image figure img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.958;
    border-radius: 10px;
}

/************************************/

/***      08. Our Project css    ***/

/************************************/

.our-project {
    background: url('../images/dark-section-bg-image.png'), linear-gradient(180deg, var(--primary-color) 70%, var(--bg-color) 30%);
    background-size: 100% 70%, 100%;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 120px 0 0;
}

.project-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.project-item-image figure {
    display: block;
    border-radius: 1000px 1000px 0 0;
    overflow: hidden;
}

.project-item-image figure a {
    position: relative;
    display: block;
    border-radius: 1000px 1000px 0 0;
    cursor: none;
}

.project-item-image figure a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent 39.2%, rgba(24, 24, 24, 0.8) 100%);
    border-radius: 1000px 1000px 0 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.project-item-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1.22;
    object-fit: cover;
    border-radius: 1000px 1000px 0 0;
    transition: all 0.6s ease-in-out;
}

.project-item:hover .project-item-image figure img {
    transform: scale(1.06);
}

.project-item-body {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 1;
}

.project-item-content h2 {
    font-size: 20px;
    color: var(--white-color);
    line-height: 1.4em;
}

.project-item-content h2 a {
    color: inherit;
}

.project-item-btn {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 20px;
    margin-top: 20px;
}

.project-item-btn .readmore-btn {
    color: var(--white-color);
}

.project-item-btn .readmore-btn::before {
    background-image: url('../images/arrow-white.svg');
}

.our-project .section-footer-text p,
.our-project .section-footer-text ul li {
    color: var(--primary-color);
}

.our-project .section-footer-text p a:hover {
    color: var(--primary-color);
}

/************************************/

/***     09. intro video css      ***/

/************************************/

.intro-video {
    padding: 120px 0;
}

.intro-video-title .intro-video-btn {
    margin-top: 40px;
}

.intro-video-content p:last-child {
    margin: 0;
}

.intro-video-counter-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.intro-video-counter-item {
    width: calc(33.33% - 20px);
}

.intro-video-counter-item h2 {
    font-size: 46px;
    line-height: 1em;
}

.intro-video-counter-item p {
    margin: 5px 0 0;
}

.intro-video-content-box {
    position: relative;
    min-height: 600px;
    border-radius: 20px;
    align-content: end;
    padding: 40px;
    overflow: hidden;
}

.intro-video-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50.75%, rgba(24, 24, 24, 0.8) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.intro-video-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.intro-video-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-video-item-list {
    position: relative;
    z-index: 1;
}

.intro-video-item-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.intro-video-item-list ul li {
    position: relative;
    line-height: 1.5em;
    color: var(--white-color);
    padding-left: 25px;
}

.intro-video-item-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

/************************************/

/***      10. How It Work css     ***/

/************************************/

.how-it-work {
    padding: 120px 0;
}

.how-it-work-item {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.how-it-work-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.how-it-work-item-no {
    position: relative;
    background-color: var(--accent-color);
    border-radius: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.how-it-work-item-no::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 20px;
    transform: scale(0) rotate(180deg);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.how-it-work-item:hover .how-it-work-item-no::before {
    border-radius: 0;
    transform: scale(1);
}

.how-it-work-item-no h3 {
    position: relative;
    font-size: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.how-it-work-item:hover .how-it-work-item-no h3 {
    color: var(--white-color);
}

.how-it-work-item-content {
    width: calc(100% - 65px);
}

.how-it-work-item-content h3 {
    font-size: 20px;
}

.how-it-work-item-content p {
    margin: 10px 0 0;
}

.how-it-work-image-box {
    margin-left: 65px;
}

.how-work-image-list {
    margin-top: 20px;
}

.how-work-image-slider .swiper-wrapper,
.how-work-image-list .swiper-slide {
    cursor: none;
}

.how-work-image-slider .swiper-slide figure,
.how-work-image-list .swiper-slide figure {
    display: block;
}

.how-work-image-slider .swiper-slide img,
.how-work-image-list .swiper-slide img {
    width: 100%;
    object-fit: cover;
}

.how-work-image-slider .swiper-slide figure,
.how-work-image-slider .swiper-slide img {
    border-radius: 999px 999px 0 0;
    overflow: hidden;
}

.how-work-image-slider .swiper-wrapper .swiper-slide img {
    aspect-ratio: 1 / 0.974;
}

.how-work-image-list .swiper-wrapper .swiper-slide img {
    aspect-ratio: 1 / 0.673;
}

/************************************/

/***       11. Our Team css       ***/

/************************************/

.our-team {
    padding: 120px 0;
}

.team-item {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-color: var(--secondary-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.team-item:hover {
    transform: translateY(-5px);
}

.team-item-content-box {
    padding: 50px;
    flex: 1;
}

.team-item-image a {
    display: inline-block;
    border-radius: 50%;
    cursor: none;
}

.team-item-image figure {
    display: block;
    max-width: 192px;
    margin: 0 auto;
    border-radius: 50%;
}

.team-item-image figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
}

.team-item:hover .team-item-image figure img {
    transform: scale(1.04);
}

.team-item-content {
    margin-top: 30px;
}

.team-item-content h2 {
    font-size: 20px;
}

.team-item-content a {
    color: inherit;
}

.team-item-content p {
    margin: 5px 0 0;
}

.team-item-btn .readmore-btn {
    font-weight: 500;
    width: 100%;
    background-color: var(--accent-color);
    padding: 20px;
}

.team-item-btn .readmore-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.team-item-btn .readmore-btn::before {
    display: none;
}

/************************************/

/***   12. Our Testimonials css   ***/

/************************************/

.our-testimonial {
    background-image: url('../images/testimonial-bg-image.png');
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center center;
    padding: 120px 0;
}

.testimonial-slider,
.testimonial-slider .swiper,
.testimonial-slider .swiper-wrapper,
.testimonial-slider .swiper-slide,
.testimonial-item {
    height: 100%;
}

.testimonial-slider .swiper-wrapper {
    cursor: none;
}

.testimonial-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 430px;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px;
    border-radius: 20px;
}

.testimonial-slider .swiper-slide .testimonial-item {
    transform: scale(0.95);
    transition: all 0.6s ease-in-out;
}

.testimonial-slider .swiper-slide.swiper-slide-next .testimonial-item {
    transform: scale(1);
}

.testimonial-item-header {
    padding: 30px;
}

.testimonial-item-rating {
    margin-bottom: 20px;
}

.testimonial-item-rating i {
    font-size: 20px;
    color: var(--accent-color);
}

.testimonial-item-content p {
    font-size: 20px;
    color: var(--white-color);
}

.testimonial-item-content p:last-child {
    margin-bottom: 0;
}

.testimonial-item-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    background-color: var(--dark-divider-color);
    border-radius: 10px;
    padding: 30px;
}

.testimonial-author-image figure {
    display: block;
    border-radius: 50%;
}

.testimonial-author-image figure img {
    width: 100%;
    max-width: 60px;
    border-radius: 50%;
}

.testimonial-author-content {
    width: calc(100% - 75px);
}

.testimonial-author-content h2 {
    font-size: 20px;
    color: var(--white-color);
}

.testimonial-author-content p {
    color: var(--white-color);
    margin: 5px 0 0;
}

.our-testimonial .section-footer-text {
    margin-top: 60px;
}

/************************************/

/***      13. Our Faqs css       ***/

/************************************/

.our-faqs {
    padding: 120px 0;
}

.our-faq-content {
    position: sticky;
    top: 30px;
    margin-right: 15px;
}

.faq-cta-box {
    max-width: 550px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 10px;
}

.faq-cta-client-box {
    display: flex;
    max-width: 64%;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.faq-cta-client-image figure {
    display: block;
    border-radius: 50%;
}

.faq-cta-client-image img {
    width: 100%;
    max-width: 60px;
    border-radius: 50%;
}

.faq-cta-client-content-box {
    width: calc(100% - 75px);
}

.faq-cta-client-content-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.faq-cta-client-content-header h3 {
    font-size: 16px;
    color: var(--white-color);
    min-width: 25px;
}

.faq-cta-client-content-header {
    margin-bottom: 0px;
}

.faq-cta-client-content-header i {
    font-size: 16px;
    color: var(--accent-color);
}

.faq-cta-client-content {
    margin-top: 5px;
}

.faq-cta-client-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

.faq-cta-btn .btn-default::before {
    content: '\f095';
    font-family: 'FontAwesome';
    font-size: 18px;
    color: var(--primary-color);
    background: transparent;
    line-height: normal;
}

.faq-cta-btn .btn-default:hover::before {
    transform: translateY(-50%);
}

.faq-accordion .accordion-item {
    position: relative;
    background: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.333em;
    background: transparent;
    color: var(--primary-color);
    padding: 22px 55px 22px 22px;
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 22px;
    top: 50%;
    font-size: 24px;
    font-weight: 600;
    transform: translateY(-50%);
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

.faq-accordion .accordion-item .accordion-body {
    background: var(--primary-color);
    border-top: 1px solid var(--dark-divider-color);
    padding: 22px;
}

.faq-accordion .accordion-item .accordion-body p {
    color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-body p:last-child {
    margin: 0;
}

/************************************/

/***      14. Contact Us css      ***/

/************************************/

.contact-us-box {
    position: relative;
    background-image: url('../images/contact-us-box-bg-image.jpg');
    background-position: center center;
    overflow: hidden;
    padding: 120px 0;
}

.contact-us-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, transparent -5%, rgba(24, 24, 24, 0.9) 100%);
    width: 100%;
    height: 100%;
}

.contact-us-box .container {
    position: relative;
    z-index: 1;
}

.contact-us-content-box {
    min-height: 590px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-us-info-box {
    border-top: 1px solid var(--divider-color);
    padding-top: 60px;
}

.contact-us-info-box .contact-us-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
}

.dark-section .contact-us-info-box {
    border-color: var(--dark-divider-color);
}

.dark-section .contact-us-info-box .work-contact-box .icon-box::before {
    background: var(--white-color);
}

.dark-section .contact-us-info-box .work-contact-box:hover .icon-box img {
    filter: none;
}

.dark-section .contact-us-info-content p,
.dark-section .contact-us-info-box .work-contact-box .work-contact-box-content p,
.dark-section .contact-us-info-box .work-contact-box .work-contact-box-content h3 {
    color: var(--white-color);
}

.contact-us-info-content {
    max-width: 394px;
    margin-top: 30px;
}

.contact-us-info-content p:last-child {
    margin-bottom: 0;
}

.contact-box-form {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 50px;
}

.contact-box-form .section-title h2 {
    color: var(--primary-color);
}

.contact-box-form .section-title p {
    color: var(--text-color);
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--primary-color);
    background-color: var(--bg-color);
    border: none;
    border-radius: 10px;
    padding: 18px 20px;
    outline: none;
    box-shadow: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
}

/************************************/

/***       15. Our Blog css       ***/

/************************************/

.our-blog {
    padding: 120px 0 90px;
}

.post-item {
    position: relative;
    min-height: 450px;
    background: var(--secondary-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
    overflow: hidden;
}

.post-item::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--secondary-color);
    transition: 0.5s ease-in-out;
}

.post-item.active::before,
.post-item:hover::before {
    transform: translate(100%, -100%);
}

.post-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.post-item.active .post-featured-image,
.post-item:hover .post-featured-image {
    opacity: 1;
}

.post-featured-image a {
    position: relative;
    display: block;
    height: 100%;
    cursor: none;
}

.post-featured-image a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    opacity: 50%;
    width: 100%;
    height: 100%;
}

.post-featured-image figure {
    display: block;
    height: 100%;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-item-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
}

.post-item-tag,
.post-item-content-box {
    position: relative;
    z-index: 1;
}

.post-item-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-item-tag a {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-color);
    background: var(--bg-color);
    border-radius: 100px;
    padding: 6px 16px;
    transition: all 0.4s ease-in-out;
}

.post-item.active .post-item-tag a,
.post-item:hover .post-item-tag a {
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white-color);
}

.post-item .post-item-tag a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.post-item-content h2 {
    font-size: 20px;
    line-height: 1.4em;
    transition: all 0.4s ease-in-out;
}

.post-item-content h2 a {
    color: inherit;
}

.post-item.active .post-item-content h2,
.post-item:hover .post-item-content h2 {
    color: var(--white-color);
}

.post-item-btn {
    border-top: 1px solid var(--divider-color);
    padding-top: 25px;
    margin-top: 25px;
    transition: all 0.4s ease-in-out;
}

.post-item.active .post-item-btn,
.post-item.hover .post-item-btn {
    border-color: var(--dark-divider-color);
}

.post-item.active .post-item-btn a.readmore-btn,
.post-item:hover .post-item-btn a.readmore-btn {
    color: var(--white-color);
}

.post-item.active .post-item-btn a.readmore-btn::before,
.post-item:hover .post-item-btn a.readmore-btn::before {
    background-image: url('../images/arrow-white.svg');
}

/************************************/

/***         16. Footer css       ***/

/************************************/

.main-footer {
    padding: 120px 0 0;
}

.footer-logo img {
    width: 100%;
    max-width: 152px;
}

.about-footer-content {
    margin-top: 30px;
}

.about-footer-content p {
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-social-links {
    margin-top: 40px;
}

.footer-social-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-social-links ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.footer-social-links ul li:hover a {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-social-links ul li a i {
    font-size: 18px;
    color: inherit;
}

.footer-links-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 4.167vw;
    margin-left: 40px;
}

.footer-quick-links {
    width: calc(23% - 2.778vw);
}

.footer-links {
    position: relative;
}

.footer-links::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -2.083vw;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.footer-links:last-child::before {
    display: none;
}

.footer-links h2 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    line-height: 1.4em;
    color: var(--white-color);
    margin-bottom: 15px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-service-links {
    width: calc(36% - 2.778vw);
}

.footer-newsletter-box {
    width: calc(41% - 2.778vw);
}

.footer-newsletter-form .form-group .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25em;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    color: var(--white-color);
    border-radius: 100px;
    border: none;
    box-shadow: none;
    outline: none;
    padding: 15px 24px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: var(--white-color);
}

.footer-newsletter-form .form-group .btn-default {
    width: 100%;
    padding: 17px;
    text-align: center;
    margin-top: 20px;
}

.footer-newsletter-form .form-group .btn-default::before {
    display: none;
}

.footer-cta-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 80px;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 30px 40px;
    border-radius: 20px;
}

.footer-cta-content {
    width: calc(40% - 10px);
}

.footer-cta-content h2 {
    font-size: 26px;
    color: var(--white-color);
}

.footer-cta-contact-list {
    max-width: calc(60% - 10px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px 4.167vw;
}

.footer-cta-contact-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.footer-cta-contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -2.083vw;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.footer-cta-contact-item:nth-child(2n+2):before,
.footer-cta-contact-item:last-child:before {
    display: none;
}

.footer-cta-contact-item .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-cta-contact-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--secondary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.footer-cta-contact-item:hover .icon-box::before {
    transform: scale(1)
}

.footer-cta-contact-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.footer-cta-contact-item-content {
    width: calc(100% - 65px);
}

.footer-cta-contact-item-content p {
    margin: 0 0 5px;
    color: var(--white-color);
}

.footer-cta-contact-item-content h3 {
    color: var(--white-color);
    font-size: 20px;
}

.footer-cta-contact-item-content h3 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-cta-contact-item-content h3 a:hover {
    color: var(--accent-color);
}

.footer-copyright-text {
    text-align: center;
    padding: 60px 0;
}

.footer-copyright-text p {
    color: var(--white-color);
    margin-bottom: 0;
}

/************************************/

/*** 	17. About Us Page css     ***/

/************************************/

.page-header {
    position: relative;
    background: url('../images/page-header-bg.jpg') no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 270px 0 160px;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(24, 24, 24, 0.8) 0%, rgba(24, 24, 24, 0.72) 36.01%, transparent 63.02%), linear-gradient(180deg, rgba(24, 24, 24, 0.8) 0%, transparent 18.18%);
    z-index: 1;
}

.page-header-box {
    position: relative;
    z-index: 2;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 58px;
    font-weight: 500;
    line-height: 1.2em;
    color: var(--white-color);
    margin-bottom: 15px;
    cursor: none;
}

.page-header-box ol {
    display: inline-flex;
    margin: 0;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.3em;
    color: var(--white-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.our-apporach {
    padding: 120px 0;
}

.approach-content {
    height: 100%;
    align-content: center;
}

.approach-accordion .accordion-item {
    margin-bottom: 30px;
}

.approach-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.approach-accordion .accordion-header .accordion-button {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    border-bottom: 1px solid var(--divider-color);
    padding: 0 30px 30px 0;
    transition: all 0.3s ease-in-out;
}

.approach-accordion .accordion-item:last-child .accordion-header .accordion-button.collapsed {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.approach-accordion .accordion-item .accordion-button::after,
.approach-accordion .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.approach-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
}

.approach-accordion .accordion-item .accordion-body {
    padding: 30px 30px 0 0;
}

.approach-accordion .accordion-item .accordion-body p {
    margin: 0;
}

.our-approach-image-box {
    position: relative;
    height: 100%;
    margin-left: 15px;
}

.our-approach-image {
    height: 100%;
}

.our-approach-image figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.our-approach-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.99;
    object-fit: cover;
    border-radius: 20px;
}

.our-approach-cta-box {
    max-width: 260px;
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 25px;
    animation: experienceboxmove 3s infinite linear alternate;
    z-index: 1;
}

.our-approach-cta-box .satisfy-client-image figure img {
    max-width: 40px;
}

.our-approach-cta-footer {
    margin-top: 25px;
}

.our-approach-cta-footer-counter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.our-approach-cta-footer-counter h2 {
    font-size: 16px;
    font-weight: 400;
}

.our-approach-cta-footer-counter p {
    margin-bottom: 0;
}

.our-approach-cta-footer-counter p i {
    font-size: 16px;
    color: var(--accent-color);
}

.our-approach-cta-footer-content p {
    margin: 5px 0 0;
}

.key-fact {
    padding: 120px 0;
}

.key-fact-content {
    height: 100%;
    align-content: center;
}

.skills-progress-bar .skillbar {
    margin-bottom: 30px;
}

.skills-progress-bar .skillbar:last-child {
    margin-bottom: 0;
}

.skills-progress-bar .skill-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 14px;
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 10px;
}

.key-fact-btn {
    margin-top: 40px;
}

.key-fact-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.key-fact-item {
    position: relative;
    width: calc(50% - 15px);
    min-height: 265px;
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.key-fact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-color);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.key-fact-item.active::before,
.key-fact-item:hover::before {
    transform: translate(100%, -100%);
}

.key-fact-item-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-image,
.key-fact-item:hover .key-fact-item-image {
    opacity: 1;
}

.key-fact-item-image figure {
    position: relative;
    display: block;
    height: 100%;
}

.key-fact-item-image figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 40%;
}

.key-fact-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.key-fact-item-body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
    z-index: 2;
}

.key-fact-item-header p {
    margin: 0 0 10px;
    transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-header p,
.key-fact-item:hover .key-fact-item-header p {
    color: var(--white-color);
}

.key-fact-item-header h2 {
    font-size: 46px;
    font-weight: 400;
    line-height: 1em;
    transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-header h2,
.key-fact-item:hover .key-fact-item-header h2 {
    color: var(--white-color);
}

.key-fact-item-footer {
    border-top: 1px solid var(--divider-color);
    padding-top: 25px;
    transition: all 0.4s ease-in-out;
}

.key-fact-item.active .key-fact-item-footer,
.key-fact-item:hover .key-fact-item-footer {
    border-color: var(--dark-divider-color);
}

.key-fact-item-footer p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out
}

.key-fact-item.active .key-fact-item-footer p,
.key-fact-item:hover .key-fact-item-footer p {
    color: var(--white-color);
}

.premium-quality {
    padding: 120px 0;
}

.premium-quality-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 80px;
}

.premium-quality-item {
    position: relative;
    width: calc(33.33% - 53.33px);
    text-align: center;
}

.premium-quality-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    bottom: 0;
    height: 100%;
    width: 1px;
    background: var(--dark-divider-color)
}

.premium-quality-item:nth-child(3n+3):before,
.premium-quality-item:last-child:before {
    display: none;
}

.premium-quality-item-image figure {
    display: block;
    max-width: 200px;
    border-radius: 50%;
    margin: 0 auto;
}

.premium-quality-item-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.6s ease-in-out;
}

.premium-quality-item:hover .premium-quality-item-image img {
    transform: scale(1.06);
}

.premium-quality-item-content {
    margin: 40px auto 0;
    max-width: 334px;
}

.premium-quality-item-content h3 {
    font-size: 20px;
    color: var(--white-color);
}

.premium-quality-item-content p {
    margin: 10px 0 0;
    color: var(--white-color);
}

.premium-quality .section-footer-text {
    margin-top: 60px;
}

.cta-box {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -85px;
    left: 5px;
    background: url(../images/cta-box-section-bg-img-1.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 375px;
    height: 275px;
    z-index: 1;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -85px;
    right: 5px;
    background: url(../images/cta-box-section-bg-img-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 440px;
    height: 360px;
    z-index: 1;
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.cta-content .section-title p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    position: relative;
    display: inline-block;
    margin-top: 50px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    left: auto;
    bottom: 10px;
    right: -160px;
    background: url('../images/cta-box-arrow.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 84px;
    height: 50px;
    animation: arrowmove 3s infinite linear alternate;
}

@keyframes arrowmove {
    50% {
        transform: translateX(-20px);
    }
}

/************************************/

/*** 	18. Services Pgae css     ***/

/************************************/

.page-services {
    padding: 120px 0 90px;
}

.page-services .service-item {
    background: var(--secondary-color);
}

.page-services .service-item:before {
    background: var(--secondary-color);
}

/************************************/

/*** 	19. Service Single css    ***/

/************************************/

.page-service-single {
    padding: 120px 0;
}

.page-single-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 15px;
}

.page-category-list {
    background: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.page-category-list .page-category-list-title {
    font-size: 20px;
    background: var(--accent-color);
    padding: 20px 30px;
}

.page-category-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-category-list ul li {
    line-height: 1.5em;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.page-category-list ul li:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.page-category-list ul li a {
    position: relative;
    display: block;
    text-transform: capitalize;
    color: inherit;
    padding-right: 25px;
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
    color: var(--primary-color);
}

.page-category-list ul li a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    background: url('../images/arrow-primary.svg') no-repeat;
    background-position: center center;
    background-size: cover;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
    transform: translateY(-50%) rotate(45deg);
}

.sidebar-cta-box {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 10px;
}

.sidebar-cta-content-box {
    text-align: center;
    padding: 20px 20px 30px;
}

.sidebar-cta-logo img {
    width: 100%;
    max-width: 152px;
}

.sidebar-cta-content {
    margin-top: 30px;
}

.sidebar-cta-content h2 {
    font-size: 20px;
    line-height: 1.4em;
}

.sidebar-cta-contact-btn {
    margin-top: 30px;
}

.sidebar-cta-contact-btn .btn-default {
    padding: 17px 24px 17px 54px;
}

.sidebar-cta-contact-btn .btn-default::before {
    content: '\f095';
    font-family: 'FontAwesome';
    left: 24px;
    top: 50%;
    right: auto;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--primary-color);
    background: transparent;
    width: auto;
    height: auto;
}

.sidebar-cta-contact-btn .btn-default:hover:before {
    transform: translateY(-50%);
    filter: none;
    color: var(--white-color);
}

.sidebar-cta-image-box figure {
    display: block;
    border-radius: 10px;
}

.sidebar-cta-image-box figure img {
    width: 100%;
    aspect-ratio: 1 / 0.49;
    object-fit: cover;
    border-radius: 10px;
}

.page-single-image {
    margin-bottom: 40px;
}

.page-single-image figure {
    display: block;
    border-radius: 20px;
}

.page-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
    border-radius: 20px;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry h2 {
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-entry h3 {
    font-size: 20px;
    line-height: 1.4em;
    margin-bottom: 10px;
}

.service-entry p:last-child,
.service-entry h2:last-child,
.service-entry h3:last-child {
    margin: 0;
}

.service-entry ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-entry ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 20px;
}

.service-entry ul li:last-child {
    margin-bottom: 0;
}

.service-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3em;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.service-entry .section-footer-text {
    margin-top: 40px;
}

.service-why-choose-box,
.service-features-box,
.service-window-box {
    margin-top: 60px;
}

.service-why-choose-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-why-choose-item-list-box,
.service-why-choose-image-box {
    width: calc(50% - 15px);
}

.service-why-choose-item {
    background-color: var(--secondary-color);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 20px;
}

.service-why-choose-item:last-child {
    margin-bottom: 0;
}

.service-why-choose-item span {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-color);
    background: var(--bg-color);
    border-radius: 100px;
    padding: 6px 15px;
    margin-bottom: 30px;
}

.service-why-choose-image-box figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.service-why-choose-image-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 1 / 1.025;
}

.service-feature-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-feature-item {
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-feature-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 100px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-feature-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 100px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-feature-item:hover .icon-box::before {
    transform: scale(1)
}

.service-feature-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-feature-item:hover .icon-box img {
    filter: brightness(0) invert(1)
}

.service-feature-item-content {
    width: calc(100% - 75px);
}

.service-feature-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
    margin-top: 40px;
}

.service-feature-body-list,
.service-feature-body-image {
    width: calc(50% - 15px);
    align-content: center;
}

.service-feature-body-image figure {
    height: 100%;
    display: block;
    border-radius: 20px;
}

.service-feature-body-image figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.40;
    object-fit: cover;
    border-radius: 20px;
}

.service-window-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.service-window-item {
    width: calc(33.33% - 20px);
    background-color: var(--secondary-color);
    border-radius: 20px;
    text-align: center;
    padding: 40px 25px;
}

.service-window-item .icon-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 100px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}

.service-window-item .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 100px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-window-item:hover .icon-box::before {
    transform: scale(1)
}

.service-window-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-window-item:hover .icon-box img {
    filter: brightness(0) invert(1)
}

.service-window-item-content {
    margin-top: 40px;
}

.service-window-item-content h3 {
    font-size: 20px;
}

/************************************/

/*** 	20. Blog Archive css      ***/

/************************************/

.page-blog {
    padding: 120px 0;
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 600;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
}

/************************************/

/*** 	 21. Blog Single css      ***/

/************************************/

.page-single-post {
    padding: 120px 0;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 15px;
}

.post-single-meta ol li:last-child {
    margin-right: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.50;
    object-fit: cover;
    border-radius: 20px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: '';
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 400;
    line-height: 1.2em;
    margin: 0 0 0.44em;
}

.post-entry h1 {
    font-size: 58px;
    font-weight: 500;
}

.post-entry h2 {
    font-size: 46px;
    font-weight: 500;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 20px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ol:last-child,
.post-entry ul:last-child {
    margin-bottom: 0;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: var(--accent-color) url('../images/icon-blockquote.svg');
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 20px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--primary-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1em;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 100px;
    padding: 12px 20px;
    transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/

/*** 	22. Projects Page css     ***/

/************************************/

.page-projects {
    padding: 120px 0 90px;
}

.page-projects .project-item-image figure,
.page-projects .project-item-image a,
.page-projects .project-item-image figure a::before,
.page-projects .project-item-image figure img {
    border-radius: 20px;
}

/************************************/

/*** 	23. Project Single css    ***/

/************************************/

.page-project-single {
    padding: 120px 0;
}

.project-category-item-list {
    padding: 30px;
}

.project-category-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.project-category-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-category-item .icon-box img {
    width: 100%;
    max-width: 20px;
}

.project-category-item-content {
    width: calc(100% - 30px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.project-category-item-content h3,
.project-category-social-links h3 {
    font-size: 16px;
    line-height: normal;
}

.project-category-item-content p {
    margin-bottom: 0;
}

.project-category-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    width: 100%;
}

.page-category-list .project-category-social-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
}

.page-category-list .project-category-social-links ul li {
    margin: 0;
    padding: 0;
    border: none;
}

.page-category-list .project-category-social-links ul li a {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.page-category-list .project-category-social-links ul li a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.page-category-list .project-category-social-links ul li a::before {
    display: none;
}

.page-category-list .project-category-social-links ul li a i {
    font-size: 16px;
}

.project-entry {
    margin-bottom: 60px;
}

.project-entry p {
    margin-bottom: 20px;
}

.project-entry h2 {
    font-size: 46px;
    margin-bottom: 20px;
}

.project-entry h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-entry p:last-child,
.project-entry h2:last-child,
.project-entry h3:last-child {
    margin-bottom: 0;
}

.project-entry ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-entry ul li {
    position: relative;
    width: calc(50% - 10px);
    line-height: 1.5em;
    padding-left: 25px;
}

.project-entry ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3em;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.project-client-requirement-box,
.project-solution-box,
.project-feedback-box {
    margin-top: 60px;
}

.project-client-requirement-list,
.project-solution-item-list-box {
    margin-top: 40px;
}

.project-solution-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.project-solution-item-list:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-solution-item {
    width: calc(50% - 15px);
}

.project-feedback-body {
    border-left: 4px solid var(--accent-color);
    background-color: var(--secondary-color);
    border-radius: 20px;
    margin-top: 40px;
    padding: 30px;
}

.project-feedback-body-content {
    margin-bottom: 20px;
}

.project-feedback-body-content p {
    color: var(--primary-color);
}

/************************************/

/***    	24. Team Page css     ***/

/************************************/

.page-team {
    padding: 120px 0 90px;
}

/************************************/

/***  	25. Team Single css       ***/

/************************************/

.page-team-single {
    padding: 120px 0;
}

.team-member-about {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 10px;
    margin-bottom: 80px;
}

.team-single-image {
    width: calc(48% - 5px);
}

.team-single-image figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.team-single-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.07;
    object-fit: cover;
    border-radius: 20px;
}

.team-about-content {
    width: calc(52% - 5px);
    padding: 40px;
}

.team-contact-info-title {
    margin-bottom: 30px;
}

.team-contact-info-title h3 {
    font-size: 24px;
}

.team-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-contact-item {
    width: calc(50% - 15px);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px;
}

.team-contact-item .icon-box img {
    width: 100%;
    max-width: 30px;
}

.team-contact-content {
    width: calc(100% - 45px);
}

.team-contact-content h3 {
    font-size: 20px;
}

.team-contact-content p {
    margin: 5px 0 0;
}

.team-member-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    align-items: center;
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.team-member-social-list h3 {
    font-size: 20px;
}

.team-member-social-list ul {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-member-social-list ul li a {
    color: var(--primary-color);
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-member-social-list ul li:hover a {
    background: var(--accent-color);
}

.team-member-social-list ul li a i {
    font-size: 20px;
    color: inherit;
}

.team-experience-info {
    margin-bottom: 80px;
}

.team-experience-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-experience-item {
    width: calc(33.33% - 20px);
}

.team-experience-item h3 {
    position: relative;
    font-size: 20px;
    line-height: 1.4em;
    padding-left: 30px;
}

.team-experience-item h3::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.team-experience-item p {
    margin: 20px 0 0;
}

.team-slills-form {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
}

.contact-box-form.team-contact-form {
    width: calc(50% - 30px);
}

.team-skills-box {
    width: calc(50% - 30px);
    align-content: center;
}

.team-skills-list .skills-progress-bar {
    margin-bottom: 40px;
}

.team-skills-list .skills-progress-bar:last-child {
    margin-bottom: 0px;
}

.team-skills-image {
    margin-top: 40px;
}

.team-skills-image figure {
    display: block;
    border-radius: 20px;
}

.team-skills-image figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 1 / 0.46;
}

/************************************/

/*** 	26. Pricing Page css      ***/

/************************************/

.page-pricing {
    padding: 120px 0;
}

.pricing-item {
    background-color: var(--white-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 10px;
}

.pricing-item-header-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.pricing-item-header-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pricing-item-header-image figure {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
}

.pricing-item-header-image figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 55%;
    z-index: 1;
}

.pricing-item-header-image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.pricing-item:hover .pricing-item-header-image figure img {
    transform: scale(1.04);
}

.pricing-item-content {
    position: relative;
    padding: 30px;
    z-index: 2;
}

.pricing-item-content span {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--white-color);
}

.pricing-item-content p {
    color: var(--white-color);
    margin: 15px 0 0;
}

.pricing-item-content h2 {
    font-size: 40px;
    color: var(--white-color);
    font-weight: 400;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 20px;
    padding-top: 20px;
}

.pricing-item-content h2 sub {
    bottom: 0;
    font-size: 16px;
    font-weight: 400;
}

.pricing-item-body {
    padding: 30px;
}

.pricing-item-list h3 {
    font-size: 20px;
}

.pricing-item-list ul {
    list-style: none;
    border-top: 1px solid var(--divider-color);
    padding: 20px 0 0;
    margin: 20px 0 0;
}

.pricing-item-list ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.pricing-item-list ul li:last-child {
    margin-bottom: 0;
}

.pricing-item-list ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.pricing-item-btn {
    margin-top: 30px;
}

.pricing-benefit-list {
    margin-top: 30px;
}

.pricing-benefit-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-benefit-list ul li {
    display: inline-flex;
    align-items: center;
}

.pricing-benefit-list ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

/************************************/

/***  27. Testimonials Page css   ***/

/************************************/

.page-testimonials {
    padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
    background-color: var(--secondary-color);
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-testimonials .testimonial-item-content p,
.page-testimonials .testimonial-author-content p {
    color: var(--text-color);
}

.page-testimonials .testimonial-item-author {
    background-color: var(--bg-color);
}

.page-testimonials .testimonial-author-content h2 {
    color: var(--primary-color);
}

/************************************/

/*** 	28. Image Gallery css     ***/

/************************************/

.page-gallery {
    padding: 120px 0 90px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
    cursor: none;
}

.page-gallery-box .photo-gallery figure {
    display: block;
    border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.87;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/

/*** 	29.  Video Gallery css    ***/

/************************************/

.page-video-gallery {
    padding: 120px 0 90px;
}

.video-gallery-image {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.video-gallery-image a {
    position: relative;
    display: block;
    cursor: none;
}

.video-gallery-image a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 50%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: '\f04b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    width: 100%;
    aspect-ratio: 1 / 0.87;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/

/*** 	  30. FAQ's Page css      ***/

/************************************/

.page-faqs {
    padding: 120px 0;
}

.page-faqs .page-single-faqs {
    margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child {
    margin-bottom: 0px;
}

/************************************/

/***   31. Contact Us Page css    ***/

/************************************/

.page-contact-us {
    padding: 120px 0 60px;
}

.google-map {
    padding: 60px 0 120px;
}

.google-map-iframe {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

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

/************************************/

/***   32. 404 Error Page css    ***/

/************************************/

.error-page {
    padding: 120px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 830px;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 15px;
}

/************************************/

/***      33. Responsive css      ***/

/************************************/

@media only screen and (max-width: 1024px) {
    .main-menu ul li {
        margin: 0;
    }
    .section-title-content {
        margin-top: 10px;
    }
    .section-btn {
        text-align: left;
        margin-top: 15px;
    }
    .section-row .section-sub-heading,
    .section-title .section-sub-title {
        margin-bottom: 10px;
    }
    .hero:before {
        background: var(--primary-color);
        opacity: 55%;
    }
    .about-us-image-box {
        max-width: 740px;
        margin: 0 auto 30px;
    }
    .about-us-image-box,
    .about-us-image-box-1,
    .about-us-image,
    .about-us-image figure,
    .about-us-image img,
    .about-us-content {
        height: auto;
    }
    .about-us-image img {
        aspect-ratio: 1 / 1.2;
    }
    .our-work-content {
        margin-bottom: 30px;
    }
    .our-work-image {
        max-width: 600px;
        margin: 0 auto;
    }
    .project-item-image figure,
    .project-item-image figure a,
    .project-item-image figure a::before,
    .project-item-image figure img {
        border-radius: 20px;
    }
    .project-item-image figure img {
        aspect-ratio: 1 / 1.1;
    }
    .project-item-body {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    .intro-video-title {
        margin-bottom: 30px;
    }
    .intro-video-title .intro-video-btn {
        margin-top: 20px;
    }
    .intro-video-counter-list {
        margin-top: 30px;
        padding-top: 30px;
    }
    .intro-video-content-box {
        padding: 30px;
    }
    .intro-video-item-list ul {
        gap: 10px 30px;
    }
    .how-it-work-content {
        margin-bottom: 30px;
    }
    .how-it-work-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .how-it-work-image-box {
        max-width: 640px;
        margin: 0 auto;
    }
    .testimonial-slider .swiper-slide .testimonial-item {
        transform: scale(1);
    }
    .our-faq-content {
        position: initial;
        margin: 0 0 30px;
    }
    .contact-us-content-box {
        min-height: initial;
        margin-bottom: 40px;
    }
    .contact-us-info-box {
        padding-top: 40px;
    }
    .contact-us-info-content {
        max-width: 100%;
    }
    .post-item {
        min-height: 380px;
    }
    .about-footer {
        margin: 0 0 30px;
    }
    .about-footer-content,
    .footer-social-links {
        margin-top: 20px;
    }
    .footer-links-box {
        margin-left: 0;
    }
    .footer-links h2 {
        margin-bottom: 20px;
    }
    .footer-cta-box {
        padding: 30px;
        margin-top: 30px;
    }
    .footer-cta-contact-item-content h3 {
        font-size: 18px;
    }
    .footer-copyright-text {
        padding: 30px 0;
    }
    .approach-content {
        margin-bottom: 30px;
        height: auto;
    }
    .our-approach-image-box,
    .our-approach-image,
    .our-approach-image figure,
    .our-approach-image figure img {
        height: auto;
    }
    .our-approach-image-box {
        margin-left: 0;
    }
    .our-approach-image figure img {
        aspect-ratio: 1 / 0.7;
    }
    .key-fact-content {
        height: auto;
        margin-bottom: 30px;
    }
    .premium-quality-item-list {
        gap: 30px;
    }
    .premium-quality-item {
        width: calc(33.33% - 20px);
    }
    .premium-quality-item::before {
        right: -15px;
    }
    .premium-quality-item-content {
        margin: 30px auto 0;
    }
    .cta-box::before {
        opacity: 30%;
        width: 275px;
        height: 200px;
    }
    .cta-box::after {
        opacity: 30%;
        width: 340px;
        height: 260px;
    }
    .page-single-sidebar {
        margin: 0;
    }
    .page-category-list .page-category-list-title {
        padding: 15px 20px;
    }
    .page-category-list ul {
        padding: 20px;
    }
    .page-category-list ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .sidebar-cta-content-box {
        padding: 10px 10px 20px;
    }
    .sidebar-cta-content,
    .sidebar-cta-contact-btn {
        margin-top: 20px;
    }
    .page-single-image {
        margin-bottom: 30px;
    }
    .service-entry {
        margin-bottom: 40px;
    }
    .service-entry .section-footer-text {
        margin-top: 30px;
    }
    .service-why-choose-box,
    .service-features-box,
    .service-window-box {
        margin-top: 40px;
    }
    .service-why-choose-body,
    .service-feature-item-list {
        margin-top: 30px;
    }
    .service-why-choose-body {
        gap: 30px 20px;
    }
    .service-why-choose-item-list-box,
    .service-why-choose-image-box {
        width: calc(50% - 10px);
    }
    .service-why-choose-item {
        margin-bottom: 20px;
    }
    .service-feature-item .icon-box {
        height: 50px;
        width: 50px;
    }
    .service-feature-item .icon-box img {
        max-width: 24px;
    }
    .service-feature-item-content {
        width: calc(100% - 65px);
    }
    .service-feature-body {
        padding-top: 30px;
        margin-top: 30px;
        gap: 20px;
    }
    .service-feature-body-list,
    .service-feature-body-image {
        width: calc(50% - 10px);
    }
    .service-feature-body-image figure img {
        aspect-ratio: 1 / 0.5;
    }
    .service-window-item-list {
        margin: 30px 0;
    }
    .service-window-item {
        padding: 30px 25px;
    }
    .service-window-item-content {
        margin-top: 30px;
    }
    .project-category-item-list {
        padding: 20px;
    }
    .project-category-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .page-category-list .project-category-social-links ul {
        gap: 10px;
    }
    .project-entry {
        margin-bottom: 40px;
    }
    .project-client-requirement-box,
    .project-solution-box,
    .project-feedback-box {
        margin-top: 40px;
    }
    .project-client-requirement-list,
    .project-solution-item-list-box,
    .project-feedback-body {
        margin-top: 30px;
    }
    .team-member-about {
        margin-bottom: 40px;
    }
    .team-single-image,
    .team-about-content {
        width: 100%;
    }
    .team-single-image figure {
        height: auto;
    }
    .team-single-image img {
        height: auto;
        aspect-ratio: 1 / 0.7;
        object-position: top center;
    }
    .team-about-content {
        padding: 0 20px 20px;
    }
    .team-experience-info {
        margin-bottom: 40px;
    }
    .team-experience-item {
        width: calc(50% - 15px);
    }
    .team-skills-box,
    .contact-box-form.team-contact-form {
        width: 100%;
    }
    .team-skills-list .skills-progress-bar {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .floating-contact-buttons {
        right: 16px;
        bottom: 16px;
        gap: 12px;
    }

    .floating-contact-buttons .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .floating-btn-label {
        display: none;
    }

    .btn-default {
        padding: 15px 46px 15px 18px;
    }
    .btn-default::before {
        right: 18px;
    }
    header.main-header .header-sticky {
        width: 100%;
    }
    header.main-header .header-sticky.active {
        width: 100%;
    }
    .navbar {
        padding: 20px 0;
    }
    .responsive-menu,
    .navbar-toggle {
        display: block;
    }
    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }
    .header-btn {
        display: none;
    }
    .section-row {
        margin-bottom: 40px;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .section-sub-heading .section-sub-title,
    .section-title .section-sub-title {
        padding: 6px 12px 6px 24px;
    }
    .section-sub-heading .section-sub-title::before,
    .section-title .section-sub-title::before {
        left: 12px;
    }
    .section-title h1 {
        font-size: 42px;
    }
    .section-title h2 {
        font-size: 36px;
    }
    .section-title p {
        margin-top: 10px;
    }
    .hero {
        min-height: 800px;
        padding: 150px 0 60px;
    }
    .hero-content-list ul li::before {
        font-size: 16px;
    }
    .hero-content-body {
        margin-top: 30px;
        padding-top: 30px;
    }
    .video-play-button a span {
        width: 46px;
        height: 46px;
    }
    .video-play-button a span i {
        font-size: 16px;
    }
    .about-us {
        padding: 60px 0;
    }
    .about-us-counter-box {
        padding: 20px;
    }
    .about-us-counter-box .icon-box img {
        max-width: 40px;
    }
    .about-us-counter-content {
        width: calc(100% - 55px);
    }
    .about-us-counter-content h2 {
        font-size: 32px;
    }
    .about-us-body-list ul li {
        margin-bottom: 10px;
    }
    .about-us-body-list ul li::before {
        font-size: 16px;
    }
    .about-us-btn {
        padding-top: 30px;
        margin-top: 30px;
    }
    .about-us-counter-item {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
    .about-us-counter-item h2 {
        font-size: 38px;
    }
    .our-services {
        background-size: 100% auto;
        padding: 60px 0;
    }
    .service-item {
        min-height: 380px;
        padding: 30px;
    }
    .service-item-body .icon-box {
        width: 50px;
        height: 50px;
    }
    .service-item-body .icon-box img {
        max-width: 24px;
    }
    .service-item-content {
        max-width: 100%;
    }
    .service-item-btn {
        margin-top: 20px;
        padding-top: 20px;
    }
    .section-footer-text {
        margin-top: 10px;
    }
    .section-footer-text p span {
        padding: 3px 10px;
    }
    .section-footer-text ul {
        margin-top: 10px;
    }
    .section-footer-text ul li {
        margin-right: 5px;
    }
    .our-works {
        padding: 60px 0;
    }
    .our-work-item-list {
        padding: 30px;
    }
    .work-content-footer {
        margin-top: 30px;
    }
    .work-content-footer .work-contact-box {
        gap: 10px;
    }
    .work-content-footer .work-contact-box .icon-box {
        width: 44px;
        height: 44px;
    }
    .work-content-footer .work-contact-box .icon-box i {
        font-size: 20px;
    }
    .work-content-footer .work-contact-box .icon-box img {
        font-size: 20px;
    }
    .work-content-footer .work-contact-box-content {
        width: calc(100% - 54px);
    }
    .work-content-footer .work-contact-box-content p {
        font-size: 14px;
    }
    .work-contact-box-content h3 {
        font-size: 18px;
    }
    .our-project {
        padding: 60px 0 0;
    }
    .intro-video {
        padding: 60px 0;
    }
    .intro-video-counter-item h2 {
        font-size: 38px;
    }
    .intro-video-content-box {
        min-height: 480px;
    }
    .intro-video-item-list ul li::before {
        font-size: 16px;
    }
    .how-it-work {
        padding: 60px 0;
    }
    .our-team {
        padding: 60px 0;
    }
    .team-item-content-box {
        padding: 30px;
    }
    .team-item-image figure {
        max-width: 165px;
    }
    .team-item-content {
        margin-top: 20px;
    }
    .team-item-btn .readmore-btn {
        padding: 13px;
    }
    .our-testimonial {
        padding: 60px 0;
    }
    .testimonial-item {
        min-height: 380px;
    }
    .testimonial-item-header,
    .testimonial-item-author {
        padding: 20px;
    }
    .testimonial-item-rating i,
    .testimonial-item-content p {
        font-size: 18px;
    }
    .testimonial-author-image figure img {
        max-width: 50px;
    }
    .testimonial-author-content {
        width: calc(100% - 65px);
    }
    .our-testimonial .section-footer-text {
        margin-top: 40px;
    }
    .our-faqs {
        padding: 60px 0;
    }
    .faq-cta-client-image img {
        max-width: 50px;
    }
    .faq-cta-client-content-box {
        width: calc(100% - 65px);
    }
    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }
    .faq-accordion .accordion-header .accordion-button {
        padding: 15px 45px 15px 20px;
    }
    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 20px;
        font-size: 18px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 15px 20px;
    }
    .contact-us-box {
        padding: 60px 0;
    }
    .contact-us-content-box {
        margin-bottom: 30px;
    }
    .contact-us-info-box {
        padding-top: 30px;
    }
    .contact-us-info-content {
        margin-top: 20px;
    }
    .contact-box-form {
        padding: 30px;
    }
    .contact-form .form-control {
        padding: 13px 15px;
    }
    .our-blog {
        padding: 60px 0 30px;
    }
    .main-footer {
        padding: 60px 0 0;
    }
    .footer-links::before {
        display: none;
    }
    .footer-newsletter-form .form-group .form-control {
        padding: 13px 20px;
    }
    .footer-newsletter-form .form-group .btn-default {
        padding: 15px;
        margin-top: 15px;
    }
    .footer-cta-content {
        width: 100%;
    }
    .footer-cta-content h2 {
        font-size: 24px;
    }
    .footer-cta-contact-list {
        max-width: 100%;
        gap: 30px 40px;
    }
    .footer-cta-contact-item::before {
        right: -20px;
    }
    .page-header {
        padding: 170px 0 80px;
    }
    .page-header-box h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }
    .our-apporach {
        padding: 60px 0;
    }
    .approach-accordion .accordion-item {
        margin-bottom: 20px;
    }
    .approach-accordion .accordion-header .accordion-button {
        font-size: 18px;
        padding: 0 30px 20px 0;
    }
    .approach-accordion .accordion-item .accordion-body {
        padding: 20px 30px 0 0;
    }
    .key-fact {
        padding: 60px 0;
    }
    .skills-progress-bar .skillbar {
        margin-bottom: 20px;
    }
    .skills-progress-bar .skillbar .skill-progress {
        height: 10px;
    }
    .key-fact-btn {
        margin-top: 30px;
    }
    .key-fact-item-header h2 {
        font-size: 38px;
    }
    .key-fact-item-footer {
        padding-top: 20px;
    }
    .premium-quality {
        padding: 60px 0;
    }
    .premium-quality-item {
        width: calc(50% - 15px);
    }
    .premium-quality-item::before {
        right: -15px;
    }
    .premium-quality-item:nth-child(3n+3)::before {
        display: block;
    }
    .premium-quality-item:last-child:before,
    .premium-quality-item:nth-child(2n+2)::before {
        display: none;
    }
    .premium-quality-item-image figure {
        max-width: 160px;
    }
    .premium-quality .section-footer-text {
        margin-top: 40px;
    }
    .cta-box {
        padding: 60px 0;
    }
    .cta-btn {
        margin-top: 30px;
    }
    .page-services {
        padding: 60px 0 30px;
    }
    .page-service-single {
        padding: 60px 0;
    }
    .page-single-sidebar,
    .page-category-list {
        margin-bottom: 30px;
    }
    .sidebar-cta-contact-btn .btn-default {
        padding: 15px 18px 15px 45px;
    }
    .sidebar-cta-contact-btn .btn-default::before {
        left: 18px;
    }
    .service-entry p {
        margin-bottom: 15px;
    }
    .service-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .service-entry ul li {
        margin-bottom: 15px;
    }
    .service-entry ul li::before {
        font-size: 16px;
    }
    .service-why-choose-item span {
        margin-bottom: 20px;
    }
    .page-blog {
        padding: 60px 0;
    }
    .page-pagination {
        margin-top: 10px;
    }
    .page-single-post {
        padding: 60px 0;
    }
    .post-image {
        margin-bottom: 20px;
    }
    .post-entry h2 {
        font-size: 38px;
    }
    .post-entry p {
        margin-bottom: 15px;
    }
    .post-entry ol li,
    .post-entry ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    .post-entry blockquote p {
        font-size: 18px;
    }
    .post-tags {
        margin-bottom: 20px;
    }
    .post-tags .tag-links a {
        padding: 12px 15px;
    }
    .post-social-sharing ul {
        text-align: left;
    }
    .page-projects {
        padding: 60px 0 30px;
    }
    .page-project-single {
        padding: 60px 0;
    }
    .project-entry p {
        margin-bottom: 15px;
    }
    .project-entry h2 {
        font-size: 38px;
        margin-bottom: 15px;
    }
    .project-entry ul li::before {
        font-size: 16px;
    }
    .project-solution-item-list {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .project-feedback-body {
        padding: 20px;
    }
    .project-feedback-body-content {
        margin-bottom: 10px;
    }
    .page-team {
        padding: 60px 0 30px;
    }
    .page-team-single {
        padding: 60px 0;
    }
    .team-contact-info-title {
        margin-bottom: 20px;
    }
    .team-contact-info-title h3 {
        font-size: 20px;
    }
    .team-member-social-list {
        margin-top: 30px;
        padding-top: 30px;
    }
    .team-experience-item h3 {
        font-size: 18px;
        padding-left: 25px;
    }
    .team-experience-item h3::before {
        font-size: 18px;
    }
    .team-experience-item p {
        margin: 10px 0 0;
    }
    .team-skills-image {
        margin-top: 30px;
    }
    .page-pricing {
        padding: 60px 0;
    }
    .pricing-item-content {
        padding: 20px;
    }
    .pricing-item-content h2 {
        font-size: 34px;
    }
    .pricing-item-body {
        padding: 20px 10px 10px;
    }
    .pricing-item-list ul {
        margin-top: 15px;
        padding-top: 15px;
    }
    .pricing-item-list ul li {
        margin-bottom: 10px;
    }
    .pricing-item-list ul li::before {
        font-size: 16px;
    }
    .pricing-benefit-list {
        margin-top: 10px;
    }
    .pricing-benefit-list ul {
        gap: 20px 30px;
    }
    .pricing-benefit-list ul li img {
        max-width: 18px;
    }
    .page-testimonials {
        padding: 60px 0 30px;
    }
    .page-gallery {
        padding: 60px 0 30px;
    }
    .page-video-gallery {
        padding: 60px 0 30px;
    }
    .page-faqs {
        padding: 60px 0;
    }
    .page-faqs .page-single-faqs {
        margin-bottom: 40px;
    }
    .page-contact-us {
        padding: 60px 0 30px;
    }
    .google-map {
        padding: 30px 0 60px;
    }
    .google-map-iframe {
        height: 450px;
    }
    .error-page {
        padding: 60px 0px;
    }
    .error-page-image {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .section-row {
        margin-bottom: 30px;
    }
    .section-title h1 {
        font-size: 28px;
    }
    .section-title h2 {
        font-size: 26px;
    }
    .hero-content-list ul {
        gap: 10px;
    }
    .hero-content-list ul li {
        width: 100%;
    }
    .hero-content-body {
        gap: 20px;
    }
    .video-play-button p {
        font-size: 14px;
    }
    .about-us-image img {
        aspect-ratio: 1 / 1.36;
    }
    .about-us-counter-box {
        padding: 12px;
        bottom: 35px;
        right: -50px;
        gap: 10px;
        border-radius: 14px;
    }
    .about-us-counter-box .icon-box img {
        max-width: 30px;
    }
    .about-us-counter-content {
        width: calc(100% - 40px);
    }
    .about-us-counter-content h2 {
        font-size: 24px;
    }
    .about-us-counter-content p {
        font-size: 14px;
    }
    .about-us-image-box-2 {
        margin-bottom: 30px;
    }
    .about-us-image-box-2 .about-us-image figure {
        border-width: 5px;
        border-radius: 24px 20px 20px 24px;
        margin-left: -80px;
    }
    .about-us-body-content,
    .about-us-counter-list {
        width: 100%;
    }
    .about-us-counter-item {
        text-align: left;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .about-us-counter-item h2 {
        font-size: 26px;
    }
    .service-item {
        padding: 20px;
        min-height: 300px;
    }
    .service-item-content h2 {
        font-size: 18px;
    }
    .our-work-item-list {
        gap: 20px;
        padding: 20px;
    }
    .our-work-item {
        width: 100%;
    }
    .our-work-item-content h3 {
        font-size: 18px
    }
    .work-content-footer {
        gap: 20px;
    }
    .project-item-body {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .project-item-content h2 {
        font-size: 18px;
    }
    .project-item-btn {
        padding-top: 15px;
        margin-top: 15px;
    }
    .intro-video-counter-list {
        gap: 20px;
    }
    .intro-video-counter-item {
        width: calc(33.33% - 13.33px);
    }
    .intro-video-counter-item h2 {
        font-size: 26px;
    }
    .intro-video-counter-item p {
        font-size: 14px;
    }
    .intro-video-content-box {
        min-height: 380px;
        padding: 20px;
    }
    .intro-video-item-list ul {
        justify-content: start;
    }
    .how-it-work-item {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .how-it-work-item-no {
        width: 42px;
        height: 42px;
    }
    .how-it-work-item-content {
        width: calc(100% - 57px);
    }
    .how-it-work-item-no h3 {
        font-size: 20px;
    }
    .how-it-work-item-content h3 {
        font-size: 18px;
    }
    .team-item-content-box {
        padding: 20px;
    }
    .team-item-content h2 {
        font-size: 18px;
    }
    .testimonial-item {
        min-height: 300px;
    }
    .testimonial-item-header {
        padding: 10px;
        margin-bottom: 10px;
    }
    .testimonial-item-rating i,
    .testimonial-item-content p {
        font-size: 16px;
    }
    .testimonial-item-author {
        padding: 15px;
    }
    .testimonial-author-content h2 {
        font-size: 18px;
    }
    .faq-cta-client-box {
        max-width: 100%;
    }
    .faq-accordion .accordion-header .accordion-button {
        font-size: 16px;
        padding: 12px 40px 12px 15px;
    }
    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 15px;
    }
    .faq-accordion .accordion-item .accordion-body {
        padding: 12px 15px;
    }
    .contact-box-form {
        padding: 20px;
    }
    .post-item {
        padding: 20px;
        min-height: 320px;
    }
    .post-item-content h2 {
        font-size: 18px;
    }
    .post-item-btn {
        margin-top: 15px;
        padding-top: 15px;
    }
    .footer-links-box {
        justify-content: space-between;
    }
    .footer-quick-links,
    .footer-service-links,
    .footer-newsletter-box {
        width: auto;
    }
    .footer-newsletter-box {
        width: 100%;
    }
    .footer-links h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-links ul li {
        margin-bottom: 10px;
    }
    .footer-cta-box {
        padding: 20px;
    }
    .footer-cta-content h2 {
        font-size: 22px;
    }
    .footer-cta-contact-list {
        gap: 20px;
    }
    .footer-cta-contact-item::before {
        display: none;
    }
    .footer-cta-contact-item-content h3 {
        font-size: 18px;
    }
    .footer-copyright-text {
        padding: 15px 0;
    }
    .page-header-box h1 {
        font-size: 28px;
    }
    .approach-accordion .accordion-header .accordion-button {
        font-size: 16px;
        padding: 0 25px 15px 0;
    }
    .approach-accordion .accordion-item .accordion-button::after,
    .approach-accordion .accordion-item .accordion-button.collapsed::after {
        font-size: 18px;
    }
    .approach-accordion .accordion-item .accordion-body {
        padding: 15px 0 0 0;
    }
    .approach-accordion .accordion-item .accordion-body p {
        font-size: 14px;
    }
    .our-approach-image figure img {
        aspect-ratio: 1 / 0.99;
    }
    .our-approach-cta-box {
        bottom: 15px;
        left: 15px;
        padding: 15px;
    }
    .our-approach-cta-footer {
        margin-top: 15px;
    }
    .skills-progress-bar .skill-data {
        margin-bottom: 10px;
    }
    .skills-progress-bar .skill-data .skill-title,
    .skills-progress-bar .skill-data .skill-no {
        font-size: 16px;
    }
    .key-fact-item {
        width: 100%;
        padding: 20px;
        min-height: auto;
    }
    .key-fact-item-body {
        gap: 20px;
    }
    .key-fact-item-header p {
        margin: 0 0 5px;
    }
    .key-fact-item-header h2 {
        font-size: 26px;
    }
    .premium-quality-item {
        width: 100%;
    }
    .premium-quality-item::before {
        display: none;
    }
    .premium-quality-item-content {
        margin: 20px 0 0;
    }
    .premium-quality-item-content h3 {
        font-size: 18px;
    }
    .cta-btn::before {
        display: none;
    }
    .cta-box::before {
        left: -30px;
        width: 205px;
        height: 150px;
    }
    .cta-box::after {
        right: -30px;
        width: 280px;
        height: 200px;
    }
    .page-category-list .page-category-list-title,
    .sidebar-cta-content h2 {
        font-size: 18px;
    }
    .page-single-image {
        margin-bottom: 20px;
    }
    .page-single-image img {
        aspect-ratio: 1 / 0.65;
    }
    .service-entry h2 {
        font-size: 26px;
    }
    .service-entry h3 {
        font-size: 18px;
    }
    .service-entry ul li {
        margin-bottom: 10px;
    }
    .service-why-choose-item-list-box,
    .service-why-choose-image-box {
        width: 100%;
    }
    .service-why-choose-image-box figure,
    .service-why-choose-image-box figure img {
        height: auto;
    }
    .service-why-choose-image-box figure img {
        aspect-ratio: 1 / 0.9;
    }
    .service-feature-item {
        width: 100%;
    }
    .service-feature-body-list,
    .service-feature-body-image {
        width: 100%;
    }
    .service-feature-body-image figure,
    .service-feature-body-image figure img {
        height: auto;
    }
    .service-window-item {
        width: 100%;
    }
    .service-window-item-list {
        gap: 20px;
    }
    .service-window-item {
        width: calc(50% - 10px);
        padding: 15px;
    }
    .service-window-item-content {
        margin-top: 20px;
    }
    .post-single-meta ol li,
    .post-single-meta ol li i {
        font-size: 16px;
    }
    .post-image img {
        aspect-ratio: 1 / 0.7;
    }
    .post-entry blockquote {
        Background-size: 30px;
        padding: 60px 20px 20px 20px;
    }
    .post-entry blockquote p {
        font-size: 16px;
    }
    .post-entry h2 {
        font-size: 26px;
    }
    .tag-links {
        font-size: 18px;
    }
    .project-entry h2 {
        font-size: 26px;
    }
    .project-entry h3 {
        font-size: 18px;
    }
    .project-entry ul {
        gap: 10px;
    }
    .project-entry ul li {
        width: 100%;
    }
    .project-solution-item-list {
        border-bottom: none;
        padding-bottom: 0;
        gap: 20px;
    }
    .project-solution-item {
        width: 100%;
    }
    .page-team {
        padding: 60px 0 30px;
    }
    .team-single-image img {
        aspect-ratio: 1 / 1;
        object-position: center center;
    }
    .team-about-content {
        padding: 0 10px 10px;
    }
    .team-contact-info-title h3 {
        font-size: 20px;
    }
    .team-contact-list {
        gap: 20px;
    }
    .team-contact-item {
        width: 100%;
        padding: 15px;
    }
    .team-contact-content h3,
    .team-member-social-list h3 {
        font-size: 18px;
    }
    .team-member-social-list {
        gap: 20px;
    }
    .team-experience-item {
        width: 100%;
    }
    .team-experience-item h3 {
        font-size: 18px;
    }
    .team-skills-list .skills-progress-bar {
        margin-bottom: 20px;
    }
    .skills-progress-bar .skill-data {
        margin-bottom: 10px;
    }
    .pricing-item-content span,
    .pricing-item-list h3 {
        font-size: 18px;
    }
    .pricing-item-content p {
        margin: 10px 0 0;
    }
    .pricing-item-content h2 {
        font-size: 28px;
        margin-top: 15px;
        padding-top: 15px;
    }
    .pricing-item-content h2 sub {
        font-size: 14px;
    }
    .pricing-item-list ul {
        padding: 15px 0 0;
        margin: 15px 0 0;
    }
    .pricing-benefit-list ul {
        gap: 10px 20px;
    }
    .pricing-benefit-list ul li {
        font-size: 14px;
    }
    .pricing-benefit-list ul li img {
        max-width: 16px;
        margin-right: 5px;
    }
    .google-map-iframe {
        height: 350px;
    }
}

/************************************/

/***  34. Home - Version 2 css    ***/

/************************************/

.topbar-metal {
    background: var(--accent-color);
    padding: 10px 0;
}

.topbar-metal .row {
    margin-bottom: 0;
    align-items: center;
}

.topbar-contact-info-metal p {
    line-height: 1.3;
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.topbar-contact-info-metal p a {
    color: inherit;
    text-decoration: underline;
    transition: all 0.4s ease-in-out;
}

.topbar-contact-info-metal p a:hover {
    color: var(--white-color);
}

.topbar-link-box-metal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.topbar-contact-info-list-metal {
    border-right: 1px solid var(--divider-color);
    margin-right: 20px;
    padding-right: 20px;
}

.topbar-contact-info-list-metal ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar-contact-info-list-metal ul li {
    position: relative;
    color: var(--primary-color);
    text-transform: capitalize;
}

.topbar-contact-info-list-metal ul li::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -10px;
    background: var(--primary-color);
    width: 2px;
    height: 100%;
    transform: rotate(8deg);
}

.topbar-contact-info-list-metal ul li:last-child:before {
    display: none;
}

.topbar-contact-info-list-metal ul li a {
    color: inherit;
    font-size: 14px;
    line-height: 1.3;
    transition: all 0.3s ease-in-out;
}

.topbar-contact-info-list-metal ul li a:hover {
    color: var(--white-color);
}

.topbar-social-links-metal ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.topbar-social-links-metal ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 16px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.topbar-social-links-metal ul li a:hover {
    color: var(--white-color);
}

.topbar-social-links-metal ul li a i {
    color: inherit;
}

header.main-header-metal {
    position: initial;
}

header.main-header-metal .header-sticky {
    background: var(--secondary-color);
    border: none;
}

header.main-header-metal .main-menu ul li a {
    color: var(--primary-color);
}

header.main-header-metal .main-menu ul li a:hover,
header.main-header-metal .main-menu ul li a:focus {
    color: var(--accent-color);
}

header.main-header-metal .main-menu ul li a.active {
    color: var(--accent-color);
}

header.main-header-metal .main-menu ul ul li a:hover,
header.main-header-metal .main-menu ul ul li a:focus {
    color: var(--white-color);
}

header.main-header-metal .header-sticky.active {
    background: var(--white-color);
    border-color: var(--divider-color);
}

/* Navbar — Estimate CTA button */
header.main-header-metal .main-menu ul li.nav-item-estimate-metal {
    margin-left: 6px;
    align-self: center;
}

header.main-header-metal .main-menu ul li a.nav-link-estimate-metal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px !important;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary-color) !important;
    background: transparent;
    border: 1.5px solid var(--primary-color);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

header.main-header-metal .main-menu ul li a.nav-link-estimate-metal:hover,
header.main-header-metal .main-menu ul li a.nav-link-estimate-metal:focus-visible {
    color: var(--white-color) !important;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(24, 24, 24, 0.14);
}

header.main-header-metal .main-menu ul li a.nav-link-estimate-metal.active {
    color: var(--primary-color) !important;
    background: rgba(237, 199, 1, 0.18);
    border-color: var(--primary-color);
}

header.main-header-metal .main-menu ul li a.nav-link-estimate-metal.active:hover,
header.main-header-metal .main-menu ul li a.nav-link-estimate-metal.active:focus-visible {
    color: var(--white-color) !important;
    background: var(--primary-color);
}

.slicknav_nav li.nav-item-estimate-metal {
    margin-top: 4px;
}

.slicknav_nav li a.nav-link-estimate-metal {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: calc(100% - 40px);
    margin: 6px 20px 10px;
    padding: 11px 18px !important;
    border-radius: 100px;
    font-size: 15px !important;
    font-weight: 600;
    color: var(--primary-color) !important;
    background: transparent;
    border: 1.5px solid var(--primary-color);
    box-sizing: border-box;
}

.slicknav_nav li a.nav-link-estimate-metal:hover,
.slicknav_nav li a.nav-link-estimate-metal:focus-visible {
    color: var(--white-color) !important;
    background: var(--primary-color);
}

.hero-metal {
    --hero-stat-overlap: 48px;
    position: relative;
    min-height: 0;
    padding: 0 0 calc(var(--hero-stat-overlap) + 20px);
    background: var(--primary-color);
    overflow: hidden;
}

.hero-split-slider-metal {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-split-slider-metal .swiper-slide {
    height: auto;
}

.hero-split-slide-metal {
    position: relative;
    min-height: 620px;
    background-color: var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-split-slide-metal--1 {
    background-image: url('../images/649238915_18012617375675059_1645744432249205943_n.jpg');
}

.hero-split-slide-metal--2 {
    background-image: url('../images/670261084_18128046646563256_7145466898484039601_n.jpg');
}

.hero-split-slide-metal--3 {
    background-image: url('../images/656836301_18110970754748568_4386930621040430821_n.jpg');
}

.hero-split-slide-metal--4 {
    background-image: url('../images/658171185_18432532714142099_2445403362913567242_n.jpg');
}

.hero-split-bg-overlay-metal {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(24, 24, 24, 0.94) 0%, rgba(24, 24, 24, 0.78) 42%, rgba(24, 24, 24, 0.28) 100%),
        linear-gradient(180deg, rgba(24, 24, 24, 0.35) 0%, transparent 40%, rgba(24, 24, 24, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-split-slide-content-metal {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 620px;
    padding: 118px 0 100px;
}

.hero-split-controls-metal {
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(var(--hero-stat-overlap) + 18px);
    z-index: 10;
    margin-top: 0;
    pointer-events: none;
}

.hero-split-controls-metal .container,
.hero-split-controls-metal button {
    pointer-events: auto;
}

.hero-split-controls-inner-metal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-split-counter-metal {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.06em;
    min-width: 56px;
}

.hero-split-counter-current {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 700;
}

.hero-split-pagination-metal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
}

.hero-split-pagination-metal .swiper-pagination-bullet {
    width: 36px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.22);
    opacity: 1;
    margin: 0 !important;
    transition: background 0.35s ease, width 0.35s ease;
}

.hero-split-pagination-metal .swiper-pagination-bullet-active {
    width: 52px;
    background: var(--accent-color);
}

.hero-split-nav-metal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-split-prev-metal,
.hero-split-next-metal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white-color);
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.hero-split-prev-metal:hover,
.hero-split-next-metal:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.hero-split-prev-metal i,
.hero-split-next-metal i {
    font-size: 14px;
}

.hero-split-slider-metal .hero-content-metal .section-title {
    margin-bottom: 0;
}

.hero-split-slider-metal .hero-headline-line--secondary {
    font-size: 1em;
}

.hero-split-slider-metal .hero-btn-metal {
    margin-top: 28px;
}

/* Hero text on image backgrounds */
.hero-metal .section-sub-title,
.hero-metal .hero-headline-metal,
.hero-metal .hero-headline-line,
.hero-metal .hero-headline-line--secondary,
.hero-metal .hero-hl-only,
.hero-metal .hero-hl-trust {
    color: var(--white-color);
}

.hero-metal .section-sub-title {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-content-metal {
    position: relative;
    margin-right: 20px;
    z-index: 2;
}

/* Hero headline — highlighted trust message */
.hero-content-metal .section-title h1.hero-headline-metal {
    display: flex;
    flex-direction: column;
    gap: 0.45em;
    max-width: 760px;
    font-size: clamp(28px, 3.4vw, 48px);
    line-height: 1.35;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.96);
    margin-bottom: 0;
}

.hero-headline-line {
    display: block;
}

.hero-headline-line--secondary {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.96em;
    line-height: 1.45;
}

.hero-hl-accent {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0;
}

.hero-hl-trust {
    display: inline;
    font-weight: 600;
    color: var(--white-color);
    -webkit-text-fill-color: var(--white-color);
}

.hero-hl-location {
    position: relative;
    display: inline-block;
    font-weight: 600;
    color: var(--accent-color);
}

.hero-hl-location::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 2px;
    border-radius: 2px;
    background: rgba(237, 199, 1, 0.45);
}

.hero-hl-comma {
    color: rgba(255, 255, 255, 0.55);
}

.hero-hl-dash {
    display: inline-block;
    margin: 0 0.12em;
    color: rgba(237, 199, 1, 0.65);
    font-weight: 300;
}

.hero-hl-only {
    font-weight: 600;
    color: var(--white-color);
}

.hero-hl-promise {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.2em 0.3em;
    padding: 0.12em 0.4em 0.12em 0.32em;
    border-radius: 8px;
    background: rgba(237, 199, 1, 0.1);
    border: 1px solid rgba(237, 199, 1, 0.28);
    vertical-align: middle;
}

.hero-hl-promise--compact {
    padding: 0.1em 0.36em 0.1em 0.28em;
    border-radius: 8px;
    gap: 0.16em;
}

.hero-hl-after-sale {
    display: inline;
    font-weight: 600;
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
}

.hero-hl-zero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.2em;
    padding: 0.04em 0.22em;
    border-radius: 6px;
    font-size: 0.92em;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    background: var(--accent-color);
    box-shadow: none;
}

.hero-hl-ever {
    font-weight: 700;
    font-style: normal;
    color: var(--accent-color);
    letter-spacing: 0;
    text-shadow: none;
}

.hero-tagline-metal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    max-width: 640px;
}

.hero-tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.hero-tag-chip i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
}

.hero-tag-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-tag-chip--accent {
    color: var(--primary-color);
    background: var(--white-color);
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.hero-tag-chip--accent i {
    color: var(--primary-color);
}

.hero-tag-chip--accent:hover {
    background: var(--white-color);
    border-color: var(--white-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.hero-content-footer-metal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 48px;
    padding-top: 32px;
    padding-bottom: 24px;
}

.google-review-box-metal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-right: 1px solid var(--dark-divider-color);
    gap: 15px;
    padding-right: 30px;
}

.google-review-box-metal .icon-box img {
    width: 100%;
    max-width: 50px;
}

.google-review-box-content-metal {
    width: calc(100% - 65px);
}

.google-rating-star-metal i {
    font-size: 14px;
    color: var(--white-color);
}

.google-review-box-content-metal p {
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    color: var(--white-color);
    margin: 8px 0 0;
}

.hero-footer-content-metal {
    max-width: 55%;
}

.hero-footer-content-metal p {
    color: var(--white-color);
    margin: 0;
}

/* Hero Stats Bridge — overlaps hero (top) and about (bottom) */
.hero-stats-bridge-metal {
    --hero-stat-overlap: 48px;
    position: relative;
    z-index: 12;
    margin-top: calc(var(--hero-stat-overlap) * -1);
    margin-bottom: calc(var(--hero-stat-overlap) * -1);
    padding: 0;
}

.hero-stats-bar-metal {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 18px 0 20px;
    border-radius: 20px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    box-shadow:
        0 24px 56px rgba(24, 24, 24, 0.1),
        0 4px 16px rgba(24, 24, 24, 0.04);
    overflow: hidden;
}

.hero-stats-bar-metal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #ffe566 45%, var(--accent-color));
    z-index: 1;
}

.hero-stats-bar-head-metal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-color);
}

.hero-stats-bar-dot-metal {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 10px rgba(237, 199, 1, 0.6);
}

.hero-stats-carousel-metal {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    padding: 0 18px;
}

.hero-stats-carousel-metal .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    transition-timing-function: linear !important;
}

.hero-stats-carousel-metal:not(.swiper-initialized) .swiper-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hero-stats-carousel-metal:not(.swiper-initialized) .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.hero-stats-carousel-metal:not(.swiper-initialized) .swiper-slide {
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.hero-stats-carousel-metal.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: linear !important;
}

.hero-stats-carousel-metal .swiper-slide {
    width: 268px !important;
    height: auto;
    flex-shrink: 0;
}

.hero-stats-grid-metal {
    position: relative;
    z-index: 1;
}

.hero-stats-grid-metal.is-animated {
    pointer-events: auto;
}

.hero-stats-carousel-metal .hero-stat-card-metal {
    width: 100%;
    height: 100%;
}

.hero-stat-card-metal {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 96px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fafaf8 0%, var(--white-color) 100%);
    border: 1px solid var(--divider-color);
    box-shadow: 0 6px 20px rgba(24, 24, 24, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    overflow: hidden;
}

.hero-stat-card-metal::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 3px;
    border-radius: 0 4px 4px 0;
    background: var(--accent-color);
    opacity: 0.85;
}

.hero-stat-card-metal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-stat-card-metal.is-visible:hover {
    transform: translateY(-4px);
    border-color: rgba(237, 199, 1, 0.35);
    box-shadow: 0 14px 32px rgba(24, 24, 24, 0.1);
}

.hero-stat-card-metal.is-counting {
    border-color: rgba(237, 199, 1, 0.45);
    box-shadow: 0 10px 28px rgba(237, 199, 1, 0.15);
}

.hero-stat-ribbon-inner-metal {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px 18px 20px;
    min-height: 96px;
}

.hero-stat-ribbon-content-metal {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.hero-stat-icon-metal {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 19px;
    opacity: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-stat-card-metal.is-visible .hero-stat-icon-metal {
    animation: heroStatIconPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-stat-card-metal.is-visible:hover .hero-stat-icon-metal {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(24, 24, 24, 0.15);
}

.hero-stat-value-metal {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2px 4px;
    width: 100%;
    min-height: auto;
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    text-shadow: none;
}

.hero-stat-counter-wrap-metal {
    display: inline-flex;
    align-items: center;
    min-width: 1.5ch;
    overflow: hidden;
    vertical-align: bottom;
}

.hero-stat-counter {
    display: inline-block;
    min-width: 1.2ch;
    transition: transform 0.2s ease;
}

.hero-stat-counter.is-rolling {
    color: var(--accent-color);
}

.hero-stat-counter.is-done {
    animation: heroStatCounterLand 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-stat-suffix-metal {
    font-size: clamp(15px, 1.3vw, 20px);
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0;
    transform: translateX(-6px);
}

.hero-stat-card-metal.is-visible .hero-stat-suffix-metal {
    animation: heroStatSuffixIn 0.55s ease forwards;
    animation-delay: 0.45s;
}

.hero-stat-value-metal--text {
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-color);
}

.hero-stat-card-metal--text .hero-stat-text-metal {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
}

.hero-stat-card-metal--text.is-visible .hero-stat-text-metal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-stat-label-metal {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--text-color);
    text-transform: none;
    letter-spacing: 0;
    opacity: 0;
    transform: translateY(6px);
}

.hero-stat-card-metal.is-visible .hero-stat-label-metal {
    animation: heroStatLabelIn 0.5s ease forwards;
    animation-delay: 0.25s;
}

.hero-stat-card-metal--highlight {
    background: linear-gradient(135deg, #fffef5 0%, #fff9e0 100%);
    border-color: rgba(237, 199, 1, 0.4);
    box-shadow: 0 8px 24px rgba(237, 199, 1, 0.12);
}

.hero-stat-card-metal--highlight::before {
    width: 4px;
    background: linear-gradient(180deg, #ffe566, var(--accent-color));
}

.hero-stat-badge-metal {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    padding: 4px 9px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: var(--accent-color);
    box-shadow: 0 2px 8px rgba(237, 199, 1, 0.35);
}

.hero-stat-card-metal--highlight .hero-stat-icon-metal {
    background: linear-gradient(145deg, var(--primary-color) 0%, #2a2618 100%);
    color: var(--accent-color);
}

.hero-stat-card-metal--highlight .hero-stat-label-metal {
    font-weight: 600;
    color: var(--primary-color);
}

.hero-stat-card-metal:nth-child(1).is-visible { transition-delay: 0.04s; }
.hero-stat-card-metal:nth-child(2).is-visible { transition-delay: 0.1s; }
.hero-stat-card-metal:nth-child(3).is-visible { transition-delay: 0.16s; }
.hero-stat-card-metal:nth-child(4).is-visible { transition-delay: 0.22s; }
.hero-stat-card-metal:nth-child(5).is-visible { transition-delay: 0.28s; }

.hero-stat-card-metal--highlight.is-visible .hero-stat-counter.is-done {
    animation: heroStatHighlightPop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes heroStatLabelIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroStatIconPop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroStatCounterLand {
    0% { transform: scale(1.25); }
    55% { transform: scale(0.96); }
    100% { transform: scale(1); }
}

@keyframes heroStatSuffixIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroStatHighlightPop {
    0%, 100% { transform: scale(1); }
    40% { transform: scale(1.15); }
    70% { transform: scale(0.97); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-stat-card-metal,
    .hero-stat-card-metal.is-visible,
    .hero-stat-icon-metal,
    .hero-stat-counter,
    .hero-stat-suffix-metal,
    .hero-stat-text-metal {
        animation: none !important;
        transition: none !important;
        opacity: 1;
        transform: none;
    }
}


.about-us-metal.about-us-metal--hero-stats,
.product-categories-metal.section-after-hero-stats {
    padding-top: calc(120px + var(--hero-stat-overlap, 48px));
}

.hero-image-slider-metal {
    height: 100%;
    align-content: end;
}

.hero-image-slider-metal .swiper-slide {
    cursor: none;
}

.hero-img-slider-metal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.hero-img-slider-metal:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(24, 24, 24, 0.80) 16.17%, transparent 100%);
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-img-slider-metal .swiper {
    height: 100%;
}

.hero-img-slider-metal .swiper-slide,
.hero-img-slider-metal .slide-image {
    height: 100%;
}

.hero-img-slider-metal .slide-image figure {
    display: block;
    height: 100%;
}

.hero-img-slider-metal .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-img-item-metal {
    text-align: right;
    width: 270px;
    margin: 0 0 0 auto;
}

.hero-img-item-metal .swiper-slide {
    border: 2px solid var(--dark-divider-color);
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

.hero-img-item-metal .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--white-color);
}

.hero-img-item-metal figure {
    display: block;
}

.hero-img-item-metal img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
}

.about-us-metal {
    padding: 120px 0;
}

.about-intro-copy-metal {
    margin-top: 18px;
    max-width: 720px;
}

.about-intro-lead-metal {
    margin: 0 0 18px;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 600;
    line-height: 1.55;
    color: var(--primary-color);
}

.about-intro-lead-metal strong {
    color: var(--accent-color);
}

.about-intro-body-metal {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-color);
}

.about-intro-promise-metal {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--primary-color);
}

.about-intro-promise-metal strong {
    color: var(--accent-color);
}

.about-founder-callout-metal {
    margin: 8px 0 36px;
}

.about-us-metal .section-title h2 img {
    width: 100%;
    max-width: 120px;
    height: 40px;
    border-radius: 100px;
}

.about-us-item-metal {
    background-color: var(--secondary-color);
    border-radius: 20px;
    min-height: 425px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    padding: 40px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.about-us-item-header-metal .icon-box {
    position: relative;
    height: 50px;
    width: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 30px;
}

.about-us-item-header-metal .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-us-item-metal:hover .about-us-item-header-metal .icon-box::before {
    transform: scale(1);
}

.about-us-item-header-metal .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.about-us-item-metal:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-us-item-header-content-metal h3 {
    font-size: 20px;
}

.about-us-item-header-content-metal p,
.about-us-item-counter-metal p {
    margin: 10px 0 0;
}

.about-us-item-counter-metal {
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
}

.about-us-item-counter-metal h2 {
    font-size: 40px;
}

.about-us-image-metal {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.about-us-image-slider-metal {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.about-us-image-slider-metal .swiper-slide {
    height: auto;
}

.about-us-image-slider-metal figure {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.about-us-image-slider-metal figure.reveal {
    display: block;
    width: 100%;
}

.about-us-image-metal img,
.about-us-image-slider-metal img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.054;
    object-fit: cover;
    border-radius: 20px;
}

.about-us-item-image-metal figure {
    display: block;
    background-image: url('../images/about-us-item-image-shape-metal.svg');
    mask-image: url('../images/about-us-item-image-shape-metal.svg');
    mask-repeat: no-repeat;
    mask-position: center center;
    mask-size: cover;
    width: 200px;
    height: 100px;
    overflow: hidden;
}

.about-us-item-image-metal img {
    width: 100%;
    object-fit: cover;
}

.about-us-item-Content-metal h3 {
    font-size: 20px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
}

.about-us-item-Content-metal p {
    margin: 20px 0 0;
}

.company-supports-slider-box-metal {
    margin-top: 30px;
}

.company-supports-content-metal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.company-supports-content-metal hr {
    height: 1px;
    flex-grow: 1;
    color: var(--divider-color);
    opacity: 1;
    margin: 0;
}

.company-supports-content-metal p {
    color: var(--primary-color);
    margin-bottom: 0;
}

.company-supports-slider-metal {
    margin: 0 3.125vw;
    text-align: center;
}

.company-supports-logo-metal {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.company-supports-logo-metal img {
    width: auto;
    max-width: 305px;
    height: 70px;
    max-height: 80px;
    object-fit: contain;
    object-position: center;
}

.product-categories-metal {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #f0efe6 50%, var(--bg-color) 100%);
    overflow: hidden;
}

.product-categories-bg-metal {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.product-categories-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.product-categories-glow-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -80px;
    background: rgba(237, 199, 1, 0.35);
}

.product-categories-glow-2 {
    width: 360px;
    height: 360px;
    bottom: -100px;
    left: -60px;
    background: rgba(24, 24, 24, 0.08);
}

.product-categories-metal .container {
    position: relative;
    z-index: 1;
}

.product-categories-header-metal.section-title-center p {
    max-width: 620px;
    margin: 20px auto 0;
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-color);
}

.product-categories-header-metal.section-title-center h2 {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.product-categories-quick-nav-metal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.product-categories-quick-nav-metal a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.product-categories-quick-nav-metal a i {
    font-size: 12px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.product-categories-quick-nav-metal a:hover,
.product-categories-quick-nav-metal a:focus-visible {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(24, 24, 24, 0.12);
}

.product-categories-quick-nav-metal a:hover i,
.product-categories-quick-nav-metal a:focus-visible i {
    color: var(--accent-color);
}

.product-categories-grid-metal {
    margin-top: 16px;
}

.product-categories-grid-metal > [class*="col-"] {
    display: flex;
}

.product-category-card-metal {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(24, 24, 24, 0.08);
    box-shadow: 0 2px 16px rgba(24, 24, 24, 0.04);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    scroll-margin-top: 120px;
}

.product-category-card-metal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), rgba(237, 199, 1, 0.3));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 4;
}

.product-category-card-metal:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 199, 1, 0.35);
    box-shadow: 0 12px 40px rgba(24, 24, 24, 0.1);
}

.product-category-card-metal:hover::before {
    opacity: 1;
}

.product-category-image-metal {
    position: relative;
    overflow: hidden;
}

.product-category-image-metal figure {
    display: block;
    margin: 0;
}

.product-category-image-metal img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-category-card-metal:hover .product-category-image-metal img {
    transform: scale(1.06);
}

.product-category-overlay-metal {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 24, 24, 0) 0%, rgba(24, 24, 24, 0.15) 40%, rgba(24, 24, 24, 0.82) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.product-category-num-metal {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background: var(--white-color);
    padding: 6px 12px;
    border-radius: 100px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-category-head-metal {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 22px 20px;
}

.product-category-head-metal h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white-color);
    margin: 0;
    line-height: 1.25;
}

.product-category-icon-metal {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 18px;
    transition: transform 0.35s ease, background 0.35s ease;
}

.product-category-card-metal:hover .product-category-icon-metal {
    transform: scale(1.06);
    background: var(--white-color);
}

.product-category-body-metal {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
    padding: 22px 22px 24px;
}

.product-category-desc-metal {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(24, 24, 24, 0.75);
}

.product-category-tags-metal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-category-tags-metal span {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
    background: var(--bg-color);
    border: 1px solid rgba(24, 24, 24, 0.08);
    padding: 6px 12px;
    border-radius: 100px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.product-category-card-metal:hover .product-category-tags-metal span {
    border-color: rgba(237, 199, 1, 0.4);
    background: rgba(237, 199, 1, 0.1);
}

.product-category-btn-metal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin-top: auto;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--primary-color);
    background: var(--bg-color);
    border: 1px solid rgba(24, 24, 24, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, gap 0.3s ease, box-shadow 0.3s ease;
}

.product-category-btn-metal i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.product-category-btn-metal:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    gap: 14px;
    box-shadow: 0 8px 20px rgba(24, 24, 24, 0.15);
}

.product-category-btn-metal:hover i {
    transform: translateX(3px);
}

.product-category-link-metal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: capitalize;
    transition: gap 0.3s ease, color 0.3s ease;
}

.product-category-link-metal::after {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('../images/arrow-primary.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.product-category-link-metal:hover {
    color: var(--accent-color);
    gap: 14px;
}

.product-category-link-metal:hover::after {
    transform: translateX(4px) rotate(45deg);
}

.product-categories-cta-metal {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 16px 28px;
    margin-top: 48px;
    padding: 32px 36px;
    background: var(--primary-color);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-categories-cta-icon-metal {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(237, 199, 1, 0.15);
    color: var(--accent-color);
    font-size: 22px;
    grid-row: 1 / span 2;
    align-self: center;
}

.product-categories-cta-content-metal {
    position: relative;
    z-index: 1;
    min-width: 0;
    grid-column: 2;
    grid-row: 1;
}

.product-categories-cta-metal::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(237, 199, 1, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.product-categories-cta-content-metal p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0 0 6px;
}

.product-categories-cta-content-metal h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
    line-height: 1.4;
}

.product-categories-cta-actions-metal {
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.product-categories-cta-actions-metal .btn-default {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 12px;
    font-size: 12px;
    white-space: nowrap;
}

.product-categories-cta-actions-metal .btn-default::before {
    display: none;
}

.product-categories-cta-actions-metal .btn-highlighted {
    padding-right: 12px;
}

.product-categories-cta-actions-metal .btn-estimate-pcat {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white-color);
}

.product-categories-cta-actions-metal .btn-estimate-pcat i {
    margin-right: 6px;
    font-size: 12px;
    color: var(--accent-color);
}

.product-categories-cta-actions-metal .btn-estimate-pcat::before,
.product-categories-cta-actions-metal .btn-estimate-pcat::after {
    display: none;
}

.product-categories-cta-actions-metal .btn-estimate-pcat:hover {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--primary-color);
}

.product-categories-cta-actions-metal .btn-whatsapp-pcat {
    background-color: #25d366;
    border-color: #25d366;
    color: var(--white-color);
    padding: 14px 12px;
}

.product-categories-cta-actions-metal .btn-whatsapp-pcat i {
    margin-right: 8px;
}

.product-categories-cta-actions-metal .btn-whatsapp-pcat::after {
    background-color: #1da851;
}

.product-categories-cta-actions-metal .btn-whatsapp-pcat:hover {
    color: var(--white-color);
}

/* Homepage — 8 Core Categories */
.home-core-cat-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.home-core-cat-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    padding: 10px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-core-cat-nav a i {
    font-size: 12px;
    color: var(--accent-color);
    transition: color 0.25s ease;
}

.home-core-cat-nav a:hover,
.home-core-cat-nav a:focus-visible {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(24, 24, 24, 0.12);
}

.home-core-cat-nav a:hover i,
.home-core-cat-nav a:focus-visible i {
    color: var(--accent-color);
}

.home-core-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.home-core-cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 20px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-core-cat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 199, 1, 0.45);
    box-shadow: 0 20px 48px rgba(24, 24, 24, 0.1);
}

.home-core-cat-num {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    background: rgba(24, 24, 24, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.home-core-cat-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--primary-color);
}

.home-core-cat-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-core-cat-card:hover .home-core-cat-media img {
    transform: scale(1.06);
}

.home-core-cat-media-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    color: rgba(255, 255, 255, 0.75);
    font-size: 44px;
}

.home-core-cat-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(24, 24, 24, 0.55) 100%);
    pointer-events: none;
}

.home-core-cat-icon {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(237, 199, 1, 0.92);
    color: var(--primary-color);
    font-size: 17px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.home-core-cat-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    padding: 20px 20px 22px;
}

.home-core-cat-body h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
}

.home-core-cat-body p {
    margin: 0;
    flex: 1;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-color);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-core-cat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 6px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, gap 0.25s ease;
}

.home-core-cat-card:hover .home-core-cat-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    gap: 12px;
}

.home-core-cat-btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.home-core-cat-card:hover .home-core-cat-btn i {
    transform: translateX(3px);
}

/* Our Stores */
.our-stores-metal {
    position: relative;
    padding: 110px 0 120px;
    background: var(--white-color);
    overflow: hidden;
}

.our-stores-bg-metal {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.our-stores-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
}

.our-stores-glow-1 {
    width: 340px;
    height: 340px;
    top: -80px;
    left: -60px;
    background: rgba(237, 199, 1, 0.35);
}

.our-stores-glow-2 {
    width: 300px;
    height: 300px;
    right: -40px;
    bottom: -60px;
    background: rgba(24, 24, 24, 0.08);
}

.our-stores-metal .container {
    position: relative;
    z-index: 1;
}

.our-stores-header-metal p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.our-stores-hours-note-metal {
    max-width: 680px;
    margin: 10px auto 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(24, 24, 24, 0.65);
}

.our-stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.our-store-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 22px;
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.our-store-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 199, 1, 0.45);
    box-shadow: 0 24px 56px rgba(24, 24, 24, 0.1);
}

.our-store-map-metal {
    position: relative;
    aspect-ratio: 16 / 11;
    background: var(--primary-color);
    overflow: hidden;
}

.our-store-map-metal iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.our-store-body-metal {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    padding: 24px 24px 26px;
    position: relative;
}

.our-store-num-metal {
    position: absolute;
    top: -18px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    background: var(--primary-color);
    border: 2px solid var(--bg-color);
}

.our-store-badge-metal {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(237, 199, 1, 0.22);
    border: 1px solid rgba(237, 199, 1, 0.45);
}

.our-store-body-metal h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
    padding-right: 48px;
}

.our-store-sister-note-metal {
    margin: -4px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: rgba(24, 24, 24, 0.5);
}

.our-store-address-metal {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(24, 24, 24, 0.72);
}

.our-store-contact-metal {
    list-style: none;
    margin: 4px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.our-store-contact-metal li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.our-store-contact-metal i {
    flex-shrink: 0;
    width: 18px;
    margin-top: 2px;
    color: var(--accent-color);
    text-align: center;
}

.our-store-contact-metal a {
    color: var(--primary-color);
    font-weight: 500;
    word-break: break-word;
    transition: color 0.25s ease;
}

.our-store-contact-metal a:hover {
    color: var(--accent-color);
}

.our-store-directions-metal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
    padding: 13px 18px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-color);
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, gap 0.25s ease;
}

.our-store-card:hover .our-store-directions-metal {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    gap: 12px;
}

.our-store-directions-metal i {
    font-size: 12px;
}

/* Home Blog */
.home-blog-metal {
    position: relative;
    padding: 110px 0 120px;
    background: var(--bg-color);
    overflow: hidden;
}

.home-blog-bg-metal {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-blog-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.24;
}

.home-blog-glow-1 {
    width: 360px;
    height: 360px;
    top: -100px;
    right: -80px;
    background: rgba(237, 199, 1, 0.4);
}

.home-blog-glow-2 {
    width: 320px;
    height: 320px;
    left: -60px;
    bottom: -80px;
    background: rgba(24, 24, 24, 0.07);
}

.home-blog-metal .container {
    position: relative;
    z-index: 1;
}

.home-blog-header-metal p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.home-blog-card {
    height: 100%;
}

.home-blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 22px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-blog-card-link:hover {
    transform: translateY(-8px);
    border-color: rgba(237, 199, 1, 0.5);
    box-shadow: 0 28px 60px rgba(24, 24, 24, 0.1);
    color: inherit;
}

.home-blog-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.home-blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.home-blog-card-link:hover .home-blog-card-media img {
    transform: scale(1.06);
}

.home-blog-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 24, 24, 0) 40%, rgba(24, 24, 24, 0.35) 100%);
    pointer-events: none;
}

.home-blog-card-category {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: var(--accent-color);
}

.home-blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 12px;
    padding: 24px 24px 26px;
}

.home-blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: rgba(24, 24, 24, 0.48);
}

.home-blog-card-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.home-blog-card-body h3 {
    font-size: 20px;
    line-height: 1.35;
    color: var(--primary-color);
    margin: 0;
    transition: color 0.25s ease;
}

.home-blog-card-link:hover .home-blog-card-body h3 {
    color: var(--primary-color);
}

.home-blog-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(24, 24, 24, 0.62);
    margin: 0;
    flex: 1;
}

.home-blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.home-blog-card-cta i {
    font-size: 12px;
    color: var(--accent-color);
    transition: transform 0.25s ease;
}

.home-blog-card-link:hover .home-blog-card-cta i {
    transform: translateX(5px);
}

.home-blog-footer-metal {
    margin-top: 44px;
}

.home-blog-footer-metal .btn-default i {
    margin-left: 8px;
    font-size: 12px;
}

/* Social Proof — Customer Stories */
.social-proof-metal {
    position: relative;
    padding: 90px 0 100px;
    background: var(--bg-color);
    overflow: hidden;
}

.social-proof-bg-metal {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.social-proof-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.3;
}

.social-proof-glow-1 {
    width: 360px;
    height: 360px;
    top: -60px;
    right: -40px;
    background: rgba(237, 199, 1, 0.25);
}

.social-proof-glow-2 {
    width: 280px;
    height: 280px;
    bottom: -40px;
    left: -30px;
    background: rgba(24, 24, 24, 0.05);
}

.social-proof-metal .container {
    position: relative;
    z-index: 1;
}

.social-proof-header-metal.section-title-center p {
    max-width: 520px;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.social-proof-trust-bar-metal {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 32px;
}

.social-proof-trust-chip-metal {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 14px 20px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(24, 24, 24, 0.04);
}

.social-proof-trust-chip-metal i {
    font-size: 18px;
    color: var(--accent-color);
}

.social-proof-trust-chip-metal strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

.social-proof-trust-chip-metal span {
    display: block;
    font-size: 12px;
    color: var(--text-color);
    margin-top: 1px;
}

.social-proof-panel-metal {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 24px 24px 20px;
    margin-bottom: 36px;
    box-shadow: 0 8px 32px rgba(24, 24, 24, 0.05);
}

.social-proof-panel-head-metal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--divider-color);
}

.social-proof-panel-head-metal--google {
    align-items: center;
}

.social-proof-google-summary-metal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-proof-google-summary-metal--compact {
    gap: 10px;
}

.social-proof-google-summary-metal strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
}

.social-proof-google-summary-metal span {
    display: block;
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.4;
}

.social-proof-google-logo-metal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--divider-color);
    color: #4285f4;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(24, 24, 24, 0.06);
    flex-shrink: 0;
}

.social-proof-google-logo-metal--footer {
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.social-proof-google-link-metal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.25s ease;
}

.social-proof-google-link-metal:hover {
    color: #4285f4;
}

.social-proof-card-metal--google .social-proof-author-photo-metal img {
    object-fit: cover;
}

.social-proof-author-initial-metal,
.testimonial-google-initial-metal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(237, 199, 1, 0.2);
}

.social-proof-google-badge-metal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: #4285f4;
    background: rgba(66, 133, 244, 0.08);
    border: 1px solid rgba(66, 133, 244, 0.15);
}

.social-proof-star-empty {
    opacity: 0.25;
}

.testimonial-item-metal--google .testimonial-item-logo-metal--google {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(66, 133, 244, 0.15);
    background: #fff;
}

.testimonial-item-metal--google .testimonial-item-logo-metal--google img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item-rating-metal {
    margin-bottom: 12px;
    color: var(--accent-color);
    font-size: 13px;
}

.testimonial-item-rating-metal .social-proof-star-empty {
    color: var(--text-color);
}

.social-proof-tabs-metal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-proof-tab-metal {
    padding: 10px 20px;
    min-height: 44px;
    border-radius: 100px;
    border: 1px solid var(--divider-color);
    background: var(--bg-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.social-proof-tab-metal:hover,
.social-proof-tab-metal:focus-visible {
    border-color: rgba(237, 199, 1, 0.5);
}

.social-proof-tab-metal.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.social-proof-filter-count-metal {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}

.social-proof-filter-count-num {
    font-weight: 700;
    color: var(--primary-color);
}

.social-proof-carousel-wrap-metal {
    position: relative;
}

.social-proof-written-carousel-metal {
    overflow: hidden;
    padding: 4px 2px 8px;
}

.social-proof-written-carousel-metal .swiper-slide {
    height: auto;
}

.social-proof-written-carousel-metal .swiper-slide.is-filtered-out {
    display: none !important;
}

.social-proof-card-metal {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    min-height: 260px;
    padding: 22px;
    background: var(--bg-color);
    border: 1px solid rgba(24, 24, 24, 0.06);
    border-radius: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.social-proof-card-metal:hover {
    border-color: rgba(237, 199, 1, 0.35);
    box-shadow: 0 8px 24px rgba(24, 24, 24, 0.06);
}

.social-proof-author-metal {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    border: none;
}

.social-proof-author-photo-metal {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.social-proof-author-photo-metal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.social-proof-author-info-metal cite {
    display: block;
    font-style: normal;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.25;
}

.social-proof-author-info-metal > span {
    display: block;
    font-size: 13px;
    color: var(--text-color);
    margin-top: 2px;
}

.social-proof-stars-metal {
    display: inline-flex;
    gap: 2px;
    margin-top: 6px;
    color: var(--accent-color);
    font-size: 12px;
}

.social-proof-quote-metal {
    margin: 0;
    flex: 1;
}

.social-proof-quote-metal p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(24, 24, 24, 0.85);
}

.social-proof-card-foot-metal {
    margin-top: auto;
    padding-top: 4px;
}

.social-proof-resolved-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    background: rgba(237, 199, 1, 0.15);
    border: 1px solid rgba(237, 199, 1, 0.3);
}

.social-proof-role-tag-metal {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(237, 199, 1, 0.12);
    border: 1px solid rgba(237, 199, 1, 0.28);
}

.social-proof-card-metal--testimonial .social-proof-author-initial-metal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(237, 199, 1, 0.18);
}

.social-proof-resolved-tag i {
    font-size: 10px;
    color: var(--accent-color);
}

.social-proof-carousel-controls-metal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-proof-written-prev-metal,
.social-proof-written-next-metal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--divider-color);
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.social-proof-written-prev-metal:hover,
.social-proof-written-next-metal:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.social-proof-slide-counter-metal {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    min-width: 48px;
    text-align: center;
}

.social-proof-slide-current {
    color: var(--primary-color);
    font-size: 18px;
}

.social-proof-videos-metal {
    margin-bottom: 40px;
}

.social-proof-videos-head-metal {
    text-align: center;
    margin-bottom: 28px;
}

.social-proof-videos-eyebrow-metal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(237, 199, 1, 0.15);
    border: 1px solid rgba(237, 199, 1, 0.35);
}

.social-proof-videos-eyebrow-metal i {
    font-size: 14px;
    color: #e1306c;
}

.social-proof-videos-title-metal {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
}

.social-proof-videos-sub-metal {
    margin: 0 auto;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-color);
}

.social-proof-reels-stage-metal {
    padding: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(246, 245, 237, 0.6) 100%);
    border: 1px solid var(--divider-color);
    box-shadow: 0 12px 40px rgba(24, 24, 24, 0.06);
}

.social-proof-reels-wrap-metal {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-proof-reels-carousel-metal {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding: 12px 4px 8px;
}

.social-proof-reels-carousel-metal .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.social-proof-reel-card-metal {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}

.social-proof-reel-device-metal {
    position: relative;
    padding: 12px 12px 14px;
    border-radius: 32px;
    background: linear-gradient(160deg, #3a3a3a 0%, #141414 55%, #0a0a0a 100%);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.social-proof-reel-card-metal:hover .social-proof-reel-device-metal {
    transform: translateY(-6px);
    box-shadow:
        0 36px 64px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.social-proof-reel-badge-metal {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px 5px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white-color);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.social-proof-reel-dot-metal {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff3040;
    box-shadow: 0 0 8px rgba(255, 48, 64, 0.8);
    animation: socialProofReelPulse 1.8s ease-in-out infinite;
}

@keyframes socialProofReelPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(0.85); }
}

.social-proof-reel-screen-metal {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: 440px;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
}

.social-proof-reel-video-metal {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.social-proof-reel-mute-metal {
    position: absolute;
    right: 12px;
    bottom: 58px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white-color);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.social-proof-reel-mute-metal:hover {
    background: rgba(0, 0, 0, 0.78);
    border-color: rgba(255, 255, 255, 0.35);
    transform: scale(1.06);
}

.social-proof-reel-mute-metal:not(.is-muted) {
    background: rgba(237, 199, 1, 0.22);
    border-color: rgba(237, 199, 1, 0.45);
    color: var(--accent-color);
}

.social-proof-reel-shade-metal {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 18%, transparent 55%, rgba(0, 0, 0, 0.92) 100%);
}

.social-proof-reel-caption-metal {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    pointer-events: none;
}

.social-proof-reel-caption-metal strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.social-proof-reel-caption-metal span {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.social-proof-reel-link-metal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.25s ease;
}

.social-proof-reel-link-metal i {
    font-size: 10px;
    opacity: 0.85;
}

.social-proof-reel-link-metal:hover {
    color: var(--accent-color);
}

.social-proof-reels-prev-metal,
.social-proof-reels-next-metal {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--white-color);
    color: var(--primary-color);
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(24, 24, 24, 0.12);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.social-proof-reels-prev-metal:hover,
.social-proof-reels-next-metal:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.06);
}

.social-proof-reels-prev-metal.swiper-button-disabled,
.social-proof-reels-next-metal.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.social-proof-reels-hint-metal {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px 0 0;
    font-size: 13px;
    color: var(--text-color);
}

.social-proof-reels-hint-metal i {
    color: var(--accent-color);
}

@media (min-width: 992px) {
    .social-proof-reels-prev-metal.swiper-button-disabled,
    .social-proof-reels-next-metal.swiper-button-disabled {
        visibility: hidden;
    }
}

.social-proof-video-card-metal {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
}

.social-proof-video-embed-metal {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
}

.social-proof-video-embed-metal iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.social-proof-video-card-metal > p {
    margin: 0;
    padding: 14px 16px 16px;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-color);
}

.social-proof-resolution-metal {
    margin-bottom: 36px;
}

.social-proof-resolution-title-metal {
    margin: 0 0 20px;
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
}

.social-proof-mini-story-metal {
    height: 100%;
    padding: 20px 18px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    text-align: left;
}

.social-proof-mini-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    background: var(--accent-color);
}

.social-proof-mini-story-metal h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.social-proof-mini-story-metal p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-color);
}

.social-proof-footer-metal {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

/* Floating WhatsApp & Call Buttons */
.floating-contact-buttons {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 14px;
    pointer-events: none;
}

.floating-contact-buttons .floating-btn {
    pointer-events: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(24, 24, 24, 0.2), 0 2px 8px rgba(24, 24, 24, 0.12);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, width 0.35s ease, padding 0.35s ease;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1);
    animation: floating-pulse 2.5s ease-out infinite;
    z-index: -1;
}

.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-btn-whatsapp::before {
    background: #25d366;
}

.floating-btn-call {
    background: linear-gradient(135deg, var(--accent-color) 0%, #c9a800 100%);
    color: var(--primary-color);
}

.floating-btn-call::before {
    background: var(--accent-color);
}

.floating-btn-label {
    position: absolute;
    right: calc(100% + 12px);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 10px 16px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 16px rgba(24, 24, 24, 0.15);
}

.floating-btn-whatsapp .floating-btn-label {
    background: var(--primary-color);
    color: var(--white-color);
}

.floating-btn-call .floating-btn-label {
    background: var(--primary-color);
    color: var(--white-color);
}

.floating-contact-buttons .floating-btn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 32px rgba(24, 24, 24, 0.25);
}

.floating-contact-buttons .floating-btn:hover .floating-btn-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes floating-pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    70% {
        opacity: 0;
        transform: scale(1.6);
    }
    100% {
        opacity: 0;
        transform: scale(1.6);
    }
}

/* Our Services — Customized Glass (single service) */
.our-services-glass-metal {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.our-services-glass-bg-metal {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.our-services-glass-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: glassServiceOrbFloat 14s ease-in-out infinite alternate;
}

.our-services-glass-orb-1 {
    width: 380px;
    height: 380px;
    top: -100px;
    left: -80px;
    background: rgba(237, 199, 1, 0.35);
}

.our-services-glass-orb-2 {
    width: 320px;
    height: 320px;
    bottom: -80px;
    right: -60px;
    background: rgba(24, 24, 24, 0.12);
    animation-delay: -4s;
}

.our-services-glass-grid-metal {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 24, 24, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 24, 24, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

@keyframes glassServiceOrbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(24px, 18px) scale(1.08); }
}

.our-services-glass-metal .container {
    position: relative;
    z-index: 1;
}

.our-services-glass-header-metal.section-title-center p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.glass-service-showcase-metal {
    margin-top: 48px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(24, 24, 24, 0.1);
    background: var(--white-color);
    border: 1px solid var(--divider-color);
}

.glass-service-visual-metal {
    position: relative;
    min-height: 420px;
    height: 100%;
    overflow: hidden;
    background: var(--primary-color);
}

.glass-service-image-metal {
    margin: 0;
    height: 100%;
    min-height: 420px;
}

.glass-service-image-metal img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.glass-service-showcase-metal:hover .glass-service-image-metal img {
    transform: scale(1.05);
}

.glass-service-shine-metal {
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 90%);
    animation: glassServiceShine 4.5s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes glassServiceShine {
    0%, 100% { left: -100%; opacity: 0; }
    15% { opacity: 1; }
    50% { left: 120%; opacity: 1; }
    65%, 100% { opacity: 0; }
}

.glass-service-frame-metal {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    z-index: 2;
    pointer-events: none;
    transition: inset 0.5s ease;
}

.glass-service-showcase-metal:hover .glass-service-frame-metal {
    inset: 14px;
}

.glass-service-badge-metal {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--accent-color);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.glass-service-float-tag-metal {
    position: absolute;
    z-index: 3;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-color);
    background: rgba(24, 24, 24, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    animation: glassServiceTagFloat 5s ease-in-out infinite;
}

.glass-service-float-tag-1 {
    bottom: 28%;
    right: 12%;
}

.glass-service-float-tag-2 {
    bottom: 14%;
    left: 14%;
    animation-delay: -2.5s;
}

@keyframes glassServiceTagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.glass-service-content-metal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 48px 44px;
    background: var(--white-color);
}

.glass-service-eyebrow-metal {
    display: inline-block;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary-color);
    background: rgba(237, 199, 1, 0.2);
    border-radius: 100px;
}

.glass-service-content-metal h3 {
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.25;
    margin-bottom: 16px;
}

.glass-service-content-metal > p {
    color: rgba(24, 24, 24, 0.72);
    margin-bottom: 28px;
    max-width: 520px;
}

.glass-service-features-metal {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.glass-service-feature-metal {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px;
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    opacity: 0;
    transform: translateY(14px);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.glass-service-feature-metal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.glass-service-feature-metal:hover {
    border-color: rgba(237, 199, 1, 0.45);
    box-shadow: 0 8px 20px rgba(24, 24, 24, 0.06);
    transform: translateY(-2px);
}

.glass-service-feature-icon-metal {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--accent-color);
    font-size: 16px;
}

.glass-service-feature-text-metal {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.glass-service-feature-text-metal strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

.glass-service-feature-text-metal small {
    font-size: 12px;
    line-height: 1.35;
    color: rgba(24, 24, 24, 0.6);
}

.glass-service-actions-metal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.btn-glass-outline-metal {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--divider-color);
}

.btn-glass-outline-metal:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.glass-service-footer-metal {
    margin-top: 40px;
    padding: 24px 28px;
    text-align: center;
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 16px;
}

.glass-service-footer-metal p {
    margin: 0 0 14px;
}

.glass-service-footer-metal p span {
    color: var(--accent-color);
    font-weight: 700;
}

.glass-service-footer-metal p a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.glass-service-trust-metal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
}

.glass-service-trust-metal li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.glass-service-trust-metal i {
    color: var(--accent-color);
    font-size: 13px;
}

/* View Gallery */
.view-gallery-metal {
    padding: 100px 0;
}

.view-gallery-intro-metal {
    max-width: 680px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.view-gallery-grid-metal {
    margin-top: 10px;
}

.view-gallery-masonry-metal {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 118px;
    gap: 16px;
    margin-top: 44px;
}

.view-gallery-masonry-metal .view-gallery-item-1 {
    grid-column: 1 / 6;
    grid-row: 1 / 4;
}

.view-gallery-masonry-metal .view-gallery-item-2 {
    grid-column: 6 / 9;
    grid-row: 1 / 3;
}

.view-gallery-masonry-metal .view-gallery-item-3 {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
}

.view-gallery-masonry-metal .view-gallery-item-4 {
    grid-column: 6 / 13;
    grid-row: 3 / 5;
}

.view-gallery-masonry-metal .view-gallery-item-5 {
    grid-column: 1 / 5;
    grid-row: 4 / 6;
}

.view-gallery-masonry-metal .view-gallery-item-6 {
    grid-column: 5 / 13;
    grid-row: 5 / 7;
}

.view-gallery-masonry-metal .view-gallery-card-metal {
    height: 100%;
    min-height: 100%;
}

.view-gallery-masonry-metal .view-gallery-link-metal {
    height: 100%;
}

.view-gallery-masonry-metal .view-gallery-figure-metal {
    aspect-ratio: unset;
    height: 100%;
    min-height: 100%;
}

.view-gallery-card-metal {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-divider-color);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.view-gallery-card-metal:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 199, 1, 0.35);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.view-gallery-link-metal {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
}

.view-gallery-figure-metal {
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.view-gallery-figure-metal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.view-gallery-card-metal:hover .view-gallery-figure-metal img {
    transform: scale(1.08);
}

.view-gallery-overlay-metal {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(180deg, rgba(24, 24, 24, 0) 15%, rgba(24, 24, 24, 0.92) 100%);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
}

@media (hover: hover) {
    .view-gallery-overlay-metal {
        opacity: 0;
        transform: translateY(12px);
    }

    .view-gallery-card-metal:hover .view-gallery-overlay-metal {
        opacity: 1;
        transform: translateY(0);
    }
}

.view-gallery-card-metal:hover .view-gallery-overlay-metal {
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.08) 10%, rgba(24, 24, 24, 0.94) 100%);
}

.view-gallery-tag-metal {
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: var(--accent-color);
    border-radius: 100px;
}

.view-gallery-overlay-metal h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: var(--white-color);
}

.view-gallery-overlay-metal p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.view-gallery-btn-metal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
}

.view-gallery-footer-metal {
    margin-top: 40px;
    text-align: center;
}

.view-gallery-footer-metal p {
    margin: 0;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
}

.view-gallery-footer-metal a {
    color: var(--accent-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.view-gallery-footer-metal a:hover {
    color: var(--white-color);
}

/* Touch & Feel Invitation — Showroom */
.touch-feel-metal {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.touch-feel-bg-metal {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.touch-feel-bg-grid-metal {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 24, 24, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 24, 24, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.touch-feel-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.45;
    animation: touchFeelOrbFloat 15s ease-in-out infinite alternate;
}

.touch-feel-bg-orb-1 {
    width: 340px;
    height: 340px;
    top: -70px;
    right: -50px;
    background: rgba(237, 199, 1, 0.28);
}

.touch-feel-bg-orb-2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -40px;
    background: rgba(24, 24, 24, 0.06);
    animation-delay: -4s;
}

@keyframes touchFeelOrbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(18px, 14px) scale(1.05); }
}

.touch-feel-metal .container {
    position: relative;
    z-index: 1;
}

.touch-feel-content-metal {
    max-width: 560px;
}

.touch-feel-content-metal .section-sub-title {
    margin-bottom: 14px;
}

.touch-feel-content-metal h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.touch-feel-body-metal {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.72;
    color: rgba(24, 24, 24, 0.78);
}

.touch-feel-features-metal {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.touch-feel-feature-metal {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(24, 24, 24, 0.04);
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.touch-feel-feature-metal.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.touch-feel-feature-metal:hover {
    border-color: rgba(237, 199, 1, 0.45);
    box-shadow: 0 10px 24px rgba(24, 24, 24, 0.08);
}

.touch-feel-feature-icon-metal {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(237, 199, 1, 0.18);
    color: var(--primary-color);
    font-size: 16px;
    transition: background 0.35s ease, transform 0.35s ease;
}

.touch-feel-feature-metal:hover .touch-feel-feature-icon-metal {
    background: var(--accent-color);
    transform: scale(1.06);
}

.touch-feel-actions-metal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}

.touch-feel-cta-metal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.touch-feel-cta-metal i {
    font-size: 15px;
}

.touch-feel-location-metal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(24, 24, 24, 0.62);
}

.touch-feel-location-metal i {
    color: var(--accent-color);
}

.touch-feel-visual-metal {
    position: relative;
}

.touch-feel-visual-frame-metal {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 460px;
    background: var(--primary-color);
    box-shadow: 0 24px 60px rgba(24, 24, 24, 0.14);
}

.touch-feel-main-image-metal {
    margin: 0;
    height: 100%;
    min-height: 460px;
}

.touch-feel-main-image-metal img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.touch-feel-visual-frame-metal:hover .touch-feel-main-image-metal img {
    transform: scale(1.04);
}

.touch-feel-visual-accent-metal {
    position: absolute;
    inset: 16px;
    border: 2px solid rgba(237, 199, 1, 0.4);
    border-radius: 18px;
    pointer-events: none;
    z-index: 2;
}

.touch-feel-swatch-metal {
    position: absolute;
    z-index: 3;
    width: 132px;
    padding: 8px;
    background: var(--white-color);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
    animation: touchFeelSwatchFloat 5.5s ease-in-out infinite;
}

.touch-feel-swatch-metal img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
}

.touch-feel-swatch-metal span {
    display: block;
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
}

.touch-feel-swatch-1 {
    top: 14%;
    left: -18px;
}

.touch-feel-swatch-2 {
    bottom: 16%;
    right: -14px;
    animation-delay: -2.75s;
}

@keyframes touchFeelSwatchFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.touch-feel-float-badge-metal {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-color);
    background: rgba(24, 24, 24, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: touchFeelBadgeFloat 4.5s ease-in-out infinite;
}

.touch-feel-float-badge-metal i {
    color: var(--accent-color);
}

.touch-feel-float-badge-1 {
    top: 20px;
    right: 20px;
}

.touch-feel-float-badge-2 {
    bottom: 20px;
    left: 20px;
    animation-delay: -2.25s;
}

@keyframes touchFeelBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
    .touch-feel-bg-orb,
    .touch-feel-swatch-metal,
    .touch-feel-float-badge-metal {
        animation: none;
    }

    .touch-feel-feature-metal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Why Choose Us — bento showcase */
.why-choose-us-metal {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.why-choose-bg-metal {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.why-choose-bg-grid-metal {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 24, 24, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 24, 24, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.why-choose-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: whyChooseOrbFloat 16s ease-in-out infinite alternate;
}

.why-choose-bg-orb-1 {
    width: 360px;
    height: 360px;
    top: -90px;
    left: -70px;
    background: rgba(237, 199, 1, 0.3);
}

.why-choose-bg-orb-2 {
    width: 320px;
    height: 320px;
    bottom: -80px;
    right: -60px;
    background: rgba(24, 24, 24, 0.08);
    animation-delay: -5s;
}

@keyframes whyChooseOrbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 16px) scale(1.06); }
}

.why-choose-us-metal .container {
    position: relative;
    z-index: 1;
}

.why-choose-header-metal {
    max-width: 760px;
    margin: 0 auto;
}

.why-choose-header-metal h2 {
    font-size: clamp(26px, 3.8vw, 44px);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.why-choose-showcase-metal {
    position: relative;
    margin-top: 52px;
    padding: 26px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(24, 24, 24, 0.08);
    overflow: hidden;
}

.why-choose-showcase-metal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    background-size: 200% 100%;
    animation: whyChooseShimmer 4s ease-in-out infinite;
}

@keyframes whyChooseShimmer {
    0%, 100% { background-position: 0% 50%; opacity: 0.65; }
    50% { background-position: 100% 50%; opacity: 1; }
}

.why-choose-bento-metal {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas:
        "story visual"
        "metrics metrics"
        "quote quote";
    gap: 18px;
}

.why-choose-bento-story-metal { grid-area: story; }
.why-choose-bento-visual-metal { grid-area: visual; }
.why-choose-metrics-metal { grid-area: metrics; }
.why-choose-founder-band-metal { grid-area: quote; }

.why-choose-bento-cell-metal {
    background: var(--bg-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.why-choose-bento-cell-metal:hover {
    border-color: rgba(237, 199, 1, 0.35);
    box-shadow: 0 10px 28px rgba(24, 24, 24, 0.06);
}

.why-choose-bento-story-metal { padding: 32px 30px; }

.why-choose-bento-visual-metal {
    padding: 14px;
    background: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.08);
}

.why-choose-lead-metal {
    position: relative;
    margin: 0 0 20px;
    padding-left: 18px;
    font-size: clamp(17px, 1.6vw, 20px);
    font-weight: 500;
    line-height: 1.65;
    color: var(--primary-color);
}

.why-choose-lead-metal::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 4px;
    height: calc(100% - 8px);
    border-radius: 4px;
    background: linear-gradient(180deg, var(--accent-color), rgba(237, 199, 1, 0.35));
}

.why-choose-lead-metal strong {
    color: var(--accent-color);
    font-weight: 700;
}

.why-choose-body-lines-metal p {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.72;
    color: var(--text-color);
}

.why-choose-body-lines-metal p:last-child { margin-bottom: 0; }

.why-choose-line-metal,
.why-choose-metric-metal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.why-choose-line-metal.is-visible,
.why-choose-metric-metal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-promise-metal {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0 !important;
    padding: 16px 18px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
    color: var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(237, 199, 1, 0.2), rgba(237, 199, 1, 0.06)) !important;
    border: 1px solid rgba(237, 199, 1, 0.4);
    border-radius: 14px;
}

.why-choose-promise-icon-metal {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 15px;
    animation: whyChooseIconPulse 2.8s ease-in-out infinite;
}

@keyframes whyChooseIconPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(237, 199, 1, 0.35); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(237, 199, 1, 0); }
}

.why-choose-visual-frame-metal {
    position: relative;
    height: 100%;
    min-height: 340px;
    border-radius: 16px;
    overflow: hidden;
}

.why-choose-feature-image-metal {
    margin: 0;
    height: 100%;
    min-height: 340px;
}

.why-choose-feature-image-metal img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-choose-showcase-metal:hover .why-choose-feature-image-metal img {
    transform: scale(1.04);
}

.why-choose-visual-accent-metal {
    position: absolute;
    inset: 14px;
    border: 2px solid rgba(237, 199, 1, 0.45);
    border-radius: 12px;
    pointer-events: none;
    z-index: 2;
}

.why-choose-float-stat-metal {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-color);
    background: rgba(24, 24, 24, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    animation: whyChooseFloatTag 5s ease-in-out infinite;
}

.why-choose-float-stat-1 {
    top: 18px;
    right: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    border-radius: 16px;
    padding: 12px 16px;
}

.why-choose-float-stat-num {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-color);
}

.why-choose-float-stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    opacity: 0.9;
}

.why-choose-float-stat-2 {
    bottom: 18px;
    left: 18px;
    animation-delay: -2.5s;
}

.why-choose-float-stat-2 i { color: var(--accent-color); }

@keyframes whyChooseFloatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.why-choose-metrics-metal {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-choose-metric-metal {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 16px;
}

.why-choose-metric-metal:hover {
    border-color: rgba(237, 199, 1, 0.45);
    box-shadow: 0 10px 24px rgba(24, 24, 24, 0.07);
    transform: translateY(-3px);
}

.why-choose-metric-icon-metal {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(237, 199, 1, 0.18);
    color: var(--primary-color);
    font-size: 17px;
    transition: background 0.35s ease, transform 0.35s ease;
}

.why-choose-metric-metal:hover .why-choose-metric-icon-metal {
    background: var(--accent-color);
    transform: scale(1.06) rotate(-4deg);
}

.why-choose-metric-copy-metal {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.why-choose-metric-copy-metal strong {
    font-size: 15px;
    line-height: 1.3;
    color: var(--primary-color);
}

.why-choose-metric-copy-metal small {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(24, 24, 24, 0.62);
}

.why-choose-founder-band-metal {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    margin: 0;
    padding: 30px 32px;
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
}

.why-choose-founder-band-metal::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 20%, rgba(237, 199, 1, 0.12), transparent 45%);
    pointer-events: none;
}

.why-choose-quote-icon-metal {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(237, 199, 1, 0.14);
    color: var(--accent-color);
    font-size: 20px;
}

.why-choose-founder-text-metal {
    position: relative;
    z-index: 1;
}

.why-choose-founder-text-metal p {
    margin: 0 0 12px;
    font-size: clamp(15px, 1.3vw, 17px);
    line-height: 1.72;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
}

.why-choose-founder-text-metal footer {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent-color);
}

.why-choose-founder-accent-metal {
    position: relative;
    z-index: 1;
    width: 4px;
    height: 72px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--accent-color), rgba(237, 199, 1, 0.2));
    animation: whyChooseAccentPulse 3s ease-in-out infinite;
}

@keyframes whyChooseAccentPulse {
    0%, 100% { opacity: 0.7; transform: scaleY(0.92); }
    50% { opacity: 1; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
    .why-choose-bg-orb,
    .why-choose-showcase-metal::before,
    .why-choose-promise-icon-metal,
    .why-choose-float-stat-metal,
    .why-choose-founder-accent-metal {
        animation: none;
    }

    .why-choose-line-metal,
    .why-choose-metric-metal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.why-choose-body-metal {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 40px;
}

.why-choose-item-metal {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.why-choose-item-metal .icon-box {
    position: relative;
    height: 50px;
    width: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-choose-item-metal .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 100px;
    transform: scale(0);
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.why-choose-item-metal:hover .icon-box::before {
    transform: scale(1);
}

.why-choose-item-metal .icon-box img {
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
}

.why-choose-item-metal:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.why-choose-item-Content-metal {
    width: calc(100% - 65px);
}

.why-choose-item-Content-metal h3 {
    font-size: 20px;
}

.why-choose-item-Content-metal p {
    margin: 10px 0 0;
}

.why-choose-image-list-metal {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-body-image-metal {
    max-width: 200px;
}

.why-choose-body-image-metal figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.why-choose-body-image-metal img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.86;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-body-list-metal {
    width: calc(100% - 230px);
    align-content: center;
}

.why-choose-body-list-metal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-body-list-metal ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 20px;
}

.why-choose-body-list-metal ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.why-choose-body-list-metal ul li:last-child {
    margin-bottom: 0;
}

.why-choose-image-box-metal {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    margin-left: 15px;
    padding-right: 15px;
}

.why-choose-image-1-metal {
    width: 67%;
    padding-bottom: 190px;
}

.why-choose-image-box-metal figure {
    display: block;
    border-radius: 20px;
}

.why-choose-image-box-metal figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-image-1-metal figure img {
    aspect-ratio: 1 / 1.265;
}

.why-choose-image-2-metal {
    position: relative;
    width: 33%;
    z-index: 1;
    transform: rotate(6deg);
}

.why-choose-image-2-metal figure {
    border: 6px solid var(--bg-color);
    margin-left: -189px;
    border-radius: 26px;
}

.why-choose-image-2-metal figure img {
    aspect-ratio: 1 / 1.0977;
}

.our-feature-metal {
    padding: 120px 0;
}

.feature-item-metal {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px 40px 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.feature-item-metal:hover {
    transform: translateY(-5px);
}

.feature-item-body-metal .icon-box {
    position: relative;
    height: 50px;
    width: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
}

.feature-item-body-metal .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.feature-item-metal:hover .feature-item-body-metal .icon-box:before {
    transform: scale(1);
}

.feature-item-body-metal .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.feature-item-content-metal {
    text-align: center;
}

.feature-item-content-metal h3 {
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.feature-item-content-metal p {
    color: var(--white-color);
    margin: 0;
}

.feature-item-image-metal {
    margin: 0 auto -35px;
}

.feature-item-image-metal figure {
    display: block;
    max-width: 280px;
    border-radius: 20px;
}

.feature-item-image-metal img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
    border-radius: 20px;
}

.feature-item-metal.box-2 {
    background-color: var(--accent-color);
    backdrop-filter: none;
}

.feature-item-metal.box-2 .feature-item-content-metal {
    text-align: start;
}

.feature-item-metal.box-2 .feature-item-content-metal h3 {
    color: var(--primary-color);
    border-bottom: 1px solid var(--divider-color);
}

.feature-item-metal.box-2 .feature-item-content-metal p {
    color: var(--primary-color);
}

.feature-item-image-box-metal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
}

.feature-item-image-1-metal {
    width: calc(50% - 10px);
}

.feature-item-image-1-metal figure {
    display: block;
    border-radius: 20px 20px 0 0;
    margin-left: -30px;
}

.feature-item-image-1-metal figure img {
    width: 100%;
    max-width: 170px;
    border-radius: 20px 20px 0 0;
}

.feature-item-image-2-metal {
    width: calc(50% - 10px);
    text-align: right;
}

.feature-item-image-2-metal figure {
    display: block;
    border-radius: 20px 20px 0 0;
    margin: 0 -50px -20px 0;
}

.feature-item-image-2-metal figure img {
    width: 100%;
    max-width: 210px;
    border-radius: 20px 20px 0 0;
}

.our-feature-metal .satisfy-client-image {
    border-color: var(--primary-color);
}

.our-commitments-metal {
    padding: 120px 0;
}

.our-commitments-image-box-metal {
    position: relative;
    margin-right: 15px;
}

.our-commitments-image-metal figure {
    position: relative;
    display: block;
    border-radius: 20px;
}

.our-commitments-image-metal figure::before {
    content: '';
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent 0%, var(--bg-color) 88.75%);
    height: 130px;
    width: 100%;
    z-index: 1;
}

.our-commitments-image-metal img {
    width: 100%;
    aspect-ratio: 1 / 1.172;
    object-fit: cover;
    border-radius: 20px;
}

.commiments-review-box-metal {
    position: absolute;
    bottom: 95px;
    left: 0;
    max-width: 230px;
    background-color: var(--secondary-color);
    border-radius: 14px;
    padding: 30px;
    animation: heroboxmove1 3s infinite linear alternate;
    z-index: 2;
}

@keyframes heroboxmove1 {
    50% {
        transform: translateX(20px);
    }
}

.commiments-review-box-metal h2 {
    font-size: 24px;
    font-weight: 500;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.commiments-review-box-metal h2 sub {
    font-size: 16px;
    bottom: 0;
}

.commiments-review-box-metal h2 i {
    font-size: 20px;
    color: var(--accent-color);
    margin-left: 5px;
}

.commiments-review-box-metal h3 {
    font-size: 20px;
    line-height: 1.4em;
}

.commitments-counter-items-list-metal {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 5.208vw;
}

.commitments-counter-item-metal {
    position: relative;
    width: calc(50% - 2.604vw);
}

.commitments-counter-item-metal::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -2.604vw;
    width: 1px;
    height: 80%;
    background: var(--divider-color);
}

.commitments-counter-item-metal:last-child:before,
.commitments-counter-item-metal:nth-child(2n+2):before {
    display: none;
}

.commitments-counter-item-metal h2 {
    font-size: 46px;
}

.commitments-counter-item-metal p {
    margin: 10px 0 0;
}

.commitments-items-list-metal {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
    margin-top: 40px;
}

.commitments-item-metal {
    width: calc(50% - 15px);
    background-color: var(--secondary-color);
    border-radius: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
}

.commitments-item-metal .icon-box {
    position: relative;
    height: 60px;
    width: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.commitments-item-metal .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.commitments-item-metal:hover .icon-box::before {
    transform: scale(1);
}

.commitments-item-metal .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.commitments-item-metal:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.commitments-item-metal h3 {
    font-size: 20px;
}

.commitments-item-metal p {
    margin: 10px 0 0;
}

.our-commitments-metal .section-footer-text {
    margin-top: 60px;
}

.intro-video-box-metal {
    position: relative;
}

.intro-video-box-metal .container-fluid {
    padding: 0;
}

.intro-video-metal--embed {
    position: relative;
}

.intro-video-embed-metal {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.42;
    max-height: 420px;
    background: var(--primary-color);
    overflow: hidden;
}

.intro-video-embed-metal iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.intro-video-image-metal {
    position: relative;
    overflow: hidden;
}

.intro-video-image-metal figure {
    display: block;
}

.intro-video-image-metal figure:before {
    content: '';
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 30%;
    z-index: 1;
}

.intro-video-image-metal img {
    width: 100%;
    aspect-ratio: 1 / 0.42;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.intro-video-metal:hover .intro-video-image-metal img {
    transform: scale(1.03);
}

.intro-video-metal .video-play-button-metal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.intro-video-metal .video-play-button-metal a {
    display: inline-block;
    border: 1px solid var(--dark-divider-color);
    padding: 10px;
    border-radius: 50%;
}

.video-play-button-metal a span {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    background-color: var(--divider-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    cursor: none;
    transition: all 0.4s ease-in-out;
}

.intro-video-metal .video-play-button-metal a:hover span {
    color: var(--primary-color);
    background-color: var(--accent-color);
}

.our-pricing {
    padding: 120px 0;
}

.cta-box-metal {
    position: relative;
    background-image: url('../images/cta-box-bg-image-metal.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 170px 0;
}

.cta-box-metal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(24, 24, 24, 0.90) 30.93%, transparent 75.22%);
    z-index: 1;
}

.cta-box-metal .container {
    position: relative;
    z-index: 2;
}

.cta-box-metal--contact-actions::before {
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.9) 0%, rgba(24, 24, 24, 0.82) 100%);
}

.cta-box-metal--contact-actions {
    padding: 120px 0;
}

.cta-header-metal {
    max-width: 720px;
    margin: 0 auto 10px;
}

.cta-header-metal h2 {
    font-size: clamp(28px, 3.8vw, 44px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--white-color);
}

.cta-actions-grid-metal {
    margin-top: 44px;
}

.cta-action-card-metal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 36px 28px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--dark-divider-color);
    border-radius: 22px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.cta-action-card-metal:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 199, 1, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.cta-action-icon-metal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(237, 199, 1, 0.16);
    color: var(--accent-color);
    font-size: 24px;
    transition: transform 0.35s ease, background 0.35s ease;
}

.cta-action-icon-whatsapp-metal {
    background: rgba(37, 211, 102, 0.16);
    color: #25d366;
}

.cta-action-card-metal:hover .cta-action-icon-metal {
    transform: scale(1.06);
    background: var(--accent-color);
    color: var(--primary-color);
}

.cta-action-card-metal:hover .cta-action-icon-whatsapp-metal {
    background: #25d366;
    color: var(--white-color);
}

.cta-action-card-metal h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--white-color);
}

.cta-action-card-metal p {
    margin: 0 0 26px;
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 280px;
}

.cta-action-card-metal .btn-default {
    margin-top: auto;
}

.btn-whatsapp-cta-metal {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: var(--white-color) !important;
}

.btn-whatsapp-cta-metal i {
    margin-right: 8px;
}

.btn-whatsapp-cta-metal::after {
    background-color: #1da851 !important;
}

.btn-whatsapp-cta-metal:hover {
    color: var(--white-color) !important;
}

.our-faqs-metal {
    padding: 120px 0;
}

.our-faq-content-metal {
    position: sticky;
    top: 30px;
    margin-right: 15px;
}

.faq-accordion-metal .accordion-item {
    background: var(--accent-color);
    border-radius: 10px;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.faq-accordion-metal .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion-metal .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.333em;
    color: var(--primary-color);
    background: var(--white-color);
    padding: 22px 70px 22px 20px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion-metal .accordion-item .accordion-button:not(.collapsed) {
    background: transparent;
}

.faq-accordion-metal .accordion-item .accordion-button::after,
.faq-accordion-metal .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    height: 50px;
    width: 50px;
    background-color: var(--accent-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}

.faq-accordion-metal .accordion-button:not(.collapsed)::after {
    content: '\f068';
    background-color: var(--white-color);
}

.faq-accordion-metal .accordion-item .accordion-body {
    background: var(--accent-color);
    border-top: 1px solid var(--divider-color);
    padding: 22px 20px;
}

.faq-accordion-metal .accordion-item .accordion-body p {
    color: var(--primary-color);
    margin: 0;
}

.our-testimonial-metal {
    background-image: url('../images/testimonial-bg-image-metal.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    padding: 120px 0;
}

.testimonial-content-btn-metal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    align-items: center;
    margin-top: 30px;
}

.our-testimonial-metal .section-content-btn .section-btn {
    margin-top: 0;
}

.testimonial-client-box-metal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    max-width: 62%;
}

.testimonial-client-box-metal .satisfy-client-image {
    border: 1px solid var(--white-color);
}

.satisfy-client-content-metal {
    width: calc(100% - 151px);
}

.satisfy-client-content-metal p {
    margin-bottom: 0;
}

.testimonial-slider-metal,
.testimonial-slider-metal .swiper {
    height: 100%;
}

.testimonial-slider-metal .swiper-wrapper {
    cursor: none;
}

.testimonial-item-metal {
    min-height: 510px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider-metal .swiper-slide .testimonial-item-metal {
    transform: scale(0.95);
}

.testimonial-slider-metal .swiper-slide.swiper-slide-next .testimonial-item-metal {
    transform: scale(1);
}

.testimonial-item-logo-metal {
    display: flex;
    align-items: center;
    min-height: 50px;
}

.testimonial-item-logo-metal img {
    width: auto;
    max-width: 150px;
    height: 50px;
    max-height: 50px;
    object-fit: contain;
    object-position: left center;
}

.testimonial-item-content-metal p {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 0;
}

.testimonial-author-content-metal {
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.testimonial-author-content-metal h2 {
    font-size: 20px;
}

.testimonial-author-content-metal p {
    margin: 5px 0 0;
}

.our-testimonial-metal .section-footer-text {
    margin-top: 60px;
}

.main-footer-metal {
    padding: 120px 0 0;
}

.footer-header-metal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 30px;
    align-items: center;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.footer-logo-metal img {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.footer-contact-info-metal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 50px;
}

.footer-contact-item-metal {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.footer-contact-item-metal::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -25px;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.footer-contact-item-metal:last-child:before {
    display: none;
}

.footer-contact-item-metal .icon-box {
    position: relative;
    height: 50px;
    width: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-contact-item-metal .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.footer-contact-item-metal:hover .icon-box:before {
    transform: scale(1);
}

.footer-contact-item-metal .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    z-index: 1;
}

.footer-contact-item-content-metal {
    width: calc(100% - 65px);
}

.footer-contact-item-content-metal p {
    color: var(--white-color);
    margin-bottom: 5px;
}

.footer-contact-item-content-metal h2 {
    font-size: 20px;
    color: var(--white-color);
}

.footer-contact-item-content-metal h2 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-contact-item-content-metal h2 a:hover {
    color: var(--accent-color);
}

.about-footer-content-metal p {
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-social-links-metal {
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 30px;
    padding-top: 30px;
}

.footer-social-links-metal h2 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-social-links-metal ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.footer-social-links-metal ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.footer-social-links-metal ul li a:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-social-links-metal ul li a i {
    font-size: 18px;
    color: inherit;
}

.footer-links-box-metal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px 40px;
    margin-left: 0;
}

.footer-body-row-metal {
    align-items: flex-start;
}

.footer-links-metal {
    max-width: none;
    width: 100%;
}

.footer-links-metal h2 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links-metal ul {
    list-style: disc;
    margin: 0;
    padding: 0 0 0 20px;
}

.footer-links-metal ul li {
    color: var(--white-color);
    line-height: 1.5em;
    margin-bottom: 15px;
}

.footer-links-metal ul li:last-child {
    margin-bottom: 0;
}

.footer-links-metal ul li::marker {
    color: var(--accent-color);
}

.footer-links-metal ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links-metal ul li a:hover {
    color: var(--accent-color);
}

.footer-working-hour-box-metal {
    width: 100%;
    max-width: none;
}

.footer-working-hour-box-metal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-working-hour-box-metal ul li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px 20px;
    text-transform: capitalize;
    line-height: 1.5em;
    margin-bottom: 15px;
}

.footer-working-hour-box-metal ul li > span:last-child {
    text-align: right;
    flex: 0 1 auto;
    min-width: 0;
    word-break: break-word;
}

.footer-working-hour-box-metal ul li > span:first-child {
    flex: 1 1 auto;
    min-width: 0;
}

.footer-hours-note-metal {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

.footer-working-hour-box-metal .footer-hours-note-metal {
    margin-top: -4px;
}

.contact-hours-card .footer-hours-note-metal {
    margin: 0 0 14px;
    color: rgba(24, 24, 24, 0.62);
}

.footer-copyright-metal {
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    text-align: center;
    padding: 25px 0;
    margin-top: 120px;
}

.footer-copyright-text-metal p {
    color: var(--white-color);
    margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
    .main-footer-metal {
        padding-top: 80px;
    }

    .footer-copyright-metal {
        margin-top: 60px;
    }
}

@media only screen and (max-width: 991px) {
    .main-footer-metal {
        padding-top: 60px;
    }

    .footer-header-metal {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .footer-contact-info-metal {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-contact-item-metal {
        width: 100%;
    }

    .footer-contact-item-metal::before {
        display: none;
    }

    .footer-body-row-metal > [class*="col-"] {
        margin-bottom: 0;
    }

    .about-footer-metal {
        margin-bottom: 8px;
    }

    .footer-copyright-metal {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .main-footer-metal {
        padding-top: 48px;
    }

    .footer-header-metal {
        align-items: center;
        text-align: center;
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .footer-logo-metal {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-logo-metal img {
        max-width: 170px;
    }

    .footer-contact-info-metal {
        align-items: stretch;
    }

    .footer-contact-item-metal {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-contact-item-content-metal {
        width: auto;
        flex: 1;
        min-width: 0;
    }

    .footer-contact-item-content-metal h2 {
        font-size: 17px;
        word-break: break-word;
    }

    .footer-body-row-metal {
        row-gap: 28px !important;
    }

    .footer-links-metal h2,
    .footer-social-links-metal h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .footer-links-metal ul li,
    .footer-working-hour-box-metal ul li {
        margin-bottom: 12px;
    }

    .footer-working-hour-box-metal ul li {
        flex-wrap: wrap;
    }

    .footer-working-hour-box-metal ul li > span:last-child {
        text-align: left;
        width: 100%;
        padding-left: 0;
    }

    .footer-social-links-metal {
        margin-top: 24px;
        padding-top: 24px;
    }

    .footer-social-links-metal ul {
        justify-content: flex-start;
    }

    .footer-copyright-metal {
        margin-top: 32px;
        padding: 16px 0;
    }
}

@media only screen and (max-width: 575px) {
    .footer-header-metal {
        padding-bottom: 24px;
        margin-bottom: 24px;
    }

    .footer-contact-item-metal {
        gap: 12px;
    }

    .footer-contact-item-metal .icon-box {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .footer-body-row-metal > .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-working-hour-box-metal ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .footer-working-hour-box-metal ul li > span:last-child {
        padding-left: 0;
        opacity: 0.92;
    }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
    .footer-body-row-metal > .col-sm-6:nth-child(2),
    .footer-body-row-metal > .col-sm-6:nth-child(3) {
        display: flex;
    }

    .footer-body-row-metal > .col-sm-6:nth-child(2) .footer-links-metal,
    .footer-body-row-metal > .col-sm-6:nth-child(3) .footer-links-metal {
        height: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    .topbar-contact-info-list-metal {
        display: none;
    }
    .topbar-link-box-metal {
        justify-content: flex-end;
    }
    .hero-metal,
    .hero-stats-bridge-metal {
        --hero-stat-overlap: 44px;
    }
    .hero-metal {
        padding-bottom: calc(var(--hero-stat-overlap) + 16px);
    }
    .hero-split-slide-metal,
    .hero-split-slide-content-metal {
        min-height: 540px;
    }
    .hero-split-slide-content-metal {
        padding: 100px 0 88px;
    }
    .hero-content-metal {
        max-width: 100%;
        margin: 0;
    }
    .hero-stats-carousel-metal {
        padding: 0 16px;
    }

    .hero-stats-carousel-metal .swiper-slide {
        width: 248px;
    }

    .hero-stat-ribbon-inner-metal {
        min-height: 88px;
        padding: 16px;
    }
    .hero-content-metal .section-title h1.hero-headline-metal {
        font-size: clamp(24px, 3.6vw, 38px);
        max-width: 100%;
    }
    .hero-tagline-metal {
        margin-top: 18px;
        gap: 7px;
        max-width: 100%;
    }
    .hero-stats-bar-metal {
        padding: 18px 0 20px;
        border-radius: 20px;
    }
    .hero-content-footer-metal {
        margin-top: 36px;
        padding-bottom: 20px;
    }
    .about-us-metal.about-us-metal--hero-stats,
    .product-categories-metal.section-after-hero-stats {
        padding-top: calc(100px + var(--hero-stat-overlap, 44px));
    }
    .hero-img-item-metal {
        margin: 30px 0 0 0;
    }
    .about-us-image-metal img {
        aspect-ratio: 1 / 0.85;
    }
    .company-supports-content-metal {
        margin-bottom: 30px;
    }
    .why-choose-us-metal {
        padding: 72px 0;
    }

    .why-choose-showcase-metal {
        margin-top: 40px;
        padding: 20px;
    }

    .why-choose-bento-metal {
        grid-template-columns: 1fr;
        grid-template-areas:
            "story"
            "visual"
            "metrics"
            "quote";
    }

    .why-choose-visual-frame-metal,
    .why-choose-feature-image-metal,
    .why-choose-feature-image-metal img {
        min-height: 280px;
    }

    .why-choose-founder-band-metal {
        grid-template-columns: auto 1fr;
        padding: 26px 24px;
    }

    .why-choose-founder-accent-metal {
        display: none;
    }

    .view-gallery-metal {
        padding: 72px 0;
    }

    .view-gallery-masonry-metal {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 100px;
        gap: 14px;
        margin-top: 36px;
    }

    .view-gallery-masonry-metal .view-gallery-item-1 {
        grid-column: 1 / 4;
        grid-row: 1 / 4;
    }

    .view-gallery-masonry-metal .view-gallery-item-2 {
        grid-column: 4 / 7;
        grid-row: 1 / 3;
    }

    .view-gallery-masonry-metal .view-gallery-item-3 {
        grid-column: 1 / 3;
        grid-row: 4 / 6;
    }

    .view-gallery-masonry-metal .view-gallery-item-4 {
        grid-column: 3 / 7;
        grid-row: 3 / 5;
    }

    .view-gallery-masonry-metal .view-gallery-item-5 {
        grid-column: 1 / 4;
        grid-row: 6 / 8;
    }

    .view-gallery-masonry-metal .view-gallery-item-6 {
        grid-column: 3 / 7;
        grid-row: 5 / 8;
    }

    .touch-feel-metal {
        padding: 72px 0;
    }

    .touch-feel-visual-frame-metal,
    .touch-feel-main-image-metal,
    .touch-feel-main-image-metal img {
        min-height: 380px;
    }

    .touch-feel-swatch-1 {
        left: 8px;
    }

    .touch-feel-swatch-2 {
        right: 8px;
    }

    .why-choose-us-content-metal {
        height: auto;
        margin-bottom: 30px;
    }
    .why-choose-image-box-metal {
        max-width: 740px;
        margin: 0 auto;
    }
    .why-choose-image-1-metal figure img {
        aspect-ratio: 1 / 1.2;
    }
    .our-commitments-image-box-metal {
        max-width: 615px;
        margin: 0 auto 30px;
    }
    .intro-video-image-metal img {
        aspect-ratio: 1 / 0.6;
    }
    .intro-video-embed-metal {
        aspect-ratio: 1 / 0.6;
        max-height: 360px;
    }
    .cta-box-metal::before {
        background: var(--primary-color);
        opacity: 60%;
    }
    .our-faq-content-metal {
        position: initial;
        margin: 0 0 30px;
    }
    .testimonial-content-btn-metal {
        margin-top: 20px;
    }
    .testimonial-slider-metal .swiper-slide .testimonial-item-metal {
        transform: scale(1);
    }
    .testimonial-item-metal {
        padding: 30px;
        min-height: 410px;
    }
    .testimonial-author-content-metal {
        margin-top: 30px;
        padding-top: 30px;
    }
    .footer-header-metal {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .about-footer-metal {
        margin-bottom: 30px;
    }
    .footer-social-links-metal h2 {
        margin-bottom: 15px;
    }
    .footer-links-box-metal {
        margin-left: 0;
    }
    .footer-links-metal h2 {
        margin-bottom: 20px;
    }
    .footer-links-metal ul li {
        margin-bottom: 10px;
    }
    .footer-copyright-metal {
        margin-top: 30px;
        padding: 15px 0;
    }
}

@media only screen and (max-width: 991px) {
    .hero-metal,
    .hero-stats-bridge-metal {
        --hero-stat-overlap: 42px;
    }
    .hero-metal {
        padding-bottom: calc(var(--hero-stat-overlap) + 14px);
    }
    .hero-split-slide-metal,
    .hero-split-slide-content-metal {
        min-height: 500px;
    }
    .hero-split-slide-content-metal {
        padding: 72px 0 84px;
    }
    .hero-split-bg-overlay-metal {
        background:
            linear-gradient(180deg, rgba(24, 24, 24, 0.88) 0%, rgba(24, 24, 24, 0.72) 100%);
    }
    .hero-stats-bridge-metal {
        margin-top: calc(var(--hero-stat-overlap) * -1);
        margin-bottom: calc(var(--hero-stat-overlap) * -1);
    }
    .about-us-metal.about-us-metal--hero-stats,
    .product-categories-metal.section-after-hero-stats {
        padding-top: calc(80px + var(--hero-stat-overlap, 42px));
    }
    .hero-stats-carousel-metal .swiper-slide {
        width: 230px;
    }
    .hero-stats-carousel-metal {
        padding: 0 12px;
    }
    .hero-stat-icon-metal {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    .hero-stat-ribbon-inner-metal {
        min-height: 84px;
        padding: 14px 14px 14px 16px;
        gap: 12px;
    }
    .hero-content-metal .section-title h1.hero-headline-metal {
        font-size: clamp(22px, 4.5vw, 32px);
        gap: 0.5em;
        line-height: 1.38;
    }
    .hero-headline-line--secondary {
        font-size: 1em;
    }
    .hero-hl-promise--compact {
        display: inline-flex;
        margin: 0.08em 0;
    }
    .hero-tagline-metal {
        margin-top: 16px;
    }
    .hero-tag-chip {
        font-size: 11px;
        padding: 7px 12px;
    }
    .hero-stats-bar-metal {
        padding: 14px 0 16px;
        border-radius: 18px;
    }
    .hero-stat-badge-metal {
        top: 8px;
        right: 8px;
        font-size: 8px;
        padding: 3px 7px;
    }
    .hero-split-controls-inner-metal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }
    .hero-split-counter-metal {
        order: 1;
    }
    .hero-split-pagination-metal {
        order: 3;
        width: 100%;
        flex: none;
    }
    .hero-split-nav-metal {
        order: 2;
        margin-left: auto;
    }
    .hero-content-footer-metal {
        margin-top: 30px;
        padding-top: 30px;
    }
    .hero-img-item-metal {
        max-width: 230px;
    }
    .hero-img-item-metal .swiper-slide {
        max-width: 100px;
    }
    .product-categories-metal {
        padding: 60px 0;
    }

    .product-categories-header-metal.section-title-center p {
        font-size: 15px;
    }

    .product-categories-quick-nav-metal {
        margin-top: 22px;
        gap: 8px;
    }

    .product-categories-quick-nav-metal a {
        font-size: 12px;
        padding: 8px 14px;
    }

    .home-core-cat-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .home-core-cat-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 22px;
    }

    .home-core-cat-nav a {
        font-size: 11px;
        padding: 9px 10px;
    }

    .home-core-cat-body h3 {
        font-size: 17px;
    }

    .our-stores-metal {
        padding: 80px 0 90px;
    }

    .our-stores-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 36px;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-blog-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-blog-metal {
        padding: 80px 0 90px;
    }

    .product-category-head-metal {
        padding: 22px 20px 18px;
        gap: 12px;
    }

    .product-category-head-metal h3 {
        font-size: 20px;
    }

    .product-category-icon-metal {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 12px;
    }

    .product-category-body-metal {
        padding: 22px 20px 26px;
        gap: 18px;
    }

    .product-category-desc-metal {
        font-size: 15px;
        line-height: 1.6;
    }

    .product-category-tags-metal span {
        font-size: 11px;
        padding: 5px 10px;
    }

    .product-category-btn-metal {
        width: 100%;
        font-size: 13px;
        padding: 11px 18px;
    }

    .our-stores-metal {
        padding: 70px 0 80px;
    }

    .our-stores-grid {
        max-width: none;
        gap: 18px;
        margin-top: 28px;
    }

    .home-blog-grid {
        max-width: none;
        gap: 18px;
        margin-top: 32px;
    }

    .home-blog-metal {
        padding: 70px 0 80px;
    }

    .home-blog-card-body {
        padding: 20px 18px 22px;
    }

    .home-blog-card-body h3 {
        font-size: 18px;
    }

    .our-store-body-metal {
        padding: 20px 18px 22px;
    }

    .our-store-body-metal h3 {
        font-size: 18px;
    }

    .our-store-map-metal {
        aspect-ratio: 16 / 10;
    }

    .product-categories-cta-metal {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 14px;
        margin-top: 36px;
        padding: 24px 20px;
    }

    .product-categories-cta-icon-metal {
        grid-row: auto;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .product-categories-cta-content-metal {
        grid-column: 1;
        grid-row: auto;
    }

    .product-categories-cta-content-metal h4 {
        font-size: 18px;
    }

    .product-categories-cta-actions-metal {
        grid-column: 1;
        grid-row: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        flex-wrap: wrap;
        overflow-x: visible;
        gap: 10px;
    }

    .product-categories-cta-actions-metal .btn-default {
        flex: none;
        min-width: 0;
        width: 100%;
        font-size: 11px;
        padding: 12px 10px;
    }

    .social-proof-metal {
        padding: 70px 0 80px;
    }

    .social-proof-trust-bar-metal {
        gap: 8px;
        margin-bottom: 24px;
    }

    .social-proof-trust-chip-metal {
        padding: 12px 10px;
        gap: 10px;
    }

    .social-proof-trust-chip-metal strong {
        font-size: 16px;
    }

    .social-proof-trust-chip-metal span {
        font-size: 11px;
    }

    .social-proof-panel-metal {
        padding: 18px 16px 16px;
        margin-bottom: 28px;
    }

    .social-proof-panel-head-metal {
        flex-direction: column;
        align-items: stretch;
    }

    .social-proof-tabs-metal {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .social-proof-tab-metal {
        flex-shrink: 0;
        font-size: 13px;
        padding: 9px 16px;
        min-height: 40px;
    }

    .social-proof-filter-count-metal {
        text-align: center;
    }

    .social-proof-card-metal {
        min-height: 240px;
        padding: 18px;
    }

    .social-proof-quote-metal p {
        font-size: 14px;
    }

    .social-proof-videos-title-metal {
        font-size: 22px;
    }

    .social-proof-reels-stage-metal {
        padding: 0;
        border-radius: 18px;
    }

    .social-proof-reels-wrap-metal {
        gap: 8px;
    }

    .social-proof-reels-prev-metal,
    .social-proof-reels-next-metal {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .social-proof-reel-card-metal {
        max-width: 240px;
    }

    .social-proof-reel-device-metal {
        padding: 10px 10px 12px;
        border-radius: 28px;
    }

    .social-proof-reel-screen-metal {
        max-height: 400px;
        border-radius: 20px;
    }

    .social-proof-reel-mute-metal {
        right: 10px;
        bottom: 52px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .social-proof-reel-badge-metal {
        top: 18px;
        left: 18px;
    }

    .social-proof-reels-hint-metal {
        display: flex;
    }

    .social-proof-resolution-title-metal {
        font-size: 18px;
    }

    .about-us-metal {
        padding: 60px 0;
    }
    .about-us-metal.about-us-metal--hero-stats,
    .product-categories-metal.section-after-hero-stats {
        padding-top: calc(60px + var(--hero-stat-overlap, 42px));
    }
    .about-us-metal .section-title h2 img {
        max-width: 100px;
    }
    .about-us-item-metal {
        min-height: 370px;
        padding: 30px;
    }
    .about-us-item-counter-metal {
        padding-top: 30px;
    }
    .about-us-item-counter-metal h2 {
        font-size: 34px;
    }
    .company-supports-slider-metal {
        margin: 0;
    }
    .company-supports-logo-metal {
        height: 50px;
    }

    .company-supports-logo-metal img {
        max-width: 145px;
        height: 42px;
        max-height: 42px;
    }
    .our-services-glass-metal {
        padding: 60px 0;
    }
    .glass-service-showcase-metal {
        margin-top: 36px;
        border-radius: 20px;
    }
    .glass-service-visual-metal,
    .glass-service-image-metal,
    .glass-service-image-metal img {
        min-height: 340px;
    }
    .glass-service-content-metal {
        padding: 36px 28px;
    }
    .glass-service-features-metal {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .why-choose-us-metal {
        padding: 60px 0;
    }

    .why-choose-header-metal h2 {
        font-size: clamp(24px, 5vw, 34px);
    }

    .why-choose-showcase-metal {
        margin-top: 32px;
        padding: 16px;
        border-radius: 22px;
    }

    .why-choose-bento-story-metal {
        padding: 24px 20px;
    }

    .why-choose-metrics-metal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .why-choose-metric-metal:last-child {
        grid-column: 1 / -1;
    }

    .why-choose-metric-metal {
        padding: 16px 14px;
    }

    .why-choose-founder-band-metal {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 20px;
    }

    .why-choose-quote-icon-metal {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .why-choose-float-stat-num {
        font-size: 24px;
    }

    .view-gallery-metal {
        padding: 60px 0;
    }

    .view-gallery-intro-metal {
        font-size: 16px;
    }

    .view-gallery-masonry-metal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 190px;
        gap: 12px;
        margin-top: 32px;
    }

    .view-gallery-masonry-metal .view-gallery-item-1 {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .view-gallery-masonry-metal .view-gallery-item-2 {
        grid-column: 2;
        grid-row: 1 / 2;
    }

    .view-gallery-masonry-metal .view-gallery-item-3 {
        grid-column: 2;
        grid-row: 2 / 3;
    }

    .view-gallery-masonry-metal .view-gallery-item-4 {
        grid-column: 1 / -1;
        grid-row: 3 / 5;
    }

    .view-gallery-masonry-metal .view-gallery-item-5 {
        grid-column: 1;
        grid-row: 5 / 7;
    }

    .view-gallery-masonry-metal .view-gallery-item-6 {
        grid-column: 2;
        grid-row: 5 / 7;
    }

    .touch-feel-metal {
        padding: 60px 0;
    }

    .touch-feel-content-metal {
        max-width: 100%;
    }

    .touch-feel-content-metal h2 {
        font-size: clamp(24px, 5vw, 34px);
    }

    .touch-feel-body-metal {
        font-size: 16px;
    }

    .touch-feel-visual-frame-metal,
    .touch-feel-main-image-metal,
    .touch-feel-main-image-metal img {
        min-height: 340px;
    }

    .touch-feel-swatch-metal {
        width: 118px;
    }

    .touch-feel-swatch-1 {
        top: 10%;
        left: 12px;
    }

    .touch-feel-swatch-2 {
        bottom: 12%;
        right: 12px;
    }

    .why-choose-body-metal {
        padding: 30px;
    }
    .why-choose-body-list-metal ul li {
        margin-bottom: 15px;
    }
    .why-choose-body-list-metal ul li::before {
        font-size: 16px;
    }
    .our-feature-metal {
        padding: 60px 0;
    }
    .feature-item-metal {
        padding: 30px 30px 0;
        gap: 30px;
    }
    .feature-item-image-1-metal figure {
        margin-left: -20px;
    }
    .our-commitments-metal {
        padding: 60px 0;
    }
    .commiments-review-box-metal {
        padding: 20px;
    }
    .commiments-review-box-metal h2 {
        font-size: 22px;
    }
    .commitments-counter-item-metal h2 {
        font-size: 38px;
    }
    .commitments-items-list-metal {
        padding-top: 30px;
        margin-top: 30px;
    }
    .commitments-item-metal {
        min-height: auto;
        padding: 20px;
    }
    .commitments-item-metal .icon-box {
        height: 50px;
        width: 50px;
    }
    .commitments-item-metal .icon-box img {
        max-width: 24px;
    }
    .commiments-review-box-metal h2 i {
        font-size: 18px;
    }
    .our-commitments-metal .section-footer-text {
        margin-top: 40px;
    }
    .our-pricing {
        padding: 60px 0;
    }
    .cta-box-metal {
        padding: 90px 0;
    }

    .cta-box-metal--contact-actions {
        padding: 80px 0;
    }

    .cta-actions-grid-metal {
        margin-top: 32px;
    }

    .cta-action-card-metal {
        padding: 30px 22px 26px;
    }

    .cta-action-card-metal h3 {
        font-size: 20px;
    }

    .our-faqs-metal {
        padding: 60px 0;
    }
    .faq-accordion-metal .accordion-item {
        margin-bottom: 20px;
    }
    .faq-accordion-metal .accordion-header .accordion-button {
        padding: 18px 60px 18px 18px;
    }
    .faq-accordion-metal .accordion-item .accordion-button::after,
    .faq-accordion-metal .accordion-item .accordion-button.collapsed::after {
        height: 40px;
        width: 40px;
        font-size: 20px;
    }
    .faq-accordion-metal .accordion-item .accordion-body {
        padding: 18px;
    }
    .our-testimonial-metal {
        padding: 60px 0;
    }
    .satisfy-client-image figure img {
        max-width: 40px;
    }
    .testimonial-item-content-metal p {
        font-size: 18px;
    }
    .our-testimonial-metal .section-footer-text {
        margin-top: 40px;
    }
    .main-footer-metal {
        padding: 60px 0 0;
    }
    .footer-contact-item-content-metal h2 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .topbar-metal {
        padding: 8px 0;
    }
    .topbar-contact-info-metal {
        text-align: center;
    }
    .topbar-contact-info-metal p {
        font-size: 13px;
        line-height: 1.35;
    }
    .topbar-link-box-metal {
        display: none;
    }
    .hero-metal,
    .hero-stats-bridge-metal {
        --hero-stat-overlap: 40px;
    }
    .hero-metal {
        padding-bottom: calc(var(--hero-stat-overlap) + 12px);
    }
    .hero-split-slide-metal,
    .hero-split-slide-content-metal {
        min-height: 460px;
    }
    .hero-split-slide-content-metal {
        padding: 64px 0 80px;
    }
    .hero-split-controls-metal {
        bottom: calc(var(--hero-stat-overlap) + 12px);
    }
    .hero-stats-bridge-metal {
        margin-top: calc(var(--hero-stat-overlap) * -1);
        margin-bottom: calc(var(--hero-stat-overlap) * -1);
    }
    .about-us-metal.about-us-metal--hero-stats,
    .product-categories-metal.section-after-hero-stats {
        padding-top: calc(60px + var(--hero-stat-overlap, 40px));
    }

    .home-core-cat-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 28px;
    }

    .home-core-cat-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .home-core-cat-nav a {
        min-height: 44px;
        font-size: 11px;
        padding: 10px 12px;
    }

    .home-core-cat-body {
        padding: 18px 18px 20px;
    }

    .home-core-cat-body h3 {
        font-size: 16px;
    }

    .home-core-cat-body p {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }

    .home-core-cat-btn {
        font-size: 11px;
        padding: 11px 14px;
    }

    .hero-stats-carousel-metal .swiper-slide {
        width: 215px;
    }
    .hero-stat-value-metal {
        font-size: 24px;
    }
    .hero-stat-value-metal--text {
        font-size: 16px;
    }
    .hero-stat-label-metal {
        font-size: 12px;
    }
    .hero-stat-icon-metal {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
    .hero-stat-ribbon-inner-metal {
        min-height: 80px;
        padding: 12px 12px 12px 14px;
    }
    .hero-content-metal .section-title h1.hero-headline-metal {
        font-size: clamp(20px, 5.2vw, 28px);
        line-height: 1.4;
    }
    .hero-headline-line--secondary {
        font-size: 1em;
        line-height: 1.48;
    }
    .hero-hl-zero {
        font-size: 0.9em;
    }
    .hero-tagline-metal {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 14px;
        gap: 6px;
    }
    .hero-tag-chip {
        width: 100%;
        justify-content: flex-start;
        font-size: 11px;
    }
    .hero-split-controls-metal {
        margin-top: 20px;
    }
    .hero-split-prev-metal,
    .hero-split-next-metal {
        width: 40px;
        height: 40px;
    }
    .hero-stats-bar-metal {
        padding: 12px 0 14px;
        border-radius: 16px;
    }
    .hero-stats-carousel-metal {
        padding: 0 10px;
    }
    .hero-content-footer-metal {
        gap: 15px;
        margin-top: 20px;
        padding-top: 20px;
    }
    .google-review-box-metal {
        width: 100%;
        padding: 0;
        border-right: none;
    }
    .hero-footer-content-metal {
        max-width: 100%;
    }
    .google-review-box-metal .icon-box img {
        max-width: 40px;
    }
    .google-review-box-content-metal {
        width: calc(100% - 55px);
    }
    .google-review-box-content-metal p {
        font-size: 18px;
    }
    .hero-img-item-metal {
        max-width: 175px;
    }
    .hero-img-item-metal .swiper-slide {
        max-width: 80px;
    }
    .about-us-metal .section-title h2 img {
        max-width: 80px;
        height: 30px;
    }
    .about-us-item-metal {
        min-height: auto;
        gap: 20px;
        padding: 20px;
    }
    .about-us-item-header-metal .icon-box {
        margin-bottom: 20px;
    }
    .about-us-item-header-content-metal h3 {
        font-size: 18px;
    }
    .about-us-item-counter-metal {
        padding-top: 20px;
    }
    .about-us-item-counter-metal h2 {
        font-size: 28px;
    }
    .about-us-item-Content-metal h3 {
        font-size: 18px;
    }
    .about-us-image-metal figure,
    .about-us-image-metal img,
    .about-us-image-slider-metal figure,
    .about-us-image-slider-metal img {
        height: auto;
    }
    .company-supports-slider-box-metal {
        margin-top: 10px;
    }
    .company-supports-content-metal {
        margin-bottom: 20px;
        gap: 10px;
    }
    .company-supports-content-metal p {
        font-size: 14px;
    }
    .glass-service-visual-metal,
    .glass-service-image-metal,
    .glass-service-image-metal img {
        min-height: 280px;
    }
    .glass-service-content-metal {
        padding: 28px 20px;
    }
    .glass-service-content-metal h3 {
        font-size: 22px;
    }
    .glass-service-badge-metal {
        top: 16px;
        left: 16px;
        font-size: 11px;
        padding: 8px 12px;
    }
    .glass-service-float-tag-metal {
        font-size: 11px;
        padding: 6px 10px;
    }
    .glass-service-actions-metal {
        flex-direction: column;
        align-items: stretch;
    }
    .glass-service-actions-metal .btn-default {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .glass-service-footer-metal {
        margin-top: 28px;
        padding: 20px 16px;
    }
    .glass-service-trust-metal {
        flex-direction: column;
        gap: 8px;
    }
    .why-choose-us-metal {
        padding: 48px 0;
    }

    .why-choose-header-metal h2 {
        font-size: clamp(22px, 6.5vw, 28px);
    }

    .why-choose-showcase-metal {
        margin-top: 28px;
        padding: 12px;
        border-radius: 18px;
    }

    .why-choose-bento-story-metal {
        padding: 20px 16px;
    }

    .why-choose-lead-metal {
        padding-left: 14px;
        font-size: 16px;
        margin-bottom: 16px;
    }

    .why-choose-body-lines-metal p {
        font-size: 15px;
    }

    .why-choose-promise-metal {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px !important;
        font-size: 15px !important;
    }

    .why-choose-visual-frame-metal,
    .why-choose-feature-image-metal,
    .why-choose-feature-image-metal img {
        min-height: 220px;
    }

    .why-choose-float-stat-1 {
        top: 12px;
        right: 12px;
        padding: 10px 12px;
    }

    .why-choose-float-stat-2 {
        bottom: 12px;
        left: 12px;
        font-size: 11px;
        padding: 8px 12px;
    }

    .why-choose-metrics-metal {
        grid-template-columns: 1fr;
    }

    .why-choose-metric-metal:last-child {
        grid-column: auto;
    }

    .why-choose-metric-copy-metal strong {
        font-size: 14px;
    }

    .why-choose-founder-text-metal p {
        font-size: 15px;
    }

    .view-gallery-metal {
        padding: 48px 0;
    }

    .view-gallery-masonry-metal {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 14px;
        margin-top: 28px;
    }

    .view-gallery-masonry-metal .view-gallery-item-1,
    .view-gallery-masonry-metal .view-gallery-item-2,
    .view-gallery-masonry-metal .view-gallery-item-3,
    .view-gallery-masonry-metal .view-gallery-item-4,
    .view-gallery-masonry-metal .view-gallery-item-5,
    .view-gallery-masonry-metal .view-gallery-item-6 {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .view-gallery-masonry-metal .view-gallery-figure-metal {
        min-height: 240px;
        aspect-ratio: 16 / 11;
    }

    .view-gallery-overlay-metal {
        padding: 18px;
    }

    .view-gallery-overlay-metal h3 {
        font-size: 18px;
    }

    .view-gallery-footer-metal {
        margin-top: 28px;
    }

    .view-gallery-footer-metal p {
        font-size: 15px;
    }

    .cta-box-metal--contact-actions {
        padding: 64px 0;
    }

    .cta-header-metal h2 {
        font-size: clamp(24px, 6.5vw, 30px);
    }

    .cta-actions-grid-metal {
        margin-top: 28px;
    }

    .cta-action-card-metal {
        padding: 26px 20px 24px;
    }

    .cta-action-icon-metal {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .cta-action-card-metal .btn-default {
        width: 100%;
        justify-content: center;
    }

    .touch-feel-metal {
        padding: 48px 0;
    }

    .touch-feel-content-metal h2 {
        font-size: clamp(22px, 6.5vw, 28px);
    }

    .touch-feel-body-metal {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .touch-feel-features-metal {
        margin-bottom: 24px;
        gap: 10px;
    }

    .touch-feel-feature-metal {
        padding: 12px 14px;
        font-size: 14px;
    }

    .touch-feel-actions-metal {
        flex-direction: column;
        align-items: stretch;
    }

    .touch-feel-cta-metal {
        width: 100%;
        justify-content: center;
    }

    .touch-feel-location-metal {
        justify-content: center;
    }

    .touch-feel-visual-frame-metal,
    .touch-feel-main-image-metal,
    .touch-feel-main-image-metal img {
        min-height: 280px;
    }

    .touch-feel-swatch-metal {
        width: 100px;
        padding: 6px;
    }

    .touch-feel-swatch-metal img {
        height: 58px;
    }

    .touch-feel-swatch-1 {
        top: 8%;
        left: 8px;
    }

    .touch-feel-swatch-2 {
        bottom: 10%;
        right: 8px;
    }

    .touch-feel-float-badge-metal {
        font-size: 11px;
        padding: 8px 12px;
    }

    .why-choose-body-metal {
        padding: 20px;
    }

    .why-choose-item-metal {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .feature-item-metal {
        padding: 20px 20px 0;
        gap: 20px;
    }

    .feature-item-content-metal h3 {
        font-size: 18px;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
    .commiments-review-box-metal {
        bottom: 55px;
        max-width: 155px;
        padding: 15px;
    }
    .commiments-review-box-metal h2 {
        font-size: 20px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .commiments-review-box-metal h2 sub {
        font-size: 14px;
    }
    .commiments-review-box-metal h2 i {
        font-size: 16px;
    }
    .commiments-review-box-metal h3 {
        font-size: 16px;
    }
    .commitments-counter-items-list-metal {
        gap: 30px;
    }
    .commitments-counter-item-metal {
        width: calc(50% - 15px);
    }
    .commitments-counter-item-metal::before {
        right: -15px;
    }
    .commitments-counter-item-metal h2 {
        font-size: 26px;
    }
    .commitments-counter-item-metal p {
        margin: 5px 0 0;
    }
    .commitments-items-list-metal {
        gap: 20px;
    }
    .commitments-item-metal {
        width: 100%;
        gap: 20px;
        padding: 20px;
    }
    .commitments-item-metal h3 {
        font-size: 18px;
    }
    .commitments-item-metal p {
        margin: 5px 0 0;
    }
    .intro-video-image-metal img {
        aspect-ratio: 1 / 0.8;
    }
    .intro-video-embed-metal {
        aspect-ratio: 1 / 0.8;
        max-height: 300px;
    }
    .intro-video-metal .video-play-button-metal a {
        padding: 5px;
    }
    .intro-video-metal .video-play-button-metal a span {
        font-size: 18px;
        width: 80px;
        height: 80px;
    }
    .faq-accordion-metal .accordion-header .accordion-button {
        font-size: 16px;
        padding: 12px 50px 12px 15px;
    }
    .faq-accordion-metal .accordion-item .accordion-button::after,
    .faq-accordion-metal .accordion-item .accordion-button.collapsed::after {
        height: 30px;
        width: 30px;
        font-size: 18px;
    }
    .faq-accordion-metal .accordion-item .accordion-body {
        padding: 12px 15px;
    }
    .testimonial-client-box-metal {
        max-width: 100%;
    }
    .testimonial-item-metal {
        min-height: auto;
        gap: 20px;
        padding: 20px;
    }
    .testimonial-item-logo-metal img {
        max-width: 250px;
        height: 150px;
        object-fit: cover;
        object-position: center;
    }
    .testimonial-item-content-metal p {
        font-size: 16px;
    }
    .testimonial-author-content-metal {
        margin-top: 20px;
        padding-top: 20px;
    }
    .testimonial-author-content-metal h2 {
        font-size: 18px;
    }
    .footer-header-metal {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .footer-contact-info-metal {
        gap: 20px;
    }
    .footer-contact-item-metal {
        width: 100%;
    }
    .footer-contact-item-metal::before {
        display: none;
    }
    .footer-contact-item-metal .icon-box {
        width: 44px;
        height: 44px;
    }
    .footer-contact-item-metal .icon-box img {
        max-width: 22px;
    }
    .footer-contact-item-content-metal {
        width: calc(100% - 59px);
    }
    .footer-contact-item-content-metal h2 {
        font-size: 16px;
    }
    .footer-social-links-metal {
        margin-top: 20px;
        padding-top: 20px;
    }
    .footer-social-links-metal h2 {
        font-size: 18px;
    }
    .footer-links-metal {
        max-width: 100%;
    }
    .footer-links-metal h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-working-hour-box-metal {
        width: 100%;
    }
    .footer-copyright-metal {
        padding: 10px 0;
    }
}

/************************************/

/***   35. Home - Version 3 css   ***/

/************************************/

.hero-stone {
    position: relative;
    background-image: url('../images/hero-bg-image-stone.jpg');
    padding: 250px 0 80px;
}

.hero-stone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 60%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-content-stone {
    max-width: 760px;
}

.hero-content-body-stone {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}

.video-play-button-stone a {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: none;
    gap: 10px;
}

.video-play-button-stone a span {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.video-play-button-stone a span.bg-effect:before,
.video-play-button-stone a span.bg-effect:after {
    content: '';
    position: absolute;
    width: 160%;
    height: 160%;
    border: 25px solid var(--white-color);
    opacity: 50%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button-stone a span.bg-effect:after {
    animation-delay: .3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button-stone a span i {
    position: relative;
    font-size: 16px;
    color: var(--primary-color);
    margin-left: 2px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.video-play-button-stone p {
    font-weight: 500;
    color: var(--white-color);
    margin: 0;
}

.contact-us-circle-stone {
    text-align: end;
}

.contact-us-circle-stone a {
    display: inline-block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
}

.contact-us-circle-stone a img {
    width: 100%;
    max-width: 130px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-us-circle-stone a:hover img {
    animation-play-state: paused;
}

.hero-info-list-stone {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 60px;
    margin-top: 10.417vw;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-info-item-stone {
    width: calc(33.33% - 20px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-info-item-stone .icon-box {
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--accent-color);
    overflow: hidden;
}

.hero-info-item-stone .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.hero-info-item-stone:hover .icon-box:before {
    transform: scale(1);
}

.hero-info-item-stone .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.hero-info-item-content-stone {
    width: calc(100% - 65px);
}

.hero-info-item-content-stone h2 {
    font-size: 20px;
    color: var(--white-color);
}

.hero-info-item-content-stone p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.about-us-stone {
    padding: 120px 0;
}

.about-us-image-box-stone {
    display: flex;
    flex-wrap: wrap;
    margin-right: 15px;
}

.about-us-image-box-1-stone {
    width: 38%;
    padding-bottom: 120px;
}

.about-us-image-box-1-stone .about-us-image-stone figure {
    margin-right: -230px;
}

.about-us-image-stone figure {
    display: block;
    border-radius: 20px;
}

.about-us-image-stone figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-us-image-box-1-stone .about-us-image-stone figure img {
    aspect-ratio: 1 / 1.36;
}

.about-us-image-box-2-stone .about-us-image-stone figure img {
    aspect-ratio: 1 / 1.14;
}

.about-us-image-box-2-stone {
    position: relative;
    width: 62%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    z-index: 1;
}

.about-experience-box-stone {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 25px;
    max-width: 280px;
    margin: 70px 30px 0 auto;
    animation: Movestylestone 2s infinite alternate linear;
}

@keyframes Movestylestone {
    50% {
        transform: translateX(-15px);
    }
}

.about-experience-box-stone .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-experience-box-stone .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-experience-box-stone:hover .icon-box::before {
    transform: scale(1);
}

.about-experience-box-stone .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.about-experience-box-stone:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-experience-box-content-stone {
    width: calc(100% - 65px);
}

.about-experience-box-content-stone h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1em;
}

.about-experience-box-content-stone p {
    color: var(--primary-color);
    line-height: normal;
    margin: 5px 0 0;
}

.about-us-image-box-2-stone .about-us-image-stone figure {
    border: 6px solid var(--bg-color);
    border-radius: 27px;
}

.about-us-item-box-stone {
    background-color: var(--white-color);
    border-radius: 20px;
    margin-bottom: 40px;
    padding: 25px;
}

.about-us-item-stone {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.about-us-item-stone .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-us-item-stone .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-us-item-box-stone:hover .icon-box::before {
    transform: scale(1);
}

.about-us-item-stone .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.about-us-item-box-stone:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.about-us-item-content-stone {
    width: calc(100% - 70px);
}

.about-us-item-content-stone h3 {
    font-size: 20px;
}

.about-us-item-content-stone p {
    margin: 10px 0 0;
}

.about-us-item-list-stone ul {
    list-style: disc;
    padding: 0 0 0 20px;
    margin: 0;
}

.about-us-item-list-stone ul li {
    line-height: 1.5em;
    margin-bottom: 10px;
}

.about-us-item-list-stone ul li:last-child {
    margin-bottom: 0;
}

.about-us-item-list-stone ul li::marker {
    color: var(--accent-color);
}

.about-us-body-stone {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.about-us-body-content-stone {
    width: calc(50% - 15px);
    align-content: center;
}

.about-us-list-stone ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-us-list-stone ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.about-us-list-stone ul li:last-child {
    margin-bottom: 0;
}

.about-us-list-stone ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    top: 0;
    left: 0;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.about-us-btn-stone {
    margin-top: 40px;
}

.about-us-body-image-stone {
    width: calc(50% - 15px);
}

.about-us-body-image-stone figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.about-us-body-image-stone figure img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.67;
    object-fit: cover;
    border-radius: 20px;
}

.our-service-stone {
    background-image: url("../images/service-bg-image-metal.png");
    background-position: bottom -60px center;
    background-repeat: no-repeat;
    background-size: auto;
    padding: 120px 0;
}

.service-item-stone {
    background: var(--bg-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 10px;
    transition: all 0.4s ease-in-out;
}

.service-item-stone:hover {
    transform: translateY(-5px);
}

.servce-item-image-box-stone {
    position: relative;
    margin-bottom: 10px;
}

.servce-item-image-box-stone figure {
    display: block;
    border-radius: 10px;
}

.servce-item-image-box-stone figure img {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 1 / 1.045;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.service-item-stone:hover .servce-item-image-box-stone figure img {
    transform: scale(1.06);
}

.service-btn-stone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.service-item-stone:hover .service-btn-stone {
    transform: translate(-50%, -50%) scale(1);
}

.service-btn-stone a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.service-btn-stone a:hover {
    background-color: var(--primary-color);
}

.service-btn-stone img {
    width: 100%;
    max-width: 20px;
    transition: all 0.4s ease-in-out;
}

.service-btn-stone a:hover img {
    filter: brightness(0) invert(1);
}

.service-btn-stone:hover img {
    transform: rotate(45deg);
}

.service-item-content-stone {
    padding: 20px;
    text-align: center;
}

.service-item-content-stone h2 {
    font-size: 20px;
}

.service-item-content-stone h2 a {
    color: inherit;
}

.our-values-stone {
    padding: 120px 0;
}

.values-image-box-stone {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}

.values-image-box-stone::before {
    content: "";
    position: absolute;
    top: 85px;
    right: 35px;
    background: url("../images/our-values-bg-image-stone.png") no-repeat;
    background-position: center center;
    background-size: cover;
    width: 155px;
    height: 234px;
    transform: rotate(15deg);
}

.values-image-box-1-stone {
    width: 40%;
    padding-bottom: 225px;
}

.values-image-box-1-stone figure {
    display: block;
    border-radius: 200px 200px 0 0;
    margin-right: -165px;
}

.values-image-box-1-stone figure img {
    width: 100%;
    border-radius: 200px 200px 0 0;
    aspect-ratio: 1 / 1.16;
    object-fit: cover;
}

.values-image-box-2-stone {
    position: relative;
    width: 60%;
    align-content: end;
    z-index: 1;
}

.values-image-stone figure {
    display: block;
    border-radius: 0 0 200px 200px;
    border: 6px solid var(--bg-color);
}

.values-image-stone figure img {
    width: 100%;
    border-radius: 0 0 200px 200px;
    aspect-ratio: 1 / 1.243;
    object-fit: cover;
}

.values-contact-circle-stone {
    position: absolute;
    left: -65px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 1;
}

.values-contact-circle-stone a {
    display: block;
    border-radius: 50%;
}

.values-contact-circle-stone a img {
    max-width: 130px;
    width: 100%;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    animation: infiniterotate 20s infinite linear;
}

.values-contact-circle-stone a:hover img {
    animation-play-state: paused;
}

.values-item-stone {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.values-item-stone:last-child {
    margin-bottom: 0;
}

.values-item-stone .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.values-item-stone .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
    transform: scale(0);
    z-index: -1;
}

.values-item-stone:hover .icon-box::before {
    transform: scale(1);
}

.values-item-stone .icon-box img {
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
}

.values-item-stone:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.values-item-content-stone {
    width: calc(100% - 65px);
}

.values-item-content-stone h3 {
    font-size: 20px;
}

.values-item-content-stone p {
    margin: 10px 0 0;
}

.values-content-list-stone {
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

.values-content-list-stone ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px 30px;
    flex-wrap: wrap;
}

.values-content-list-stone ul li {
    width: calc(50% - 15px);
    position: relative;
    line-height: 1.5em;
    color: var(--primary-color);
    padding: 20px 20px 20px 45px;
    background-color: var(--white-color);
    border-radius: 10px;
    transition: all 0.4s ease-in-out;
}

.values-content-list-stone ul li:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.values-content-list-stone ul li::before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    top: 20px;
    left: 20px;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
}

.values-btn-stone {
    margin-top: 40px;
}

.our-core-features-stone {
    padding: 120px 0;
}

.core-features-item-stone {
    border-radius: 20px;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.core-features-item-stone.box-1 {
    background-color: var(--accent-color);
}

.core-features-item-stone.box-1 .core-features-item-image-stone,
.core-features-item-stone.box-3 .core-features-item-image-stone {
    max-width: 330px;
    margin: 0 auto;
}

.core-features-item-stone.box-1 .core-features-item-image-stone img,
.core-features-item-stone.box-3 .core-features-item-image-stone img {
    width: 100%;
    border-radius: 20px 20px 0 0;
    margin-bottom: -70px;
}

.core-features-item-stone h3 {
    font-size: 20px;
}

.core-features-item-stone p {
    border-top: 1px solid var(--divider-color);
    padding-top: 20px;
    margin: 20px 0 0;
}

.core-features-item-stone.box-1 p {
    color: var(--primary-color);
}

.core-features-item-stone.box-2 {
    position: relative;
    justify-content: end;
}

.core-features-item-stone.box-2 .core-features-item-image-stone {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.core-features-item-stone.box-2 .core-features-item-image-stone figure {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.core-features-item-stone.box-2 .core-features-item-image-stone figure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(24, 24, 24, 0.80) 82.5%);
    height: 100%;
    width: 100%;
}

.core-features-item-stone.box-2 .core-features-item-image-stone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.core-features-item-stone.box-2 .core-features-item-content-stone {
    position: relative;
    z-index: 1;
}

.core-features-item-stone.box-2 .core-features-item-content-stone h3,
.core-features-item-stone.box-3 .core-features-item-content-stone h3 {
    color: var(--white-color);
}

.core-features-item-stone.box-2 .core-features-item-content-stone p {
    color: var(--white-color);
    border: none;
    padding-top: 0;
}

.core-features-item-stone.box-3 {
    background-color: var(--primary-color);
}

.core-features-item-stone.box-3 .core-features-item-content-stone p {
    color: var(--white-color);
    border-color: var(--dark-divider-color);
}

.cta-box-stone {
    padding: 120px 0;
}

.cta-image-box-stone {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
    margin-right: 35px;
}

.cta-image-stone {
    height: 100%;
}

.cta-image-stone figure {
    display: block;
    height: 100%;
    border-radius: 20px;
}

.cta-image-stone figure img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
    border-radius: 20px;
}

.cta-contact-box-stone {
    background-color: var(--primary-color);
    border-radius: 20px;
    padding: 40px;
}

.cta-contact-item-stone {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.cta-contact-item-stone .icon-box {
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--accent-color);
    overflow: hidden;
}

.cta-contact-item-stone .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--white-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.cta-contact-box-stone:hover .icon-box:before {
    transform: scale(1);
}

.cta-contact-item-stone .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.cta-contact-item-content-stone p {
    color: var(--white-color);
    margin-bottom: 5px;
}

.cta-contact-item-content-stone h3 {
    font-size: 26px;
    color: var(--white-color);
}

.cta-contact-item-content-stone h3 a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.cta-contact-item-content-stone h3 a:hover {
    color: var(--accent-color);
}

.cta-contact-box-content-stone p {
    color: var(--white-color);
    margin: 0;
}

.cta-content-stone {
    height: 100%;
    align-content: center;
}

.cta-content-stone .contact-form .form-control {
    background: var(--white-color);
    border: none;
    padding: 18px 20px;
    line-height: 1.5em;
}

.intro-video-box-stone {
    position: relative;
}

.intro-video-box-stone .container-fluid {
    padding: 0;
}

.intro-video-image-stone {
    position: relative;
    overflow: hidden;
}

.intro-video-image-stone figure {
    display: block;
}

.intro-video-image-stone figure:before {
    content: '';
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 30%;
    z-index: 1;
}

.intro-video-image-stone img {
    width: 100%;
    aspect-ratio: 1 / 0.42;
    object-fit: cover;
    transition: all 1s ease-in-out;
}

.intro-video-stone:hover .intro-video-image-stone img {
    transform: scale(1.03);
}

.intro-video-stone .video-play-button-stone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.intro-video-stone .video-play-button-stone a {
    display: inline-block;
    border: 1px solid var(--dark-divider-color);
    padding: 10px;
    border-radius: 50%;
}

.intro-video-stone .video-play-button-stone a span {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    color: var(--white-color);
    background: var(--divider-color);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    cursor: none;
    transition: all 0.4s ease-in-out;
}

.intro-video-stone .video-play-button-stone a:hover span {
    color: var(--primary-color);
    background-color: var(--accent-color);
}

.our-team-stone {
    padding: 120px 0;
}

.team-item-stone {
    position: relative;
    height: calc(100% - 30px);
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

.team-item-image-stone a {
    cursor: none;
}

.team-item-image-stone figure {
    position: relative;
    display: block;
}

.team-item-image-stone figure::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, transparent 50%, rgba(24, 24, 24, 0.80) 90%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.team-item-image-stone figure img {
    width: 100%;
    aspect-ratio: 1 / 1.24;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
}

.team-item-stone:hover .team-item-image-stone figure img {
    transform: scale(1.06);
}

.team-item-body-stone {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    text-align: center;
    z-index: 2;
}

.team-item-content-stone h2 {
    font-size: 20px;
    color: var(--white-color);
}

.team-item-content-stone h2 a {
    color: inherit;
}

.team-item-content-stone p {
    color: var(--white-color);
    margin: 10px 0 0;
}

.team-social-list-stone {
    opacity: 0;
    visibility: hidden;
    height: 0;
    border-top: 1px solid var(--dark-divider-color);
    transition: all 0.4s ease-in-out;
}

.team-item-stone:hover .team-social-list-stone {
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    margin-top: 20px;
    height: 60px;
}

.team-social-list-stone ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-social-list-stone ul li a {
    width: 40px;
    height: 40px;
    color: var(--white-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.team-social-list-stone ul li a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.team-social-list-stone ul li a i {
    font-size: 18px;
    color: var(--white-color);
    transition: all 0.4s ease-in-out;
}

.team-social-list-stone ul li a:hover i {
    color: var(--primary-color);
}

.our-pricing-plan-stone {
    padding: 120px 0;
}

.pricing-item-stone {
    background-color: var(--bg-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
}

.pricing-item-header-stone .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 30px;
}

.pricing-item-header-stone .icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 100px;
    transform: scale(0);
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.pricing-item-stone:hover .pricing-item-header-stone .icon-box::before {
    transform: scale(1);
}

.pricing-item-header-stone .icon-box img {
    position: relative;
    width: 100%;
    max-width: 24px;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.pricing-item-stone:hover .pricing-item-header-stone .icon-box img {
    filter: brightness(0) invert(1);
}

.pricing-item-content-stone .pricing-item-title-stone {
    display: block;
    font-size: 20px;
    line-height: 1.2em;
    color: var(--primary-color);
}

.pricing-item-content-stone p {
    margin: 10px 0 0;
}

.pricing-item-price-stone {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px 30px;
    margin: 30px 0;
}

.pricing-item-price-stone h2 {
    font-size: 40px;
    line-height: normal;
}

.pricing-item-price-stone h2 sub {
    font-size: 16px;
    bottom: 0;
}

.pricing-item-list-stone h3 {
    font-size: 20px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.pricing-item-list-stone ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pricing-item-list-stone ul li {
    position: relative;
    line-height: 1.5em;
    padding-left: 25px;
    margin-bottom: 15px;
}

.pricing-item-list-stone ul li:last-child {
    margin-bottom: 0;
}

.pricing-item-list-stone ul li:before {
    content: '\f058';
    position: absolute;
    font-family: 'Font Awesome 7 Free';
    font-size: 18px;
    font-weight: 900;
    color: var(--accent-color);
    top: 0;
    left: 0;
}

.pricing-item-btn-stone {
    margin-top: 30px;
}

.pricing-benefit-list-stone {
    margin-top: 30px;
}

.pricing-benefit-list-stone ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px 40px;
}

.pricing-benefit-list-stone ul li {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
}

.pricing-benefit-list-stone ul li img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
}

.our-faqs-stone {
    padding: 120px 0;
}

.faqs-content-stone {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 10px;
    height: 100%;
}

.faq-image-stone {
    height: 100%;
}

.faq-image-stone figure {
    display: block;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.faq-image-stone img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.437;
    object-fit: cover;
    border-radius: 10px;
}

.faq-body-stone {
    padding: 0 20px 20px;
}

.faq-body-content-stone h3 {
    font-size: 24px;
}

.faq-body-content-stone p {
    margin: 20px 0 0;
}

.faq-contact-item-list-stone {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

.faq-contact-item-stone {
    position: relative;
    width: calc(50% - 15px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.faq-contact-item-stone::before {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    height: 100%;
    width: 1px;
    background-color: var(--divider-color);
}

.faq-contact-item-stone:last-child:before {
    display: none;
}

.faq-contact-item-stone .icon-box {
    position: relative;
    height: 50px;
    width: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.faq-contact-item-stone .icon-box:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.faq-contact-item-stone:hover .icon-box:before {
    transform: scale(1);
}

.faq-contact-item-stone .icon-box img {
    transition: all 0.4s ease-in-out;
}

.faq-contact-item-stone:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.faq-contact-item-content-stone {
    width: calc(100% - 65px);
}

.faq-contact-item-content-stone p {
    line-height: normal;
    margin-bottom: 5px;
}

.faq-contact-item-content-stone h3 {
    font-size: 20px;
    font-weight: 400;
}

.faq-contact-item-content-stone h3 a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.faq-contact-item-content-stone h3 a:hover {
    color: var(--accent-color);
}

.faq-accordion-stone .accordion-item {
    background: var(--white-color);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 0;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}

.faq-accordion-stone .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion-stone .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.333em;
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 22px 55px 22px 22px;
    transition: all 0.4s ease-in-out;
}

.faq-accordion-stone .accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
}

.faq-accordion-stone .accordion-item .accordion-button::after,
.faq-accordion-stone .accordion-item .accordion-button.collapsed::after {
    content: '\2b';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    right: 22px;
    top: 50%;
    font-size: 24px;
    font-weight: 600;
    transform: translateY(-50%);
    color: var(--accent-color);
    transition: all 0.4s ease-in-out;
}

.faq-accordion-stone .accordion-button:not(.collapsed)::after {
    content: '\f068';
    color: var(--primary-color);
}

.faq-accordion-stone .accordion-item .accordion-body {
    background-color: var(--accent-color);
    border-top: 1px solid var(--divider-color);
    padding: 22px;
}

.faq-accordion-stone .accordion-item .accordion-body p {
    color: var(--primary-color);
    margin: 0;
}

.our-faqs-stone .section-footer-text {
    margin-top: 60px;
}

.our-testimonials-stone {
    background-image: url('../images/testimonials-bg-stone.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    padding: 120px 0;
}

.testimonial-slider-stone {
    height: 100%;
}

.testimonial-slider-stone .swiper {
    padding-bottom: 60px;
    height: 100%;
}

.testimonial-slider-stone .swiper-wrapper {
    height: 100%;
    cursor: none;
}

.testimonial-slider-stone .swiper-wrapper .swiper-slide .testimonial-item-stone {
    transform: scale(0.95);
    transition: all 0.6s ease-in-out;
}

.testimonial-slider-stone .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item-stone {
    transform: scale(1);
}

.testimonial-item-stone {
    position: relative;
    min-height: 455px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    overflow: hidden;
}

.testimonial-item-rating-stone i {
    font-size: 18px;
    color: var(--accent-color);
}

.testimonial-item-content-stone p {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 0;
}

.testimonial-item-author-stone {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--divider-color);
    padding-top: 40px;
    margin-top: 40px;
}

.testimonial-author-image-stone figure {
    display: block;
    border-radius: 50%;
}

.testimonial-author-image-stone figure img {
    width: 100%;
    max-width: 50px;
    border-radius: 50%;
}

.testimonial-author-content-stone {
    width: calc(100% - 65px);
}

.testimonial-author-content-stone h2 {
    font-size: 20px;
    font-weight: 400;
    ;
}

.testimonial-author-content-stone p {
    margin: 5px 0 0;
}

.testimonial-slider-stone .testimonial-pagination-stone {
    position: absolute;
    bottom: 0px;
    text-align: center;
}

.testimonial-slider-stone .testimonial-pagination-stone .swiper-pagination-bullet {
    border-radius: 40px;
    height: 10px;
    width: 10px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.3s ease-in-out;
}

.testimonial-slider-stone .testimonial-pagination-stone .swiper-pagination-bullet-active {
    width: 30px;
    background: var(--accent-color);
    opacity: 1;
}

.our-testimonials-stone .section-footer-text.section-satisfy-img ul {
    margin: 0;
}

.main-footer-stone {
    padding: 120px 0 0;
}

.footer-header-stone {
    border-bottom: 1px solid var(--dark-divider-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.footer-header-stone .section-title {
    max-width: 700px;
    margin-bottom: 0;
}

.footer-newsletter-form-stone {
    width: 100%;
    max-width: 440px;
}

.footer-newsletter-form-stone .form-group {
    display: flex;
    background-color: var(--dark-divider-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 5px;
}

.footer-newsletter-form-stone .form-group .form-control {
    width: calc(100% - 50px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--white-color);
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    padding: 6px 15px;
}

.footer-newsletter-form-stone .form-group .form-control::placeholder {
    color: var(--text-color);
}

.footer-newsletter-form-stone .form-group .newsletter-btn {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color);
    border: none;
    border-radius: 5px;
    transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-stone .newsletter-btn:hover {
    background-color: var(--white-color);
}

.footer-newsletter-form-stone .newsletter-btn img {
    width: 100%;
    max-width: 24px;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-stone .newsletter-btn:hover img {
    transform: rotate(45deg);
}

.about-footer-stone {
    max-width: 300px;
}

.footer-logo-stone img {
    width: 100%;
    max-width: 152px;
}

.about-footer-content-stone {
    margin-top: 20px;
}

.about-footer-content-stone p {
    color: var(--white-color);
    margin-bottom: 0;
}

.footer-contact-lists-stone {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-contact-lists-stone ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-lists-stone ul li {
    color: var(--white-color);
    font-size: 20px;
    line-height: normal;
    margin-bottom: 15px;
}

.footer-contact-lists-stone ul li:last-child {
    margin-bottom: 0;
}

.footer-contact-lists-stone ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-contact-lists-stone ul li a:hover {
    color: var(--accent-color);
}

.footer-links-box-stone {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-links-stone {
    max-width: 27%;
}

.footer-links-stone h2 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 25px;
}

.footer-links-stone ul {
    list-style: disc;
    padding: 0 0 0 20px;
    margin: 0;
}

.footer-links-stone ul li {
    line-height: 1.5em;
    color: var(--white-color);
    margin-bottom: 15px;
}

.footer-links-stone ul li:last-child {
    margin-bottom: 0;
}

.footer-links-stone ul li::marker {
    color: var(--accent-color);
}

.footer-links-stone ul li a {
    color: inherit;
    transition: all 0.4s ease-in-out;
}

.footer-links-stone ul li a:hover {
    color: var(--accent-color);
}

.footer-working-hours-stone {
    width: 100%;
    max-width: 38%;
}

.footer-working-hours-stone ul {
    list-style: none;
    padding: 0;
}

.footer-working-hours-stone ul li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.footer-social-links-stone {
    border-top: 1px solid var(--dark-divider-color);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-social-links-stone ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.footer-social-links-stone ul li {
    margin-bottom: 0;
}

.footer-social-links-stone ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--dark-divider-color);
    border-radius: 50%;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.footer-social-links-stone ul li a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-social-links-stone ul li a i {
    font-size: 18px;
    color: inherit;
}

.footer-copyright-text-stone {
    text-align: center;
    border-top: 1px solid var(--dark-divider-color);
    padding: 60px 0;
    margin: 60px 0 0;
}

.footer-copyright-text-stone p {
    color: var(--white-color);
    margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
    .hero-img-slider-metal:before {
        background: var(--primary-color);
        opacity: 50%;
    }
    .about-us-image-box-stone {
        max-width: 650px;
        margin: 0 auto 30px;
    }
    .about-us-btn-stone {
        margin-top: 30px;
    }
    .about-us-body-image-stone figure img {
        aspect-ratio: 1 / 0.55;
    }
    .servce-item-image-box-stone figure img {
        aspect-ratio: 1 / 1;
    }
    .values-image-box-stone {
        max-width: 635px;
        margin: 0 auto 30px;
    }
    .cta-image-box-stone {
        height: auto;
        margin: 0 0 30px;
    }
    .cta-image-stone,
    .cta-image-stone figure,
    .cta-image-stone img {
        height: auto;
    }
    .cta-image-stone figure img {
        aspect-ratio: 1 / 0.7;
    }
    .cta-contact-box-stone {
        padding: 30px;
    }
    .intro-video-image-stone img {
        aspect-ratio: 1 / 0.6;
    }
    .team-item-image-stone figure img {
        aspect-ratio: 1 / 1.1;
    }
    .faqs-content-stone {
        height: auto;
        margin-bottom: 30px;
    }
    .faq-image-stone,
    .faq-image-stone figure,
    .faq-image-stone img {
        height: auto;
    }
    .testimonial-slider-stone .swiper-wrapper .swiper-slide .testimonial-item-stone {
        transform: scale(1);
    }
    .testimonial-item-stone {
        padding: 30px;
        min-height: 380px;
    }
    .testimonial-item-author-stone {
        margin-top: 30px;
        padding-top: 30px;
    }
    .footer-header-stone {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .footer-newsletter-form-stone,
    .footer-header-stone .section-title {
        max-width: 100%;
    }
    .about-footer-content-stone {
        margin-top: 15px;
    }
    .about-footer-stone {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .footer-contact-lists-stone ul li {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .footer-links-stone h2 {
        margin-bottom: 20px;
    }
    .footer-links-stone ul li {
        margin-bottom: 10px;
    }
    .footer-copyright-text-stone {
        margin-top: 30px;
        padding: 30px 0;
    }
}

@media only screen and (max-width: 991px) {
    .hero-stone {
        padding: 150px 0 60px;
    }
    .contact-us-circle-stone {
        display: none;
    }
    .video-play-button-stone a span {
        width: 46px;
        height: 46px;
    }
    .hero-info-list-stone {
        margin-top: 30px;
        padding-top: 30px;
    }
    .hero-info-item-stone {
        width: calc(50% - 15px);
    }
    .about-us-stone {
        padding: 60px 0;
    }
    .about-us-image-box-1-stone .about-us-image-stone figure img {
        aspect-ratio: 1 / 1.2;
    }
    .about-us-image-box-2-stone .about-us-image-stone figure img {
        aspect-ratio: 1 / 1.05;
    }
    .about-experience-box-content-stone h2 {
        font-size: 34px;
    }
    .about-us-item-box-stone {
        margin-bottom: 30px;
    }
    .about-us-list-stone ul li {
        margin-bottom: 10px;
    }
    .about-us-list-stone ul li::before {
        font-size: 16px;
    }
    .our-service-stone {
        background-position: bottom -30px center;
        background-size: 100% auto;
        padding: 60px 0;
    }
    .service-item-content-stone {
        padding: 10px;
    }
    .our-values-stone {
        padding: 60px 0;
    }
    .values-contact-circle-stone a img {
        max-width: 110px;
    }
    .values-content-list-stone ul li {
        padding: 15px 15px 15px 40px;
    }
    .values-content-list-stone ul li::before {
        top: 15px;
        left: 15px;
        font-size: 16px;
    }
    .values-btn-stone {
        margin-top: 30px;
    }
    .our-core-features-stone {
        padding: 60px 0;
    }
    .core-features-item-stone {
        min-height: auto;
        padding: 30px;
    }
    .core-features-item-stone p {
        padding-top: 15px;
        margin: 15px 0 0;
    }
    .cta-box-stone {
        padding: 60px 0;
    }
    .cta-contact-item-content-stone h3 {
        font-size: 22px;
    }
    .cta-content-stone .contact-form .form-control {
        padding: 13px 15px;
    }
    .our-team-stone {
        padding: 60px 0;
    }
    .team-item-body-stone {
        left: 30px;
        right: 30px;
        bottom: 30px;
    }
    .our-pricing-plan-stone {
        padding: 60px 0;
    }
    .pricing-item-stone {
        padding: 30px;
    }
    .pricing-item-header-stone .icon-box {
        margin-bottom: 20px;
    }
    .pricing-item-price-stone {
        padding: 15px 20px;
        margin: 20px 0;
    }
    .pricing-item-price-stone h2 {
        font-size: 34px;
    }
    .pricing-item-list-stone h3 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .pricing-item-list-stone ul li {
        margin-bottom: 10px;
    }
    .pricing-item-list-stone ul li::before {
        font-size: 16px;
    }
    .pricing-benefit-list-stone {
        margin-top: 10px;
    }
    .pricing-benefit-list-stone ul {
        gap: 20px 30px;
    }
    .pricing-benefit-list-stone ul li img {
        max-width: 18px;
    }
    .our-faqs-stone {
        padding: 60px 0;
    }
    .faq-body-content-stone h3 {
        font-size: 22px;
    }
    .faq-body-content-stone p {
        margin: 10px 0 0;
    }
    .faq-contact-item-list-stone {
        padding-top: 20px;
        margin-top: 20px;
    }
    .faq-accordion-stone .accordion-item {
        margin-bottom: 20px;
    }
    .faq-accordion-stone .accordion-header .accordion-button {
        padding: 15px 45px 15px 20px;
    }
    .faq-accordion-stone .accordion-item .accordion-button::after,
    .faq-accordion-stone .accordion-item .accordion-button.collapsed::after {
        font-size: 18px;
        right: 20px;
    }
    .faq-accordion-stone .accordion-item .accordion-body {
        padding: 15px 20px;
    }
    .our-faqs-stone .section-footer-text {
        margin-top: 40px;
    }
    .our-testimonials-stone {
        padding: 60px 0;
    }
    .testimonial-slider-stone .swiper {
        padding-bottom: 50px;
    }
    .testimonial-item-content-stone p {
        font-size: 18px;
    }
    .our-testimonials-stone .section-footer-text {
        margin-top: 20px;
    }
    .main-footer-stone {
        padding: 60px 0 0;
        margin-bottom: 0;
    }
    .footer-links-stone h2 {
        margin-bottom: 20px;
    }
    .footer-links-stone {
        max-width: 32%;
    }
    .footer-working-hours-stone {
        max-width: 40%;
    }
    .footer-social-links-stone {
        padding-top: 20px;
        margin-top: 20px;
    }
    .footer-social-links-stone ul li {
        margin: 0;
    }
}

@media only screen and (max-width: 767px) {
    .hero-content-body-stone {
        gap: 20px;
    }
    .video-play-button-stone p {
        font-size: 14px;
    }
    .hero-info-list-stone {
        gap: 20px;
        margin-top: 30px;
        padding-top: 30px;
    }
    .hero-info-item-stone {
        width: 100%;
    }
    .hero-info-item-content-stone h2 {
        font-size: 18px;
    }
    .hero-info-item-content-stone p {
        margin: 5px 0 0;
    }
    .about-us-image-box-1-stone {
        padding-bottom: 70px;
    }
    .about-us-image-box-1-stone .about-us-image-stone figure {
        margin-right: -140px;
    }
    .about-experience-box-stone {
        gap: 10px;
        padding: 10px;
        margin: 40px 0px 0 auto;
    }
    .about-experience-box-stone .icon-box {
        height: 40px;
        width: 40px;
    }
    .about-experience-box-stone .icon-box img {
        max-width: 20px;
    }
    .about-experience-box-content-stone {
        width: calc(100% - 50px);
    }
    .about-experience-box-content-stone h2 {
        font-size: 28px;
    }
    .about-experience-box-content-stone p {
        font-size: 14px;
    }
    .about-us-item-box-stone {
        padding: 20px;
    }
    .about-us-item-content-stone h3 {
        font-size: 18px;
    }
    .about-us-item-content-stone {
        width: 100%;
    }
    .about-us-body-content-stone,
    .about-us-body-image-stone {
        width: 100%;
    }
    .about-us-btn-stone {
        margin-top: 30px;
    }
    .about-us-body-image-stone figure,
    .about-us-body-image-stone figure img {
        height: auto;
    }
    .service-item-content-stone h2 {
        font-size: 18px;
    }
    .values-image-box-stone::before {
        top: 30px;
        right: 25px;
        width: 95px;
        height: 155px;
    }
    .values-image-box-1-stone {
        padding-bottom: 120px;
    }
    .values-image-box-1-stone figure {
        margin-right: -80px;
    }
    .values-contact-circle-stone {
        left: -45px;
    }
    .values-contact-circle-stone a img {
        max-width: 90px;
    }
    .values-item-stone {
        width: 100%;
    }
    .values-item-content-stone h3 {
        font-size: 18px;
    }
    .values-content-list-stone ul {
        gap: 15px;
    }
    .values-content-list-stone ul li {
        width: 100%;
        padding: 10px 10px 10px 35px;
    }
    .values-content-list-stone ul li::before {
        top: 10px;
        left: 10px;
    }
    .core-features-item-stone {
        gap: 20px;
        padding: 20px;
    }
    .core-features-item-stone h3 {
        font-size: 18px;
    }
    .core-features-item-stone.box-2 {
        min-height: 380px;
    }
    .cta-image-stone figure img {
        aspect-ratio: 1 / 0.9;
    }
    .cta-contact-box-stone {
        padding: 20px;
    }
    .cta-contact-item-stone {
        margin-bottom: 20px;
    }
    .cta-contact-item-content-stone h3 {
        font-size: 18px;
    }
    .intro-video-image-stone img {
        aspect-ratio: 1 / 0.8;
    }
    .intro-video-stone .video-play-button-stone a {
        padding: 5px;
    }
    .intro-video-stone .video-play-button-stone a span {
        font-size: 18px;
        width: 80px;
        height: 80px;
    }
    .team-item-body-stone {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    .team-item-content-stone h2 {
        font-size: 18px;
    }
    .team-item-stone:hover .team-social-list-stone {
        padding-top: 15px;
        margin-top: 15px;
        height: 55px;
    }
    .team-social-list-stone ul {
        gap: 10px;
    }
    .pricing-item-stone {
        padding: 20px;
    }
    .pricing-item-content-stone .pricing-item-title-stone {
        font-size: 18px;
    }
    .pricing-item-price-stone h2 {
        font-size: 28px;
    }
    .pricing-item-price-stone h2 sub {
        font-size: 14px;
    }
    .pricing-benefit-list-stone {
        margin-top: 5px;
    }
    .pricing-benefit-list-stone ul {
        gap: 10px 20px;
    }
    .pricing-benefit-list-stone ul li {
        font-size: 14px;
    }
    .pricing-benefit-list-stone ul li img {
        max-width: 16px;
        margin-right: 5px;
    }
    .faq-image-stone img {
        aspect-ratio: 1 / 0.65;
    }
    .faq-body-stone {
        padding: 0px 10px 10px;
    }
    .faq-body-content-stone h3 {
        font-size: 20px;
    }
    .faq-contact-item-list-stone {
        gap: 40px;
    }
    .faq-contact-item-stone {
        width: 100%;
    }
    .faq-contact-item-stone::before {
        top: auto;
        right: 0;
        bottom: -20px;
        left: 0;
        height: 1px;
        width: 100%;
    }
    .faq-contact-item-content-stone h3 {
        font-size: 18px;
    }
    .faq-accordion-stone .accordion-header .accordion-button {
        padding: 12px 40px 12px 15px;
        font-size: 16px;
    }
    .faq-accordion-stone .accordion-item .accordion-button::after,
    .faq-accordion-stone .accordion-item .accordion-button.collapsed::after {
        right: 15px;
    }
    .faq-accordion-stone .accordion-item .accordion-body {
        padding: 12px 15px;
    }
    .testimonial-item-stone {
        min-height: 300px;
        padding: 20px;
        gap: 20px;
    }
    .testimonial-item-content-stone p {
        font-size: 16px;
    }
    .testimonial-item-author-stone {
        padding-top: 20px;
        margin-top: 20px;
    }
    .testimonial-author-content-stone h2 {
        font-size: 18px;
    }
    .footer-header-stone {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .footer-newsletter-form-stone .form-group .form-control {
        width: calc(100% - 40px);
    }
    .footer-newsletter-form-stone .form-group .newsletter-btn {
        height: 40px;
        width: 40px;
    }
    .footer-newsletter-form-stone .newsletter-btn img {
        max-width: 20px;
    }
    .footer-contact-lists-stone {
        margin-top: 20px;
        padding-top: 20px;
    }
    .footer-contact-lists-stone ul li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .footer-links-stone {
        max-width: 100%;
    }
    .footer-links-stone h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .footer-social-links-stone ul {
        justify-content: center;
    }
    .footer-copyright-text-stone {
        margin-top: 20px;
        padding: 15px 0;
    }
}

/* Glasco Traders — responsive refinements */
@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .home-core-cat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 1199px) {
    header.main-header-metal .main-menu ul li a {
        padding: 10px 7px !important;
        font-size: 14px;
    }

    header.main-header-metal .main-menu ul li a.nav-link-estimate-metal {
        padding: 8px 14px !important;
        font-size: 13px;
    }

    .product-categories-cta-actions-metal .btn-default {
        font-size: 11px;
        padding: 13px 10px;
    }
}

@media only screen and (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .product-categories-cta-metal {
        padding: 20px 16px;
    }

    .product-categories-cta-actions-metal {
        grid-template-columns: 1fr;
    }

    .product-categories-cta-actions-metal .btn-default {
        font-size: 12px;
        padding: 13px 14px;
    }

    .home-blog-metal {
        padding: 56px 0 64px;
    }

    .home-blog-card-body {
        padding: 18px 16px 20px;
    }

    .our-stores-metal {
        padding: 56px 0 64px;
    }

    .our-store-body-metal {
        padding: 18px 16px 20px;
    }

    .social-proof-metal {
        padding: 56px 0 64px;
    }

    .social-proof-trust-bar-metal {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .social-proof-trust-chip-metal {
        padding: 10px 8px;
        gap: 8px;
    }

    .social-proof-trust-chip-metal i {
        font-size: 14px;
        flex-shrink: 0;
    }

    .social-proof-trust-chip-metal strong {
        font-size: 14px;
    }

    .social-proof-trust-chip-metal span {
        font-size: 9px;
        line-height: 1.25;
    }

    .social-proof-card-metal {
        padding: 16px;
    }

    .home-core-cat-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-core-cat-card {
        width: 100%;
    }

    .home-core-cat-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .floating-contact-buttons {
        right: 12px;
        bottom: 12px;
    }
}