/*
------------------------------------------------------
Theme Name:
Author: Saint Hossam
PSD Designer:
------------------------------------------------------
*/

/*----------------------------------------------------
 Fonts
----------------------------------------------------*/
/*----------------------------------------------------
| GESS Font Faces (All Weights)
----------------------------------------------------*/

/* GESS Regular */
@font-face {
    font-family: "GESS";
    src: url("../webFonts/design_fonts/GESSTwoLight-Light.eot");
    src: url("../webFonts/design_fonts/GESSTwoLight-Light.eot?#iefix") format("embedded-opentype"),
    url("../webFonts/design_fonts/GESSTwoLight-Light.woff2") format("woff2"),
    url("../webFonts/design_fonts/GESSTwoLight-Light.woff") format("woff"),
    url("../webFonts/design_fonts/GESSTwoLight-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* GESS SemiBold */
@font-face {
    font-family: "GESS";
    src: url("../webFonts/design_fonts/GESSTwoMedium-Medium.eot");
    src: url("../webFonts/design_fonts/GESSTwoMedium-Medium.eot?#iefix") format("embedded-opentype"),
    url("../webFonts/design_fonts/GESSTwoMedium-Medium.woff2") format("woff2"),
    url("../webFonts/design_fonts/GESSTwoMedium-Medium.woff") format("woff"),
    url("../webFonts/design_fonts/GESSTwoMedium-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* GESS Bold */
@font-face {
    font-family: "GESS";
    src: url("../webFonts/design_fonts/GESSTwoBold-Bold.eot");
    src: url("../webFonts/design_fonts/GESSTwoBold-Bold.eot?#iefix") format("embedded-opentype"),
    url("../webFonts/design_fonts/GESSTwoBold-Bold.woff2") format("woff2"),
    url("../webFonts/design_fonts/GESSTwoBold-Bold.woff") format("woff"),
    url("../webFonts/design_fonts/GESSTwoBold-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/*----------------------------------------------------
 Root Variables (Colors)
----------------------------------------------------*/
:root {
    --main: #9DDB00;
    --helper: #333333;
}

/*----------------------------------------------------
  CSS Reset and Base Styles
----------------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    background: #FFF;
    font-family: "GESS", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

ul,
ol {
    margin-bottom: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
iframe {
    display: block;
    max-height: 100%;
    max-width: 100%;
}

input,
textarea,
select,
.brown-main-btn {
    appearance: none;
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: none;
}

input:focus,
textarea:focus,
select:focus,
.brown-main-btn:focus {
    outline: none;
}

.brown-main-btn:disabled,
input:disabled,
select:disabled,
textarea:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

blockquote {
    margin: 0;
    padding: 0;
    quotes: none;
}

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

h1 {
    font-family: "GESS", Arial, sans-serif;
    font-weight: 700;
    margin: 0;
}

h2 {
    font-family: "GESS", Arial, sans-serif;
    font-weight: 500;
    margin: 0;
}

h3 {
    font-family: "GESS", Arial, sans-serif;
    margin: 0;
}

h4,
h5,
h6 {
    font-family: "GESS", Arial, sans-serif;
    margin: 0;
}

p {
    margin: 0;
    line-height: 37px;
}

code,
pre {
    font-family: "Courier New", monospace;
}

/*----------------------------------------------------
 Custom Scrollbar
----------------------------------------------------*/
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: #fff;
}

body::-webkit-scrollbar-thumb {
    background: var(--main);
    border-radius: 15px;
}

main.wrap {
    position: relative;
    overflow: hidden;
    left: 0;
    transition: 0.7s ease-in-out;
}


/*----------------------------------------------------
main Button Styles
----------------------------------------------------*/
.hold-btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.cta-btn {
    padding: 18px 30px;
    border-radius: 100px;
    transition: ease-in-out 0.3s;
    background-color: var(--main);
    color: #FFF;
    font-weight: 300;
    font-size: 20px;

    &:hover {
        transform: scale(1.2) rotate(10deg);
        color: white;
    }
}

/*----------------------------------------------------
 Section Titles
----------------------------------------------------*/
.sec-tit {
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    color: var(--main);
    margin: 0 auto 50px;
}


/*----------------------------------------------------
BreadCrumb
----------------------------------------------------*/
/*.breadcrumb-area {*/
/*    background-color: #1d2b50;*/
/*    padding: 40px 0;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    color: #fff;*/
/*    text-align: center;*/
/*    margin-bottom: 60px;*/
/*}*/

/*.breadcrumb-area::before,*/
/*.breadcrumb-area::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 120px;*/
/*    height: 120px;*/
/*    background: rgba(255, 255, 255, 0.05);*/
/*    border-radius: 50%;*/
/*    z-index: 0;*/
/*    animation: floatAnim 8s infinite ease-in-out;*/
/*}*/

/*.breadcrumb-area::before {*/
/*    top: -30px;*/
/*    left: -30px;*/
/*}*/

/*.breadcrumb-area::after {*/
/*    bottom: -30px;*/
/*    right: -30px;*/
/*    animation-delay: 3s;*/
/*}*/

/*.page-tit {*/
/*    position: relative;*/
/*    font-size: 38px;*/
/*    font-weight: 700;*/
/*    color: #fff;*/
/*    margin: 0;*/
/*    text-transform: uppercase;*/
/*    z-index: 1;*/
/*    animation: fadeSlideDown 0.8s ease;*/
/*}*/

/*!* Animation *!*/
/*@keyframes fadeSlideDown {*/
/*    from {*/
/*        opacity: 0;*/
/*        transform: translateY(-20px);*/
/*    }*/
/*    to {*/
/*        opacity: 1;*/
/*        transform: translateY(0);*/
/*    }*/
/*}*/

/*@keyframes floatAnim {*/
/*    0%, 100% {*/
/*        transform: translate(0, 0);*/
/*    }*/
/*    50% {*/
/*        transform: translate(20px, 20px);*/
/*    }*/
/*}*/

.breadcrumb-area {
    min-height: 200px;
    display: flex;
    align-items: center;
    margin-bottom: 70px;
}

.breadcrumb-area .page-tit {
    font-weight: 700;
    font-size: 48px;
    color: #FFF;
}

.breadcrumb-links {
    text-align: center;
    margin-top: 20px;
    color: #FFF;
    font-weight: 700;
    font-size: 18px;
}

.last-menu-item {
    display: flex;
    align-items: center;
}

.last-menu-item a:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    font-size: 30px;
    border: 3px solid #194DBD;
    border-radius: 50%;
    color: #194DBD;
    margin-inline-end: 16px;
}

.last-menu-item .main-btn {
    padding: 13px 55px;
}

/*----------------------------------------------------
 Header & Navigation
----------------------------------------------------*/
header {
    position: relative;
    z-index: 99 !important;
    padding: 14px 0;
}

.in-header,
.in-header-fixed {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.in-header {
    opacity: 0;
    transform: translateY(-40px);
}

header:not(#fixed-header) {
    position: relative;
    box-shadow: none;
    background: var(--helper);
}

.language-switcher .btn-language {
    background: transparent;
    border: none;
    color: #FFF;
    font-weight: 500;
    font-size: 22px;
}

.language-switcher .dropdown-toggle::after {
    margin-left: 8px;
    color: #FFF;
}

.dropdown-menu {
    background: var(--main)
}

.language-switcher .dropdown-menu a {
    display: block;
    padding: 8px 12px;
    color: #FFF;
    text-decoration: none;
    transition: background 0.3s ease;
}

.language-switcher .dropdown-menu a:hover {
    background: var(--helper);
    color: #000;
}

#fixed-header .language-switcher .btn-language {
    color: var(--main);
}

.main-menu .nav-list li {
    opacity: 0;
}

.nav-list > li.menu-item:not(:last-of-type) {
    margin-inline-end: 15px;
}

nav > ul li:hover a {
    color: var(--main);
}


.header-logo {
    opacity: 0;
    transform: scale(0.7) rotate(-10deg);
    height: 74px;
}

.header-inside:not(#fixed-header) {
    position: relative;
}

#fixed-header {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

#fixed-header .header-logo {
    height: 50px;
}

#fixed-header {
    padding: 10px 0;
}

header .btn-outline-secondary {
    border-color: var(--helper);
    color: var(--helper);
}

header .header-actions a {
    padding: 5px 10px;
    font-weight: 700;
}

.header-actions {
    align-items: center;
}

header .header-actions a:last-of-type {
    font-weight: 400;
}

header .btn-outline-secondary:hover {
    background-color: var(--helper);
    font-weight: 700;
    font-size: 18px;
}

nav.main-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-menu li a {
    color: #FFF;
    transition: 0.3s ease;
}

.main-menu li.active a {
    color: var(--main);
    font-weight: 300;
}


/* ((fixed header)) */
.fixed-header {
    position: fixed;
    top: -220px;
    left: 0;
    right: 0;
    background: #fff;
    opacity: 0;
    transition: top 0.6s ease, opacity 0.5s ease;
}

.fixed-header .menu-icons label span {
    background: var(--main);
}

.fixed-header.visible {
    top: 0;
    opacity: 1;
}

.curtain-left,
.curtain-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--helper);
    z-index: 1;
    transition: width 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.curtain-left {
    left: 50%;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.curtain-right {
    right: 50%;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.fixed-header.visible .curtain-left,
.fixed-header.visible .curtain-right {
    width: 50%;
}

.fixed-header .header-logo,
.fixed-header .header-actions {
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.fixed-header nav {
    position: relative;
    z-index: 2;
    box-shadow: none;

}

html[dir="rtl"] .fixed-header .header-logo {
    transform: translateX(0);
}

html[dir="ltr"] .fixed-header .header-logo {
    transform: translateX(0);
}

html[dir="rtl"] .fixed-header .header-actions {
    transform: translateX(0);
}

html[dir="ltr"] .fixed-header .header-actions {
    transform: translateX(0);
}

.fixed-header.visible .header-logo,
.fixed-header.visible .header-actions {
    opacity: 1;
    transform: translateX(0);
}

.fixed-header.visible .header-actions {
    transition-delay: 0.15s;
}

/*(dropDown)*/
.saint-dd {
    position: relative
}


.header-actions .saint-dd:nth-of-type(2) .saint-dd__btn {
    padding: 10px;
    width: 100%;
    border: 1px solid #FFF;
    min-width: 70px;
}

.saint-dd__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1rem;
    border: 0;
    border-radius: 3px;
    background: #333;
    color: #fff;
    line-height: 1;
    font-weight: 300
}

.saint-dd__btn--accent {
    background: var(--main);
    color: #FFF;
    min-width: 130px;
    display: flex;
    justify-content: space-between;
}


.saint-dd__btn .fa-globe {
    margin-inline-end: .25rem
}

.saint-dd__chev {
    transition: .25s transform;
}

.saint-dd__menu {
    position: absolute;
    min-width: 220px;
    max-width: 280px;
    background: #1f1f1f;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
    padding: .6rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: .18s ease;
    inset-inline-end: 0;
    top: calc(100% + 10px);
    z-index: 40
}
.saint-dd__menu li a {
    font-size: 16px !important;
}

.saint-dd[data-align="start"] .saint-dd__menu {
    inset-inline-start: 0;
    inset-inline-end: auto
}

.saint-dd.is-open .saint-dd__menu {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto
}

.saint-dd.is-open .saint-dd__chev {
    transform: rotate(180deg)
}

.saint-dd__list {
    margin: 0;
    padding: 0;
    list-style: none
}

.saint-dd__li + .saint-dd__li {
    margin-top: .25rem
}

.saint-dd__item {
    display: block;
    padding: .65rem .9rem;
    border-radius: 3px;
    color: #f2f2f2;
    text-decoration: none;
    white-space: nowrap
}

.saint-dd__item:hover {
    background: rgba(255, 255, 255, .08)
}

/*----------------------------------------------------
 HomeBanner Section
----------------------------------------------------*/
.banner {
    position: relative;
    color: #fff;
    text-align: center;
    overflow: hidden
}

.mainItem {
    position: relative;
    width: 100%;
    height: clamp(100vh, 70vh, 800px);
    overflow: hidden
}

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

.banner_img .banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: transform, opacity;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .2));
}

.banner_img .banner-slide.is-active {
    opacity: 1
}

.banner_img .banner-slide:only-child {
    animation: parallaxMove 18s ease-in-out infinite,
    smoothZoom 15s ease-in-out infinite alternate;
    transform-origin: center center;
}

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

.banner_video video {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.mainItem-overlay {
    position: absolute;
    inset: 0;
    color: #fff;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 9;
}

.banner_content {
    text-align: center;
    margin-top: 50px
}

.banner_content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp 1s ease-out forwards
}

.banner_content h1 {
    animation-delay: .3s;
    font-family: "GESS", sans-serif
}

.banner_content a {
    animation-delay: 1.2s
}

@media (max-width: 991.98px) {
    :root {
        --banner-h: 80vh;
    }
}

@media (max-width: 767.98px) {
    :root {
        --banner-h: 70vh;
    }
}

@keyframes parallaxMove {
    0% {
        transform: translate(0, 0) rotate(0)
    }
    25% {
        transform: translate(-15px, -10px) rotate(-.3deg)
    }
    50% {
        transform: translate(0, -20px) rotate(.2deg)
    }
    75% {
        transform: translate(15px, -10px) rotate(.3deg)
    }
    100% {
        transform: translate(0, 0) rotate(0)
    }
}

@keyframes smoothZoom {
    0% {
        transform: scale(1)
    }
    100% {
        transform: scale(1.15)
    }
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}
.banner_content > * { animation: none !important; opacity: 1; transform: none; }

.banner_img { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.mainItem-overlay { position: absolute; inset: 0; z-index: 9; }

.banner_img .banner-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; will-change: transform, opacity;
}
.banner_img .banner-slide.is-active { opacity: 1; }

.js-banner-title.is-masked{
  --reveal: 0%;
  -webkit-mask-image: linear-gradient(90deg, #000 var(--reveal), transparent calc(var(--reveal) + 0.001%));
  mask-image: linear-gradient(90deg, #000 var(--reveal), transparent calc(var(--reveal) + 0.001%));
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.js-banner-title .w{ display:inline-block; white-space:pre; will-change:transform,opacity,filter; }

.banner__dots{ display:flex; gap:.5rem; margin-top:1rem; }
.banner__dot{ width:10px; height:10px; border:0; border-radius:50%; background:rgba(255,255,255,.5); cursor:pointer; }
.banner__dot.is-active{ background:#fff; transform:scale(1.15); }

.visually-hidden{position:absolute!important;width:1px;height:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap;clip-path:inset(50%);}


/*----------------------------------------------------
 Video / Image Section
----------------------------------------------------*/
.banner-video-section {
    margin: 70px 0;
}

.banner-video-section .video-container,
.banner-video-section .image-container {
    position: relative;
    max-width: 100%;
    max-height: 500px;
}

.banner-video-section #banner-video,
.banner-video-section #banner-image {
    width: 100%;
    height: clamp(230px, 56vh, 450px);
    display: block;
    object-fit: cover;
    object-position: center;
}

.banner-video-section #banner-video {
    cursor: pointer;
}

.banner-video-section .play-button {
    transition: transform 0.2s ease, opacity 0.25s ease, background 0.25s ease;
    z-index: 2;
}

.banner-video-section .play-button:hover {
    background: rgba(117, 76, 36, 0.28);
    transform: scale(1.04);
}

.banner-video-section .play-button.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (min-width: 992px) {
    .banner-video-section #banner-video,
    .banner-video-section #banner-image {
        height: 500px;
    }
}

.play-button {
    position: absolute;
    inset: 0;
    margin: auto;
    width: clamp(144px, 7.5vw, 90px);
    height: clamp(144px, 7.5vw, 90px);
    border: 12px solid var(--main);
    border-radius: 50%;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(2px);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform .2s ease, opacity .25s ease, background .25s ease;
}

.play-button i {
    font-size: clamp(60px, 3.2vw, 34px);
    color: var(--main);
}

.play-button:hover {
    background: rgba(117, 76, 36, .28);
    transform: scale(1.04);
}

.play-button.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/*----------------------------------------------------
 HomeGallery Section ((exhibit))
----------------------------------------------------*/
.exhibit {
    background: #333;
}

.exhibit .sec-tit {
    font-size: 64px;
}

.in-exhibit {
    position: relative;
    margin-top: 50px;
}

.exhibit-cover {
    position: relative;
    overflow: hidden
}

.exhibit-cover img {
    display: block;
    width: 100%;
    height: 641px;
    object-fit: cover;
    transform: scale(1);
    transition: transform .8s ease
}

.exhibit-cover {
    position: relative;
    display: block
}

.exhibit-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity .35s ease
}

.exhibit-cover:hover img {
    transform: scale(1.08)
}

.exhibit-cover:hover::after {
    opacity: 1
}

.exhibit-title {
    margin: 14px 0 26px;
    text-align: center;
    font-weight: 800;
    font-size: 28px;
    color: var(--main)
}

.exhibit-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
    padding-bottom: 70px;
}

@media (max-width: 991.98px) {
    .exhibit-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 575.98px) {
    .exhibit-grid {
        grid-template-columns:1fr
    }
}

.exhibit-item {
    margin: 0;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #1f1f1f
}

.exhibit-item a {
    display: block;
    position: relative
}

.exhibit-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .45s ease
}

.exhibit-item a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity .35s ease
}

.exhibit-item:hover img {
    transform: scale(1.05)
}

.exhibit-item:hover a::after {
    opacity: 1
}


/*----------------------------------------------------
 HomeKitchens Section
----------------------------------------------------*/
.owl-carousel .owl-stage-outer {
    padding: 20px 0;
}

.owl-kitchens .owl-stage-outer {
    direction: ltr;
}

.kitchens {
    margin: 100px 0 70px;
    background: #fff
}

.kitchens-title {
    margin: 0 0 26px;
    text-align: center;
    font-weight: 800;
    font-size: 42px;
    color: var(--main)
}

.owl-kitchens .owl-stage-outer {
    position: relative;
    padding-block: 10px;
    overflow: visible
}

.owl-kitchens .owl-stage-outer:before {
    content: "";
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 120px;
    background: #fff;
    z-index: 2;
    pointer-events: none
}

@media (max-width: 991.98px) {
    .owl-kitchens .owl-stage-outer:before {
        width: 60px
    }
}

@media (max-width: 575.98px) {
    .owl-kitchens .owl-stage-outer:before {
        width: 10px
    }
}

.kitchen-slide {
    position: relative;
    overflow: hidden
}

.slide-media {
    position: relative
}

.slide-media img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover
}

.slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 30px;
    background: rgba(0 0 0 / 56%);
    opacity: 0;
    transform: translateY(18px);
    transition: .8s ease;
    pointer-events: none
}

html[dir='ltr'] .slide-caption {
    direction: ltr;
}

html[dir='rtl'] .slide-caption {
    direction: rtl;
}


.owl-kitchens .owl-item.active .slide-caption {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.more-link {
    color: var(--main);
    text-decoration: none;
    font-weight: 300;
    font-size: 20px;
}

.cap-right {
    text-align: start;
}

.cap-title {
    margin: 0 0 20px;
    font-weight: 700;
    font-size: 28px;
    color: var(--main)
}

.cap-type {
    color: #FFF;
    font-size: 18px;
    font-weight: 300;
}

@media (max-width: 991.98px) {
    .slide-media img {
        height: 360px
    }

    .cap-title {
        font-size: 26px
    }
}

@media (max-width: 575.98px) {
    .slide-media img {
        height: 300px
    }

    .kitchens-title {
        font-size: 30px
    }
}

/*----------------------------------------------------
 HomeClients Section
----------------------------------------------------*/
.clients {
    padding: 40px 0 60px;
    background: #fff;
}

.clients .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.clients-title {
    margin: 0 0 28px;
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    color: var(--main);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-items: center;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.client-logo {
    width: 150px;
    max-width: 100%;
    height: 56px;
    object-fit: contain;
    display: block;
    opacity: 1 !important;
    transition: transform .2s ease;
}

.client-link:hover .client-logo {
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .clients-grid {
        gap: 28px 56px;
    }
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns:repeat(4, 1fr);
        gap: 26px 40px;
    }

    .client-logo {
        height: 52px;
        width: 140px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns:repeat(3, 1fr);
        gap: 22px 28px;
    }

    .client-logo {
        height: 48px;
        width: 120px;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 18px 22px;
    }

    .clients-title {
        font-size: 28px;
    }

    .client-logo {
        height: 44px;
        width: 110px;
    }
}

/*----------------------------------------------------
 HomeOffers  Section
----------------------------------------------------*/
.offers {
    padding: 42px 0 72px;
    background: #fff
}

.offers-title {
    margin: 0 0 28px;
    text-align: center;
    font-weight: 800;
    font-size: 36px;
    color: var(--main)
}

.offer-card {
    position: relative;
    height: 561px;
    display: flex;
    flex-direction: column;
    background: #f9f9f9;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
    transition: transform .35s ease, box-shadow .35s ease, filter .25s ease;
    will-change: transform, box-shadow;
    isolation: isolate;
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    background: linear-gradient(135deg, #a6e21a, #6db300);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .25s ease;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(0, 0, 0, .18)
}

.offer-card:hover::before {
    opacity: 1
}

.offer-media {
    position: relative;
    display: block;
}

.offer-media img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .6s cubic-bezier(.2, .75, .25, 1);
}

.offer-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .36) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.offer-card:hover .offer-media img {
    transform: scale(1.045)
}

.offer-body {
    margin-top: auto;
    background: #333;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2;
    min-height: 561px -320px;
}

.offer-url {
    margin-top: 20px;
}

.offer-title {
    margin: 0 0 15px;
    color: var(--main);
    font-weight: 700;
    font-size: 24px;
}

.offer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.offer-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 300
}

.offer-price .riyal-ico {
    width: 22px;
    height: auto;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .2))
}

.offer-price .price-num {
    font-size: 26px;
    line-height: 1;
    font-family: "GE SS Two Digits", "GESS", system-ui, sans-serif;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
}

.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--main);
    color: #FFF;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    padding: 11px 16px;
    transition: transform .25s ease, filter .25s ease;
}

.offer-btn i {
    transition: transform .25s ease;
    rotate: 45deg;
}
html[dir="ltr"] .offer-btn i{
    rotate: 135deg;
}
html[dir="ltr"] .fa-arrow-left:before{
    content: "\f061";
}
.offer-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.06)
}

.offer-btn:hover i {
    transform: translateX(-4px)
}

.row.g-4 > .col-auto {
    display: flex
}

.row.g-4 > .col-auto .offer-card {
    margin: 0
}

@media (max-width: 400px) {
    .offer-card {
        width: 100%;
        height: auto
    }

    .offer-media img {
        height: 220px
    }
}

/*----------------------------------------------------
 Homefeedback Section
----------------------------------------------------*/
/* Section */
.feedback {
    padding: 24px 0 60px;
    background: #fff
}

/* Owl */
.owl-feedback .owl-dots {
    margin-top: 12px
}

.owl-feedback .owl-dot span {
    background: #cfcfcf
}

.owl-feedback .owl-dot.active span {
    background: var(--main)
}

/* Card */
.feedback-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
    padding: 40px 35px 50px;
    color: #222;
    transition: transform .25s ease, box-shadow .25s ease;
}

.feedback-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .12)
}

.f-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 25px
}

.f-title {
    margin: 0;
    font-weight: 500;
    font-size: 24px;
    color: #000;
}

.star-rating {
    --rating-p: 0%;
    position: relative;
    display: inline-block;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 3px;
    color: #d7d7d7;
    direction: ltr;
}

.star-rating::before {
    content: "★★★★★";
    color: #d7d7d7
}

.star-rating::after {
    content: "★★★★★";
    position: absolute;
    inset: 0;
    width: var(--rating-p);
    color: #ffc107;
    overflow: hidden;
    white-space: nowrap
}

.f-text {
    margin: 0 0 26px;
    text-align: start;
    color: #00000099;
    font-size: 22px;
    line-height: 1.9;
    font-weight: 300;
}

.f-foot {
    display: inline-flex;
    align-items: center;
    margin-top: auto
}

.f-meta {
    display: flex;
    flex-direction: column;
    text-align: start
}

.f-name {
    font-weight: 500;
    color: #000;
    margin-bottom: 13px;
}

.f-city {
    color: #000;
    font-weight: 500;
    font-size: 20px;
}

.f-avatar {
    width: 98px;
    height: 98px;
    border-radius: 50%;
    overflow: hidden;
    margin-inline-end: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .18)
}

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

/* Responsive */
@media (max-width: 576px) {
    .f-text {
        font-size: 15px
    }
}


/*----------------------------------------------------
 HomeStatics Section
----------------------------------------------------*/

/* ===== Stats Section ===== */
.stats-sec {
    padding: 30px 0 50px;
    background: #fff
}

.stats-sec .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px
}

/* صورة المجسم */
.stats-visual {
    position: relative
}

.stats-visual img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .16));
    transform: translateZ(0);
    transition: transform .6s cubic-bezier(.2, .7, .2, 1), filter .4s ease;
}

.stats-visual:hover img {
    transform: perspective(800px) rotateX(2deg) rotateY(-4deg) scale(1.02);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .22));
}

.stat {
    user-select: none
}

.stat-num {
    display: flex;
    align-items: baseline;
    gap: 6px;
    justify-content: center;
    line-height: 1;
    font-weight: 700;
    font-size: 80px;
    letter-spacing: .5px;
    color: transparent;
    -webkit-text-stroke: 2px #bfbfbf;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .02);
    font-family: "GESS", system-ui, sans-serif;
}

html[dir='ltr'] .stat-num {
    direction: rtl;
}

.stat-label {
    text-align: center;
    margin-top: 8px;
    color: var(--main);
    font-weight: 700;
    font-size: 28px;
}

div.align-items-center:nth-child(1) > div:nth-child(1) > div:nth-child(1) [class*='col-6'] {
    margin-bottom: 58px;
}

@media (max-width: 991.98px) {
    .stat-num {
        font-size: 56px
    }

    .stat-label {
        font-size: 18px
    }
}

@media (max-width: 575.98px) {
    .stat-num {
        font-size: 48px
    }

    .stat-label {
        font-size: 17px
    }
}


/*----------------------------------------------------
 HomeBranchesSection
----------------------------------------------------*/
.branches {
    padding: 34px 0 0;
    background: #fff;
    margin-bottom: 100px;
}

.branches .sec-title {
    font-weight: 800;
    font-size: 36px;
    color: var(--main);
    margin-bottom: 18px
}

/* Tabs */
.branches-tabs {
    display: -webkit-box;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    gap: 22px;
    margin-bottom: 35px
}

.nav-item {
    padding-bottom: 8px;
}

.branches-tabs .nav-link {
    border: none;
    background: transparent;
    color: #9a9a9a;
    font-weight: 700;
    font-size: 18px;
    padding: 8px 15px;
    position: relative;
    border-radius: 6px;
    transition: color .2s ease;
}

.branches-tabs .nav-link:hover {
    color: var(--main)
}

.branches-tabs .nav-link.active {
    color: var(--main)
}

.branches-tabs .nav-link::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-6px;
  height:3px; background: var(--main);
  border-radius: 2px;
  transform: scaleX(0);             
  transform-origin: center;      
  transition: transform .35s cubic-bezier(.22,.75,.25,1);
  will-change: transform;
}

.branches-tabs .nav-link.active::after,
.branches-tabs .nav-link:focus-visible::after,
.branches-tabs .nav-link:hover::after{
  transform: scaleX(1);
}

html[dir="rtl"] .branches-tabs .nav-link::after{
  transform-origin: right center;
}

.branches-row {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08)
}

/* Map */
.branches-map {
    position: relative;
    min-height: 423px;
    background: #eef0f2
}

.branches-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block
}

/* Panel */
.branches-panel {
    background: #2f2f2f;
    color: #fff;
    min-height: 340px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
}

.branches-panel .panel-inner {
    width: 100%;
    max-width: 480px
}

.branch-name {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--main)
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.info-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px;
    transition: background .2s ease, transform .2s ease
}

.info-row:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateX(-3px)
}

.info-row i {
    font-size: 18px;
    color: var(--main);
    flex: 0 0 auto;
    margin-top: 2px
}

.info-title {
    color: var(--main);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px
}

.info-text {
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
}

.info-text a {
    color: #dcdcdc;
    text-decoration: none
}

.info-text a:hover {
    color: var(--main)
}

/* Loader (spinner) */
.panel-loader {
    position: absolute;
    inset: auto 22px 22px auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, .25);
    border-top-color: var(--main);
    opacity: 0;
    transform: scale(.8);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none
}

.panel-loader.is-show {
    opacity: 1;
    transform: scale(1);
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* Fade for AJAX swap */
.fade-out {
    opacity: .0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease
}

.fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity .35s ease, transform .35s ease
}

/* Responsive */
@media (max-width: 991.98px) {
    .branches-map {
        min-height: 300px
    }

    .branches-panel {
        min-height: 300px
    }
}

@media (max-width: 575.98px) {
    .branches .sec-title {
        font-size: 30px
    }

    .branches-tabs {
        gap: 14px
    }
}



/*----------------------------------------------------
 HomeServices Section
----------------------------------------------------*/
.services {
    background-image: url("../img/serv-cover.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services .service-card {
    position: relative;
    height: 250px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(40px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.services .service-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.services .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-inline: 50px;
    background: rgba(47, 80, 115, 0.72);
    transition: background 0.4s ease;
    z-index: 2;
}

.services .service-title {
    font-size: 28px;
    line-height: 43px;
    font-weight: 600;
    letter-spacing: 1px;
    transform: translateY(20px);
    opacity: 0.8;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.services .service-card:hover .service-bg {
    transform: scale(1.1);
    filter: brightness(1.2) blur(2px);
}

.services .service-card:hover .service-overlay {
    background: rgba(47, 80, 115, 0.35);
}

.services .service-card:hover .service-title {
    transform: translateY(0);
    opacity: 1;
}

.services .animate-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.singlePage.services {
    background-image: none;
    padding: 0;
    margin: 0
}


/*----------------------------------------------------
 HomeWhyus Section
----------------------------------------------------*/
:root {
    --r: 50px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

.whyus {
    padding: 28px 0;
}

.whyus-title {
    text-align: center;
    font-weight: 800;
    font-size: 32px;
    margin: 0 0 18px;
}

.why-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    min-height: 255px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
    transform: translateY(10px);
    opacity: 0;
    transition: transform .7s var(--ease),
    opacity .7s var(--ease),
    box-shadow .35s var(--ease),
    margin-top .4s ease;
}

.why-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform .7s var(--ease);
}

.why-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 45%, rgba(0, 0, 0, .28) 75%, rgba(0, 0, 0, 0) 100%);
}

.why-body {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #fff;
    pointer-events: none;
}

.why-head {
    color: var(--main);
    font-weight: 800;
    font-size: 18px;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
    transform: translateY(0);
    transition: transform .4s var(--ease);
}

.why-text {
    font-size: 14px;
    line-height: 1.6;
    color: #e9e9e9;
    opacity: .95;
    max-height: 6.2em;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
}

.why-card:hover .why-bg {
    transform: scale(1.05);
}

.why-card:hover .why-head {
    transform: translateY(-4px);
}

.why-card.reveal.in {
    transform: translateY(0);
    opacity: 1;
}

.whyus [class*='col-']:nth-child(odd) .why-card {
    margin-top: 20px;
}

.whyus [class*='col-']:nth-child(odd) .why-card:hover {
    margin-top: 0;
}


/*----------------------------------------------------
 HomeContact Section
----------------------------------------------------*/
html[dir='rtl'] form {
    direction: rtl;
}

html[dir='ltr'] form {
    direction: ltr;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-in-out;
}

.contact-title {
    font-size: 2rem;
    animation: fadeInUp 0.8s ease-in-out;
}

/* Labels */
.contact-label {
    display: block;
    transition: color 0.3s ease-in-out;
}

.contact-field:focus-within .contact-label {
    color: var(--main);
}

/* Inputs & Textarea */
.contact-textarea,
.contact-input {
    border-radius: 20px;
    padding: 10px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

html[dir='rtl'] input::placeholder {
    direction: rtl;
    text-align: right;
}

html[dir='ltr'] input::placeholder {
    direction: ltr;
    text-align: left;
}

input {
    caret-color: var(--main);
}

.contact-textarea:focus,
.contact-input:focus {
    border-color: var(--main);
    background-color: #f6fff6;
    box-shadow: 0 0 8px rgba(44, 122, 40, 0.4);
    transform: scale(1.02);
}

/* Button */
.contact-btn {
    background-color: var(--main);
    color: #fff;
    border-radius: 20px;
    font-size: 1rem;
    width: 170px;
    padding: 8px 24px;
    margin-top: 10px !important;
    transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
    background-color: var(--main);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
    transition: transform 0.3s ease-in-out;
}

.contact-btn:hover i {
    transform: translateX(-4px);
}

.wpcf7-form-control.wpcf7-not-valid {
    border-color: #e74c3c;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.2);
}

.wpcf7-response-output {
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 15px 0;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.3s ease-in-out;
}

.wpcf7-form.sent .wpcf7-response-output {
    background-color: var(--main);
    color: #fff;
    border-left: 5px solid var(--main);
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output {
    background-color: #e74c3c;
    color: #fff;
    border-left: 5px solid #c0392b;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
    background-color: #f39c12;
    color: #fff;
    border-left: 5px solid #e67e22;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*----------------------------------------------------
 HomeBusiness Section
----------------------------------------------------*/
.business-layout {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.column.left,
.column.right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.column.left .business-item,
.column.right .business-item {
    height: 270px;
}

.column.center {
    width: 570px;
}

.column.center .business-item.large {
    width: 100%;
    height: 570px;
}

.business-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.business-item:nth-child(1) {
    animation-delay: 0.1s;
}

.business-item:nth-child(2) {
    animation-delay: 0.2s;
}

.business-item:nth-child(3) {
    animation-delay: 0.3s;
}

.business-item:nth-child(4) {
    animation-delay: 0.4s;
}

.business-item:nth-child(5) {
    animation-delay: 0.5s;
}

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

.business-item img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transform: scale(1);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.4s ease;
}

.business-item:hover img {
    transform: scale(1.12) rotate(-0.5deg);
    filter: brightness(0.8) contrast(1.05);
}

.business-item .overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 90%;
    background: rgba(255, 255, 255, 0.85);
    padding: 30px 15px;
    text-align: center;
    transform: translate(-50%, 100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.4s ease;
}

.business-item .overlay h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 35px;
    color: #000;
    margin-bottom: 15px;
}

.business-item .overlay h3,
.business-item .overlay p {
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.business-item:hover .overlay {
    transform: translate(-50%, 0);
    opacity: 1;
}

.business-item:hover .overlay h3 {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s;
}

.business-item:hover .overlay p {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*----------------------------------------------------*/
/* HomeDecor Section
/*----------------------------------------------------*/
.gallery-item {
    position: relative;
    overflow: hidden;
    max-height: 355px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}


.decor-gallery.visible .gallery-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.decor-gallery.visible .gallery-item {
    transition-delay: calc(var(--item-index) * 0.15s);
}


.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 24px;
    color: #fff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .zoom-icon {
    transform: scale(1);
}

/* Animation */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*----------------------------------------------------*/
/* HomeClients Section
/*----------------------------------------------------*/

.clients {
    margin: 60px 0;
    text-align: center
}

.clients_intro {
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 25px
}

.clients-grid .client-logo {
    background: #fff;
    border-radius: 15px;
    transition: transform .4s ease, filter .4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 156px;
    margin: auto;
    opacity: 0;
}

.clients.visible .client-logo {
    opacity: 1;
    transform: scale(1);
    transition: transform .6s ease, opacity .6s ease;
    transition-delay: var(--delay, 0s)
}

.clients-grid .client-logo img {
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform .4s ease, filter .4s ease
}

.clients-grid .client-logo:hover img {
    transform: scale(1.1);
    filter: grayscale(0%) drop-shadow(0 4px 8px rgba(0, 0, 0, .1))
}

@media (prefers-reduced-motion: reduce) {
    .clients-grid .client-logo {
        transition: none;
        opacity: 1;
        transform: none
    }
}

/*----------------------------------------------------
 Footer Section
----------------------------------------------------*/
.site-footer {
    position: relative;
    color: #fff;
    background: #333 no-repeat;
    background-size: contain;
    background-size: 100% 100%;
    padding: 70px 0 90px;
}

/*.footer-overlay {*/
/*    position: relative;*/
/*    background: rgba(0, 0, 0, .70);*/
/*    padding: 32px 0 0;*/
/*}*/

.footer-head {
    color: var(--main);
    margin: 0 0 14px;
    font-weight: 700;
    font-size: 28px
}

.footer-contact .footer-head {
    font-size: 24px;
}

.f-logo img {
    height: 135px;
}

.footer-head.center {
    text-align: center
}

.footer-brand {
    margin: 6px 0 14px;
    text-align: center
}

.footer-brand .brand-ar {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: .2px
}

.footer-brand .brand-ar .light {
    color: #fff
}

.footer-brand .brand-ar .accent {
    color: var(--main);
    margin-inline-start: 6px
}

.footer-brand .brand-en {
    font-family: system-ui, sans-serif;
    font-size: 30px;
    font-weight: 700
}

.footer-brand .brand-en span {
    font-weight: 800
}

.footer-cta {
    display: inline-block;
    background: var(--main);
    color: #FFF;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    padding: 12px 18px;
    margin-bottom: 23px;
    max-width: 200px;
}

.footer-cta:hover {
    filter: brightness(.95)
}

.footer-hours {
    text-align: center;
}

.footer-hours .hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 170px;
}

.footer-hours .hours-list p {
    color: #FFF;
    line-height: 1.9;
    margin-bottom: 6px;
    font-weight: 300;
    font-size: 16px;
}

.footer-contact .contact-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    text-align: start;
}

.footer-contact .contact-list li {
    margin: 6px 0
}

.footer-contact .contact-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
}

.footer-contact .contact-list i {
    margin-inline-end: 8px;
    color: #FFF;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links .links-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
}

.footer-links li {
    position: relative;
    width: 34%;
    box-sizing: border-box;
    font-size: 16px;
    color: #fff;
}

/*.footer-links li::before {*/
/*    content: "•";*/
/*    position: absolute;*/
/*    inset-inline-start: 0;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    color: #fff;*/
/*    font-size: 18px;*/
/*    line-height: 1;*/
/*}*/

.footer-links li a {
    display: inline-flex;
    text-decoration: none;
    color: inherit;
    font-weight: 300;
    font-size: 18px;
    transition: color 0.3s ease;
}

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

.footer-links .links-list li {
    margin-bottom: 8px
}

.footer-links .links-list a {
    color: #eaeaea;
    text-decoration: none
}

.footer-links .links-list a:hover {
    color: var(--main)
}

.footer-social {
    position: fixed;
    right: 14px;
    bottom: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
    animation: fs-float 9s ease-in-out infinite alternate;
}

.footer-social .soc {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--main);
    color: #0b2a00;
    text-decoration: none;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;

    opacity: 0;
    transform: translateX(14px) scale(.96);
    animation: soc-in .5s cubic-bezier(.2,.8,.2,1) forwards;

    position: relative;
    overflow: hidden; /* للرِنج */
}

.footer-social .soc i {
    font-size: 18px;
    color: #FFF;
    line-height: 1;
}

.footer-social .soc:nth-child(1){ animation-delay: .05s; }
.footer-social .soc:nth-child(2){ animation-delay: .15s; }
.footer-social .soc:nth-child(3){ animation-delay: .25s; }
.footer-social .soc:nth-child(4){ animation-delay: .35s; }
.footer-social .soc:nth-child(5){ animation-delay: .45s; }
.footer-social .soc:nth-child(6){ animation-delay: .55s; }
.footer-social .soc:nth-child(7){ animation-delay: .65s; }
.footer-social .soc:nth-child(8){ animation-delay: .75s; }
.footer-social .soc:nth-child(9){ animation-delay: .85s; }
.footer-social .soc:nth-child(10){ animation-delay: .95s; }

.footer-social .soc:hover,
.footer-social .soc:focus-visible{
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0,0,0,.28);
    filter: brightness(1.05);
    outline: none;
}

.footer-social .soc:active{
    transform: translateY(0) scale(.98);
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

.footer-social .soc::after{
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.28);
    transform: scale(.6);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}
.footer-social .soc:hover::after,
.footer-social .soc:focus-visible::after{
    transform: scale(1.05);
    opacity: 1;
}

/* Keyframes */
@keyframes soc-in {
    from { opacity: 0; transform: translateX(20px) scale(.94); }
    to   { opacity: 1; transform: translateX(0)    scale(1); }
}
@keyframes fs-float {
    0%   { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

@media (max-width: 768px){
    .footer-social{
        top: auto; bottom: 14px; right: 14px;
        flex-direction: row;
    }
}

@media (prefers-reduced-motion: reduce){
    .footer-social,
    .footer-social .soc{
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}


.footer-copy {
    padding: 50px 0 0;
    text-align: center;
}

.footer-copy span {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: #FFF;
    white-space: normal;
}

.footer-copy a {
    color: var(--main, #96c11f);
    text-decoration: none;
    font-weight: 300;
}

.footer-copy a:hover,
.footer-copy a:focus {
    text-decoration: underline;
}

.form-group{
    margin-bottom: 30px;
}
.form-group label{
    margin-bottom: 10px;
    color: var(--main, #96c11f);
}
.form-group select {
    color: var(--main, #96c11f);
font-size: 14px;
}
@media (max-width: 991.98px) {
    .footer-brand .brand-ar {
        font-size: 28px
    }

    .footer-brand .brand-en {
        font-size: 26px
    }

    .footer-social {
        right: 10px;
    }
}

@media (max-width: 767.98px) {
    .footer-overlay {
        padding-top: 24px
    }

    .footer-social {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin: 12px 0 0
    }

    .footer-copy {
        margin-top: 16px
    }
}


/*----------------------------------------------------
 Pages (insides)
----------------------------------------------------*/

.aboutTabs {
    display: grid;
    gap: 18px
}

.aboutTabs__item {
    position: relative;
    overflow: visible
}

.aboutTabs__card {
    background: #edf8f0;
    border: 1px solid #d7eedf;
    border-radius: 14px;
    padding: 18px 22px
}

.aboutTabs__title {
    margin: 0 0 6px;
    font-weight: 800;
    font-size: 28px;
    color: var(--main)
}

.aboutTabs__content {
    color: #1f2937;
    line-height: 1.9
}

.aboutTabs__content p {
    margin: 0
}

.aboutTabs__badge {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    inline-size: 100px;
    block-size: 100px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    display: grid;
    place-items: center
}

.aboutTabs__badge img {
    max-inline-size: 60%;
    max-block-size: 60%;
    object-fit: contain;
    display: block
}

.aboutTabs__item.odd .aboutTabs__badge {
    inset-inline-start: -18px
}

.aboutTabs__item.even .aboutTabs__badge {
    inset-inline-end: -18px
}

.aboutTabs__content {
    font-size: 22px;
}

.aboutTabs {
    margin-top: 70px;
}
.page-template-page-gallery .breadcrumb-area{
    margin-bottom: 0 ;
}
.page-template-page-gallery .singlePage .container .row  [class^="col-"]{
    margin: 0 !important;
}
@media (min-width: 992px) {
    html[dir="rtl"] .aboutTabs__card {
        padding: 20px 24px 20px 340px;
    }

    html[dir="ltr"] .aboutTabs__card {
        padding: 20px 340px 20px 24px;
    }

    .aboutTabs__title {
        font-size: 28px
    }
}

@media (max-width: 575.98px) {
    html[dir="rtl"] .aboutTabs__card {
        padding: 16px 16px 16px 100px;
    }

    html[dir="ltr"] .aboutTabs__card {
        padding: 16px 100px 16px 16px;
    }
}


@media (min-width: 576px) and (max-width: 767.98px) {
    html[dir="rtl"] .aboutTabs__card {
        padding: 18px 20px 18px 100px;
    }

    html[dir="ltr"] .aboutTabs__card {
        padding: 18px 150px 18px 20px;
    }

    html[dir="rtl"] .odd .aboutTabs__card {
        padding: 18px 20px 18px 35px;
    }
}


.aboutTabs__item.odd .aboutTabs__title,
.aboutTabs__item.odd .aboutTabs__content {
    margin-inline-start: 90px;
}


.news-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.news-card .card {
    border: none;
    background: transparent;
}

.news-card .card-img-top {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .card-img-top {
    transform: scale(1.05);
}

.news-card .card-body {
    padding: 20px;
    text-align: start;
}

.news-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--main);
    transition: color 0.3s ease;
}

.news-card:hover .card-title {
    color: var(--helper);
}

.news-card .exc {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    min-height: 60px;
}

.news-card .global-url {
    display: inline-flex;
    margin-top: 20px;
    text-align: start;
}

.news-card .main-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--helper);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.news-card .main-btn:hover {
    background: var(--helper);
    transform: scale(1.05);
}


.singlePage .service-card,
.singlePage .projects-item,
.singlePage .blog-item,
html[dir="ltr"] .singlePage .blog-item,
.singlePage .client-logo {
    transform: none !important;
    opacity: 1 !important;
}

.singlePage [class^="col-"] {
    margin-bottom: 30px;
}

.singlePage .business-item {
    height: 302px;
}

/* about page */
.about-grid {
    gap: 40px;
    justify-content: center;
    margin-top: 120px;
}

.about-grid [class^="col-"] {
    max-width: 360px;
    margin-bottom: 20px;
}

.about-box-item {
    background: #EBE0CB;
    height: 100%;
    text-align: center;
    padding: 35px 20px 30px;
    position: relative;
    border: none;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    animation: float-entry 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards, card-float 7s ease-in-out infinite;
}

.about-box-item:hover {
    transform: translateY(-14px) scale(1.05) rotateZ(-1deg);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

@keyframes float-entry {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes card-float {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-6px);
    }
    50% {
        transform: translateY(3px);
    }
    75% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0);
    }
}

.about-box-icon {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-circle {
    background: #F3F1E7;
    border-radius: 50%;
    border: 2px solid #EBE0CB;
    padding: 10px;
    width: 114px;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.about-box-item:hover .icon-circle {
    border-width: 4px;
    transform: scale(1.2) rotate(4deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-circle img {
    max-width: 66px;
    height: auto;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-box-item:hover .icon-circle img {
    transform: scale(1.2) rotate(10deg);
}

.about-box-title {
    font-size: 25px;
    font-weight: 600;
    color: var(--main);
    margin-top: 55px;
    line-height: 1.8;
}

/**** Pagination (WP Pagenavi) ****/
.wp-pagenavi {
    font-family: "GESS";
    margin: 15px 0 40px;
    text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    background-color: #fff;
    border: 1px solid transparent !important;
    border-radius: 6px;
    color: var(--helper);
    display: inline-block;
    font-weight: 500;
    margin: 0 2px !important;
    padding: 6px 12px !important;
    text-decoration: none;
    transition: all 0.2s;
}

.wp-pagenavi a:hover {
    background-color: #e3f2fd;
    border-color: var(--helper);
    color: var(--helper);
}

.wp-pagenavi span.current {
    background-color: var(--helper);
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
}

.wp-pagenavi .pages,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
    font-weight: 600;
}

/* project page */
.property-data {
    margin-bottom: 40px;
}

.projectsPage-slider .item {
    position: relative;
    overflow: hidden;
    transform: scale(.97);
    transition: all 0.6s ease-in-out;
}

.projectsPage-slider .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 100%
    );
    backdrop-filter: blur(3px);
    opacity: 1;
    transform: scale(1);
    transition: 0.6s ease;
    pointer-events: none;
    z-index: 2;
}

.projectsPage-slider .owl-item.center .item::before {
    opacity: 0;
    transform: scale(1.1);
}

.projectsPage-slider .owl-item:not(.center) img {
    filter: grayscale(40%) brightness(0.8);
    transition: all 0.6s ease-in-out;
}

.projectsPage-slider .owl-item.center img {
    filter: none;
    transition: all 0.6s ease-in-out;
}

.property-gallery .projectsPage-slider .item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease-in-out;
}

.property-gallery .projectsPage-slider .owl-item.center {
    transform: scale(1.09);
    z-index: 9;
}

.projectThumb {
    margin-top: 15px;
    text-align: center;
}

.projectThumb .owl-thumb-item {
    display: inline-block;
    background: transparent;
    border: 2px solid transparent;
    padding: 4px;
    margin: 0 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}

.projectThumb .owl-thumb-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.projectThumb .owl-thumb-item:hover,
.projectThumb .owl-thumb-item.active {
    opacity: 1;
    border-color: var(--primary-color, #c19a6b);
}

.property-gallery .projectsPage-slider .owl-stage-outer {
    position: relative;
    padding: 10px 0;
}

.property-gallery .projectsPage-slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    display: none;
}

.property-gallery.loading .projectsPage-slider::after {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .property-gallery .projectsPage-slider .item img {
        height: 300px;
    }

    .projectThumb .owl-thumb-item img {
        width: 60px;
        height: 60px;
    }
}

.singleProjects .projectsPage-slider .project-slide {
    position: relative;
    overflow: hidden;
}

.owl-carousel.owl-rtl .owl-item {
    transition: .4s;
}

.singleProjects .projectsPage-slider .project-image-wrapper img {
    width: 100%;
    height: auto;
    transition: 0.5s ease;
}

.singleProjects .projectsPage-slider .owl-item.center .project-image-wrapper img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.singleProjects .project-title {
    font-size: 30px;
    font-weight: bold;
    color: var(--helper);
    margin-bottom: 10px;
}

.singleProjects .project-address {
    font-size: 18px;
    color: var(--helper);
    margin-bottom: 20px;
}

.singleProjects .project-address i {
    color: var(--helper);
    margin-inline-end: 5px;
}

.singleProjects .project-grid {
    gap: 40px;
    justify-content: center;
    margin-top: 120px;
}

.project-grid [class^="col-"] {
    max-width: 360px;
}

.singleProjects .project-box-item {
    background: #EBE0CB;
    height: 100%;
    text-align: center;
    padding: 35px 20px 30px;
    position: relative;
    border: none;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    animation: float-entry 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards, card-float 7s ease-in-out infinite;
}

.singleProjects .project-box-item:hover {
    transform: translateY(-14px) scale(1.05) rotateZ(-1deg);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

.singleProjects .project-box-icon {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.singleProjects .project-icon-circle {
    background: #F3F1E7;
    border-radius: 50%;
    border: 2px solid #EBE0CB;
    padding: 10px;
    width: 114px;
    height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.singleProjects .project-box-item:hover .project-icon-circle {
    border-width: 4px;
    transform: scale(1.2) rotate(4deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.singleProjects .project-icon-circle img {
    max-width: 66px;
    height: auto;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.singleProjects .project-box-item:hover .project-icon-circle img {
    transform: scale(1.2) rotate(10deg);
}

.singleProjects .project-box-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--main);
    margin-top: 0;
    line-height: 1.8;
}

.singleProjects .icon-circle img {
    max-width: 90px;
    height: auto;
}

.project-box-item {
    background: #EBE0CB;
    height: 100%;
    text-align: center;
    padding: 35px 20px 30px;
    position: relative;
    border: none;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    animation: float-entry 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards, card-float 7s ease-in-out infinite;
}

.project-box-icon {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.project-box-item:hover .icon-circle {
    border-width: 4px;
    transform: scale(1.2) rotate(4deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.project-box-item:hover .icon-circle img {
    transform: scale(1.2) rotate(10deg);
}


.hold-specs-box {
    margin-top: 35px;
}

.singleProjects .project-box-number {
    display: block;
    font-size: 25px;
    font-weight: 700;
    color: var(--main);
}


.singleProjects .project-video .video-wrapper iframe,
.singleProjects .project-video .video-player {
    width: 100%;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.singleProjects .property-map iframe {
    width: 100%;
    height: 400px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-weight: 700;
    font-size: 26px;
    color: var(--main);
    position: relative;
    margin-bottom: 40px;
}

.video-wrapper {
    display: inline-block;
}

.video-wrapper video {
    width: 500px;
    height: 281px;
}

.plan-box {
    background: #EBE0CB;
    border-radius: 10px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.plan-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.plan-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.plan-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover !important;
    transition: transform 0.4s ease;
}

.plan-box:hover .plan-image-wrapper img {
    transform: scale(1.08);
}

.plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    transition: opacity 0.4s ease;
}

.plan-box:hover .plan-overlay {
    opacity: 1;
}

.plan-title {
    font-size: 1.3rem;
    color: var(--helper, #5c3d2e);
    margin-top: 15px;
    font-weight: 700;
}

.plan-description {
    font-size: 0.95rem;
    color: var(--main);
}

/********* single page *********/

.singlePage-img {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    max-height: 550px;
    min-height: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    animation: floatImage 6s ease-in-out infinite;
}

.singlePage-img img.project-main-img {
    width: 100%;
    height: 100%;
    max-height: 550px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.singlePage-img:hover img.project-main-img {
    transform: scale(1.05);
}

/* Overlay Glow */
.singlePage-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.singlePage-img:hover::after {
    opacity: 1;
}

/* Floating animation */
@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .singlePage-img {
        max-height: 350px;
    }

}


/*----------------------------------------------------
 Media Queries
----------------------------------------------------*/
/* Large Screens (>=992px) */
@media (min-width: 992px) {
    
    .dd-trigger {
        display: none;
    }
    .banner h1 {
        font-size: 75px;
    }

    html[dir='ltr'] .banner h1 {
        font-size: 50px;
    }

    .container-fluid {
        padding-right: 4.5rem;
        padding-left: 4.5rem;
    }

    .services {
        margin: 165px 0 85px;
    }

    .sidebar,
    .menu-icons {
        display: none;
    }

    nav.main-menu {
        display: flex;
        align-items: center;
    }

    .main-menu li a {
        font-weight: 700;
        transition: 0.3s ease;
    }


    .nav-list > .menu-item > a {
        display: flex;
        font-weight: 300;
        font-size: 16px;
        align-items: center;
        transition: all 0.3s ease-in-out;
    }

    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f078";
        font-family: "FontAwesome";
        font-weight: 300;
        margin-inline-start: 5px;
        color: #FFF;
        transition: all .5s ease-in-out;
    }

    .nav-list > li.menu-item {
        position: relative;
    }

    .nav-list > .menu-item-has-children:hover a:after {
        transform: rotateX(-180deg);
        color: var(--main);
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        inset-inline-start: 0;
        z-index: 4;
        min-width: 250px;
        padding: 10px 0;
        background-color: var(--helper);
        opacity: 0;
        visibility: hidden;
        transform-origin: 0 0 0;
        transform: scaleY(0);
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
        transition: all 0.6s ease-in-out;
        list-style: none;
    }

    .nav-list .sub-menu li {
        position: relative;
        padding: 0 20px;
        text-align: start;
    }

    .nav-list .sub-menu li:not(:last-of-type) a {
        margin-bottom: 10px;
    }

    .nav-list .sub-menu li a {
        font-size: 16px;
        display: block;
        width: 100%;
        font-weight: 300;
        position: relative;
        color: #FFF;
        transition: all 0.5s ease-in-out;
    }

    html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        content: "\f053";
    }

    html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        content: "\f054";
    }

    .nav-list .sub-menu > li.menu-item-has-children > a:after {
        font-family: "fontAwesome";
        font-weight: 900;
        color: #FFF;
        position: absolute;
        inset-inline-end: 0;
        transition: all 0.5s ease-in-out;
    }

    .nav-list .sub-menu > li:hover a {
        color: var(--main);
    }

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: var(--helper);
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    .sub-menu .menu-item-has-children .sub-menu {
        top: 0 !important;
        inset-inline-start: 100%;
    }

    .sub-menu .menu-item-has-children:hover > .sub-menu {
        inset-inline-start: 100%;
    }

    .ceo-image-wrapper::before {
        width: 413px;
        height: 303px;
    }

    .about {
        margin: 70px 0 !important;
    }

}

/* Medium Screens (<=992px) */
@media (max-width: 992px) {
    .header-logo img{
        max-width: 100px;
    }
    .nav-list > li.menu-item:not(:last-of-type) {
        margin-inline-end: 15px;
    }

    #fixed-header .header-logo {
        height: 35px;
    }

    .nav-list > .menu-item > a {
        font-size: 12px;
    }

    .banner_content h1 {
        font-size: 45px;
    }

    /* sidebar */
    /* sidebar */
    /* side menu*/
    .sidebar:before {
        position: absolute;
        content: '';
        opacity: 0.4;
        inset: 0;
    }

    html[dir='rtl'] .sidebar:before {
        background-position: top right;
    }

    html[dir='ltr'] .sidebar:before {
        background-position: top left;
    }

    .menu-icons label {
        display: flex;
        flex-direction: column;
        width: 40px;
        cursor: pointer;
        margin-bottom: 0;
        margin-inline-start: 5px;
    }

    .menu-icons label span {
        background: var(--main);
        border-radius: 10px;
        height: 3px;
        margin: 3px 0;
        transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    .close-me img {
        height: 35px;
        filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7470%) hue-rotate(187deg) brightness(109%) contrast(104%);
    }

    .menu-icons span:nth-of-type(1) {
        width: 50%;
    }

    .menu-icons span:nth-of-type(2) {
        width: 100%;
    }

    .menu-icons span:nth-of-type(3) {
        width: 55%;
    }

    .close-me input[type="checkbox"]:checked ~ span:nth-of-type(1) {
        transform-origin: bottom;
        transform: rotatez(45deg) translate(-10px, 12px);
    }

    .close-me input[type="checkbox"]:checked ~ span:nth-of-type(2) {
        transform-origin: top;
        transform: rotatez(-45deg);
    }

    .close-me input[type="checkbox"]:checked ~ span:nth-of-type(3) {
        transform-origin: bottom;
        width: 50%;
        transform: translate(-2px, -5px) rotatez(45deg);
    }

    .sidebar_pagebody {
        width: 100%;
        overflow: hidden;
    }

    html[dir='rtl'] .sidebar_pagebody {
        float: right;
        clear: right;
    }

    /*html[dir='ltr'] .sidebar_pagebody {*/
    /*    float: left;*/
    /*    clear: left;*/
    /*}*/
    .sidebar .menu-icons {
        display: table;
        position: absolute;
        top: 20px;
        margin-inline-start: 0;
        cursor: pointer;
    }

    html[dir='rtl'] .sidebar .menu-icons {
        left: 20px;
    }

    html[dir='ltr'] .sidebar .menu-icons {
        right: 20px;
    }

    .sidebar {
        position: relative;
        height: 100%;
        width: 400px;
        position: fixed;
        top: 0;
        z-index: 99999;
        background: var(--helper);
        transition: .7s ease-in-out;
    }

    html[dir='rtl'] .sidebar {
        right: -400px;
    }

    html[dir='ltr'] .sidebar {
        left: -400px;
    }

    html[dir='rtl'] .sidebar.noo {
        right: 0;
    }

    html[dir='ltr'] .sidebar.noo {
        left: 0;
    }

    .sidebar .nav-right {
        position: fixed;
        right: 40px;
        top: 20px;
    }

    .sidebar .menu-icons label span {
        background: #FFF;
    }

    .sidebar .menu-icons input ~ span:nth-of-type(1) {
        transform-origin: bottom;
    }

    html[dir='rtl'] .sidebar .menu-icons input ~ span:nth-of-type(1) {
        transform: rotatez(45deg) translate(-10px, 12px);
    }

    html[dir='ltr'] .sidebar .menu-icons input ~ span:nth-of-type(1) {
        transform: rotatez(45deg) translate(4px, -2px);
    }

    .sidebar .menu-icons input ~ span:nth-of-type(2) {
        transform-origin: top;
    }

    .sidebar .menu-icons input ~ span:nth-of-type(2) {
        transform: rotatez(-45deg);
    }

    .sidebar .menu-icons input ~ span:nth-of-type(3) {
        transform-origin: bottom;
        width: 50%;
    }

    html[dir='rtl'] .sidebar .menu-icons input ~ span:nth-of-type(3) {
        transform: translate(-2px, -5px) rotatez(45deg);
    }

    html[dir='ltr'] .sidebar .menu-icons input ~ span:nth-of-type(3) {
        transform: translate(18px, -5px) rotatez(45deg);
    }

    main.helpMoveRTL {
        left: -400px;
    }

    main.helpMoveLTR {
        left: 320px;
    }

    .sidebar nav {
        padding-top: 30px;
    }

    .sidebar .nav-list {
        padding: 0 50px;
        list-style: none;
        position: relative;
        margin-top: 85px;
        text-align: start;
    }

    .sidebar > ul > .menu-item {
        margin: 23px 0;
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    .sidebar .menu-item:first-child {
        -webkit-transition: all 0.7s 0.2s ease-in-out;
        -moz-transition: all 0.7s 0.2s ease-in-out;
        -ms-transition: all 0.7s 0.2s ease-in-out;
        -o-transition: all 0.7s 0.2s ease-in-out;
        transition: all 0.7s 0.2s ease-in-out;
    }

    .sidebar .menu-item {
        -webkit-transition: all 0.7s 0.4s ease-in-out;
        -moz-transition: all 0.7s 0.4s ease-in-out;
        -ms-transition: all 0.7s 0.4s ease-in-out;
        -o-transition: all 0.7s 0.4s ease-in-out;
        transition: all 0.7s 0.4s ease-in-out;
    }

    .sidebar .menu-item:nth-child(3) {
        -webkit-transition: all 0.7s 0.6s ease-in-out;
        -moz-transition: all 0.7s 0.6s ease-in-out;
        -ms-transition: all 0.7s 0.6s ease-in-out;
        -o-transition: all 0.7s 0.6s ease-in-out;
        transition: all 0.7s 0.6s ease-in-out;
    }

    .sidebar .menu-item:last-child {
        -webkit-transition: all 0.7s 0.8s ease-in-out;
        -moz-transition: all 0.7s 0.8s ease-in-out;
        -ms-transition: all 0.7s 0.8s ease-in-out;
        -o-transition: all 0.7s 0.8s ease-in-out;
        transition: all 0.7s 0.6s ease-in-out;
    }

    .sidebar .nav-list > .linkMenu:not(:last-of-type) {
        margin-inline-end: 0;
    }

    .sidebar .menu-item.special {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    .sidebar .menu-item a {
        position: relative;
        color: #FFF;
        text-decoration: none;
        font-size: 23px;
        padding-bottom: 7px;
        font-weight: 500;
        transition: .4s ease-in-out;
    }

    .sidebar .menu-item.active > a,
    .sidebar .menu-item.active > i {
        color: #FFF;
    }

    .sidebar .menu-item.active > a:before {
        background: #FFF;
    }

    .sidebar .menu-item-has-children > .sub-menu {
        background: var(--helper);
        padding: 8px 20px;
    }

    /*.sidebar .menu-item-has-children > .sub-menu a {*/
    /*    color: #000;*/
    /*}*/
    /*.sidebar .menu-item > a:before {*/
    /*    content: "";*/
    /*    width: 0;*/
    /*    height: 2px;*/
    /*    position: absolute;*/
    /*    bottom: 0;*/
    /*    inset-inline-start: 0;*/
    /*    background: #fff;*/
    /*    transition: width 0.7s ease-in-out;*/
    /*}*/
    .sidebar .menu-item:hover > a:before,
    .sidebar .menu-item.active > a:before {
        width: 100%;
    }

    #bodyWrap > div.greatest-background > div {
        bottom: -73px;
    }

    .dd-trigger {
        position: absolute;
        top: 6px;
        font-size: 21px;
        display: inline-block;
        inset-inline-end: 0;
        color: #FFF;
        margin-inline-start: 20px;
        cursor: pointer;
        transition: all .4s ease-in-out;
    }

    .dd-trigger.rotated {
        transform: rotate(180deg);
    }


    .sidebar .sub-menu {
        position: relative;
        margin-top: 10px;
        background: var(--main);
        padding: 10px 0;
    }

    body > div.sidebar_pagebody > div > ul > li.linkMenu.menu-item.menu-item-has-children.special > ul a {
        color: #FFF;
    }

    .sidebar .sub-menu .menu-item a {
        font-size: 16px;
    }

    .sidebar .sub-menu {
        display: none;
    }

    .sidebar .sub-menu li:not(:last-child) {
        margin-bottom: 5px;
    }

    .menu-icons input[type=checkbox] {
        display: none;
    }

    /* // Side menu */
    /*   header  */
    #main-header .col-6.col-lg-3:first-child {
        order: 1;
    }

    #main-header .col-6.col-lg-3:last-child {
        order: 2;
    }

    #main-header .main-menu {
        order: 3;
        width: 100%;
        margin-top: 10px;
        display: block !important;
        text-align: center;
    }

    #main-header .row {
        justify-content: space-between;
    }

    /* // header   */
    .banner_content h1 {
        font-size: 32px;
    }

    .banner_content h2 {
        font-size: 25px;
        margin-top: 26px;
    }

    .banner_img img {
        min-height: 540px;
    }

    .service-card {
        overflow: visible;
    }

    .service-card:hover::before {
        transform: scale(1.15) rotate(7deg);
    }

    .service-card:hover::before {
        top: 3px;
        width: 249px;
        height: 311px;
    }

    .ceo-content {
        margin-inline-start: 0;
    }

    .ceo-image-wrapper::before {
        width: 400px;
        height: 280px;
    }

    .ceo-image-wrapper:hover::before {
        width: 452px;
        height: 332px;
    }

    .modern-grid {
        gap: 30px;
    }

    footer [class*="col-"]:not(:last-child) {
        border: none;
    }

    .banner_content h1 {
        font-size: 45px;
    }

    .services .service-title {
        font-size: 22px;
    }

    .sec-tit {
        font-size: 36px;
    }

    .stats-section .experience-text h2 {
        font-size: 36px;
        line-height: 50px;
    }

    .saint-dd__btn--accent {
        min-width: 90px;
        font-size: 14px;
    }

    .saint-dd__btn {
        font-size: 14px;
        padding: 11px;
    }

    .header-logo {
        height: 50px;
    }

    .header-actions .saint-dd:nth-of-type(2) .saint-dd__btn {
        min-width: 64px;
    }

    .hold-btn {
        margin-top: 25px;
    }

    .stat-label {
        font-size: 24px;
    }

    .branches-map {
        height: 100%;
    }

    .branches-panel {
        display: block;
    }

   .branches-tabs .nav-item {
        padding-bottom: 6px;
    }

}

@media (max-width: 991.96px) {

    .stats-wrapper {
        gap: 40px;
    }

    #bodyWrap > footer > div.container.position-relative > div.row.align-items-start.py-5 {
        gap: 50px;
    }

    .hold-about-content {
        margin-top: 60px;
    }

    .project-grid [class^="col-"] {
        max-width: 280px;
    }

    .project-grid [class^="col-"] {
        margin-bottom: 80px !important;
    }

    .in_stats {
        margin-inline: 30px;
    }

    .stat-box h2 {
        font-size: 32px;
    }

    .ceo-image-wrapper::before {
        width: 411px;
        height: 303px;
    }

    .ceo-image-wrapper:hover::before {
        width: 415px;
        height: 304px;
    }

    .ceo-image-wrapper {
        display: table;
        margin: 0 auto 30px;
    }

    .map-wrapper {
        margin-top: 30px;
        height: 320px !important;
    }

    .contact-section .container > .row {
        flex-direction: column-reverse;
    }

    .modern-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #main-header .main-menu {
        display: none !important;
    }

    .about-box-title {
        font-size: 19px;;
        margin-top: 32px;
    }

    .about {
        padding-top: 120px !important;
    }

    .about .row {
        flex-direction: column-reverse;
    }

    .about-img-collage {
        padding-block: 30px;
    }

    services .service-title {
        font-size: 28px;
        line-height: 31px;
        font-weight: 600;
        letter-spacing: 1px;
        transform: translateY(10px);
    }

    .stats-wrapper {
        gap: 0;
    }

    .stats-section .experience-text span {
        color: var(--main);
        display: inline-block;
        margin-bottom: 20px;
    }

    .business-layout {
        flex-wrap: wrap;
        gap: 15px;
    }

    .column.center {
        width: 100%;
        order: 1;
    }

    .column.left,
    .column.right {
        width: calc(50% - 10px);
        display: flex;
        flex-direction: column;
        gap: 15px;
        order: 2;
    }

    .column.left .business-item,
    .column.right .business-item {
        height: 200px;
    }

    .column.center .business-item.large {
        height: 200px;
    }

    .footer-top {
        gap: 20px;
    }

    .footer-text {
        margin-bottom: 20px;
    }

    .contact-item {
        justify-content: start !important;
    }

    .about-title {
        font-size: 33px;
    }

    .stats-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .footer-overlay [class*='col-']:first-child {
        order: 2;
        margin-top: 30px;
    }

    .footer-overlay [class*='col-']:nth-child(2) {
        order: 1;
    }

    .footer-overlay [class*='col-']:last-child {
        order: 3;
        margin-top: 30px;
    }

    header nav.main-menu {
        display: none;
    }
}


/* Small Screens (<=768px) */
@media (max-width: 768.96px) {

   header:not(#fixed-header) {
        position: relative;
        background: var(--helper);
    }
    .play-button{
            width: clamp(75px, 7.5vw, 90px);
    height: clamp(75px, 7.5vw, 90px);
    }
    .exhibit-cover img{
            height: 380px;
    }
    .footer-head{
     text-align: center;
    }
    .footer-links .links-list{
            justify-content: center;
    }

}

@media (max-width: 767.96px) {
    .singleProjects .project-grid {
        gap: 0;
    }
}

/* Extra Small Screens (<=576px) */
@media (max-width: 576px) {
    .sidebar {
        width: 320px;
    }

 

    .language-switcher .btn-language {
        color: var(--main);
    }

    .banner .mainItem {
        height: 50vh;
    }

    .video-wrapper video {
        width: 100%;
        height: 100%;
    }


    .sidebar .menu-item a {
        font-size: 19px;
    }

    main.helpMoveRTL {
        left: -320px;
    }

    html[dir='rtl'] .sidebar {
        right: -320px;
    }

    .sidebar .menu-icons {
        left: 15px;
    }

    .close-me img {
        height: 35px;
    }

    .main-btn, .withArrow {
        font-size: 16px;
    }

}

@media (max-width: 576px) {
    .header-logo {
        width: fit-content;
    }

    .singleProjects .project-title {
        font-size: 24px;
    }
}

@media (max-width: 575.96px) {
    .banner_content {
        padding: 0 15px;
    }

    .scroll-top-btn {
        inset-inline-start: 10px;
    }

    .stat-box {
        padding: 0;
    }

    .stats-wrapper {
        gap: 25px;
    }

    .stat-box p {
        font-size: 17px;
    }

    .stats-section .stat-box {
        min-width: 100%;
    }
    
    .play-button i {
  font-size: clamp(25px, 3.2vw, 34px);
}

.exhibit .sec-tit {
  font-size: 40px;
}

.play-button {
  border: 6px solid var(--main);
}


}

@media (max-width: 480px) {
    .banner_content h1 {
        font-size: 24px;
    }

    .banner_content h2 {
        margin-top: 20px;
        font-size: 18px;
    }

    .banner_content p {
        font-size: 14px;
        line-height: 27px;
        margin-top: 19px;
    }
    
    .f-logo img {
  height: 100px;
}

}

@media (max-width: 371px) {
    .header-logo {
        width: 74px;
        height: 74px;
    }
    
    .in-header {
  flex-direction: column;
}

    #fixed-header {
        display: none;
    }

    .singleProjects .project-title {
        font-size: 24px;
        margin-bottom: 15px !important;
    }

    .singleProjects .project-address {
        font-size: 15px;
    }


    .singleProjects .project-box-title {
        font-size: 15px;
    }

    .icon-circle {
        width: 85px;
        height: 85px;
    }

    .singleProjects .project-box-icon {
        top: -40px;
    }

    .singleProjects .project-box-item {
        padding-inline: 5px;
    }

    .section-title {
        font-size: 23px;
        margin-bottom: 24px;
    }


}

.singlePage .contact-form-wrapper [class^="col-"] {
    margin-bottom: 0 !important;
}


.social-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-inline-start: 8px; 
}

.social-inline__btn {
  --size: 30px;
  --ring: rgba(255,255,255,.35);
  --fg:   #eaeaea;

  inline-size: var(--size);
  block-size: var(--size);
  display: grid;
  place-items: center;
  border-radius: 9999px;
  border: 1px solid var(--ring);
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  outline: none;
  transition:
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    transform .15s ease;
}

.social-inline__btn i { font-size: 15px; line-height: 1; display: block; }
.social-inline__btn svg { inline-size: 16px; block-size: 16px; display: block; fill: currentColor; }

.social-inline__btn:hover,
.social-inline__btn:focus-visible {
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.social-inline__btn i[class*="whatsapp"],
.social-inline__btn [class*="whatsapp"] { color: #25D366; }
.social-inline__btn:hover i[class*="whatsapp"],
.social-inline__btn:hover [class*="whatsapp"] {
  filter: drop-shadow(0 0 4px rgba(37,211,102,.4));
}

@media (max-width: 480px) {
  .social-inline__btn { --size: 28px; }
  .social-inline__btn i { font-size: 14px; }
  .social-inline__btn svg { inline-size: 14px; block-size: 14px; }
}

/*----------------------------------------------------
End of CSS
----------------------------------------------------*/
.term-gallery a[data-fancybox^="gallery-"]{
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: .5rem;
}

.term-gallery a[data-fancybox^="gallery-"] img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 575.98px){
  .term-gallery a[data-fancybox^="gallery-"]{ aspect-ratio: 1 / 1; }
}
@media (min-width: 1200px){
  .term-gallery a[data-fancybox^="gallery-"]{ aspect-ratio: 3 / 2; }
}

@supports not (aspect-ratio: 1 / 1){
  .term-gallery a[data-fancybox^="gallery-"]{ height: 260px; }
  @media (min-width: 768px){ .term-gallery a[data-fancybox^="gallery-"]{ height: 300px; } }
  @media (min-width: 1200px){ .term-gallery a[data-fancybox^="gallery-"]{ height: 340px; } }
}

.content {
    margin-bottom: 60px;
}



.offer-gallery a[data-fancybox^="offer-gallery-"]{
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: .5rem;
}
.offer-gallery a[data-fancybox^="offer-gallery-"] img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 575.98px){
  .offer-gallery a[data-fancybox^="offer-gallery-"]{ aspect-ratio: 1 / 1; }
}
@media (min-width: 1200px){
  .offer-gallery a[data-fancybox^="offer-gallery-"]{ aspect-ratio: 3 / 2; }
}
@supports not (aspect-ratio: 1 / 1){
  .offer-gallery a[data-fancybox^="offer-gallery-"]{ height: 260px; }
  @media (min-width: 768px){ .offer-gallery a[data-fancybox^="offer-gallery-"]{ height: 300px; } }
  @media (min-width: 1200px){ .offer-gallery a[data-fancybox^="offer-gallery-"]{ height: 340px; } }
}


.kitchen-steps-section {
    padding: 60px 0;
    /*background: #111;*/
    color: #fff;
}

.steps-title {
    font-size: 28px;
    font-weight: 700;
}

.kitchen-steps-section .row.gx-0 {
    border-top: 1px solid #000;
    border-inline: 1px solid #000;
}

.k-step-item {
    background: #333;
    padding: 22px 20px;
    border-bottom: 1px solid #000;
    border-inline-start: 1px solid #000;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.k-step-thumb {
    margin-bottom: 12px;
    overflow: hidden;
}

.k-step-thumb img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: transform .35s ease-in-out;
}

.k-step-item:hover .k-step-thumb img {
    transform: scale(1.05);
}

.k-step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--main);
}

.k-step-text {
    font-size: 14px;
    line-height: 1.9;
    color: #ddd;
    margin: 0;
}

@media (max-width: 767.98px) {
    .kitchen-steps-section {
        padding: 40px 0;
    }
}



.kitchen-features-section {
    padding: 60px 0;
    background: #f5f5f5;
}

.k-features-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.k-features-box {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    padding: 28px 26px;
    text-align: right;
}

.k-features-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--ink, #000);
}

.k-feature-item {
    background: #f9fafc;
    border-radius: 16px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.k-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--main);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.k-feature-icon img {
    max-width: 28px;
    max-height: 28px;
    filter: brightness(0) invert(1);
    opacity: .95;
    display: block;
}

.k-feature-item-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--ink, #222);
}

.k-feature-item-text {
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
    color: var(--helper, #555);
}

.k-feature-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    transform: translateY(-3px);
}

.k-feature-item:hover .k-feature-icon {
    box-shadow: 0 6px 16px rgba(0,0,0,.18);
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .kitchen-features-section {
        padding: 40px 0;
    }

    .k-features-box {
        margin-top: 10px;
        border-radius: 16px;
    }
}

.order-steps-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #e4e4e4;
}

.order-steps-head {
    margin-bottom: 35px;
    position: relative;
}

.order-steps-head::before {
    content: "";
    width: 90px;
    height: 3px;
    background: var(--main);
    display: block;
    margin: 0 auto 14px;
}

.order-steps-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--ink, #222);
}

.order-step-item {
    text-align: center;
    cursor: default;
    transition: transform .25s ease, box-shadow .25s ease;
}

.order-step-thumb {
    border-radius: 18px;
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

.order-step-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(0) scale(1);
    transition: transform .35s ease, filter .35s ease;
}

.order-step-caption {
    font-size: 14px;
    font-weight: 600;
    margin-top: 14px;
    color: var(--ink, #222);
    line-height: 1.7;
}

.order-step-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,.06);
}

.order-step-item:hover .order-step-thumb img {
    transform: translateY(-4px) scale(1.03);
    filter: saturate(1.1);
}

@media (max-width: 767.98px) {
    .order-steps-section {
        padding: 40px 0;
    }
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 0px !important;
    background: var(--main);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--main);
    transition: .25s ease-in-out;
}

.catalog-btn:hover {
    background: #fff;
    color: var(--main);
    transform: translateY(-2px);
}


