body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.header {
    padding: 20px 80px;
    background: #461f00cc;
    /* transparency */
    backdrop-filter: blur(10px);
    /* blur magic */
    -webkit-backdrop-filter: blur(10px);
    /* safari support */

    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.upper-header {
    color: #fff;
    padding: 8px 84px;
    background: rgba(0, 0, 0, 0.9);
    /* transparency */
    backdrop-filter: blur(10px);
    /* blur magic */
    -webkit-backdrop-filter: blur(10px);
    /* safari support */

    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header .logo img {
    width: 160px;

}

.header-contact-info i {
    font-size: 15px;
}

.header-contact-info a {
    /* color:#BFA28C; */
    font-size: 13px;
}

.header .nav-link {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* underline */
.header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #ffffff;
    display: inline-block;
    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* hover in */
.header .nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* hover out */
.header .nav-link:not(:hover)::after {
    transform-origin: right;
}

.header .nav-link:hover {
    color: #ffffff;
}

/* dropdown */
#dropdown-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown {
    min-width: 240px;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 20px;
    padding: 20px;
    background-color: #461f00cc;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 10px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

.dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-media {
    display: flex;
    gap: 6px;
}

.social-media a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.contact-page-social-media {
    margin-bottom: 20px;
}

.contact-page-social-media a {
    color: #141414cc;
    border: 1px solid #141414cc;

}

.contact-info-list i {
    color: #141414ac;
}

.contact-form .row {
    padding: 0;
}

.js-angle-down {
    transition: all 0.7s ease;
}

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

.hero-section .swiper {
    height: 100vh;
    width: 100%;
}

.hero-section .swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.finish-item {
    margin: 0 auto;
    border-bottom: 2px solid rgba(53, 32, 16, 0.12);
    border-radius: 0 0 4px 4px;

}

.finish-item .finish-content {
    padding: 16px 24px;
    background-color: #80808008;
}

.finish-content h5 {
    margin-bottom: 8px;
}

.finish-content p {
    margin: 0;
}

.veneer-swiper .swiper-wrapper,
.laminates-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.slide {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

    animation: smoothZoom 8s ease-in-out infinite alternate;
}

.hero-section .swiper .swiper-button-prev,
.hero-section .swiper .swiper-button-next {
    position: absolute;
    z-index: 10;
    border-radius: 99px;
    top: 60%;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in;
}

.hero-section .swiper .swiper-button-next i,
.hero-section .swiper .swiper-button-prev i {
    font-size: 32px;
}

.hero-section .swiper .swiper-button-prev:hover,
.hero-section .swiper .swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-top {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: radial-gradient(circle at 10% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 720px;
    /* transform: translate(-50%, -50%); */
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 40px 0 0 150px;
}

.hero-content h2 {
    font-size: 48px !important;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 32px;
}

.hero-content p {
    font-size: 18px;
    max-width: 450px;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);

}

/* Smooth cinematic zoom */
@keyframes smoothZoom {
    0% {
        transform: scale(1);
    }

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

.section {
    padding: 80px;
}

.btn-about {
    border: 1px solid #ffffff;
    color: #ffffff;
    transition: all 0.3s ease;
    margin: 0;
}

.btn-about:hover {
    background-color: #ffffff;
    color: #461f00;
}

.contact-form .btn-about {
    background-color: #352010;
    color: #fff;
    padding: 16px 40px !important;
}

.contact-form .btn-about:hover {
    background-color: #000000ac;
    color: #ffffffac;
    border: 1px solid #352010;
}

.founder-img {
    background: linear-gradient(to bottom, #f5f2ef, #eae3dc);
    padding: 20px 20px 0;
}

/* Page hero banner */
.page-layout {
    margin-top: 128px;
    height: 60vh;
    background-color: #141414;
    ;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 0;
    position: relative;
}

.page-layout-content {
    text-align: center;
    padding: 0 20px 50px;
    color: #fff;
}

.page-layout-content h1 {
    font-family: "Cardo", serif;
    font-size: 52px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 0;
}

.page-layout-breadcrumb {
    width: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 80px;
}

.page-layout-breadcrumb ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-layout-breadcrumb ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-layout-breadcrumb ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.page-layout-breadcrumb ul li a:hover {
    color: #fff;
}

.page-layout-breadcrumb ul li.sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
}

/* Reuse .text-divided pattern from homepage */
.text-divided {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    /* color: #352010; */
    margin-bottom: 12px;
}

.text-divided .line1 {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: #e4c055;
}

.text-divided-light {
    color: rgba(255, 255, 255, 0.75);
}

.text-divided-light .line1 {
    background: #e4c055;
}

/* ── Intro / Who We Are ── */
.about-intro-img {
    width: 100%;
    height: 100%;
    /* min-height: 420px; */
    object-fit: contain;
}

.about-intro-img-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    /* aspect-ratio: 4/4; */
    /* min-height: 420px; */
}

.about-intro-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(53, 32, 16, 0.12);
}

/* Corner accents on image */
.img-corner-tl,
.img-corner-br {
    position: absolute;
    width: 60px;
    height: 60px;
    z-index: 2;
}

.img-corner-tl {
    top: 20px;
    left: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.img-corner-br {
    bottom: 20px;
    right: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    border-right: 1px solid rgba(255, 255, 255, 0.45);
}

/* ── Stats row ── */
.about-stats {
    border-top: 1px solid rgba(53, 32, 16, 0.15);
    margin-top: 40px;
    padding-top: 32px;
    display: flex;
    gap: 0;
}

.about-stat {
    flex: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(53, 32, 16, 0.12);
    margin-right: 24px;
}

.about-stat:last-child {
    border-right: none;
    margin-right: 0;
}

.about-stat-num {
    font-family: "Cardo", serif;
    font-size: 48px;
    font-weight: 300;
    color: #352010;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-num sup {
    font-size: 22px;
    color: #BFA28C;
    vertical-align: super;
}

.about-stat-label {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #BFA28C;
}

/* ── Philosophy / approach blocks ── */
.phil-stack {
    display: flex;
    flex-direction: row;
    gap: 3px;
    height: 100%;
    /* margin-top: 24px; */
}

.phil-block {
    padding: 26px 30px;
    margin: 0 10px;
    flex: 1;
}

.phil-block-dark {
    background: #1c1a18;
}

.phil-block-brand {
    background: #461f00;
}

.phil-block-tan {
    background: #BFA28C;
}

.phil-block-label {
    font-family: "Poppins", sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.phil-block-label-dark {
    color: rgba(28, 26, 24, 0.5);
}

.phil-block-value {
    font-family: "Cardo", serif;
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.phil-block-value-dark {
    color: rgba(28, 26, 24, 0.85);
}

.phil-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.phil-tag {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(28, 26, 24, 0.28);
    color: rgba(28, 26, 24, 0.75);
}

/* ── Why Onewood grid ── */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-top: 48px;
    gap: 20px;
}

.why-item {
    padding: 40px 36px;
    border: 1px solid rgba(53, 32, 16, 0.1);
    position: relative;
    transition: background 0.25s ease;
}

.why-item:hover {
    background: #f9f5f0;
}

.why-item-num {
    font-family: "Cardo", serif;
    font-size: 40px;
    opacity: 0.2;
    font-weight: 300;
    color: #BFA28C;
    letter-spacing: 2px;
    margin-bottom: 18px;
}


.why-item-title {
    font-family: "Cardo", serif;
    font-size: 22px;
    font-weight: 300;
    color: #352010;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-item-body {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #5a5650;
    line-height: 1.85;
}

.why-item-dash {
    position: absolute;
    top: 40px;
    right: 36px;
    width: 20px;
    height: 1px;
    background: #BFA28C;
    opacity: 0.6;
}

/* ── Who we work with – role grid ── */
.aud-grid-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
    /* background: #2a2724; */
}

.aud-grid-bg {
    /* position: absolute; */
    inset: 0;
    padding: 2px;

}

.aud-grid-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent 0, transparent 30px,
            rgba(255, 255, 255, 0.02) 30px, rgba(255, 255, 255, 0.02) 32px);
}

.aud-role-cell {
    position: relative;
    aspect-ratio: 1/1;
}

.aud-role-cell .top-left-img,
.aud-role-cell .bottom-right-img {
    position: absolute;
    width: 400px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.top-left-img img,
.bottom-right-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.aud-role-cell .top-left-img {
    top: 0;
    left: 0;
}

.aud-role-cell .bottom-right-img {
    bottom: 0;
    right: 0;
}

.aud-role-cell img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.aud-role-cell:hover .top-left-img {
    transform: translate(-10px, -10px);
}

.aud-role-cell:hover .bottom-right-img {
    transform: translate(10px, 10px);
}


.aud-role-label {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255);
}

.aud-role-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 16px;
    letter-spacing: 2px;
}

.aud-corner-tl {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 60px;
    height: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.aud-corner-br {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 60px;
    height: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    border-right: 1px solid rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* ── Vision dark section ── */
.vision-section {
    background: #1c1a18;
    position: relative;
    overflow: hidden;
}

.vision-bg-text {
    position: absolute;
    bottom: -20px;
    right: 30px;
    font-family: "Cardo", serif;
    font-size: 200px;
    font-weight: 300;
    color: rgba(191, 162, 140, 0.05);
    letter-spacing: -8px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ── CTA section ── */
.cta-section {
    background: #fff;
    border-top: 1px solid rgba(53, 32, 16, 0.1);
}

.cta-section .btn-about {
    border: 1px solid #352010;
    color: #352010;
}

.cta-section .btn-about:hover {
    background: #352010;
    color: #fff;
    border-color: #352010;
}

.cta-section .btn-about.btn-filled {
    background: #352010;
    color: #fff;
}

.cta-section .btn-about.btn-filled:hover {
    background: #1c1a18;
    border-color: #1c1a18;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

.reveal-d4 {
    transition-delay: 0.4s;
}

.contact-page-map iframe {
    width: 100%;
    height: 540px;
    border: 0;
}

h2,
h3,
h5 {
    font-family: "Cardo", serif;
    font-weight: 300;
}

.section-bg {
    /* background: #352010; */
    background: #BFA28C;
    color: #fff;
}

.bb {
    /* background:
        linear-gradient(135deg, #1a1510 0%, #332a1e 60%, #4a3d2c 100%, 5px); */
    border-bottom: 1px solid rgba(53, 32, 16, 0.148);
}


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


.footer {
    padding: 80px 80px 0 80px;
}

.footer-bottom {
    border-top: 1px solid #ffffffac;
    padding: 20px 0;
}

.footer .logo img {
    width: 180px;
}

.footer .nav-link {
    padding: 0;
    color: #fff;
    font-family: "Cardo", serif;

}

.footer p {
    font-family: "Cardo", serif;
}

.product-stats {
    border-top: 1px solid rgba(53, 32, 16, 0.15);
    margin-top: 40px;
    padding-top: 32px;
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.product-stats .product-stat {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(53, 32, 16, 0.15);
    border-bottom: 1px solid rgba(53, 32, 16, 0.15);
    padding: 12px;
}

.product-stat:nth-child(3),
.product-stat:nth-child(4) {
    border-bottom: none;
}

.product-stat:nth-child(2n) {
    border-right: none;
}

.product-stats .product-stat-title {
    font-family: "Cardo", serif;
    font-size: 24px;
    font-weight: 400;
    color: #BFA28C;
}

.product-stats .product-stat-label {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 300;
}

.veneer-swiper {
    width: 100%;
    height: auto;
}

.item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.item .con {
    padding: 0 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: left;
    z-index: 1;
    height: auto;
    box-sizing: border-box;
    background: -moz-linear-gradient(top, transparent 0, rgba(0, 0, 0, .1) 2%, rgba(0, 0, 0, .75) 90%);
    background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .01) 2%, rgba(0, 0, 0, .75) 90%);
}

.item .con h5,
.item .con h5 a {
    position: relative;
    color: #fff;
    font-size: 27px;
    font-weight: 400;
    margin-top: 1px;
    margin-bottom: 0px;
    line-height: 29px;
}

.item .con h6,
.item .con h6 a {
    position: relative;
    color: #fff;
    font-size: 15px;
    font-family: 'Barlow Condensed', sans-serif;
    display: inline;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.item .line {
    text-align: center;
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: auto 0 30px;
    margin-top: 13px;
}

.item:hover .line {
    width: 100%;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

.position-re {
    overflow: hidden;
    width: 100%;
}

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

.aspect4 {
    aspect-ratio: 4/3;
}

.aspect4-4 {
    aspect-ratio: 4/4;
}

.aspect5 {
    aspect-ratio: 4/5;
}

.aspect6 {
    aspect-ratio: 4/6;
}

.aspect3 {
    aspect-ratio: 3/2;
}

.aspect3 img,
.aspect4 img,
.aspect4-4 img,
.aspect5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.paragraph-width {
    max-width: 400px;
    width: 100%;
}

.left-pad {
    padding-left: 100px;
}

.right-pad {
    padding: 0;
}

.pallax {
    background-attachment: fixed;
    position: relative;
    width: 100%;
    min-height: 84vh;
    overflow: hidden;
    padding: 100px 0;
    background-image:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.1) 100%),
        url('/assets/doors/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* soft top light */
.circletop {
    position: absolute;
    top: -18%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 50%;
    background: radial-gradient(ellipse at center top,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 35%,
            transparent 75%);
    filter: blur(30px);
    pointer-events: none;
}

/* premium left shadow depth */
.circleleft {
    position: absolute;
    top: 0;
    left: -8%;
    width: 45%;
    height: 100%;
    background: radial-gradient(ellipse at left center,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.18) 45%,
            transparent 75%);
    filter: blur(35px);
    pointer-events: none;
}

/* bottom luxury glow */
.circlebottom {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 35%;
    height: 30%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.07) 0%,
            transparent 75%);
    filter: blur(45px);
    pointer-events: none;
}

/* subtle texture overlay */
.grain-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.02);
    /* backdrop-filter: blur(1px); */
    pointer-events: none;
}

.content-overlay {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 0 80px;
}

.content-overlay .swiper {
    width: 100%;
    height: 100%;
}

.testimonial-Swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.testimonial-card {
    position: relative;
    height: 100%;
    /* padding: 32px; */
    /* border-radius: 24px; */
    backdrop-filter: blur(6px);
    /* background: rgba(255, 255, 255, 0.3); */
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    transition: all 0.4s ease;
    color: #fff;
    overflow: hidden;
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.avatar {
    border-radius: 0 99px 99px 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.2);
}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50px;

}

.client-info h4 {
    font-size: 24px;
    font-family: "Cardo";
}

.client-info span {
    font-size: 14px;
}

.testimonial-text {
    padding: 0 20px 32px;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.10);
}

.testimonial-Swiper {
    position: relative;
}

.testimonial-Swiper .swiper-button-prev,
.testimonial-Swiper .swiper-button-next {
    width: 54px;
    height: 54px;
    position: relative;
    margin-top: 32px;
    border-radius: 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;

}

.testimonial-Swiper .swiper-button-prev {
    left: 48%;
    transform: translateX(-50%);
}

.testimonial-Swiper .swiper-button-next {
    left: 53%;

    transform: translate(-50%, -158%);
}

.core-card {
    border: 1px solid rgba(53, 32, 16, 0.1);
    padding: 32px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    margin-bottom: 20px;
}

.core-img img {
    width: 80px;
    height: 80px;
}

.core-content {
    padding-top: 24px;
}

.core-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.core-content p {
    font-size: 15px;
}

.desktop-header-nav {
    display: flex;
}

.hamburger {
    display: none;
    color: white;
    font-size: 28px;
}

.hamburger:hover {
    color: #ffffffac;
}

.desktop-hide {
    display: none;
}

.mobile-hide {
    display: flex;
}

.mobile-navbar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 80;
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: flex-end;

    pointer-events: none;
}

.mobile-navbar .mobile-nav {
    width: 60%;
    height: 100%;
    padding: 100px 20px;
    background-color: #fff;

    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-navbar.show {
    pointer-events: auto;
}

.mobile-navbar.show .mobile-nav {
    transform: translateX(0);
    /* slide in */
}

.mobile-navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);

    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-navbar.show::before {
    opacity: 1;
}

.mobile-navbar .social-media {
    padding-left: 18px;
    margin-top: 20px;
    gap: 8px;
}

.mobile-nav nav .nav-link {
    font-size: 20px;
    color: #141414;
}

.mobile-nav nav .nav-link:hover {
    color: #141414ac;
}

.mobile-navbar .social-media a {
    color: #141414;
    font-size: 24px;
    border: 1px solid #141414;
}

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

.gallery-itm {
    display: flex;
    width: 100%;
    height: 460px;
}

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

.gallery-grid {
    padding: 0 4px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;

    grid-auto-rows: 10px;
    /* IMPORTANT */
}

.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 6px;
}

.specification-card {
    display: flex;
    height: 100%;
    gap: 20px;
    border: 1px solid #dddddd5f;
    padding: 32px 32px;
}

.specification-card-img {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.specification-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width:991px) {
    .header {
        padding: 20px 10px;
    }

    .upper-header {
        display: none;
    }

    .desktop-header-nav {
        display: none;
    }

    .header .social-media {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-section .swiper {
        height: 60vh;
    }

    .section {
        padding: 80px 0;
    }

    .left-pad,
    .right-pad {
        padding: 32px;
    }

    .desktop-hide {
        display: flex;
    }

    .mobile-hide {
        display: none;
    }

    .aspect3 {
        aspect-ratio: 3/2;
    }

    .video-wrapper {
        margin-bottom: 20px;
    }

    .content-overlay {
        padding: 0;
    }

    .pallax {
        min-height: auto;
        padding-bottom: 0;
    }

    .testimonial-Swiper .swiper-button-prev {
        left: 44%;
        transform: translateX(-50%);
    }

    .testimonial-Swiper .swiper-button-next {
        left: 56%;

        transform: translate(-50%, -158%);
    }

    .footer {
        padding: 80px 0 0;
    }

    .footer h4 {
        margin-top: 24px;
    }

    .footer .col-lg-5 {
        padding: 0 10px;
    }

    .paragraph-width {
        max-width: 100%;
    }

    .contact-page-map iframe {
        height: 380px;
        padding: 0 10px;
    }

    .page-layout {
        margin-top: 70px;
        height: 50vh;
    }

    .page-layout-content h1 {
        font-size: 36px;
    }

    .page-layout-breadcrumb {
        padding: 14px 20px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 10px;
    }

    .phil-stack {
        flex-direction: column;
        margin-top: 32px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .about-stat {
        flex: 1 1 40%;
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        border-bottom: 1px solid rgba(53, 32, 16, 0.12);
        padding-bottom: 20px;
    }

    .about-stat:last-child {
        border-bottom: none;
    }

    .aud-grid-wrap {
        min-height: 280px;
        margin-bottom: 32px;
    }

    .vision-bg-text {
        font-size: 100px;
    }

    .aud-role-cell .top-left-img,
    .aud-role-cell .bottom-right-img {
        width: 500px;
    }

    .aud-role-cell .top-left-img img,
    .aud-role-cell .bottom-right-img img {
        height: 500px;
    }

    .gallery-grid {
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 10px;
        gap: 12px;
    }

    .gallery-itm {
        height: 260px;
    }
}

@media (max-width:768px) {
    .hero-content {
        width: 100%;
        padding: 20px;
        align-items: center;
        text-align: center;
    }
    .hero-content h2 {
        font-size: 24px !important;
    }
    .col-lg-6 {
        padding: 0 10px;
    }

    .item {
        margin-bottom: 20px;
    }

    .aspect4,
    .aspect5 {
        aspect-ratio: 4/3;
    }

    .container-fluid {
        padding: 0;
    }

    .left-pad,
    .right-pad {
        padding: 10px 10px 30px;
    }

    .testimonial-Swiper .swiper-button-prev {
        left: 40%;
        transform: translateX(-50%);
    }

    .testimonial-Swiper .swiper-button-next {
        left: 60%;

        transform: translate(-50%, -158%);
    }

    .thumbnail-classic-static {
        margin: 0 0 20px 0;
        max-width: 100%;
    }

    .mobile-navbar .mobile-nav {
        width: 80%;
    }

    .page-layout-content h1 {
        font-size: 28px;
    }

    .why-item {
        padding: 28px 20px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .aud-role-cell .top-left-img,
    .aud-role-cell .bottom-right-img {
        width: 250px;
    }

    .aud-role-cell .top-left-img img,
    .aud-role-cell .bottom-right-img img {
        height: 250px;
    }

}