/* ============================== loader design ======================== */
@font-face {
    font-family: "Montserrat";
    src: url("../DS Fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: "HolidayFree";
    src: url("../HolidayFree.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

body {
    /* position: relative; */
    background-color: #f2f0f0;
    font-family: "Montserrat" !important;
}

body.no-scroll {
    overflow: hidden;
}

body::-webkit-scrollbar {
    width: 0;
    display: none;
}




/* Prevent scroll conflicts during animation */
body.no-select {
    scroll-behavior: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Ensure smooth transitions without jumps */
.about-page .scroll-section {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background-color: #f5f5f5;
}

/* Fix for scroll snap conflicts */
.about-page #premiumScrollContainer {
    scroll-snap-type: y mandatory;
    scroll-behavior: auto;
}

/* Hide scrollbar but maintain functionality */
.about-page::-webkit-scrollbar {
    width: 0;
    display: none;
}

.about-page {
    scrollbar-width: none;
    -ms-overflow-style: none;
}



.loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    background-position: center center;
    background-size: cover;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.32s ease;
    will-change: opacity;
    min-height: 100svh;
    padding-bottom: env(safe-area-inset-bottom);
}

@keyframes fadeBackground {
    0% {
        background-color: #000;
        opacity: 1;
    }

    100% {
        background-color: #000;
        opacity: 0;
    }
}


.loader-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    background-color: #000;
    background-position: center center;
    background-size: cover;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    /* animation is triggered via JS when the logo nears the navbar */
    animation: none;
}

.loader-bg.fade-out {
    animation: fadeBackground 1.4s ease-in-out forwards;
}

.loader-logo {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1002;
}

.loader-logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 200px;
    opacity: 1;
    transition: transform 2.1s ease, top 2.1s ease, left 2.1s ease,
        height 2.1s ease, opacity 2s ease;
    filter: brightness(0) invert(1);
}

.loader-logo img.logo-fade-out {
    opacity: 0;
}

#typing-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    position: absolute;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    gap: 0.08em;
    margin-top: 30px;
}

#typing-text .letter {
    opacity: 0;
    transform: translateX(var(--start, 0px));
}

#typing-text.animate-in .letter {
    animation: loaderLetterIn 0.8s ease forwards;
    animation-delay: calc(var(--index) * 0.08s);
}

#typing-text.animate-out .letter {
    animation: loaderLetterOut 0.65s ease forwards;
    animation-delay: calc((var(--total) - var(--index)) * 0.05s);
}

@keyframes loaderLetterIn {
    0% {
        opacity: 0;
        transform: translateX(var(--start, 0px));
    }

    60% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes loaderLetterOut {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(22px);
    }
}

.loader.hide {
    opacity: 0;
}

@media (max-width:992px) {
    #typing-text {
        margin-top: 20px;
    }
}

@media (max-height: 800px) {
    #typing-text {
        top: 66%;
    }
}

@media (max-width: 767px) {
    #typing-text {
        font-size: 1rem;
    }

    .loader-logo img {
        height: 180px;
    }
}

/* Adjust loader text position on mobile to sit closer to the logo */
@media (max-width: 767px) {
    #typing-text {
        top: 62%;
        margin-top: 20px;
    }
}


@media (max-height: 700px) {
    #typing-text {
        top: 62%;
        margin-top: 20px;
    }
}

@media (max-height: 600px) {
    #typing-text {
        top: 75%;
        margin-top: 20px;
    }
}

@media (max-width: 500px) {
    #typing-text {
        font-size: 11px;
        top: 57%;

    }

    .loader-logo img {
        height: 120px;
    }


}

/* Navbar styling similar to the reference design */

.nav-link {
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #e2e2e2;
}

nav .navbar-nav {
    gap: 50px;
    justify-content: space-between !important;
    flex: 1;
}

.nav-inner .navbar-nav {
    flex: 1;
    font-size: 2px;
    padding: 0;
}

/* .nav-inner .navbar-nav:first-of-type {
    justify-content: flex-start;
    margin-right: 200px;
}

.nav-inner .navbar-nav:last-of-type {
    justify-content: flex-end;
    margin-left: 200px;
} */

.line-wrapper {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    /* top: 58px; */
    gap: 15px;
}

.line-wrapper .hr {
    width: 47%;
    height: 1px;
    background-color: white;
    transform: scaleY(0.4);
    transform-origin: center;
}

.line-wrapper img {
    width: 22px;
    height: 22px;
}

.navbar-brand {
    padding: 0;
    flex-shrink: 0;
}

.home-page .navbar-brand img {
    height: 35px;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.navbar-brand img {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 1;
    object-fit: contain;
}

.home-page .navbar-brand img[data-logo] {
    opacity: 1;
    object-fit: contain;
}

.home-page.nav-logo-ready .navbar-brand img[data-logo] {
    opacity: 1;
    object-fit: contain;
}


.nav-wrapper {
    top: 20px;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1056;
}

.nav-wrapper.nav--no-border {
    border-top: none !important;
    border-bottom: none !important;
    background-color: transparent !important;
}

/* ✅ home only border */
.nav-wrapper.nav--home-border {
    background-color: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-wrapper .container {
    padding-left: 30px;
    padding-right: 30px;
}

/* navbar menu icon  */

.menu-btn {
    border: none;
    background: transparent;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;

}



.menu-btn:focus {
    outline: none;
    box-shadow: none;
}

.menu-icon {
    position: relative;
    width: 20px;
    height: 2px;
    background-color: white;
    display: inline-block;
    transition: 0.3s ease;
}

.home-page .menu-btn {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .5s ease, background-color .5s ease, transform .5s ease, filter .5s ease;
}

.menu-icon::before,
.menu-icon::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    right: 0;
    background-color: white;
    transition: 0.3s ease;
}

.menu-icon::before {
    top: -7px;
}

.menu-icon::after {
    top: 7px;
}

.menu-btn .menu-icon {
    background-color: white;
}

.menu-btn.open .menu-icon {
    background-color: transparent;
}

.menu-btn.open .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-btn.open .menu-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Keep hover morph on devices that actually support hover (desktop),
   avoid sticky "+" state on touch/mobile. */
@media (hover: hover) {
    .menu-btn:hover .menu-icon::before {
        top: 0;
    }

    .menu-btn:hover .menu-icon::after {
        top: 0;
        transform: rotate(90deg);
    }
}

.navbar .send-icon {
    font-size: 14px;
    color: #fff;
    /* font-weight: 400; */
    /* background: #e0e0e0; */
    border-radius: 50%;
    height: 34px;
    width: 34px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

}

.navbar .send-icon i {
    font-size: 16px;
    color: #fff;
    /* font-weight: 400; */
}



.social-media-navMenu {
    margin-top: 30px;
    margin-bottom: 10px;
}

.social-media-navMenu a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(45, 42, 42);
    border: 1px solid #fff;
    transition: all 0.2s ease-in;
    text-decoration: none;
}

.social-media-navMenu a i {
    color: #fff;
    font-size: 16px;
}

.social-media-navMenu a:hover {
    background-color: #fff;
    border: 1px solid rgb(45, 42, 42);
}

.social-media-navMenu a:hover i {
    color: rgb(45, 42, 42);
}

/* offcanvas nav-menu mobile */

.offcanvas li a {
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    line-height: 0.9;
    letter-spacing: -1px;
}

.offcanvas.offcanvas-start {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    border: none;
}

.offcanvas-backdrop {
    top: 0 !important;
    z-index: 1030;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offcanvas-body .footer {
    position: fixed;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1058;
}

/*  navbar animation */

.offcanvas-body .nav-item,
.offcanvas-body .social-media-navMenu,
.offcanvas-body p {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-transform: uppercase !important;
}

.offcanvas-body p {

    font-size: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-transform: uppercase !important;

}

.offcanvas-body .navbar-nav {
    justify-content: center;
}

.nav-wrapper .navbar-nav li {
    position: relative;
}

.nav-wrapper .navbar-nav li:not(.btn-meeting)::after {
    content: "";
    position: absolute;
    display: block;
    height: 4px;
    border-radius: 4px;
    bottom: -12px;
    right: 0;
    left: 0;
    margin: 0 20px;
    background-color: #fff;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-wrapper .navbar-nav li:not(.btn-meeting):hover::after,
.nav-wrapper .navbar-nav li.active:not(.btn-meeting)::after {
    opacity: 1;
}

.nav-wrapper .navbar-nav li,
.nav-wrapper .send-icon {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

body:not(.home-page) .nav-wrapper .navbar-nav li,
body:not(.home-page) .nav-wrapper .send-icon {
    opacity: 1;
    transform: translateY(0);
}

.offcanvas-body .navbar-nav {
    gap: 0;
}

.offcanvas-body .navbar-nav .nav-link {
    padding: 0;
}

.nav-wrapper {
    transition: background-color 0.5s ease, border-top-color 0.5s ease,
        border-bottom-color 0.5s ease;
}

.navbar-brand img,
.send-icon {
    transition: filter 0.5s ease;
}

.nav-wrapper {
    transition: transform 0.4s ease;
}

.nav-hidden {
    transform: translateY(-150%);
}

.about-page .nav-wrapper {
    transition: transform 0.45s ease, opacity 0.45s ease,
        background-color 0.5s ease, border-top-color 0.5s ease,
        border-bottom-color 0.5s ease;
}

.about-page .nav-wrapper.nav-hero-hidden {
    opacity: 0;
    transform: translateY(-160%);
    pointer-events: none;
}

/* Responsive */

@media (min-width: 992px) {
    .navbar-nav {
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 992px) {
    .navbar-brand img {
        height: 45px;
    }

    .nav-link {
        color: #000000;
    }
}

/* =========================== hero section ======================= */

#heroSlider {
    background-color: #000;
}

#heroSlider .carousel-inner,
#heroSlider .carousel-item {
    background-color: #000;
}

.hero-img {
    height: 100vh;
    object-fit: cover;
    position: relative;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 80%;
    max-width: 900px;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next,
#heroSlider .carousel-indicators {
    display: none !important;
}

#heroSlider.carousel.carousel-fade .carousel-item {
    transition: opacity 1.4s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-overlay h1 {
    font-size: 60px;
    letter-spacing: 0px;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 60px;
    line-height: 1em;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    line-height: 0.8;
    padding-top: 200px;
}

.hero-overlay p.h4 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
}

.hero-overlay p.h5 {
    font-size: 21px;
    font-weight: 400;
    line-height: 0.8;
    /* width: 900px; */
}

.hero-overlay h1,
.hero-overlay p {
    color: white !important;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-overlay .btn {
    margin-top: 20px;
    font-size: 12px;
    width: 240px;
    margin-top: 70px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    color: white !important;
    transition: all 0.3s ease;
    opacity: 0;
}

/* responsive */

@media (max-width: 992px) {
    .hero-overlay h1 {
        font-size: 59px;
        letter-spacing: 3px;
    }

    .hero-overlay p.h4 {
        font-size: 27px;
    }
}

@media (max-width: 799px) {
    .hero-overlay h1 {
        font-size: 45px;
        letter-spacing: 3px;
    }

    .hero-overlay p.h4 {
        font-size: 21px;
    }

    .hero-overlay p.h5 {
        font-size: 14px;
    }
}

@media (max-width: 690px) {
    .hero-overlay h1 {
        font-size: 40px;
        letter-spacing: 3px;
    }


    .hero-overlay p.h4 {
        font-size: 19px;
    }
}

@media (max-width: 620px) {
    .hero-overlay {
        width: 95%;
    }
}

@media (max-width: 576px) {
    .hero-overlay h1 {
        font-size: 38px;
        letter-spacing: 3px;
    }

    .hero-overlay p.h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p.h5 {
        font-size: 12px;
    }

    .hero-overlay p.h4 {
        font-size: 15px;
    }

}

@media (max-width: 380px) {
    .hero-overlay h1 {
        font-size: 28px;
    }

    .hero-overlay p.h4 {
        font-size: 13px;
    }

    .hero-overlay p.h5 {
        font-size: 10px;
    }
}

@media (max-height: 800px) {
    .hero-overlay h1 {
        padding-top: 70px;
    }
}

@media (max-height: 650px) {
    .hero-overlay h1 {
        padding-top: 40px;
    }
}

@media (max-height: 580px) {
    .hero-overlay h1 {
        padding-top: 20px;
    }

    .overlay .btn {
        margin-top: 50px;
    }
}

/* Added Footer Styling */

.hero-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 10;
    /* padding-top: 12px;   */
    padding-bottom: 8px;
}

.hero-footer .container-fluid:first-child {
    position: absolute;
}

.footer-line-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 3px 0;
}

.footer-line {
    flex: 1;
    height: 1px;
    background: white;
    opacity: 0.7;
    margin: 0 10px;
}

.footer-logo img {
    height: 30px;
    margin-bottom: 0;
}

.footer-logo {
    position: fixed;
    z-index: 20000;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-footer p,
.hero-footer a {
    color: white;
    font-size: 10px;
    margin-bottom: -4px;
    margin-right: 5px;
    text-transform: uppercase !important;

}

.hero-footer .text-start {
    display: flex;
    gap: 12px;
    align-items: center;
}

.hero-footer .text-start a {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-footer .text-start a:hover {
    background-color: #fff;
}

.hero-footer .text-start i {
    color: white;
    font-size: 12px;
}

.hero-footer .text-start a:hover i {
    color: #000000;
}

.hero-overlay .btn:hover {
    background: #c2b9b982;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    /* border: none; */
    border-image: initial;
}


.nav-btn-meeting {
    color: #fff !important;
    border: none;
    padding: 10px 20px !important;
    white-space: nowrap;
}

.nav-btn-meeting:after {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    border-radius: 4px;
    bottom: 0px;
    right: 0;
    left: 0;
    top: 30px;
    margin: 0 20px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.nav-btn-meeting i {
    color: #333;
    font-size: 18px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.nav-btn-meeting:hover {
    border: 0;
    outline: none;
    color: #fff;
    box-shadow: 0;
}

/* service */

.all-projects-hero {
    margin-top: 112px;
    background-color: #000;
    color: #fff;
    padding-bottom: 50px;
    text-align: center;
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
}

.all-projects-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.all-projects-hero p {
    font-size: 16px;
    color: #a0a0a0;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.nav-tabs .nav-link {
    color: #a0a0a0;
    border: none;
    background-color: transparent;
    font-size: 20px;
    font-weight: 700;
    padding: 10px 20px;
    margin: 0 30px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #fff;
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: #fff;
    border-color: #fff;
    background-color: transparent;
}

.tab-content {
    overflow: hidden;
}

.nav-tabs .nav-item {
    position: relative;
}

.nav-tabs .nav-item:not(:last-child)::after {
    content: "|";
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .nav-tabs .nav-link {
        font-size: 16px;
        padding: 8px 10px;
        margin: 0 5px;
    }
}

@media (max-width: 992px) {
    .all-projects-hero {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .all-projects-hero h1 {
        font-size: 30px;
        letter-spacing: 3px;
    }

    .all-projects-hero p {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .hero-footer p {
        font-size: 6px;
    }

    .hero-footer .text-start a {
        width: 18px;
        height: 18px;
    }

    .hero-footer .text-start i {
        font-size: 9px;
    }

    .hero-footer {
        padding-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .nav-tabs .nav-link {
        font-size: 16px;
        padding: 8px 10px;
        margin: 0 5px;
    }
}

.interior-design-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-image: url("../../assets/img/Interior Design/Laptop Version/6.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.architecture-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-image: url("../../assets/img/architecture/Laptop Version/1-2.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.interior-design-section .design-bg-img,
.architecture-section .design-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.interior-design-section .content-overlay,
.architecture-section .content-overlay,
.about-hero-section .content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 0 15px;
}

.interior-design-section .content-overlay .container,
.architecture-section .content-overlay .container,
.about-hero-section .content-overlay .container {
    height: 100%;
    padding-bottom: 50px;
}

.interior-design-section .text-box,
.architecture-section .text-box,
.about-hero-section .text-box {
    color: white;
    max-width: 550px;
}

/* .interior-design-section .text-box h1 {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
} */

/* .interior-design-section .description-box {
    background-color: rgba(255, 255, 255, 0.95); 
    padding: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #333; 
    font-weight: 500;
    margin-bottom: 0; 
} */

.interior-design-section .text-box,
.architecture-section .text-box,
.about-hero-section .text-box {
    color: white;
    max-width: 100%;
    width: 100%;
}

.interior-design-section .text-box h1,
.architecture-section .text-box h1,
.about-hero-section .text-box h1 {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-bottom: 3px solid white;
    display: inline-block;
    padding-bottom: 5px;
    line-height: 1.2;
}

.interior-design-section .description-box,
.architecture-section .description-box,
.about-hero-section .description-box {
    background: rgba(0, 0, 0, 0.3);

    padding: 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0;

    width: 100%;
}

@media (max-width: 992px) {
    .interior-design-section .text-box {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .interior-design-section .text-box h1 {
        font-size: 40px;
        margin-bottom: 10px;
        border-bottom: 2px solid white;
        padding-bottom: 3px;
    }

    .interior-design-section .description-box {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .interior-design-section {
        height: 80vh;
    }

    .interior-design-section .text-box {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .interior-design-section .text-box h1 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .interior-design-section .description-box {
        padding: 15px;
        font-size: 14px;
    }

    .interior-design-section .content-overlay .container {
        padding-bottom: 30px;
    }
}

.cta-project-section {
    background-color: #f5f5f5;
    text-align: center;
    width: 100%;
    height: 100vh;
    padding: 0 20px;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-project-section h1 {
    font-size: 60px;
    font-weight: 900;
    color: #000;
    margin-bottom: 50px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-project-section .cta-btn {
    background-color: #000;
    color: white;
    border: none;
    padding: 12px 25px 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cta-project-section .cta-btn:hover {
    background-color: #000;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.cta-project-section .cta-btn .button-icon {
    background-color: #555;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-left: 15px;
    transition: background-color 0.3s ease;
}

.cta-project-section .cta-btn:hover .button-icon {
    background-color: #777;
}

@media (max-width:1200px) {
    .cta-project-section h1 {
        font-size: 50px;

    }
}

@media (max-width:992px) {
    .cta-project-section h1 {
        font-size: 35px;

    }
}

@media (max-width: 768px) {
    .cta-project-section {
        height: 80vh;
        padding: 0 15px;
    }

    .cta-project-section h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .cta-project-section .cta-btn {
        padding: 10px 20px 10px 25px;
        font-size: 14px;
    }

    .cta-project-section .cta-btn .button-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
        margin-left: 10px;
    }
}


@media (max-width:740px) {
    .cta-project-section h1 {
        font-size: 28px;
    }
}

@media (max-width:600px) {
    .cta-project-section h1 {
        font-size: 26px;
    }
}

@media (max-width: 540px) {
    .cta-project-section h1 {
        font-size: 23px;
    }
}

@media (max-width: 490px) {
    .cta-project-section h1 {
        font-size: 20px;
    }
}

@media (max-width: 440px) {
    .cta-project-section h1 {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .cta-project-section h1 {
        font-size: 16px;
    }
}

@media (max-width: 370px) {
    .cta-project-section h1 {
        font-size: 14px;
    }
}

/* ---------------------------------- */
/* ABOUT PAGE HERO SECTION  */
/* ---------------------------------- */

.about-hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: stretch;
    min-height: 100vh;
    padding: clamp(28px, 6vw, 48px) 0;
    background: #f2f0f0;
    overflow: hidden;
    color: #111111;
    --grid-cols: 6;
    --grid-rows: 6;
    --grid-line: rgba(0, 0, 0, 0.16);
    --grid-opacity: 0.42;
    padding-top: 0;
}

/* .about-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(to right,
            var(--grid-line),
            var(--grid-line) 1px,
            transparent 1px,
            transparent calc(100% / var(--grid-cols))),
        repeating-linear-gradient(to bottom,
            var(--grid-line),
            var(--grid-line) 1px,
            transparent 1px,
            transparent calc(100% / var(--grid-rows)));
    background-position: 0 0;
    opacity: var(--grid-opacity);
    pointer-events: none;
} */

.about-hero-inner {
    position: relative;
    /* width: min(1320px, 92%); */
    width: 100%;
    height: 100dvh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, minmax(0, 1fr));
}

.about-hero-inner .line-left {
    position: absolute;
    left: 155px;
    content: "";
    top: -80px;
    width: 1px;
    height: 140%;
    background: #8f8f8f;



    opacity: 0.5;

    /* IMPORTANT */
    display: block;
    transform-origin: top center;
    transform: scaleY(0);

    /* animation: hero-line-reveal-y 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards; */
    animation: hero-line-reveal 1.1s ease-out forwards;

    animation-delay: 0.78s;
    /* sync with text */

}

/* .about-hero-inner .line-left{
    content: "";
    position: absolute;
    inset: 0;

    background: #8f8f8f;
    opacity: 0.5;

    transform-origin: top center;
    transform: scaleY(0);

    animation: drawLineY 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.78s;

    will-change: transform;
} */

/* 
.about-hero-inner::before{
    position: absolute;
    right: 267px;
    content: "";
    top: -80px;
    width: 1px;
    opacity: 0.5;
    height: 140%;
    background: #8f8f8f;
} */
.hero-wordmark {
    grid-column: 6 / span 2;
    grid-row: 2;
    justify-self: center;
    align-self: start;
    text-transform: uppercase;
    font-size: clamp(18px, 1.45vw, 24px);
    line-height: 1.1;
    letter-spacing: 1.2px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-14px) scale(0.98);
    animation: hero-wordmark-reveal 0.95s ease-out forwards;
    animation-delay: 0.25s;
}


@media screen and (min-width:992px) {
    .hero-wordmark img {
        width: 150px;
        height: 70px;
        object-fit: contain;
    }
}

@media screen and (min-width:992px) {
    .hero-mark img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }
}

.hero-wordmark .wordmark-strong {
    display: block;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.hero-creator-title {
    grid-column: 2 / span 3;
    grid-row: 4 / span 3;
    align-self: center;
    justify-self: start;
    margin: 0;
    font-size: clamp(62px, 11vw, 150px);
    line-height: 0.50;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 800;
    color: #1c1c1c;
    position: relative;

}


@media screen and (min-width:1200px) {
    .hero-creator-title {
        padding-top: 13px;
        padding-bottom: 9px;
    }
}

/* TESTING */

/* Match the exact feel of .hero-slogan .slogan-script (0.95s ease-out, delay 0.78s)
   but vertically (top/bottom) */
/* === HERO CREATOR: smooth vertical reveal (match .hero-slogan .slogan-script timing) === */
.hero-creator-title {
    --creator-dur: 0.95s;
    --creator-delay: 0.78s;
    --creator-ease: ease-out;
    --creator-offset: 24px;
}

.hero-creator-title .word,
.hero-creator-title .word-span {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

/* keep your typography exactly (from your existing block) */
.hero-creator-title .word-span {
    font-weight: 300;
    font-size: 95px;
}

/* WE'RE from top */
.hero-creator-title .word {
    transform: translate3d(0, calc(var(--creator-offset) * -1), 0);
    animation: creatorInTop var(--creator-dur) var(--creator-ease) both;
    animation-delay: var(--creator-delay);
}

/* CREATORS from bottom */
.hero-creator-title .word-span {
    transform: translate3d(0, var(--creator-offset), 0);
    animation: creatorInBottom var(--creator-dur) var(--creator-ease) both;
    animation-delay: var(--creator-delay);
}

@keyframes creatorInTop {
    0% {
        opacity: 0;
        transform: translate3d(0, calc(var(--creator-offset) * -1), 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes creatorInBottom {
    0% {
        opacity: 0;
        transform: translate3d(0, var(--creator-offset), 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* TESTING */
.hero-creator-title .line-center {
    position: absolute;
    left: 0;
    content: "";
    width: 100vw;
    top: -3px;
    height: 1px;
    opacity: 0.5;
    background: #8f8f8f;
    transform-origin: left center;
    transform: scaleX(0);
    animation: hero-line-reveal 1.1s ease-out forwards;
    animation-fill-mode: forwards;

}

.line-left-side {
    position: absolute;
    left: 0px;
    content: "";
    top: -270px;
    width: 1px;
    height: 150dvh;
    background: #8f8f8f;
    opacity: 0.5;
    display: block;
    transform-origin: top center;
    transform: scaleY(0);
    /* animation: hero-line-reveal-y 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards; */
    animation: hero-line-reveal 1.1s ease-out forwards;
    animation-delay: 0.78s;
}

/*  */
.hero-creator-title::after {
    position: absolute;
    left: -215px;
    content: "";
    width: 140%;
    bottom: -3px;
    height: 1px;
    opacity: 0.5;
    background: #8f8f8f;
}


.hero-creator-title::before {
    position: absolute;
    right: 6px;
    content: "";
    bottom: -55dvh;
    height: 110dvh;
    width: 1.5px;
    opacity: 0.5;
    background: #8f8f8f;
}

.hero-creator-title .word {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    will-change: transform, opacity;
    animation: heroInTop 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.78s;
}

.hero-creator-title .word-span {
    font-weight: 300;
    font-size: 95px;
    opacity: 0;
    display: inline-block;
    width: 100%;
    will-change: transform, opacity;
    animation: heroInBottom 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.78s;
}

@keyframes hero-line-reveal {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    100% {
        transform: scaleX(1);
        opacity: 0.5;
    }
}

@keyframes heroInTop {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes heroInBottom {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes hero-wordmark-reveal {
    0% {
        opacity: 0;
        transform: translateY(-16px) scale(0.96);
    }

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

@keyframes hero-mark-reveal {
    0% {
        opacity: 0;
        transform: translateY(22px) scale(0.96);
    }

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

@keyframes hero-desc-reveal {
    0% {
        opacity: 0;
        transform: translateX(-28px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-slogan-reveal {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-slogan-main {
    0% {
        opacity: 0;
        transform: translateX(26px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-slogan-sub {
    0% {
        opacity: 0;
        transform: translateX(-22px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hero-slogan-script {
    0% {
        opacity: 0;
        transform: translateX(24px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* @media (prefers-reduced-motion: reduce) {
    .hero-creator-title .line-center,
    .hero-creator-title .word,
    .hero-creator-title .word-span,
    .hero-wordmark,
    .hero-mark,
    .hero-description,
    .hero-slogan,
    .hero-slogan .slogan-main,
    .hero-slogan .slogan-sub,
    .hero-slogan .slogan-script {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .hero-creator-title .line-center {
        opacity: 0.5;
    }
} */

.hero-description {
    grid-column: 2 / span 6;
    grid-row: 11 / span 2;
    align-self: start;
    margin: 0;
    max-width: 540px;
    font-size: clamp(10px, 1vw, 12px);
    letter-spacing: 0.2px;
    line-height: .98;
    color: #000000;
    text-transform: uppercase;
    text-align: justify;
    font-weight: 500;
    position: relative;
    max-width: 517px;
    opacity: 0.5 !important;
    transform: translateX(-24px);
    animation: hero-desc-reveal 1s ease-out forwards;
    animation-delay: 0.35s;
}

.hero-description::before {
    position: absolute;
    left: -186px;
    content: "";
    width: 136%;
    top: -3px;
    height: 1px;
    opacity: 0.5;
    background: #8f8f8f;
}

.hero-description::after {
    position: absolute;
    left: -195px;
    content: "";
    width: 238vh;
    bottom: 0px;

    height: 1px;
    opacity: 0.5;
    background: #8f8f8f;
}


@media screen and (max-width:450px) {
    .hero-description::after {
        bottom: -1px;
    }
}

.hero-slogan {
    grid-column: 10 / span 4;
    grid-row: 10 / span 2;
    align-self: end;
    justify-self: start;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-transform: uppercase;

    position: relative;
    opacity: 0;
    transform: translateX(26px);
    animation: hero-slogan-reveal 0.9s ease-out forwards;
    animation-delay: 0.42s;
}

.hero-slogan .line-2 {
    position: absolute;
    right: 0;
    top: -90vh;

    width: 1px;
    height: 150vh;

    background: #8f8f8f;
    opacity: 0.5;

    /* IMPORTANT */
    display: block;
    transform-origin: top center;
    transform: scaleY(0);

    /* animation: hero-line-reveal-y 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards; */
    animation: hero-line-reveal 1.1s ease-out forwards;

    animation-delay: 0.78s;
    /* sync with text */
}



@keyframes hero-line-reveal-y {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    100% {
        transform: scaleY(1);
        opacity: 0.5;
    }
}

.hero-slogan::after {
    position: absolute;
    left: 0;
    content: "";
    bottom: 24px;
    height: 100dvh;


    width: 1px;
    opacity: 0.5;
    background: #8f8f8f;
}

.hero-slogan::before {
    position: absolute;
    left: 58px;
    content: "";
    bottom: 22px;
    height: 100dvh;
    width: 1px;
    opacity: 0.5;
    background: #8f8f8f;
}

.hero-slogan .slogan-main {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 400;
    letter-spacing: 0.6px;
    color: #1f1f1f;
    /* line-height: 1; */
    line-height: 0.5;
    opacity: 0;
    transform: translateX(22px);
    animation: hero-slogan-main 0.85s ease-out forwards;
    animation-delay: 0.52s;
}

.hero-slogan .slogan-sub {
    font-size: clamp(12px, 1.7vw, 18px);
    font-weight: 300;
    letter-spacing: 3px;
    color: #7b7b7b;
    line-height: 1.5;
    text-align: end;
    opacity: 0;
    transform: translateX(-18px);
    animation: hero-slogan-sub 0.9s ease-out forwards;
    animation-delay: 0.64s;
}


.slogan-sub::after {
    position: absolute;
    left: 0;
    content: "";
    top: -0px;
    width: 100dvh;

    height: 1px;
    opacity: 0.5;
    background: #8f8f8f;
}

@media screen and (max-width:450px) {
    .slogan-sub::after {

        top: -3px;

    }
}



.hero-slogan .slogan-script {
    font-family: "HolidayFree", "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 1px;
    color: #1e1e1e;
    margin-top: 2px;
    line-height: 1.1;
    text-align: end;
    opacity: 0;
    transform: translateX(18px);
    animation: hero-slogan-script 0.95s ease-out forwards;
    animation-delay: 0.78s;
}

@media screen and (min-width:1200px) {
    .hero-slogan .slogan-script {
        top: -4px;
        position: relative;

    }
}

.hero-mark {
    grid-column: 6 / span 2;
    grid-row: 12;
    align-self: end;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: clamp(12px, 2vw, 18px);
    color: #1f1f1f;
    text-decoration: none;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    animation: hero-mark-reveal 0.9s ease-out forwards;
    animation-delay: 0.5s;




    position: absolute;
    bottom: clamp(16px, 8vh, 39px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.hero-mark .mark-bar {
    width: 1px;
    height: clamp(32px, 6vh, 46px);
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-mark .mark-icon {
    position: relative;
    width: clamp(20px, 2.5vw, 28px);
    height: clamp(32px, 5vh, 44px);
}

.hero-mark .mark-icon::before,
.hero-mark .mark-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.hero-mark .mark-icon::before {
    transform: translate(-65%, 0);
}

.hero-mark .mark-icon::after {
    transform: translate(-35%, 0) skewX(-18deg);
}

@media (max-width: 1200px) {
    .about-hero-section {
        --grid-cols: 6;
        --grid-rows: 7;
        --grid-opacity: 0.4;
    }

    .hero-creator-title {
        grid-column: 2 / span 8;
    }

    .hero-description {
        grid-column: 2 / span 8;
    }
}

/* @media (max-width: 992px) {
    .about-hero-inner {
        grid-template-columns: repeat(10, 1fr);
        grid-template-rows: repeat(14, minmax(0, 1fr));
    }

    .hero-wordmark {
        grid-column: 5 / span 2;
        grid-row: 2;
    }

    .hero-creator-title {
        grid-column: 2 / span 8;
        grid-row: 6 / span 3;
        font-size: clamp(54px, 14vw, 110px);
    }

    .hero-description {
        grid-row: 12 / span 2;
        max-width: 100%;
    }

    .hero-slogan {
        grid-column: 6 / span 5;
        grid-row: 11 / span 2;
        align-self: center;
    }

    .hero-mark {
        grid-column: 5 / span 2;
        grid-row: 14;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: clamp(22px, 6vw, 36px) 0;
        --grid-cols: 6;
        --grid-rows: 8;
        --grid-opacity: 0.38;
    }

    .about-hero-inner {
        width: min(1180px, 94%);
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(16, minmax(0, 1fr));
    }

    .hero-wordmark {
        grid-column: 4 / span 2;
        grid-row: 2;
        align-self: start;
    }

    .hero-creator-title {
        grid-column: 2 / span 6;
        grid-row: 7 / span 3;
        font-size: clamp(46px, 15vw, 94px);
        line-height: 0.92;
    }

    .hero-description {
        grid-column: 2 / span 6;
        grid-row: 13 / span 2;
        font-size: 10px;
    }

    .hero-slogan {
        grid-column: 5 / span 4;
        grid-row: 12 / span 2;
    }

    .hero-mark {
        grid-column: 4 / span 2;
        grid-row: 16;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        --grid-cols: 6;
        --grid-rows: 9;
        --grid-opacity: 0.36;
    }

    .hero-creator-title {
        grid-column: 2 / span 6;
        grid-row: 6 / span 4;
        font-size: clamp(38px, 15vw, 76px);
    }

    .hero-description {
        grid-column: 2 / span 6;
        grid-row: 14 / span 2;
        line-height: 1.4;
    }

    .hero-slogan {
        grid-column: 4 / span 5;
        grid-row: 12 / span 2;
        align-self: end;
    }

    .hero-mark {
        grid-column: 3 / span 4;
        grid-row: 16;
        gap: 12px;
    }
}

@media (max-width: 420px) {
    .about-hero-inner {
        grid-template-rows: repeat(18, minmax(0, 1fr));
    }

    .hero-creator-title {
        grid-row: 7 / span 4;
        font-size: clamp(32px, 15vw, 64px);
    }

    .hero-description {
        grid-row: 15 / span 3;
        font-size: 9px;
    }

    .hero-slogan .slogan-main {
        font-size: 20px;
    }

    .hero-slogan .slogan-sub {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .hero-slogan .slogan-script {
        font-size: 18px;
    }
} */

.view-profile-btn {
    background-color: #000;
    color: white !important;
    border: none;
    padding: 12px 25px 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 20px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-profile-btn:hover {
    background-color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.view-profile-btn .button-icon {
    background-color: #555;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.view-profile-btn .button-icon i {
    color: white;
    font-size: 14px;
}

.view-profile-btn:hover .button-icon {
    background-color: #777;
}

.insights-section {
    margin: 40px 0;
}

.insight-card {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.insight-card p {
    text-align: center;
}

.insight-card .insight-num {
    font-size: 50px;
    font-weight: 700;
    background-color: #bda046;
    width: 100%;
    color: #fff;
    padding: 30px 0;
}

.insight-card .insight-desc {
    font-size: 22px;
}

.insight-card .insight-desc span {
    font-weight: 700;
}

/* 
.teams-section {
    position: relative;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.20) 100%),
        url("../img/teams/board-team/boardmember3.jpg") center center/cover no-repeat;
    color: #fff;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
}

.teams-section .container {
    padding-top: 90px;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
}

.logos .container,
.logos .container-fluid {
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    z-index: 2;
}

.team-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: -30px;
    border-left: 4px solid #c2a85f;
    padding-left: 14px;
    text-transform: uppercase;

}

.team-card {
    height: 100%;
    position: relative;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.team-card::after {
    position: absolute;
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
    inset: 0;

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

.team-card:hover::after {
    opacity: 1;
}

.team-card .team-info {
    position: absolute;
    bottom: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    padding: 10px;
    color: #fff;
    z-index: 4;
}

.team-info .team-name {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.keyTeam-card .team-info .team-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.team-info .team-position {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 15px;
}

.team-info .team-desc {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    max-width: 600px;
    opacity: 0.9;
}

.team-card:hover .team-info {
    transform: translateY(0px);
    opacity: 1;
}

.team-card .team-info .team-desc {
    font-size: 14px;
}

.team-grid {
    margin-top: 20px;
}

.team-profile {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 18px 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-profile .team-name {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.team-profile .team-position {
    font-size: 16px;
    font-weight: 600;
    color: #f2f0f0;
    margin-bottom: 12px;
}

.team-profile .team-desc {
    font-size: 14px;
    color: #e6e6e6;
    line-height: 1.6;
    margin-bottom: 14px;
    flex-grow: 1;
}

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

.team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: all 0.25s ease;
}

.team-social a:hover {
    background: #fff;
    color: #000;
}

.team-social i {
    font-size: 16px;
} */

/* ===========================
   BOARD MEMBERS – FINAL STYLE
=========================== */

.teams-section {
    min-height: 100vh;

    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.35) 0%,
            rgba(0, 0, 0, 0.20) 100%),
        url("../img/teams/board-team/boads.png") center/cover no-repeat;
    display: flex;
    padding: 60px 0;
}

.teams-section .container {
    flex-direction: column;
    justify-content: space-between;
}

.team-grid {
    margin-top: 30rem;
}


.team-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-top: 40px;
    text-transform: uppercase;
    display: flex;
    align-items: end;
    gap: 8px;
    line-height: 0.8;

}

.team-title img {
    width: 9px;
    height: 35px;
}


.team-title2 {
    color: #1a1a1a
}

/* ===== WRAPPER ===== */
.team-member {
    display: flex;
    flex-direction: column;
}

/* ===== META (NAME + SOCIAL) ===== */
/* .team-meta {
    margin-bottom: 10px;
} */

.team-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 12px; */
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
}

/* ===== POSITION ===== */
.team-position {
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
    margin-top: 4px;
}

/* ===== SOCIAL ICONS ===== */
.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    /* width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: all .25s ease;
}

/* ====== CARD (DESC ONLY) ====== */
.team-card {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 15px 15px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
    min-height: 100px;
}

.team-desc {
    font-size: 14px;
    line-height: 1.2;
    color: #eaeaea;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 991px) {
    .teams-section {
        padding-bottom: 80px;
    }

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




}

@media (max-width: 575px) {
    .team-meta {
        text-align: center;
    }

    .team-social {
        justify-content: center;
    }
}

@media (max-width:480px) {
    .team-title {
        font-size: 26px;
    }
}

/* Achievement section */
.achievement-section {
    background: #f5f5f5;
    padding: 80px 0 100px;
    --achievement-card-min-height: 260px;
    --achievement-icon-size: 44px;
}

.achievement-header h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.achievement-counter-card {
    /* background: #fff; */
    /* border: 1px solid #ededed; */
    /* border-radius: 12px; */
    padding: 20px 16px;
    /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* min-height: var(--achievement-card-min-height); */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.achievement-counter {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #000;
}

.achievement-counter::after {
    content: "+";
    margin-left: 4px;
}

.achievement-desc {
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
}

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

.icon-row {
    /* margin-top: 26px; */
}

.achievement-icon-card {
    /* background: #fff; */
    /* border: 1px solid #ededed; */
    border-radius: 12px;
    padding: 18px 16px 22px;
    /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05); */
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateY(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* min-height: var(--achievement-card-min-height); */
    height: 100%;
    text-align: center;
}

.achievement-icon-card.show {
    opacity: 1;
    transform: translateY(0);
}

.achievement-icon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #111;
    font-size: var(--achievement-icon-size);
    margin-bottom: 12px;
    width: 88px;
    height: 88px;
    line-height: 1;
    flex-shrink: 0;
}

.area-wrap {
    position: relative;
}

.area-wrap .area-icon {
    border: 2px solid #111;
    padding: 14px 18px 12px;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}

.area-wrap i.fa-arrow-up-right {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 16px;
}

.area-wrap i.fa-arrow-down-left {
    position: absolute;
    bottom: -10px;
    left: -10px;
    font-size: 16px;
}

.stars-wrap {
    position: relative;
    padding: 8px 12px;
}

.stars-wrap .fa-user {
    font-size: var(--achievement-icon-size);
}

.stars-wrap .stars {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    font-size: 14px;
}

.stars-wrap .stars :last-child {
    margin-top: 8px;
}

.stars-wrap .stars :first-child {
    margin-top: 8px;
}

.stars-wrap .heart-icon {
    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
}

.icon-desc {
    font-size: 14px;
    color: #444;
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
}

.achievement-section.js-animate .achievement-counter,
.achievement-section.js-animate .achievement-desc,
.achievement-section.js-animate .icon-desc,
.achievement-section.js-animate .icon-wrap {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.achievement-section.achievement-synced .achievement-counter,
.achievement-section.achievement-synced .achievement-desc,
.achievement-section.achievement-synced .icon-desc,
.achievement-section.achievement-synced .icon-wrap {
    opacity: 1;
    transform: translateY(0);
}

.team-profile-mobile {
    height: 100%;
}

.team-profile-mobile .team-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.team-profile-mobile .team-position {
    margin: 0;
    /* flex-grow: 1; */


}

@media screen and (max-width:450px) {
    .team-profile-mobile .team-position {
        flex-grow: unset;
    }
}

.team-profile-mobile .team-social-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.team-profile-mobile .team-social-mobile a {
    color: #fff;
    font-size: 14px;
}

@media (max-width: 992px) {
    .teams-section {
        padding-top: 60px;
        align-items: start;
        justify-content: center;
    }

    .achievement-section {
        padding: 70px 0 80px;
    }

    .achievement-counter-card {
        /* min-height: 160px; */
    }


    .teams-section {
        /* background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.35) 0%,
                rgba(0, 0, 0, 0.20) 100%),
            url("../img/teams/board-team/PICWEP444.jpg") bottom / contain no-repeat; */

        background:
            url("../img/teams/board-team/PICWEPboard2.jpg") bottom / cover no-repeat;

    }

    .team-position {
        line-height: 1;
        font-size: 10px;
    }


}

@media (max-width: 767px) {
    .teams-section {
        /* padding-top: 200px; */
        align-items: start;
        justify-content: center;
    }

    .achievement-header h3 {
        font-size: 28px;
    }

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

    .team-profile-mobile .team-name {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .teams-section {
        /* padding-bottom: 300px; */
        align-items: center;
        justify-content: center;
    }

    .team-profile-mobile {
        font-size: 14px;
    }

    .team-profile-mobile .team-name {
        font-size: 14px;
    }

    .achievement-header {
        padding: 0 8px;
    }
}

@media (max-width: 576px) {
    .achievement-section {
        padding: 60px 0 70px;
    }
}

@media (max-width: 499px) {
    .team-profile-mobile {
        font-size: 10px;
    }

    .team-profile-mobile .team-name {
        font-size: 10px;
    }

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

@media (max-width: 400px) {
    .team-profile-mobile {
        font-size: 10px;
    }

    .team-profile-mobile .team-name {
        font-size: 10px;
    }
}

/* Team slider (light) */
.team-swiper-section {
    padding: 120px 0 90px;
    background: radial-gradient(circle at 12% 18%,
            #eef3ff 0%,
            #ffffff 42%,
            #ffffff 100%);
}

.team-swiper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.team-swiper-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f0f0f;
    margin: 0;
    text-transform: uppercase;

}

.team-swiper-title img {}

.all-team-link {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.all-team-link:hover {
    text-decoration: underline;
}

.teamSwiper {
    padding-bottom: 26px;
    overflow: visible;
}

.teamSwiper .swiper-slide {
    height: auto;
    width: calc((100% - 44px) / 3) !important;
    flex: 0 0 auto;
    display: flex;
}

.teamSwiper .swiper-wrapper {
    align-items: stretch;
}

.team-card-v2 {
    background: #fff;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    /* min-height: 100%; */
    position: relative;
    /* overflow: hidden; */
    transition: box-shadow 0.35s ease, border-color 0.35s ease,
        transform 0.35s ease;
    transform: scale(1);
    width: 100%;
}

.team-card-v2:hover {
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
    border-color: #d9d9d9;
    transform: scale(1.035);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.35s ease;
}

.team-card-body {
    padding: 16px 18px 42px;
}

.team-card-name {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 700;
    color: #0f0f0f;
}

.team-card-role {
    margin: 0;
    font-size: 14px;
    color: #6f6f6f;
}

.team-card-arrow {
    position: absolute;
    bottom: 84px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease;
}

.teamSwiper .swiper-slide-active .team-card-v2 {
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.16);
    border-color: #d3d3d3;
}

.teamSwiper .swiper-slide {
    overflow: visible;
}

.team-swiper-wrapper {
    position: relative;
}

.team-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #dedede;
    background: transparent;
    color: #7e7676;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease,
        box-shadow 0.2s ease;
    z-index: 2;
}

.team-nav-btn.team-prev {
    left: -30px;
}

.team-nav-btn.team-next {
    right: -30px;
}

.team-nav-btn:hover {
    background: #dedede;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.18);
}

.team-nav-btn:focus-visible {
    outline: 2px solid #c2a85f;
    outline-offset: 3px;
}

.teamSwiper .swiper-slide.featured .team-photo {
    aspect-ratio: 5 / 4;
}

.teamSwiper .swiper-slide.featured .team-card-name {
    font-size: 26px;
}

@media (max-width: 1200px) {
    .teamSwiper .swiper-slide {
        width: calc((100% - 20px) / 2) !important;
    }

    .team-card-name {
        font-size: 22px;
    }

    .team-card-body {
        padding: 14px 16px 38px;
    }

    .team-nav-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .team-nav-btn.team-prev {
        left: -14px;
    }

    .team-nav-btn.team-next {
        right: -14px;
    }
}

@media (max-width: 992px) {
    .team-swiper-section {
        padding: 90px 0 70px;
    }

    .teamSwiper {
        padding-bottom: 10px;
    }

    .team-nav-btn {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 767px) {
    .team-swiper-title {
        font-size: 28px;
    }

    .teamSwiper .swiper-slide {
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .teamSwiper .swiper-slide {
        width: 100% !important;
    }

    .team-swiper-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .team-card-name {
        font-size: 20px;
    }

    .team-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .team-nav-btn.team-prev {
        left: -2%;
    }

    .team-nav-btn.team-next {
        right: -2%;
    }
}

@media (max-width: 992px) {
    .teams-section .container {
        padding-top: 120px;
        padding-bottom: 90px;
    }

    .logos .container,
    .logos .container-fluid {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .team-profile {
        text-align: center;
    }
.team-social {
        justify-content: center;
    }
    .logo-swiper .swiper-slide {
        width: 30% !important;
    }
}

.logos {
    background: #f5f5f5;
}

.logo-rail {
    border-radius: 16px;
    padding: 16px 12px 6px;
}



.logo-rail__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 0px 10px;
    border-bottom: 1px solid #ededed;
}

/* .logo-rail__title {
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 36px;
    color: #1a1a1a;
  
    padding-left: 14px;
} */

.logo-swiper {
    padding: 6px 4px 18px;
}

.logo-swiper .swiper-slide {
    width: auto !important;
}

.swiper-logo .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 28px;
    min-width: 170px;
}

.swiper-logo .logo img {
    height: 70px;
    object-fit: contain;
    width: 135px !important;
}

@media (max-width: 768px) {
    .logo-rail {
        padding: 14px 10px 6px;
    }

    /* .logo-rail__header {
        padding: 0 8px 8px;
    } */

    .logo-rail__title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .swiper-logo .logo {
        padding: 14px 18px;
        min-width: 140px;
    }

    .swiper-logo .logo img {
        height: 60px;
    }
}

@media (max-width: 500px) {
    .logo-rail__title {
        font-size: 20px;
        letter-spacing: 1px;
    }
}

/* news swiper */
.news {
    position: absolute;
    top: 9%;
    left: 2%;
    right: 0;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
}

.news-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}



.news-container {
    padding: 10px;
    color: #fff;
    height: 90px;


}


.news-container {
    max-width: 1075px !important
}

.news-text {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 16px;
    color: #fff;
    padding: 8px;
    line-height: 17px;
}

@media screen and (max-width:450px) {
    .news-text {
        font-size: 11px;
        line-height: 10px;
    }
}

.news-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #fff;
}

.news-card p {
    margin: 0;
    padding: 10px;
    font-weight: 500;
}

@media screen and (max-width:450px) {

    .news-card p {
        font-size: 12px;
    }

}

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

.news-swiper {
    width: 66%;
    margin: 0;
}

.swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
    height: 100%;
}


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

.news-swiper .swiper-slide {
    width: auto;
}

.news-swiper {
    border-right: 8px solid rgba(0, 0, 0, 0.2);
    height: 75%;
}

@media (max-height: 800px) {
    .news {
        top: 12%;
    }
}

@media (max-height: 650px) {
    .news {
        top: 14%;
    }
}

@media (max-height: 500px) {
    .news {
        top: 16%;
    }
}

/* =========================== project page ======================== */

.project-section .tabs {
    margin-top: 112px;
}

.tabs {
    display: flex;
    justify-content: center;
    font-family: Arial, sans-serif;
    margin-bottom: 93px;
    flex-wrap: wrap;
    padding-top: 35px;
}

.tab-link {
    border: none;
    background: none;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    color: rgba(0, 0, 0, 0.3);
    padding: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    line-height: 30px;
}

.tab-link:nth-child(2)::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.tab-link:nth-child(2):hover::after,
.tab-link:nth-child(2).active::after {
    background-color: #000;
}

.first-tab {
    flex-basis: 100%;
}

.tab-link.active,
.tab-link:hover {
    color: #000;
}

/* tab panes */
.tab-pane {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.tab-pane.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.bento-item {
    height: auto;
    overflow: hidden;
    position: relative;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

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

.project-info-layer {
    position: absolute;
    opacity: 0;
    bottom: 0px;
    transform: translateY(50px);
    transition: all 0.5s ease;
    width: 100%;
    color: #fff;
    padding: 16px 10px;
    pointer-events: none;

    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.55) 100%);
    display: flex;
    justify-items: center;
    justify-content: center;
}

.project-info-layer p {
    margin: 0;
    font-weight: 500;
    font-size: 26px;
    text-align: center;
}

.bento-item:hover .project-info-layer {
    opacity: 1;
    transform: translateY(0px);
}

.bento-item.wide {
    grid-column: span 3;
}

.bento-item.small {
    grid-column: span 2;
}

/* .animate-on-scroll {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: scale(1);
} */

.animate-on-scroll {
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.show {
    opacity: 1;
    transform: scale(1.05);
}

.news-img:hover img,
.bento-item:hover img,
.animate-on-scroll.show:hover {
    transform: scale(1.2);
    transition: transform 0.7s ease-out;
}

@media (max-width:992px) {
    .project-info-layer{
        transform: none;
    opacity: 1;
    }
}

@media (max-width: 767px) {
    .tabs {
        flex-direction: column;
    }

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

    .bento-item.wide,
    .bento-item.small {
        grid-column: span 3;
    }

    .tab-link:nth-child(2)::after {
        display: none;
    }
}

/* ========================= single project page ========================== */
.single-project-section {
    min-height: 100vh;
}

.single-project-wrapper {
    position: absolute;
    top: 130px;
    margin-left: 150px;
    width: 480px;

}

.single-project-card,
.single-news-section .single-news-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 12px;
    width: 100%;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;

}

.project-content {
        flex: 1;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #a0a0a0 transparent;
    background-color: transparent;
    padding-right: 30px;
    font-size: 12px;
    line-height: 1.2;
        text-align: justify;
}


/* Chrome, Edge, Safari */
.single-project-card::-webkit-scrollbar,
.single-news-section .single-news-card::-webkit-scrollbar {
    width: 6px;
}

.single-project-card::-webkit-scrollbar-track,
.single-news-section .single-news-card::-webkit-scrollbar-track {
    background: transparent;
}

.single-project-card::-webkit-scrollbar-thumb,
.single-news-section .single-news-card::-webkit-scrollbar-thumb {
    background-color: #a0a0a0;
    border-radius: 10px;
}

.single-project-card::-webkit-scrollbar-thumb:hover {
    background-color: #8a8a8a;
}

.single-project-wrapper .project-title {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    word-break: break-word;
}

.projects-desc {
    font-size: 12px;
    text-align: justify;
    line-height: 1.2;
}

.project-info h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
    padding-bottom: 10px;
}

.project-info p {
    font-size: 14px;
    color: #444;
    margin: 5px 0;
    padding-bottom: 8px;
}
.project-info span {
    font-weight: 600;
    color: #000;
    margin-right: 8px;
    text-transform: uppercase;
}


.breadcrumb-item+.breadcrumb-item::before {
    content: var(--bs-breadcrumb-divider, "|");
}


.carousel-control-prev {
    left: -4% !important;
    opacity: 1;
}


.carousel-control-next {
    right: -4% !important;
    opacity: 1;
}



@media (max-width:992px) {
    .single-project-wrapper {
        margin-left: 100px;
        margin-right: 0;
        width: 420px;
    }

    .single-project-wrapper .project-title {
        font-size: 30px;
    }

    .projects-desc {
      
        text-align: justify;
        margin-bottom: 0;
    }

    .project-header {
        margin-top: 130px;
        padding: 20px;
        text-align: justify;
        line-height: 1.2;
        font-size: 10px;
    }

    .project-info {
        padding: 20px;
    }

    .project-title {
        margin: 0;

        font-weight: 700;
    }

 

    .project-info p {
   
        padding-bottom: 0;
        margin: 0;
    }

}


@media (max-width:768px) {
    .single-project-wrapper {
        left: 50%;
        transform: translateX(-50%);
        margin: auto;
        width: 92%;
    }

    .project-content {
        position: relative;
        scrollbar-width: none;
        padding-right: 22px;
    }


}

@media (max-width:550px) {
    .single-project-wrapper .project-title {
        font-size: 32px;
    }
}


@media (max-width:500px) {
    /* .single-project-wrapper .project-title {
        font-size: 30px;
    } */

       .projects-desc {
        font-size: 10px;
        margin-bottom: 0;
        padding-top: 20px;
        line-height: 1.2;
    }
   .project-info p {
        font-size: 12px;
        padding-bottom: 0;
        margin: 0;
        line-height: 1.2;
    }

    .project-title {
        font-size: 21px;
    }

}

/* @media (max-width:450px) {
    .single-project-wrapper .project-title {
        font-size: 28px;
    }
} */

@media (max-width:420px) {
    /* .single-project-wrapper .project-title {
        font-size: 26px;
    } */

    .project-info h3 {
        font-size: 24px;
    }

     .project-title {
        font-size: 21px;
    }
}

@media (max-width:390px) {
    /* .single-project-wrapper .project-title {
        font-size: 24px;
    } */

    .project-info h3 {
        font-size: 22px;
    }

    .project-title {
        font-size: 22px;
    }
}

/* @media (max-width:360px) {
    .single-project-wrapper .project-title {
        font-size: 22px;
    }

    .project-info h3 {
        font-size: 18px;
    }
} */



/* ===========================   lets talk section ===================== */

.lets-talk-section {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100svh;

    background-color: #f2f0f0;
    z-index: 99999;
    opacity: 0;
    transform: translateX(100%);
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: transform 0.6s ease, opacity 0.6s ease, background-color 0.6s ease;
    pointer-events: none;
    visibility: visible;
    display: none;
    padding-bottom: env(safe-area-inset-bottom);

}

.lets-talk-section.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.lets-talk-section.hide {
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
}

.lets-talk-section .lets-talk-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
}

.lets-talk-section .lets-talk-text h1 {
    font-size: 8rem;
    font-weight: 600;
    letter-spacing: -0.208rem;
    text-transform: uppercase;
}

.form-title {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-desc {
    margin-bottom: 30px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: -0.024rem;
    line-height: 100%;
    text-transform: uppercase;
}

.lets-talk-section .form-step input {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 2rem;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: transparent;
}

.lets-talk-section .form-step input:focus {
    outline: none;
    border-bottom: 1px solid #ccc;
}


/* Remove browser autofill background color (Chrome / Edge / Safari) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: inherit;
    /* keep your text color */
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    /* kill the fill */
    box-shadow: 0 0 0px 1000px transparent inset !important;
    transition: background-color 9999s ease-out 0s;
    /* prevent flash */
}

/* If your inputs have a specific background, replace transparent with it:
   e.g. 0 0 0px 1000px #0b0b0b inset !important;
*/


.lets-talk-section .form-step label {
    position: absolute;
    top: 20%;
    left: 5%;
    left: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.lets-talk-section .form-step .msg-label {
    position: static;
}

.lets-talk-section .form-step input:focus+label,
.lets-talk-section .form-step input:not(:placeholder-shown)+label {
    top: -15px;
    font-size: 12px;
    color: #ccc;
    font-weight: 400;
}

.lets-talk-section .form-control {
    background-color: transparent;
    border: 1px solid #ccc;
}

.lets-talk-section .form-step textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 2rem;
    border: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    background-color: transparent;
    resize: none;
}

.lets-talk-section .form-step textarea:focus {
    outline: none;
    border: 1px solid #ccc;
    box-shadow: none;
}

.lets-talk-section .next-btn,
.lets-talk-section .submit-btn {
    background-color: #e4e2e2;
    border-radius: 62.5rem;
    font-size: 0.875rem;
    border: none;
    padding: 6px 22px;
    position: fixed;
    bottom: 0.5rem;
    right: 1rem;
    z-index: 9999;
    color: #000000;
    text-transform: uppercase;

}

.lets-talk-section .close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #e4e2e2;
    border-radius: 62.5rem;
    font-size: 0.9rem;
    border: none;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    gap: 6px;
    align-items: center;
    z-index: 999;
    color: #000000;
    text-transform: uppercase;
}

.lets-talk-section .close-btn i {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #2d2a2a12;
    font-size: 12px;
}

.lets-talk-section .form-step {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translate(100%, -50%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.lets-talk-section .form-step-active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}




#step3 p {
    text-align: center;
    font-size: 6rem;
    font-weight: 600;
    letter-spacing: -0.208rem;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(24px);
    animation: letsTalkTitleIn 0.95s ease forwards 0.25s;
}

@keyframes letsTalkTitleIn {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

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

input.is-invalid,
textarea.is-invalid {
    border-bottom: 1px solid red !important;
}

@media (max-width: 1500px) {
    .lets-talk-section .lets-talk-text h1 {
        font-size: 6rem;
    }
}

@media (max-width: 1150px) {
    .lets-talk-section .lets-talk-text h1 {
        font-size: 5rem;
    }
}

@media (max-width: 640px) {
    #step3 p {
        font-size: 4rem;
    }
}

@media (max-width: 450px) {
    #step3 p {
        font-size: 3rem;
    }
}

@media (max-width: 433px) {

    .form-desc,
    .lets-talk-section .form-step label {
        font-size: 14px;
    }
}

@media (max-width: 385px) {

    .form-desc,
    .lets-talk-section .form-step label {
        font-size: 12px;
    }
}

/* ========================== contact page ==================== */

/* body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url("../img/contact/contact.png") center/cover no-repeat fixed;
    min-height: 100vh;

} */

body::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.overlay {
    background: rgba(0, 0, 0, 0.35);
    position: fixed;
    inset: 0;
    z-index: -1;
    scrollbar-width: none;
}

/* CONTENT WRAPPER */
.content-area {
    padding-top: 130px;
    padding-bottom: 100px;
    display: flex;
    justify-content: flex-start;
    scrollbar-width: none;
    margin: 0;
    /* font-family: Arial, sans-serif; */
    background: #fff url("../img/contact/map\ white\ bg.svg") center/cover no-repeat fixed;
    min-height: 100vh;
}

.contact-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(33, 37, 41, 0.1);
    width: 480px;
    margin-left: 150px;
    text-transform: uppercase;
    text-align: justify;
}



.contact-box label {
    font-size: 18px;
}

.contact-box input,
.contact-box textarea {
    background: rgba(255, 255, 255, 0.75);
}

.contact-box input:focus,
.contact-box .form-control:focus {
    outline: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.75);
}

.tab-switch {
    display: flex;
    gap: 15px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.tab-switch span {
    cursor: pointer;
    opacity: 0.5;
}

.tab-switch .active {
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 3px;
    opacity: 1;
}

hr {
    opacity: 0.3;
    margin: 22px 0;
    border-top: 0 !important;
}

.small-link {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    text-decoration: underline;
}

.loc-block .loc-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.loc-block.open .loc-toggle::after {
    transform: rotate(180deg);
}

.loc-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.45s ease, opacity 0.3s ease, transform 0.35s ease;
    will-change: max-height, opacity, transform;
}

.phone-num {
    /* text-decoration: none; */
    color: rgb(33, 37, 41);
}

.loc-content.is-open {
    max-height: 900px;
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-box {
        margin-left: 50px;
        width: 420px;
    }
}

@media (max-width: 768px) {
    .content-area {
        justify-content: center;
    }

    .contact-box {
        margin-left: 0;
        width: 92%;
        padding: 25px;
    }

       .contact-box input, .contact-box textarea {
        background: rgba(255, 255, 255, 0.75);
        margin-bottom: 0.5rem !important;
        font-size: 12px;
        font-weight: 400;
        line-height: 1;
    }

     .contact-box label {
        font-size: 12px;
   }
}

/* ========================== services range page ==================== */

body.services-range-page {
    background: #e7e7e7;
    color: #0d0d0f;
    font-family: "Montserrat";
}

.services-range-page .nav-wrapper {
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.92);
}

.services-range-page .nav-link {
    color: #0d0d0f;
    letter-spacing: 1px;
}

.services-range-page .nav-link:hover {
    color: #000;
}

.services-range-page .navbar-brand img {
    filter: none;
}

.services-range-page .nav-btn-meeting {
    color: #0d0d0f !important;
}

.services-range-page .nav-btn-meeting:after {
    background-color: #0d0d0f;
}

.service-frame {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    padding: 150px 80px 120px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.9fr;
    grid-template-rows: auto 1fr auto;
    gap: 28px 32px;
    min-height: calc(100vh - 260px);
    align-items: flex-start;
}

.service-hero-top {
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
}

.service-hero-top-right {
    grid-column: 2 / 4;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
}

.service-hero-title {
    grid-column: 1 / 4;
    text-align: center;
    align-self: center;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 40px 0;
}

.service-hero-package {
    align-self: flex-end;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.05;
    text-transform: uppercase;
}

.service-hero-lines {
    grid-column: 2 / 4;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 38px;
}

.service-hero-services {
    list-style: none;
    padding: 0;
    margin: 0;
    /* flex: 1; */
    width: fit-content;
}

.service-hero-services li {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 14px;
    padding: 9px 0 12px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px solid #111;
}

.service-hero-services li:last-child {
    border-bottom: none;
}

.service-cta {
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0d0d0f;
    text-decoration: none;
    border-bottom: 2px dotted #111;
    padding-bottom: 4px;
    white-space: nowrap;
}

.service-cta:hover {
    color: #000;
}

.service-visual {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 80px 120px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.service-visual-wrapper {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.service-visual-img {
    width: 68%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.service-visual-note {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.service-visual-card {
    background: rgba(222, 222, 222, 0.85);
    color: #4b4b4b;
    padding: 22px 24px;
    border-radius: 14px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.service-visual-card::before {
    content: "";
    position: absolute;
    left: -140px;
    top: 14px;
    width: 120px;
    border-bottom: 2px dotted #5a5a5a;
}

.service-visual-card strong {
    color: #2a2a2a;
}

@media (max-width: 1200px) {
    .service-frame {
        padding: 140px 50px 110px;
    }

    .service-hero-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto 1fr auto;
    }

    .service-hero-top-right {
        grid-column: 1 / 3;
    }

    .service-hero-title {
        grid-column: 1 / 3;
    }

    .service-hero-lines {
        grid-column: 1 / 3;
        flex-direction: column;
        align-items: flex-start;
    }

    .service-cta {
        margin-top: 10px;
    }
}

@media (max-width: 992px) {

    .service-frame,
    .service-visual {
        padding: 130px 30px 80px;
    }

    .service-hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        min-height: auto;
    }

    .service-hero-top-right,
    .service-hero-title,
    .service-hero-lines {
        grid-column: 1 / 2;
        text-align: left;
    }

    .service-hero-title {
        font-size: 40px;
        margin: 20px 0 10px;
    }

    .service-hero-package {
        font-size: 30px;
    }

    .service-visual-wrapper {
        flex-direction: column;
    }

    .service-visual-img {
        width: 100%;
        height: auto;
    }

    .service-visual-note {
        width: 100%;
    }

    .service-visual-card::before {
        display: none;
    }
}

@media (max-width: 576px) {

    .service-frame,
    .service-visual {
        padding: 120px 18px 70px;
    }

    .service-hero-title {
        font-size: 32px;
    }

    .service-hero-package {
        font-size: 26px;
    }

    .service-hero-services li {
        grid-template-columns: 26px 1fr;
        font-size: 13px;
    }

    .service-cta {
        font-size: 13px;
    }

    .service-visual-card {
        font-size: 14px;
    }
}

/* ========================== services slider page ==================== */

body.services-slider-page {
    background: #fff;
    color: #0d0d0f;
    overflow: hidden;
    overscroll-behavior: none;
}

.services-slider-page .nav-wrapper {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.services-slider-swiper {
    height: 100svh;
    width: 100%;
}

.services-slider-swiper .swiper-slide {
    min-height: 100svh;
    display: flex;
    width: 100%;
    align-items: flex-start;
}

.slider-panel {
    width: 100%;
    height: 100%;
}

.slider-panel--white {
    background: #fff;
    color: #111;
    padding: 160px 7vw 140px;
}

.slider-hero-grid {
    position: relative;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr;
    /* grid-template-rows: 1fr 1fr; */
    align-items: center;
}

.slider-hero-eyebrow {
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    font-size: 24px;
    line-height: 1;
    position: absolute;
    top: 0px;
    left: 0;
}

.slider-hero-topline {
    grid-column: 2 / 4;
    justify-self: end;
    align-self: start;
    text-align: right;
    font-size: 17px;
    /* font-weight: 800; */
    line-height: 1.25;
    letter-spacing: 1px;
    text-transform: uppercase;
    max-width: 860px;
}

.slider-hero-title {
    grid-column: 1 / 4;
    justify-self: center;
    align-self: center;
    text-align: center;
    font-size: 35px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.slider-title-link {
    cursor: pointer;
    /* color: #666; */
    color: rgba(0, 0, 0, 0.3);
    transition: color 0.25s ease;
}

.slider-title-link.active {
    color: #000;
}

.slider-title-link:hover {
    color: #000;
}

.slider-hero-package {
    grid-column: 1 / 4;
    align-self: end;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    /* width: 89%; */
    width: 100%;
}

@media screen and (max-width: 450px) {
    .slider-hero-package {
        width: 100% !important;
    }

    .service-hero-services li {
        gap: 0 !important;
    }
}

.slider-hero-package p {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.slider-hero-lines {
    grid-column: 2 / 4;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    gap: 40px;
    /* align-self: end; */
    /* margin-bottom: 30px; */
}

.service-hero-services {
    list-style: none;
    padding: 0;
    margin: 0;
    /* flex: 1; */
}

.service-hero-services li {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 14px;
    padding: 9px 0 12px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px solid #111;
}

.service-hero-services li:first-child {
    /* border-bottom: none; */
    padding-top: 0;
}

.muted-hover-link {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
    font-size: 14px;
    color: #000;
}

@media screen and (min-width: 1250px) {
    .muted-hover-link {
        margin-top: 12px;
    }

}

@media screen and (max-width: 450px) {
    .muted-hover-link {
        font-size: 8px;
    }
}

.slider-panel--split {
    background: #fff;
    color: #0d0d0f;
    display: flex;
}

.split-media {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.split-media-2 {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
}

@media screen and (max-width:992px) {
    .split-media-2 {

        display: none;
    }

    .split-media-3{
        background-position: center;
        height: 90%;
        margin-top: auto;
    }
}

.split-content {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* padding: 0 6vw; */
    position: relative;
    background: #fff;
}


.info-card-edge {
    margin-left: -215px;
}

.info-card {
    position: relative;
    background: #00000033;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    color: #1c1c1c;
    line-height: 1.5;
    max-width: 555px;
    margin-top: -145px;
    text-align: justify;
}

.info-card.info-card-3 {
    position: relative;
    background: transparent !important;
    border: none !important;
    border-radius: none !important;
    padding: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    max-width: 100%;
    color: #1c1c1c;
    line-height: 1.5;
    max-width: 100%;
    margin-top: 0 !important;
    text-align: justify;
    margin-bottom: 65svh !important;
}

@media screen and (max-width:992px) {
    .info-card {
        margin-top: unset;
        margin-bottom: 25px;
        margin-right: 25px;
    }
}

.info-card h4 {
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-size: 18px;
    color: white;
}

@media screen and (max-width: 992px) {
    .split-media {
        width: 100%;
    }

    .split-content {
        width: 0%;
        padding: 0 !important;
        /* padding-bottom: 18vh !important; */
        align-items: end;
    }

    .info-card {
        width: 90vw !important;
        max-width: 100vw !important;
        margin-left: -95vw;
    }


       .info-card.info-card2 {
        margin-bottom: 65vh !important;
    }

   .info-card h4 {
        /* margin-bottom: 0; */
        font-size: 14px;
    }


}


.info-card p {
    margin: 0;
    color: white;
    font-size: 14px;
    line-height: 1.2;
}


.info-anchor {
    position: absolute;
    left: 90px;
    top: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.info-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    animation: anchorPulse 1.8s ease-in-out infinite;
}

@media screen and (max-width: 450px) {
    .info-circle {
        width: 12px;
        height: 12px;
    }
}


@media (max-width:400px) {
  .info-card.info-card2 {
        margin-bottom: 65svh !important;
    }

    
}

.info-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.9),
            rgba(255, 255, 255, 0.15));
    border-radius: 999px;
}

@keyframes anchorPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(255, 255, 255, 0);
        transform: scale(1.12);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        transform: scale(1);
    }
}

.slider-panel--full {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 6vw 70px;
}

.slider-panel--full::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.05) 0%,
            rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.full-card {
    position: relative;
    z-index: 1;
    max-width: 520px;
    align-self: flex-end;
}

.slider-panel--full .info-card {
    color: #f6f6f6;
}

.slider-pagination {
    position: absolute;
    right: 16px;
    left: unset !important;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 12;
    width: fit-content !important;
}

.slider-bullet {
    min-width: 40px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #c2c2c2;
    color: #8a8a8a;
    font-size: 12px;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.25s ease;
    width: fit-content;
}

.slider-bullet:hover,
.slider-bullet-active {
    color: #000;
    border-color: #000;
    background: #f3f3f3;
}

.services-inner-swiper {
    width: 100%;
    height: 100%;
}

 .info-anchor > a:nth-child(1){ order: 3; }   
  .info-anchor> span:nth-child(2){ order: 2; }
  .info-anchor > a:nth-child(3){ order: 1; }   
  .info-anchor> span:nth-child(4){ order: 4; }

.service3-main-title {
    font-size: 18px !important;
    color: #6c757d !important;
    text-align: center;
    margin-bottom: 0 !important;
}

.service3-sub-title {
    font-size: 12px;
    text-align: center;
    color: black;
}

.service3-text {
    font-size: 8px !important;
    color: #1c1c1c !important;
    text-align: center;
    text-align-last: center;
    line-height: 1 !important;
}



@media (max-width: 1440px) {

    .slider-hero-topline {
        /* max-width: 480px; */
        max-width: 665px;
        font-size: 12px;
    }

    .slider-hero-eyebrow {
        font-size: 29px;
    }

}


@media (max-width: 1100px) {
    .split-content {
        padding: 0;
    }

    .slider-hero-topline {
        max-width: 480px;
    }

    .slider-hero-eyebrow {
        font-size: 29px;
    }

}


@media (max-width: 992px) {
    .slider-hero-title {
        font-size: 32px;
    }

    .service-hero-services li {
        font-size: 12px;
        padding: 9px 0 5px;
    }


    .service-hero-services li span {
        white-space: nowrap;
    }

    .slider-hero-package p {
        font-size: 29px;
    }

    .slider-hero-eyebrow {
        font-size: 29px;
    }

    .slider-hero-package {
        margin-bottom: 20px;
    }

    .info-anchor-2{
    position: absolute;
        left: 65px ;
        right: auto !important;
        bottom: -195px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .info-anchor-mobile{
        flex-direction: column;
    }

     .info-anchor-mobile > a:nth-child(1){ order: 1; }   
  .info-anchor-mobile> span:nth-child(2){ order: 2; }
 .info-anchor-mobile > a:nth-child(3){ order: 3; }   
 .info-anchor-mobile> span:nth-child(4){ order: 4; }

 
}




@media (max-width:860px) {
    .service-hero-services li {
        font-size: 10px;
    }


    .slider-hero-topline {
        font-size: 13px;
        max-width: 380px;
    }


    .service-hero-services li span {
        white-space: nowrap;
    }

    .slider-hero-package p {
        font-size: 26px;
    }

    .slider-hero-eyebrow {
        font-size: 28px;
    }
}


@media (max-width:767px) {
    .service-hero-services li {
        font-size: 10px;
    }

    .slider-hero-topline {
        font-size: 11px;
        max-width: 383px;
    }

    .service-hero-services li span {
        white-space: nowrap;
    }

    .slider-hero-package p {
        font-size: 25px;
    }

    .slider-hero-eyebrow {
        font-size: 23px;
    }

    .slider-hero-title {
        font-size: 30px;
    }
}



@media (max-width: 700px) {
    .service-hero-services li {
        font-size: 9px;
    }

    .slider-hero-topline {
        font-size: 11px;
        max-width: 310px;
    }

    .service-hero-services li span {
        white-space: nowrap;
    }

    .slider-hero-package p {
        font-size: 25px;
    }

    .slider-hero-eyebrow {
        font-size: 23px;
    }

    .slider-hero-title {
        font-size: 22px;
    }

    .slider-hero-package {
        width: 100%;
    }
}

@media (max-width: 640px) {

     .info-card {
        padding: 12px;
        margin-bottom: 10vh !important;
    }

      .info-anchor {
        right: -200px;
        top: -185px;
    }

      /* .info-anchor-2{
    position: absolute;
        righ: 65px ;
        right: auto !important;
        bottom: -195px;
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }
 */

    .slider-pagination {
        flex-direction: row;
        transform: none;
        top: 90%;
        position: fixed;
        right: 50%;
        left: 50%;
        gap: 8px;
        background: rgba(255, 255, 255, 0.75);
        padding: 6px 10px;
        border-radius: 999px;
        border: 1px solid #d9d9d9;
    }

    .slider-hero-title {
        font-size: 24px;
    }

    /* .slider-hero-lines {
        margin-top: 0px;
        transform: translateY(-111px);
    } */


}

@media (max-width:600px) {
    .service-hero-services li {
        font-size: 8px;
    }

    .slider-hero-topline {
        font-size: 10px;
        max-width: 282px;
    }


    .service-hero-services li span {
        white-space: nowrap;
    }

    .slider-hero-package p {
        font-size: 23px;
    }

    .slider-hero-eyebrow {
        font-size: 23px;
    }

    .slider-hero-package {
        gap: 50px;
    }
}

@media (max-width: 572px) {
    .slider-hero-title {
        font-size: 18px;
    }

       .info-card p {
        font-size: 12px;
        text-align: justify;
        line-height: 1.2;
    }

    .slider-hero-eyebrow {
        font-size: 18px;
    }

    .slider-hero-topline {
        font-size: 9px;
        max-width: 255px;
    }

}



@media (max-width: 500px) {
    .service-hero-services li {
        font-size: 8px;
        padding: 6px 0 7px;
    }

    .slider-hero-topline {
        font-size: 9px;
        max-width: 255px;
    }


    .slider-hero-package p {
        font-size: 21px;
    }

    .slider-hero-eyebrow {
        font-size: 20px;
    }


}

@media (max-width: 480px) {
    .slider-hero-title {
        font-size: 16px;
    }



    /* .info-card {
         position: relative;
    padding: 16px;
    max-width: 100%;
    line-height: 1.5;
    right: 10px;
    position: absolute;
    min-width: 379px; 

         position: relative;
    padding: 8px;
    max-width: 100%;
    line-height: 1.5;
    right: 30px;
    position: absolute;
    min-width: 279px;
    bottom: 150px; 

        position: relative;
        padding: 8px;
        max-width: 100%;
        line-height: 1.5;
        right: 10px;
        position: absolute;
        min-width: 369px;
        bottom: 150px;
    } */

    .slider-hero-package p {
        font-size: 21px;
    }

    .slider-hero-package {
        gap: 30px;
    }

    .slider-hero-topline {
        max-width: 242px;
        font-size: 8px;
    }

    .slider-hero-eyebrow {
        font-size: 18px;
    }


}

@media (max-width:460px) {
    .slider-hero-topline {
        max-width: 226px;
        font-size: 7px;
    }

    .slider-hero-eyebrow {
        font-size: 16px;
    }

    .slider-hero-package p {
        font-size: 17px;
    }



    .service-hero-services li {
        font-size: 6px;
        padding: 6px 0 4px;
    }

        .info-anchor-2{
            bottom: -183px;
        }
}


@media (max-width:400px) {
    .slider-hero-topline {
        max-width: 205px;
        font-size: 7px;
    }
}


@media (max-width: 390px) {
    .slider-hero-title {
        font-size: 14px;
    }

    .service-hero-services li {
        font-size: 6px;
    }

    .slider-hero-package p {
        font-size: 17px;
    }

    .slider-hero-eyebrow {
        font-size: 13px;
    }

    .slider-hero-package {
        gap: 25px;
    }

    .slider-hero-topline {
        max-width: 177px;
        font-size: 6px
    }
}

@media (max-width: 372px) {


    .service-hero-services li {
        padding: 5px 12px;
    }
}

@media (max-width: 350px) {
    .slider-hero-title {
        font-size: 12px;
    }


    .service-hero-services li {
        font-size: 5px;
        padding: 5px 12px;
    }


}


/*=======================  single news page ================= */

.single-news-section {
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 100px;
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    justify-content: center;
    gap: clamp(30px, 8vw, 140px);
}

/* .single-news-section {
    background-image: url(../img/news/1.jpg);
} */

.single-news-title {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    /* margin-left: 150px; */
    opacity: 0;
    transform: translateY(24px);
    animation: newsTitleIn 0.95s ease forwards 0.25s;
    word-break: break-word;
    width: 40%;
    line-height: 1;
}

.single-news-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    padding: 40px;
    border-radius: 12px;
    margin-right: -190px;
}

.single-news-card p {
    text-align: justify;
    font-size: 12px;
}


@keyframes newsTitleIn {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

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

.news-img img {
    width: 100%;
}

/* .single-news-section .single-news-card {
    width: 410px;
}



.single-news-section .news-desc {
    text-align: justify;
}

.single-news-section .news-img img {
    height: 180px;
} */

.single-news-section .single-news-card {
    width: 480px;
    max-width: 520px;
}

.single-news-section .news-desc {
     text-align: justify;
    font-size: 18px;
    line-height: 1.9;
    /* margin-bottom: 28px; */
}


.single-news-section .news-img {
    margin-top: 24px;
}

.single-news-section .news-img img {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    object-fit: cover;
}

.breadcrumb a {
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    color: #000;
    font-weight: 700 !important;

}


@media (max-width: 450px) {
    .breadcrumb a {
        text-decoration: none;
        font-size: 8px;
        text-transform: uppercase;
        color: #000;
        font-weight: 700 !important;
    }
}

.breadcrumb-item.active a {
    color: #00000082 !important;
    font-weight: 500 !important;


}



.profile-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 16px;
    align-items: flex-end;
}

.profile-actions .view-btn {
    margin-top: 0 !important;
}

.news-pagination,
.projects-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 20px;
}

.news-pagination .nav-links,
.projects-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.news-pagination .nav-links a,
.projects-pagination .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(33, 37, 41, 0.75);
    text-decoration: none;
    font-size: 10px;
    text-align: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(33, 37, 41, 0.75);
    border-radius: 50%;
}


.single-news-section .nav-links {
    justify-content: center;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .single-news-section .single-news-card {
        margin-left: 100px;
        margin-right: 0;
        width: 420px;
    }



    .single-news-section .nav-links {
        justify-content: center;
    }

    .single-news-section {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 16px;
    }

    .single-news-title {
        animation-delay: 0.1s;
        margin-left: 100px;
    }
}

@media (max-width: 768px) {
    .single-news-section .single-news-card {
        margin: 0 auto;
        width: 92%;
        padding: 10px;
    }


    .single-news-title {
        font-size: 28px;
        margin: 0 auto;
        width: 92%;
    }
}

@media (max-width: 500px) {

    .single-news-card .share-box,
    .nav-links a {
        font-size: 12px;
    }

     .single-news-title {
        font-size: 21px;
        width: 92%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 450px) {
    .single-news-section .single-news-card {
        overflow: scroll;
        max-height: 300px !important;
        width: 92%;
    }

    .single-news-section .single-news-title {
        margin-bottom: 0px !important;
        margin-top: 250px !important;
    }

    .single-news-section .single-news-card {
        width: 92%;
    }
}

/* ===================== practice profile ======================= */
.practice-profile-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 130px;
    padding-bottom: 100px;
    min-height: 100vh;
    background-image: url("../img/practice/208-\ Nyoum\ Asyut-\ B8-\ Shot\ 03.jpeg");
    background-position: center;
    background-size: cover;
}

.practice-form input:focus {
    outline: none;
    box-shadow: 0 0 0 1px #c2c0c0;
    border: 1px solid #c2c0c0;
}

.practice-profile-section h2 {
    /* margin-left: 150px;
    font-size: 35px;
    color: #fff;
    word-break: break-word;
    text-transform: uppercase; */


    margin-left: 150px;
    font-size: 26px;
    color: #fff;
    /* max-width: 480px; */
    word-break: break-word;
    text-transform: uppercase;
    font-weight: 700;

}

.practice-profile-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(5px);
    padding: 35px;
    border-radius: 12px;
    width: 480px;
    margin-left: 150px;
}

@media screen and (max-width:450px) {
    .practice-profile-card {
        padding: 21px;
    }
}

.practice-profile-card .form-desc {
    /* font-size: 11px;
    font-weight: 400;
    line-height: 1;
text-align: start;
margin-bottom: 10px; */



    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: start;

}

.practice-breadcramb {
    font-size: 11px;
    font-weight: 700;
    text-align: start;
}

.practice-profile-card .dropdown,
.practice-profile-card .dropdown a {
    background: rgba(255, 255, 255, 0.75);
    color: #000;
    width: 100%;
    border: none;
    border-radius: 0.375rem;
}

.practice-profile-card .dropdown ul {
    width: 100%;
    border: none;
}

.practice-profile-card .dropdown ul li {
    border-radius: 0;
}

.practice-profile-card .dropdown ul li a {
    transition: all 0.5s ease;
    border-radius: 0;
}

.practice-profile-card .dropdown ul li a:hover {
    background-color: #c2c0c0;
    color: #fff;
    border-radius: 0;
}

.practice-profile-card .dropdown a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.practice-profile-card .practice-submit-btn:hover,
.practice-profile-card .download-btn:hover,
.practice-profile-card .view-btn:hover,
.practice-profile-card .practice-submit-btn:hover a,
.practice-profile-card .download-btn:hover a,
.practice-profile-card .view-btn:hover a {
    opacity: 0.5 !important;
}


.practice-profile-card .practice-submit-btn,
.practice-profile-card .download-btn,
.practice-profile-card .view-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #c2c0c0;
    color: #000000;
    border-radius: 5px;
    font-size: 14px;
    border: none;
    width: 49%;
    text-transform: uppercase;
    margin-left: auto;
    display: block;
    transition: all 0.3s ease-in-out;


}



#practiceForm * {
    text-transform: uppercase;
}

.practice-profile-card .download-btn a,
.practice-profile-card .view-btn a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

@media (max-width: 992px) {
    .practice-profile-card {
        margin-left: 50px;
        max-width: 85%;

    }

    .practice-profile-section h2 {
        margin-left: 50px;
    }
}

@media (max-width:500px) {

    .practice-profile-card .practice-submit-btn,
    .practice-profile-card .download-btn,
    .practice-profile-card .view-btn {
        padding: 10px;
    }

    .practice-profile-card .download-btn a,
    .practice-profile-card .view-btn a {
        font-size: 10px;
    }
}


/* =========================  news page =================== */

.news-section {
    margin-top: 112px;
}

/* =========================  about page full-height swiper =================== */
.about-page .about-fullpage-swiper {
    height: 100vh;
}

.about-page .about-fullpage-swiper .swiper-wrapper {
    height: 100%;
}

.about-page .about-fullpage-swiper .swiper-slide {
    /* min-height: 100vh; */
    /* height: auto; */
    display: flex;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
}

@media screen and (max-width:450px) {
    .about-page .about-fullpage-swiper .swiper-slide {
        /* height: unset !important; */
        overflow-y: auto;
    }
}

@media screen and (max-width: 768px) {
    .about-page .about-fullpage-swiper .swiper-slide {
        overflow-y: auto;
    }

    .about-page .about-fullpage-swiper .swiper-slide section#achievementReference {
        justify-content: flex-start;
        height: 100%;
    }
}

.about-page .about-fullpage-swiper .swiper-slide>section {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .about-page .about-fullpage-swiper {
        height: 100vh;
    }
}

.news-img {
    height: 100%;
    position: relative;
    cursor: pointer;
}

.news-img img {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    transition: all 1s;
}



.news-info-layer {
    position: absolute;
    opacity: 0;
    bottom: 20px;
    transform: translateY(50px);
    transition: all 0.5s ease;
    left: 20px;
    color: #fff;
    padding: 10px;
    pointer-events: none;
}

.news-img:hover .news-info-layer {
    opacity: 1;
    transform: translateY(0);
}


.news-info-layer p {
    margin: 0;
}

.news-info-layer p:first-child {
    font-size: 20px;
    font-weight: 500;
}

.news-img {
    overflow: hidden;/
}

.news-img img {
    transition: transform 0.6s ease;
}

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


@media (max-width:992px) {
    .news-info-layer{
        transform: none;
        opacity: 1;
    }

    .news-info-layer p:first-child {
        line-height: 1;
    }
}

.about-page .about-fullpage-swiper .swiper-slide#board,
.about-page .about-fullpage-swiper .swiper-slide section#board {
    justify-content: flex-end !important;
    align-items: stretch !important;
}

/* === MAKE CAREERS SCROLL INSIDE BOX === */
#careersBox.scroll-card, #locationBox.scroll-card {
      font-size: 12px;
    line-height: 1.2;
    /* max-height: 500px; */
    /* overflow-y: auto; */
    /* overflow-x: hidden; */
    /* padding-right: 8px; */
    scroll-behavior: smooth;
    max-height: 60svh;
    overflow-y: scroll;
    padding-right: 30px;
    position: relative;
}

#careersBox.hidden,
#locationBox.hidden {
    display: none;
}


#careersBox,
#locationBox {

    scroll-behavior: smooth;
}

/* Custom scrollbar (Webkit: Chrome / Edge / Safari) */
#careersBox::-webkit-scrollbar,
#locationBox::-webkit-scrollbar {
    width: 6px;
}

#careersBox::-webkit-scrollbar-track,
#locationBox::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;

}



#careersBox::-webkit-scrollbar-thumb,
#locationBox::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    transition: background 0.3s ease;
}

#careersBox::-webkit-scrollbar-thumb:hover,
#locationBox::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.45);
}


#careersBox, #locationBox {
    scrollbar-width: none;
    scrollbar-color: rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}







@media (max-width: 768px) {

    #locationBox.scroll-card, #careersBox.scroll-card {
        max-height: 60svh;
        overflow-y: scroll;
        scrollbar-width: none;
        scrollbar-color: rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0);
        padding-right: 22px;
        font-size: 10px;
    }

   .scroll-card {
        position: relative;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        margin-right: -20px;
        margin-top: -15px;
    }
.scroll-card .fake-scrollbar{
  position: absolute;
  top: 0;
  bottom: 0;
height: 100%;
  right: 12px;
  width: 4px;
  background: rgba(0,0,0,.10);
  border-radius: 4px;
  pointer-events: none;
  opacity: .9;
  z-index: 9999;
  transform: translateY(0);
  will-change: transform;
}

.scroll-card .fake-scrollbar .thumb{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 24px;
  background-color: rgba(0,0,0,.5);
  border-radius: 4px;
  transform: translateY(0);
  will-change: transform;
}



}

@media screen and (max-width: 400px) {
    #locationBox.scroll-card, #careersBox.scroll-card {
        max-height: 55svh;
        overflow-y: scroll !important;
        scrollbar-width: none;
        scrollbar-color: rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0);
        padding-right: 22px;
        font-size: 10px;
    }
}

#step3 {
    display: flex !important;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.hide-left-col {
    display: none !important;
}

.expand-form-col {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

/* media query for home */



@media (max-width: 768px) {

    .practice-profile-card {
        width: 90% !important;
        margin: 0 auto !important;
    }

    .practice-profile-section h2 {
        width: 90%;
        margin: 0 auto 5px 35px;

    }


    .practice-profile-card,
    .practice-profile-form {
        overflow: visible !important;
        max-height: none !important;
    }


    .practice-profile-section {
        padding-bottom: 40px;
        height: auto;
    }

    .practice-profile-card .form-desc {
        font-size: 10px;
        line-height: 1;
        text-align: left;
        margin-top: 5%;
        margin-bottom: 5%;
    }
       #practiceForm * {
       text-transform: uppercase;
       font-size: 12px;
       font-weight: 400;
       line-height: 1;
       margin-bottom: 0.5rem !important;
   }

    .profile-actions {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
        margin-top: 0;
        align-items: flex-end;
    }

    .practice-profile-form input,
    .practice-profile-form .dropdown,
    .practice-profile-form button {
        margin-bottom: 12px !important;
    }


    .practice-profile-card,
    .practice-profile-form {
        overflow: visible !important;
        max-height: none !important;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0);
    }
}

/* service */

@media (max-width: 768px) {

    .slider-hero-title {
        font-size: 15px;
        padding: 0 12px;
    }


    .slider-hero-grid {
        position: relative !important;
        /* min-height: 80vh !important; */
    }
}

/* card team*/
.team-card-body {
    padding: 22px 24px;
    min-height: 140px;
    position: relative;

}

/* alert success */

.custom-alert-success {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background: #dff0d8;
    color: #2d662d;
    padding: 12px 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.6s ease;
}

.custom-alert-success.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.custom-alert-success .close-alert {
    background: none;
    border: none;
    font-size: 20px;
    color: inherit;
    cursor: pointer;
    line-height: 1;
}

.custom-alert-success span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* project title */
.fit-text {
    white-space: nowrap;
    width: 100%;
    display: block;

}

/* pagination */
.news-pagination .nav-links a,
.news-pagination .nav-links span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(33, 37, 41, 0.75);
    text-decoration: none;
    font-size: 10px;
    text-align: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(33, 37, 41, 0.75);
    border-radius: 50%;
}

.news-pagination .nav-links a:hover {
    background: #333;
    color: #fff;
}

.dropdown-menu .dropdown-item {
    color: black !important;
}

.dropdown-menu {
    background: white !important;
}


.success-popup {
    background: #d1f5d3;
    border-left: 6px solid #28a745;
    padding: 18px 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeIn .5s ease-in-out;
}

.success-popup .icon {
    font-size: 22px;
    font-weight: bold;
    color: #28a745;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* navbar */



.navbar-dark-text .nav-link {
    color: #000 !important;
    font-weight: 600;
}

.navbar-dark-text .nav-link:hover {
    color: #555 !important;
}


.navbar-dark-text .nav-btn-meeting {
    color: #000 !important;
    border-color: #000;
}

.navbar-dark-text .navbar-logo {
    content: url("../img/logo-black.png");
    filter: brightness(0) invert(0) !important;
    height: 45px;
}

.nav-wrapper.nav--dark-text .navbar-brand img {
    filter: brightness(0) invert(0) !important;
    content: url(../img/logo-black.png);
    height: 45px;
}


.navbar-dark-text .menu-icon::before,
.navbar-dark-text .menu-icon::after {
    background-color: #000 !important;
}

.navbar-dark-text .send-icon i {
    color: #000 !important;
}


@media (max-width: 768px) {
    .achievement-section[data-aos] {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .achievement-section.js-animate .achievement-counter,
    .achievement-section.js-animate .achievement-desc,
    .achievement-section.js-animate .icon-desc,
    .achievement-section.js-animate .icon-wrap {
        opacity: 1 !important;
        transform: none !important;
    }

    .achievement-section .achievement-header,
    .achievement-section .achievement-header h3 {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        display: block !important;
    }
}


@media screen and (max-width:992px) {
    .hero-slogan {
        grid-column: 11 / span 4;
    }

    .hero-slogan .slogan-main {
        font-size: 12px;
    }

    .hero-slogan .slogan-sub {
        font-size: 4px;
    }

    .hero-slogan .slogan-script {
        font-size: 4px;
    }

    .hero-description {
        font-size: 6px;
        display: block;
        max-width: 228px;
    }


    .hero-creator-title {
        grid-row: 3 / span 3;

    }

    .hero-creator-title .word-span {
        font-size: 29px;
    }

    .hero-creator-title {
        font-size: 63px;
    }

    .about-hero-inner::before {
        right: 15px;
    }

    .about-hero-inner::after {
        left: 58px;
    }

    .hero-creator-title::before {
        right: 169px;
        bottom: -70dvh;
    }

    .hero-creator-title::after {
        left: -184px;
        width: 104%;

    }

    .hero-slogan::before {
        left: 23px;
        bottom: 17px;
    }
}


@media screen and (min-width:1150px) {
    .about-hero-inner .line-left {
        left: 112px;
    }
}

@media screen and (min-width:1550px) {
    .about-hero-inner .line-left {
        left: 155px;
    }

}




@media screen and (max-width:550px) {
    .hero-mark {
        bottom: 0;
        left: 30%;
    }

    .hero-mark img {
        width: 30px;
        height: 30px;
    }

    .hero-slogan {
        grid-column: 9 / span 4;
        display: none;
    }

    .hero-slogan .slogan-main {
        font-size: 20px;
        line-height: 1;
        display: none;
    }

    .hero-slogan .slogan-sub {
        font-size: 10px;
        text-align: center;
        margin-bottom: 6px;
        display: none;
    }

    .hero-slogan .slogan-script {
        font-size: 6px;
        margin-top: 0;
        display: none;
    }

    .hero-description {
        font-size: 6px;
        display: block;
        max-width: 125px;
        visibility: hidden;
    }

    .hero-description::before {
        left: -44px;
    }




    .hero-creator-title {
        grid-row: 1/-1;
        grid-column: 1/-1;
        font-size: 72px !important;

        width: fit-content;
        display: flex;
        flex-direction: column;
        line-height: 0.8;
        width: 100%;
        text-align: center;
    }

    .line-left-side {
        left: 13%;
        top: -440px;
        display: none;
        /* position: relative; */
    }

    .line-left-side::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 100%;
        top: 0;
        left: -34px;
        bottom: 0;
        right: 0;
        background-color: #8f8f8f;
    }


    .hero-creator-title .word-span {
        font-size: 42px;
    }

    .hero-creator-title .line-center {
        top: -15px;
    }

    .hero-wordmark {
        grid-column: 6 / span 2;
    }

    .about-hero-inner::before {
        right: 15px;
    }

    .about-hero-inner::after {
        left: 34px;
    }

    .hero-creator-title::before {
        right: 0;
        bottom: -81dvh;
        visibility: hidden;
    }

    .hero-creator-title::after {
        left: -62px;
        width: 150%;
        bottom: -15px;

    }

    .hero-slogan::before {
        left: 119px;
        bottom: -88px;
        visibility: visible;
    }

    .hero-slogan::after {
        bottom: -89px;
        left: 86px;
        visibility: visible;
    }

    .about-hero-inner .line-left {
        left: 45px;
    }

    .slogan-sub::after {
        top: 0px;
    }

    .hero-slogan .line-2 {
        visibility: hidden;
    }

    .left-line-mobile {
        position: absolute;
        height: 100vh;
        top: 0;
        bottom: 0;
        left: 10%;
        width: 1px;
        background: #8f8f8f;
        transform-origin: top center;
        transform: scaleY(0);
        animation: hero-line-reveal 1.1s ease-out forwards;
        animation-delay: 0.78s;

    }

    .left-line-mobile::before {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        bottom: 0;
        left: -20px;
        background-color: #8f8f8f;
        width: 1px;
    }

    .right-line-mobile {
        position: absolute;
        height: 100vh;
        top: 0;
        bottom: 0;
        right: 10%;
        width: 1px;
        background: #8f8f8f;
        opacity: 0.5 !important;
        transform: translateX(26px);
        animation: hero-slogan-reveal 0.9s ease-out forwards;
        animation-delay: 0.42s;
    }

    .right-line-mobile::before {
        content: "";
        position: absolute;
        height: 100%;
        top: 0;
        bottom: 0;
        right: -20px;
        width: 1px;
        background-color: #8f8f8f;
        
    }

    .about-hero-section {
        padding: 0;
    }

    .hero-mark {
        padding-bottom: clamp(28px, 6vw, 48px);
    }


}

@media (max-height:750px) {
    .hero-slogan::before {
        left: 92px;
        bottom: -74px;
        visibility: visible;
    }

    .hero-slogan::after {
        bottom: -74px;
        left: 57px;
        visibility: visible;
    }
}

@media (max-height:700px) {
    .hero-slogan::before {
        left: 92px;
        bottom: -70px;
        visibility: visible;
    }

    .hero-slogan::after {
        bottom: -70px;
        left: 57px;
        visibility: visible;
    }
}

@media (max-height:650px) {
    .hero-slogan::before {
        left: 92px;
        bottom: -64px;
        visibility: visible;
    }

    .hero-slogan::after {
        bottom: -64px;
        left: 57px;
        visibility: visible;
    }
}

@media screen and (max-width:450px) {


    .hero-mark img {
        width: 24px;
        height: 24px;
    }



    .about-hero-inner .line-left {
        left: 32px;
    }
}










/* ===============================
   NAVBAR COLOR STATES (NO LAYOUT)
   =============================== */

/* Light section (white / light bg) */
.nav-wrapper.nav--dark-text .nav-link,
.nav-wrapper.nav--dark-text .nav-btn-meeting {
    color: #000 !important;
}

.nav-wrapper.nav--dark-text .menu-icon,
.nav-wrapper.nav--dark-text .menu-icon::before,
.nav-wrapper.nav--dark-text .menu-icon::after {
    background-color: #000 !important;
}

.nav-wrapper.nav--dark-text .menu-btn.open .menu-icon {
    background-color: transparent !important;
}


.nav-wrapper.nav--dark-text .send-icon i {
    color: #000 !important;
}

.nav-wrapper.nav--dark-text .navbar-brand img {
    color: #000 !important;
    filter: brightness(0);

}

/* Dark section (black / dark bg) */
.nav-wrapper.nav--light-text .nav-btn-meeting {
    color: #fff !important;
}

.nav-wrapper.nav--dark-text,
.nav-wrapper.nav--light-text {
    border: none !important;
    background-color: transparent;
}

.nav--dark-text .nav-btn-meeting:after {
    background-color: black;
}


.nav-wrapper.nav--light-text .menu-icon,
.nav-wrapper.nav--light-text .menu-icon::before,
.nav-wrapper.nav--light-text .menu-icon::after {
    background-color: #fff !important;
}

.nav-wrapper.nav--light-text .menu-btn.open .menu-icon {
    background-color: transparent !important;
}

.nav-wrapper.nav--light-text .send-icon i {
    color: #fff !important;
}



.send-icon {
    background: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* When mobile offcanvas is OPEN */
body.mobile-menu-open .send-icon,
body.mobile-menu-open .menu-btn {
    background: #e0e0e0;
    border-radius: 50%;
}


.menu-btn {
    width: 34px;
    height: 34px;
    padding: 0 !important;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* when offcanvas is open */
body.mobile-menu-open .menu-btn {
    background-color: #e0e0e0;
}



@media (hover: hover) {
    .menu-btn:hover .menu-icon::before {
        top: 0;
    }

    .menu-btn:hover .menu-icon::after {
        top: 0;
        transform: rotate(90deg);
    }
}


body.mobile-menu-open .send-icon i{
  color: #000 !important;
}

body.mobile-menu-open .menu-icon::before,
 body.mobile-menu-open .menu-icon::after{
  background-color: #000 !important;
}

 body.mobile-menu-open .nav-wrapper.nav--light-text .send-icon i{
     color: #000 !important;
 }

 body.mobile-menu-open  .nav-wrapper.nav--light-text .menu-icon, 
 body.mobile-menu-open .nav-wrapper.nav--light-text .menu-icon::before,
 body.mobile-menu-open   .nav-wrapper.nav--light-text .menu-icon::after{
 background-color: #000 !important;
  }



.news-title-link{
  text-decoration: none !important;
  color: inherit !important;
      
  align-items: center;
}


.news-title-link p{
  margin: 0;
  padding: 10px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  font-size: 18px;     
}


.news-title-link:hover{
  opacity: .85;
}



.news-title-link p{
  text-transform: uppercase;

}
.news-swiper .swiper-slide { width: auto !important; }
.news-card { white-space: nowrap; }
.news-title-link { display: inline-block; }

/* =============================== */
.news-marquee{
  overflow: hidden;
  flex: 1;
  position: relative;
}

/* The moving belt */
.marquee-track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: newsMarquee 25s linear infinite; /* speed */
}

/* Each group is one full "run" */
.marquee-group{
  display: flex;
  align-items: center;
  width: max-content;
}

/* pause on hover (optional) */
.news-marquee:hover .marquee-track{
  animation-play-state: paused;
}

/* your same UI */
.news-title-link{
  text-decoration: none !important;
  color: inherit !important;
  display: inline-flex;
  align-items: center;
  margin-inline-end: 20px; /* spacing between titles */
}

.news-title-link p{
  margin: 0;
  padding: 10px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  font-size: 18px;
  text-transform: uppercase;
}

.news-title-link:hover{ opacity: .85; }

/* Endless loop: move exactly ONE group width */
@keyframes newsMarquee{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}


.form-control {
    display: block;
    text-transform: none !important;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out; 
}