.header-mask {
    height: 100%;
    max-width: none;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
    z-index: 1;
}

   .main-content {
      padding-top:100px;
   }

.textDecAnchor {
    text-decoration: none;
    color: #000;
}

.gird-right-subhed {
    color: #000 !important;
    margin-bottom: 10px !important;
}

.text-heading-center {
    text-align: center;
    margin-bottom: 40px !important;

}

.text-heading-center::after {
    margin: auto;
    width: 198;
}

.jAndK-headingTwo {
    font-size: clamp(28px, 5vw, 50px);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.modern-news-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.modern-news-heading::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background-color: #000;
    margin-top: 20px;
}

.header-video {
    width: 100%;
    height: 100%;
    min-height: 30rem;
    max-width: none;
    object-fit: cover;
    overflow: hidden;
}

.contanerPadding {
    padding-top: clamp(30px, 6vw, 40px);
    padding-bottom: clamp(30px, 6vw, 40px);
}


.heading-right-wrapper {
    position: relative;
    overflow: hidden;
    line-height: 0;
    border-radius: 1.2rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.jAndkBtn {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgb(85, 85, 85);
    padding: 0px 8px;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid rgb(85, 85, 85);
    gap: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    line-height: 1.4;
}

.jAndkBtn:hover {
    color: black;
    border-bottom-color: black;
    transform: translateY(-1px);
}

.jAndkBtn .arrow {
    display: inline-block;
    font-size: 1rem;
    transform: rotate(0deg);
    /* Makes → look like ↘ */
    transition: transform 0.3s ease;
}

.jAndkBtn:hover .arrow {
    transform: rotate(45deg) translateX(2px);
}


/* hero Section */


.brDisplayblock {
    display: none;
}

.heroSctionGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 20px;
}

.heroSectionHome,
.discoverMore {
    max-width: 1800px;
    margin: 0 auto;
}

.headingTWOpage {
    font-size: 56px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #000;

    /* Responsive font sizing */
    @media (max-width: 1200px) {
        font-size: 48px;
    }

    @media (max-width: 1200px) {
        font-size: 43px;
    }

    @media (max-width: 992px) {
        font-size: 42px;
    }

    @media (max-width: 768px) {
        font-size: 56px;
        line-height: 1.3;
    }

    @media (max-width: 576px) {
        font-size: 32px;
        letter-spacing: -0.01em;
    }

    @media (max-width: 400px) {
        font-size: 28px;
    }
}

.text-size-medium {
    font-size: 18px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: rgb(102, 102, 102);
    text-align: left;

    @media (max-width: 1200px) {
        font-size: 18px;
    }

    @media (max-width: 768px) {
        font-size: 18px;
        line-height: 1.3;
    }

}

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

.button-group {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
    display: flex;
}

.button {
    /* your original styles untouched */
    text-decoration: none;
    color: white;
    border-radius: 4px;
    height: 48px;
    background-color: #000;
    justify-content: center;
    align-items: center;
    display: flex;
    padding-left: 24px;
    padding-right: 24px;
    font-weight: 500;
    transition: box-shadow 0.2s ease-in-out;
    box-shadow: inset 0 0 20px 0px rgba(255, 255, 255, 0.3);
    width: fit-content;
    position: relative;
    /* required for pseudo element */
    overflow: hidden;
    /* required to clip shine */
}

/* Shine effect */
.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.button:hover::before {
    animation: shine 1s ease forwards;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}


.button-outline {
    /* your original styles untouched */
    text-decoration: none;
    color: #000;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    height: 48px;
    justify-content: center;
    align-items: center;
    display: flex;
    padding-left: 24px;
    padding-right: 24px;
    font-weight: 500;
    transition: border-color 0.2s;
    width: fit-content;
    position: relative;
    /* for pseudo-element */
    overflow: hidden;
    /* to clip shine */
}

.button-outline:hover {
    background: #f5f5f5;
}

/* Shine animation */
.button-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.button-outline:hover::before {
    animation: shine 1s ease forwards;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}
@media (max-width: 1024px) {
    .main-content {
        padding-top: 100px;
    }
    .mobile-submenu-header h3{
        margin-bottom: 0px !important;
    }
}



@media (max-width: 850px) {
    /* .main-content {
        padding: 0rem 1rem;
    } */

    .heroSctionGrid {
        grid-template-columns: 1fr;
        grid-gap: 5rem;
    }

    .content-wrapper .text-size-medium {
        margin-top: 20px;
    }





    .contentSection h1 {
        text-align: center;
    }

    .button-group {
        justify-content: center;
        margin-top: 30px;
    }

    .brDisplaynone {
        display: none;
    }

    .brDisplayblock {
        display: block;
    }
}

@media (max-width:550px) {
    .heroSectionHome {
        max-width: 100%;
        margin: 0 auto;
    }

    .modern-news-heading::after {
        content: '';
        display: block;
        width: 100%;
        height: 4px;
        background-color: #000;
        margin-top: 20px;
    }
}

/* j&K circle sectionn */

.jandk-section {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.jandk-circles-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    gap: 0;
}

.jandk-circle-card {
    width: 22vw;
    max-width: 300px;
    min-width: 150px;
    aspect-ratio: 1 / 1;
    background: transparent;
    /* Made transparent */
    border: 1px solid #eee;
    border-radius: 50%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: -40px;
    /* overlap */
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    z-index: 1;
    transition: transform 0.3s ease;
}

.jandk-circle-card:hover {
    z-index: 2;
    transform: scale(1.03);
}

.jandk-circle-number {
    font-size: 3.2vw;
    /* Increased from 2.4vw */
    font-weight: bold;
    color: #000;
    margin: 0;
    line-height: 1;
}

.jandk-circle-label {
    font-size: 0.9rem;
    color: #555;
    margin-top: 6px;
    padding: 0 8px;
    text-align: center;
}

@media (max-width: 1200px) {
    .jandk-circle-card {
        width: 30vw;
        margin-left: 0px;
        /* Adjusted for smaller screens */
    }

    .jandk-circle-number {
        font-size: 5vw;
        /* Increased from 3.2vw */
    }

}

@media (max-width: 768px) {
    .btx-cta-button {
        margin: 0 !important;
    }

    .textParaLeft {
        text-align: left;
    }

    .modern-content-section {
        align-items: flex-start !important;
    }

    .smallScreenNone {
        display: none;
    }

    .modern-news-heading {
        margin-bottom: 40px;
    }

    .jandk-circle-card {
        width: 42vw;
        margin-left: 0px;
    }

    .jandk-circle-number {
        font-size: 8vw;
        /* Increased from 6vw */
    }

    .jandk-scroll-indicator {
        display: none;
    }

    .jandk-circles-wrapper {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
        z-index: 1;
        gap: 24px;
    }
}

/* Discover More */

.wrap-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: nowrap;
    /* Prevent unwanted wrapping on desktop */
}

.textWrap {
    width: 70%;
}

.btnWrap {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}




.jAndkBtn {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgb(85, 85, 85);
    padding: 0px 8px;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid rgb(85, 85, 85);
    gap: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    line-height: 1.4;
}



@media (max-width: 768px) {


    .jAndK-headingTwo {
        text-align: center;
    }

    .wrap-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .textWrap,
    .btnWrap {
        flex: 1 1 100%;
        width: 100%;
    }

    .btnWrap {
        justify-content: flex-start;
        margin-top: 30px;
    }
}

/* Logo Slider Section ==================================================== */

.logo-section {
    background-color: #ffffff;
}

.LogosContainer {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper-logo {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-content {
    flex: 1;
    max-width: 350px;
    border-right: 1px solid lightgray;
}

.text-content h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: #2c3e50;
    padding-right: 20px;
}

.logo-slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100px;

}

.logo-slider {
    display: flex;
    width: calc(200%);
    animation: slideRight 25s linear infinite;
    height: 100%;
}

.logo-slide img {
    opacity: 1;
}

.logo-slide {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 100%;
}

.logo {
    max-width: 100px;
    max-height: 60px;
    width: auto;
    height: auto;
    transition: filter 0.3s ease;
    object-fit: contain;
}

.logo-slider:hover {
    animation-play-state: paused;
}

.logo:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper-logo {
        gap: 40px;
    }



    .logo-slide {
        width: 130px;
    }

    .logo {
        max-width: 90px;
        max-height: 55px;
    }
}

@media (max-width: 768px) {
    .logo-section {
        padding: 60px 0;
    }

    .content-wrapper-logo {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        min-height: auto;
    }

    .text-content {
        max-width: 100%;
        border-right: 0px;
        border-bottom: 1px solid lightgrey;
        padding-bottom: 20px;
    }

    .text-content h4 {
        font-size: 1.5rem;
        line-height: 1.3;
        text-align: left;
    }

    .logo-slider-container {
        width: 100%;
        height: 80px;
    }

    .logo-slider {
        animation-duration: 20s;
    }

    .logo-slide {
        width: 120px;
    }

    .logo {
        max-width: 80px;
        max-height: 50px;
    }
}

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

    .text-content h4 {
        font-size: 1.1rem;
    }

    .logo-slider-container {
        height: 70px;
    }

    .logo-slide {
        width: 100px;
    }

    .logo {
        max-width: 70px;
        max-height: 45px;
    }

    .logo-slider {
        animation-duration: 15s;
    }
}

@media (max-width: 320px) {
    .text-content h4 {
        font-size: 1.3rem;
    }

    .logo-slider-container {
        height: 60px;
    }

    .logo-slide {
        width: 90px;
    }

    .logo {
        max-width: 60px;
        max-height: 40px;
    }
}

/* Performance optimizations */
.logo-slider {
    will-change: transform;
    backface-visibility: hidden;
}

.logo {
    will-change: filter;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .logo-slider {
        animation-duration: 50s;
    }
}

/* Loading state */
.logo {
    opacity: 0;
    /* animation: fadeInLogo 0.5s ease forwards; */
}

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

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

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

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

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

@keyframes fadeInLogo {
    to {
        opacity: 0.6;
    }
}

/* Smooth hover transition */
.logo-slide:hover .logo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    /* Smooth animation */
}

.logoSliderBR {
    display: none;
}


/* MOdern Section ======================================== */

.modernsec-slider {
    background-color: rgba(211, 211, 211, 0.671);
}

.modern-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    position: relative;
    padding: 0 20px;
}

/* Left Content Section */
.modern-content-section {
    width: 35%;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0px 40px 0px 0;
}

.modern-content-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #000;
}

.headingTWOpage::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background-color: #000;
    margin-top: 20px;
}

.modern-content-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    font-weight: 400;
    max-width: 320px;
    margin-bottom: 40px;
}

/* Right Images Section - Horizontal Slider */
.modern-images-section {
    width: 65%;
    display: flex;
    align-items: center;
    padding: 0px 0;
}

.modern-slider-container {
    width: 100%;
    position: relative;
}

.modern-images-slider {
    height: 100%;
}

.modern-image-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    margin: 0 10px;
    height: 500px;
}

.modern-image-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: top right;
    z-index: 1;
}

.modern-image-card:hover::before {
    width: 200%;
    height: 200%;
    transform: rotate(45deg);
}

.modern-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modern-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-image-card:hover img {
    transform: scale(1.05);
}

.modern-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
    z-index: 2;
}

.modern-image-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hide default slick arrows */
.modern-images-slider .slick-prev,
.modern-images-slider .slick-next {
    display: none !important;
}

/* Custom Navigation Arrows - Controls Image Slider Only */
.modern-slider-nav {
    position: relative;
    margin-top: 50px;
    left: 0;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.modern-slider-arrow {
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.modern-slider-arrow:hover {
    border-color: #000;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .modern-content-section {
        padding: 0px 30px 0px 0;
    }

    .modern-images-section {
        padding: 0px 0;
    }

    .modern-image-card {
        height: 450px;
    }
}

@media (max-width: 1200px) {
    .modern-content-section {
        width: 40%;
        padding: 0px 20px 0px 0;
    }

    .modern-images-section {
        width: 60%;
        padding: 0px 0;
    }

    .modern-image-card {
        height: 400px;
    }

    .modern-content-description {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .para-text-center {
        text-align: center;
    }

    .modern-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .modern-content-section {
        width: 100%;
        text-align: center;
        justify-content: flex-start;
        padding: 0px 0 30px;
        align-items: center;
    }

    .modern-content-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .modern-content-description {
        max-width: 80%;
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .modern-images-section {
        width: 100%;
        padding: 0 0 60px;
    }

    .modern-image-card {
        height: 400px !important;
        margin: 0 8px;
    }

    .modern-slider-nav {
        margin-top: 30px;
        justify-content: center;
    }

    .modern-slider-arrow {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .modern-content-section {
        padding: 0px 0 20px;
    }

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

    .modern-content-description {
        max-width: 90%;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .modern-image-card {
        height: 350px !important;
        margin: 0 6px;
    }

    .modern-image-title {
        font-size: 1.5rem;
    }

    .modern-image-overlay {
        padding: 25px 20px 20px;
    }

    .modern-slider-arrow {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .modern-news-heading {
        margin-bottom: 30px;
    }

    .modern-container {
        padding: 0 10px;
    }

    .modern-content-section {
        padding: 0px;
        padding-bottom: 24px;
    }

    .modern-content-description {
        max-width: 100%;
    }

    .modern-image-card {
        height: 300px !important;
        margin: 0 4px;
        border-radius: 8px;
    }

    .modern-slider-nav {
        gap: 15px;
        margin-top: 25px;
    }

    .modern-slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .modern-image-overlay {
        padding: 20px 15px 15px;
    }
}

@media (max-width: 400px) {
    .modern-content-title {
        font-size: 2.2rem;
    }

    .modern-image-card {
        height: 250px !important;
    }

    .modern-slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}


/* Footer css ============================= */

.btx-main-wrapper {
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Section - Exact Match */
.btx-header-zone {
    padding: 0px 0 32px;
}

.btx-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.btx-title-section {
    flex: 1;
}

.btx-primary-heading {
    font-size: 30px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.btx-description-text {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
}

.btx-cta-button {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.btx-cta-button:hover {
    background-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15);
}

/* Marketplace Section - Exact Layout */


.btx-marketplace-content {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 80px;
    align-items: start;
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
}

.btx-brand-section {
    padding-top: 24px;
    padding-bottom: 24px;
    border-right: 1px solid lightgray;
    margin-top: 24px;
}

.btx-brand-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.btx-start-link {
    color: #424242;
    text-decoration: underline;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.btx-start-link:hover {
    color: #000000;
}

/* Locations Grid - Exact Positioning */
.btx-locations-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 48px;
    align-items: center;
    padding: 24px 0;
}

.btx-location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.btx-location-graphic {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f4fd 0%, #d1e9fc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btx-location-graphic:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btx-icon-svg {
    width: 48px;
    height: 48px;
}

.btx-location-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
    letter-spacing: -0.01em;
}

/* Categories Section - Exact Grid */
.btx-categories-zone {
    padding-top: 32px;
    /* padding-left: 20px;
    padding-right: 20px; */
}

.btx-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 56px;
    align-items: start;
}


.btx-category-col {
    display: flex;
    flex-direction: column;
}
.btx-category-col ul{
   padding-left: 0px;
}
.btx-category-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.btx-category-heading.btx-invisible {
    opacity: 0;
    pointer-events: none;
}

.btx-category-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.btx-item-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.2s ease;
    font-weight: 400;
}

.btx-item-link:hover {
    color: #000000;
}

/* Responsive Design - Exact Breakpoints */
@media (max-width: 1200px) {
    .btx-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .btx-locations-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .btx-marketplace-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .btx-brand-section {
        border-right: 0px;
    }

    .hideOnsmall {
        display: none;
    }

    .btx-main-wrapper {
        padding: 0 20px;
    }

    .btx-header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .btx-primary-heading {
        font-size: 3rem;
    }

    .btx-cta-button {
        align-self: flex-start;
    }

    .btx-marketplace-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .btx-locations-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .btx-location-graphic {
        width: 72px;
        height: 72px;
    }

    .btx-icon-svg {
        width: 40px;
        height: 40px;
    }

    .btx-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .btx-primary-heading {
        font-size: 2.5rem;
    }

    .btx-description-text {
        font-size: 1rem;
    }

    .btx-cta-button {
        width: 100%;
        padding: 16px 28px;
    }

    .btx-locations-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .btx-categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .btx-marketplace-content {
        gap: 32px;
    }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .btx-location-graphic {
        background: linear-gradient(135deg, #e8f4fd 0%, #d1e9fc 100%);
    }
}


/* Print Styles */
@media print {
    .btx-cta-button {
        display: none;
    }

    .btx-location-graphic {
        background: #f0f0f0 !important;
    }

    body {
        background: white !important;
    }
}

.footerSection {
    margin-bottom: 50px;
    margin-top: 50px
}

.btx-header-zone {
    max-width: 1800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.btx-marketplace-content {
    max-width: 1800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* category Container */

.services-container {
    display: flex;
    max-width: 1800px;
    margin: 0 auto;
    background: white;
    border-radius: 0;
    overflow: hidden;
    padding: 20px;
}

.services-left {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.service-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-bottom: 1px solid #e5e7eb;
}

.service-item:last-of-type {
    border-bottom: none;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-item.active::before {
    left: 0;
}

.service-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 38px 32px;
    transition: color 0.3s ease;
}

.service-number {
    font-size: 16px;
    font-weight: 400;
    color: #9ca3af;
    min-width: 32px;
    transition: color 0.3s ease;
}

.service-title {
    font-size: 18px;
    font-weight: 400;
    color: #374151;
    text-decoration: underline;
    text-decoration-color: #374151;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: all 0.3s ease;
}

.service-title::after {
    content: '→';
    font-size: 14px;
    margin-left: 8px;
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    opacity: 0.7;
}

/* Fixed arrow rotation - removed conflicting rules */
.service-item:hover .service-title::after {
    transform: rotate(45deg) translateX(2px);
}

.service-item.active .service-title::after {
    color: white;
    opacity: 1;
    transform: rotate(45deg) translateX(2px);
}

.service-item.active .service-content {
    color: white;
}

.service-item.active .service-number {
    color: #9ca3af;
}

.service-item.active .service-title {
    color: white;
    text-decoration-color: white;
}

.service-item:not(.active):hover {
    background-color: #f9fafb;
}

.view-all {
    padding: 32px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #e5e7eb;
}


.services-right {
    flex: 0.8;
    position: relative;
    overflow: hidden;
    max-height: 500px;
    height: 500px;
}

.service-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-display.active {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(#000000a8, rgb(0 0 0 / 82%));
    padding: 60px 40px 40px;
    color: white;
}

.service-overlay h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.service-overlay p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 350px;
    opacity: 0.95;
}

.progress-indicator {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

/* Responsive Design - Fixed mobile image visibility */
@media (max-width: 1024px) {


    .services-right {
        height: 400px;
        /* Increased height for better visibility */
        min-height: 400px;
    }

    .service-overlay {
        padding: 40px 30px 30px;
    }

    .service-overlay h2 {
        font-size: 24px;
    }

    .progress-indicator {
        top: 30px;
        right: 30px;
    }
}

@media (max-width: 768px) {


    .service-content {
        padding: 20px 24px;
        gap: 16px;
    }

    .service-title {
        font-size: 16px;
    }

    .services-right {
        height: 350px;
        /* Increased from 300px */
        min-height: 350px;
    }

    .service-overlay {
        padding: 30px 24px 24px;
    }

    .service-overlay h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

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

    .view-all {
        padding: 24px;
    }

    .progress-indicator {
        top: 24px;
        right: 24px;
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 18px 20px;
        gap: 14px;
    }

    .service-title {
        font-size: 15px;
    }

    .service-number {
        font-size: 14px;
        min-width: 28px;
    }

    .services-right {
        height: 300px;
        /* Increased from 250px */
        min-height: 300px;
    }

    .service-overlay {
        padding: 25px 20px 20px;
    }

    .service-overlay h2 {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .service-overlay p {
        font-size: 12px;
        max-width: 280px;
    }

    .view-all {
        padding: 20px;
    }
}

/* Add touch support for mobile */
@media (hover: none) and (pointer: coarse) {
    .service-item:active .service-title::after {
        transform: rotate(45deg) translateX(2px);
    }
}

@media (max-width:15500px) {
    .contanerPadding {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width:1024px) {
    .contanerPadding {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width:500px) {
    .contanerPadding {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.btx-categories-grid {
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px
}

/* hero section --------------------------- */

.hero-bottom-section {
    background: #0a0a0a;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-bottom-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(91.45deg, #000000 27.11%, rgba(0, 0, 0, 0.9) 53.38%, rgba(0, 0, 0, 0.8) 75.41%, rgba(0, 0, 0, 0.5) 98.52%), url(https://jf.hashtechorange.com/assets/images/modeling/RealEstate_key_visual_3.jpg);
    z-index: 1;
}

.hero-bottom-background-service {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(91.45deg, #000000 27.11%, rgba(0, 0, 0, 0.9) 53.38%, rgba(0, 0, 0, 0.8) 75.41%, rgba(0, 0, 0, 0.5) 98.52%), url(http://15.206.74.249/wp-content/uploads/2025/04/RealEstate_key_visual_3.jpg);
    z-index: 1;
}

.hero-bottom-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    transform: rotate(-15deg);
    animation: backgroundShift 20s ease-in-out infinite;
}


.hero-bottom-container {
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 130px 20px;
}

.hero-bottom-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-bottom-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

/* .hero-bottom-subtitle::after {
    content: '';
    position: absolute;
    margin-left: 10px;
    bottom: -8px;
    width: 60px;
    height: 2px;
    background: #ff0000;
    animation: expandWidth 1s ease-out 0.8s both;
    top: 11px;
} */

.hero-bottom-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 50px;
    animation: fadeInLeft 1s ease-out 0.4s both;
}

.hero-bottom-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-bottom-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #0a0a0a;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-bottom-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.hero-bottom-cta-button:hover::before {
    left: 100%;
}

.hero-bottom-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    background: #f5f5f5;
}

.hero-bottom-cta-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-bottom-cta-button:hover .hero-bottom-cta-arrow {
    transform: translateX(4px);
}

.hero-bottom-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}


.marginforHero {
    margin-bottom: 80px;
}

/* Animations & Media Queries remain unchanged... */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes backgroundShift {

    0%,
    100% {
        transform: rotate(-15deg) translateX(0);
    }

    50% {
        transform: rotate(-15deg) translateX(20px);
    }
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 0.03;
        transform: rotate(25deg) scale(1);
    }

    50% {
        opacity: 0.05;
        transform: rotate(25deg) scale(1.1);
    }
}


/* News and Blog -=================== */


.news-log-content-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    border-color: #eee !important;
    color: #ccc !important;
    transform: none !important;
    box-shadow: none !important;
}

.news-log-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    position: relative;
    padding: 0 20px;
}

/* Vertical separator line */
.news-log-container::before {
    content: '';
    position: absolute;
    left: 35%;
    top: 80px;
    bottom: 80px;
    width: 1px;
    background-color: #eee;
    z-index: 1;
}

/* Left Content Section (35%) */
.news-log-content-section {
    width: 35%;
    display: flex;
    flex-direction: column;
    padding: 0px 40px 0px 0;
    position: relative;
}

.news-log-content-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    color: #000;
    letter-spacing: -0.02em;
}

.news-log-content-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background-color: #000;
    margin-top: 20px;
}

.news-log-content-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    font-weight: 400;
    max-width: 320px;
    margin-bottom: 40px;
}

/* Navigation Arrows in Content Section */
.news-log-content-nav {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}


/* Right Slider Section (65%) */
.news-log-slider-section {
    width: 65%;
    padding: 0px 0 0px 40px;
    position: relative;
}

.news-log-slider-container {
    width: 100%;
    position: relative;
    overflow: visible;
}

.news-log-slider {
    height: 100%;
    overflow: visible;
}

.news-log-slide {
    padding: 60px 15px 15px;
    transition: transform 0.5s ease;
}

.news-log-slide-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 500px;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    border-radius: 0;
}

/* Staggered positioning with animation - Desktop only */
@media (min-width: 993px) {
    .news-log-slider .slick-slide.slick-active:nth-child(odd) .news-log-slide-card {
        transform: translateY(60px);
    }

    .news-log-slider .slick-slide.slick-active:nth-child(even) .news-log-slide-card {
        transform: translateY(-60px);
    }

    .news-log-slider .slick-slide.slick-center .news-log-slide-card {
        transform: translateY(0);
    }
}

.news-log-slide-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.news-log-slide-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: top right;
    z-index: 1;
}

.news-log-slide-image-container:hover::before {
    width: 200%;
    height: 200%;
    transform: rotate(45deg);
}

.related-projects-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

.related-projects-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: top right;
    z-index: 1;
}

.related-projects-image-container:hover::before {
    width: 200%;
    height: 200%;
    transform: rotate(45deg);
}


.news-log-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-log-slide-card:hover .news-log-slide-image {
    transform: scale(1.05);
}

.news-log-slide-content {
    padding: 30px 0px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-log-slide-meta {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.news-log-slide-date {
    color: #f50;
    margin-right: 15px;
    position: relative;
}

.news-log-slide-date::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 18px;
    background-color: #f50;
}

.news-log-slide-category {
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 10px;
}

.news-log-slide-title {
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}
.news-log-slide-title a{
   color: #000;
   font-weight: 400;
}

/* Hide default slick arrows */
.news-log-slider .slick-prev,
.news-log-slider .slick-next {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .news-log-content-section {
        padding: 60px 30px 60px 0;
    }



    .news-log-container::before {
        left: 35%;
        top: 60px;
        bottom: 60px;
    }
}

@media (max-width: 1200px) {
    .news-log-content-section {
        width: 40%;
        padding: 50px 20px 50px 0;
    }

    .news-log-slider-section {
        width: 60%;
    }

    .news-log-container::before {
        left: 40%;
    }

    .news-log-content-description {
        max-width: 100%;
    }

    .news-log-slide-card {
        height: 450px;
    }

    .news-log-slide-image-container {
        height: 250px;
    }
}

@media (max-width: 992px) {
    .news-log-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .news-log-container::before {
        display: none;
    }

    .news-log-content-section {
        width: 100%;
        padding: 60px 0 30px;
    }

    .news-log-content-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .news-log-content-description {
        max-width: 80%;
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .news-log-slider-section {
        width: 100%;
        padding: 0 0 0px;
    }

    .news-log-content-nav {
        margin-bottom: 30px;
    }

    .news-log-slide {
        padding: 15px;
    }

    .news-log-slide-card {
        height: auto;
        margin: 0 auto !important;
    }
}

@media (max-width: 768px) {
    .news-log-content-section {
        padding: 50px 0 20px;
    }

    .news-log-content-title {
        margin-bottom: 20px;
    }

    .news-log-content-description {
        max-width: 90%;
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }



    .news-log-slide-content {
        padding: 20px 0px;
    }

    .news-log-slide-title {
        font-size: 1.3rem;
    }

    .news-log-slider .slick-slide {
        padding: 0 10px;
    }

    /* Ensure full width cards on mobile */
    .news-log-slide {
        padding: 15px 0;
    }
}

@media (max-width: 576px) {
    .news-log-container {
        padding: 0 10px;
    }

    .news-log-content-section {
        padding: 40px 0 15px;
    }

    .news-log-content-description {
        max-width: 100%;
    }

    .news-log-content-nav {
        gap: 15px;
        margin-top: 20px;
    }



    .news-log-slide-image-container {
        height: 200px;
    }
}

@media (max-width: 400px) {
    .news-log-content-title {
        font-size: 2.2rem;
    }


}

@media (max-width: 1024px) {
    .news-log-content-section {
        padding: 0px 0 20px;
    }

    .modern-images-section {
        padding: 0 0 0px;
    }

}

@media (max-width:550px) {
    .heroSctionGrid {
        padding: 0px;
    }

    .wrap-content {
        padding: 0px;
    }

    .services-container {
        padding: 0px;
    }

    .LogosContainer {
        padding: 0px !important;
    }

    .modern-container {
        padding: 0px;
    }

    .modern-images-section {
        padding-bottom: 0px
    }

    .news-log-container {
        padding: 0px;
    }

    .news-log-content-section {
        padding: 0px !important;
    }

    .hero-bottom-container {
        padding: 130px 0px;
    }

    .news-log-slider .slick-slide {
        padding: 0px;
    }
}

/* Testimoneal css============================================ rgb(240 240 240) */

.testimonealSection {
    background-color: rgb(240 240 240);
    /* margin-bottom: 80px; */
}

.userWrapper {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}

.testimonial-content .text-size-medium {
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.testimonial-content-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    border-color: #eee !important;
    color: #ccc !important;
    transform: none !important;
    box-shadow: none !important;
}

.testimonial-container {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    position: relative;
    padding: 0 20px;
}

/* Vertical separator line */
.testimonial-container::before {
    content: '';
    position: absolute;
    left: 35%;
    top: 80px;
    bottom: 80px;
    width: 1px;
    background-color: #ddd;
    z-index: 1;
}

/* Left Content Section (35%) */
.testimonial-content-section {
    width: 35%;
    display: flex;
    flex-direction: column;
    padding: 0px 40px 0px 0;
    position: relative;
}

.testimonial-content-header {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content-header::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: #ff4444;
}

.testimonial-content-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 60px;
    color: #000;
    letter-spacing: -0.02em;
}

/* Navigation Arrows in Content Section */
.testimonial-content-nav {
    display: flex;
    gap: 20px;
}

.testimonial-content-arrow {
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #666;
    font-family: 'Inter', sans-serif;
}

.testimonial-content-arrow:hover:not(.disabled) {
    border-color: #000;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Right Testimonial Section (65%) */
.testimonial-display-section {
    width: 65%;
    padding: 0px 0 0px 40px;
    position: relative;
    display: flex;
    align-items: center;
}

.testimonial-content-wrapper {
    position: relative;
    width: 100%;
}

/* Connect With Us Link */
.connect-link {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.connect-link:hover {
    color: #666;
}

/* .connect-link::after {
    content: '↗';
    font-size: 1rem;
} */

.connect-link:hover .arrow {
    transform: rotate(45deg) translateX(2px);
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.userWrapper svg {
    fill: red;
    background-color: rgb(240 240 240);
    position: relative;
    top: -40px;
}


.testimonial-author {
    position: relative;
    width: 100%;
    margin-left: 20px;
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.testimonial-title {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* Hidden testimonials for JavaScript switching */
.testimonial-item {
    display: none;
}


.testimonial-item.active {
    display: block;
    animation: slideUp 0.7s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

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


/* Responsive Design */
@media (max-width: 1400px) {
    .testimonial-content-section {
        padding: 0px 30px 0px 0;
    }

    .testimonial-display-section {
        padding: 0px 0 0px 30px;
    }

    .testimonial-container::before {
        left: 35%;
        top: 60px;
        bottom: 60px;
    }
}

@media (max-width: 1200px) {
    .testimonial-content-section {
        width: 40%;
        padding: 0px 20px 0px 0;
    }

    .testimonial-display-section {
        width: 60%;
        padding: 0px 0 0px 20px;
    }

    .testimonial-container::before {
        left: 40%;
    }


}

@media (max-width: 992px) {
    .testimonial-container {
        flex-direction: column;
        padding: 0 15px;
        min-height: auto;
    }

    .testimonial-container::before {
        display: none;
    }

    .testimonial-content-section {
        width: 100%;

        padding: 0px 0 0px;
    }

    .testimonial-content-header::after {
        display: none;
    }

    .testimonial-display-section {
        width: 100%;
        padding: 0px 0 0px;
    }



    .connect-link {
        position: static;
        justify-content: flex-start;
        margin-bottom: 30px;
        margin-top: 9px;
    }


    .text-size-medium {
        max-width: 100%;
    }


}

@media (max-width: 768px) {

    .services-container {
        flex-direction: column;
    }

    .testimonial-content {
        position: relative;
        z-index: 2;
        padding: 0px 0;
    }

    .testimonial-content-section {
        padding: 50px 0 20px;
    }


    .text-size-medium {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-name {
        font-size: 1.3rem;
    }


}

@media (max-width: 576px) {
    .userWrapper {
        display: flex;
        flex-direction: row;
        margin-top: 3px;
    }

    .userWrapper svg {
        width: 80px;
    }

    .testimonial-container {
        padding: 0 10px;
    }

    .testimonial-content-section {
        padding: 40px 0 15px;
    }

    .testimonial-content-nav {
        gap: 15px;
        margin-top: 15px;
    }



    .text-size-medium {
        font-size: 14px;
    }


}


/* Service page start here ============================================================================== */

/* Details Grid */

/* .service-page-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
} */

/* Hero Section */
.service-page-hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    padding: 30px;
}

.service-page-hero-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    /* text-transform: uppercase; */
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: #fff;
}


.service-page-hero-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.service-page-hero-tag {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 3px;
}

/* Main Content */

.service-page-main-content .text-size-medium {
    margin-bottom: 15px;
}

.service-page-content-text-first {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}



.service-page-features-list {
    list-style: none;
    margin-bottom: 20px;
}

.service-page-features-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.service-page-features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-size: 16px;
    font-weight: bold;
}

.service-page-final-text {
    font-size: 15px;
    color: #444;
    margin-top: 15px;
}

/* Sidebar */
/* .service-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 30px;
} */

.service-page-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

.service-page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 120px;
    align-self: start;
    /* very important inside grid */
}


.service-page-sidebar-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Location Card */
.service-page-location-card {
    border-top: 5px solid rgb(70 124 148);
}

.service-page-location-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-page-location-icon {

    border-radius: 2px;
}

.service-page-location-icon svg {
    position: relative;
    top: 4px;
}

.service-page-location-header-text {
    font-size: 12px;
    color: rgb(70 124 148);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-page-location-content {
    padding: 16px;
}

.service-page-location-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.service-page-location-subtitle {
    font-size: 13px;
    color: #666;
}

/* Client Card */
.service-page-client-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-page-client-icon {
    width: 14px;
    height: 14px;
    background-color: #6b7280;
    border-radius: 2px;
}

.service-page-client-header-text {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-page-client-content {
    padding: 16px;
}

.service-page-client-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Key Outcomes Card */
.service-page-outcomes-card {
    border-top: 5px solid #ff6b35;
}

.service-page-outcomes-header {
    background-color: #fff7f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-page-outcomes-icon svg {
    position: relative;
    top: 4px;
}

.service-page-outcomes-icon {

    border-radius: 2px;
}

.service-page-outcomes-header-text {
    font-size: 12px;
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-page-outcomes-content {
    padding: 16px;
}

.service-page-outcomes-list {
    list-style: none;
}

.service-page-outcomes-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 350px;
    opacity: 0.95;
}

.service-page-expertise-item {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.95;
}

.service-page-outcomes-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background-color: #fff7f5;
    border: 2px solid #ff6b35;
    border-radius: 50%;
}

.service-page-outcomes-list li::after {
    content: "✓";
    position: absolute;
    left: 7px;
    top: 10px;
    color: #ff6b35;
    font-size: 10px;
    font-weight: bold;
}

/* Expertise Card */
.service-page-expertise-card {
    border-top: 5px solid #8b5cf6;
}

.service-page-expertise-header {
    background-color: #faf8ff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-page-expertise-icon {

    border-radius: 2px;
}

.service-page-expertise-icon svg {
    position: relative;
    top: 4px;
}

.service-page-expertise-header-text {
    font-size: 12px;
    color: #8b5cf6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-page-expertise-content {
    padding: 16px;
}

.service-page-expertise-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.service-page-expertise-item:last-child {
    border-bottom: none;
}

.service-page-expertise-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.service-page-expertise-indicator {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border-radius: 2px;
}

.service-page-bridges-indicator {
    background-color: #e5e7eb;
    color: #6b7280;
}

.service-page-civil-indicator {
    background-color: #e5e7eb;
    color: #6b7280;
}

.service-page-geo-indicator {
    background-color: #ff6b35;
    color: white;
}

.service-page-structural-indicator {
    background-color: #ef4444;
    color: white;
}


.servicePageCotact {
    width: 100%;
    margin-top: 50px;
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .service-page-container {
        max-width: 100%;
        padding: 15px;
        gap: 25px;
    }

    .service-page-hero-section {
        height: 400px;
    }

    .service-page-hero-title {
        font-size: 2rem;
    }
}

/* Responsive Design - Mobile Large */
@media (max-width: 768px) {
    .service-page-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .service-page-hero-title {
        font-size: 1.8rem;
    }

    .service-page-hero-section {
        height: 350px;
    }

    .service-page-hero-overlay {
        padding: 25px;
    }

    .service-page-content-text,
    .service-page-content-text-first {
        font-size: 16px;
    }

    .service-page-features-list li {
        font-size: 16px;
    }
}

.ul-listing {
    padding: 18px;
}

/* Responsive Design - Mobile Medium */
@media (max-width: 640px) {
    .service-page-container {
        padding: 12px;
        gap: 17px;
    }

    .ul-listing {
        padding: 0px;
    }

    .service-page-hero-section {
        height: 300px;
    }

    .service-page-hero-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .service-page-hero-overlay {
        padding: 20px;
    }

    .service-page-hero-tags {
        gap: 6px;
    }

    .service-page-hero-tag {
        padding: 3px 10px;
        font-size: 10px;
    }

    .service-page-location-content,
    .service-page-client-content,
    .service-page-outcomes-content,
    .service-page-expertise-content {
        padding: 14px;
    }

    .service-page-location-header,
    .service-page-client-header,
    .service-page-outcomes-header,
    .service-page-expertise-header {
        padding: 10px 14px;
    }
}

/* Responsive Design - Mobile Small */
@media (max-width: 480px) {
    .service-page-container {
        padding: 10px;
        gap: 15px;
    }

    .service-page-hero-section {
        height: 250px;
    }

    .service-page-hero-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .service-page-hero-overlay {
        padding: 15px;
    }

    .service-page-hero-tags {
        flex-wrap: wrap;
        gap: 5px;
    }

    .service-page-hero-tag {
        padding: 2px 8px;
        font-size: 9px;
    }

    .service-page-content-text,
    .service-page-content-text-first {
        font-size: 15px;
        line-height: 1.6;
    }

    .service-page-features-list li {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .service-page-location-content,
    .service-page-client-content,
    .service-page-outcomes-content,
    .service-page-expertise-content {
        padding: 12px;
    }

    .service-page-location-header,
    .service-page-client-header,
    .service-page-outcomes-header,
    .service-page-expertise-header {
        padding: 8px 12px;
    }

    .service-page-contact-button {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Responsive Design - Extra Small */
@media (max-width: 360px) {
    .service-page-container {
        padding: 0px;
    }

    .service-page-hero-section {
        height: 220px;
    }

    .service-page-hero-title {
        font-size: 1.2rem;
    }

    .service-page-hero-overlay {
        padding: 12px;
    }

    .service-page-content-text,
    .service-page-content-text-first,
    .service-page-features-list li {
        font-size: 14px;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .service-page-hero-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .service-page-hero-section {
        height: 280px;
    }

    .service-page-hero-title {
        font-size: 1.6rem;
    }
}

/* Print Styles */
@media print {
    .service-page-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-page-hero-section {
        height: 300px;
    }

    .service-page-contact-button {
        display: none;
    }
}


/* Related Post Scetion =================================================== */

.related-projects-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0px 20px;
}

.related-projects-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 40px;
}

.related-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.related-projects-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.related-projects-card:hover {
    transform: translateY(-5px);
}

.related-projects-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.related-projects-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-projects-card:hover .related-projects-image {
    transform: scale(1.05);
}

.related-projects-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    color: white;
    z-index: 2;
}

.related-projects-bridges-tag {
    background-color: #8b7355;
}

.related-projects-roads-tag {
    background-color: #6b7280;
}

.related-projects-bridges-blue-tag {
    background-color: #3b82f6;
}

.related-projects-content {
    padding: 20px 0px;
}



.related-projects-location-primary {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2px;
}

.related-projects-location-secondary {
    font-size: 14px;
    color: #467c94;
    font-weight: 500;
}

.headingRelatedPost {
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

/* Responsive Design - Large Tablet */
@media (max-width: 1500px) {
    .related-projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Responsive Design - Large Tablet */
@media (max-width: 1024px) {
    .related-projects-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .related-projects-grid {
        gap: 25px;
    }

    .related-projects-title {
        font-size: 1.6rem;
        margin-bottom: 35px;
    }
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
    .related-projects-body {
        padding: 30px 15px;
    }

    .related-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .related-projects-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .related-projects-image-container {
        height: 180px;
    }

    .related-projects-content {
        padding: 18px;
    }


}

/* Responsive Design - Mobile Large */
@media (max-width: 640px) {


    .related-projects-grid {
        gap: 18px;
    }

    .related-projects-image-container {
        height: 160px;
    }

    .related-projects-content {
        padding: 16px;
    }



    .related-projects-location-primary {
        font-size: 0.85rem;
    }

    .related-projects-location-secondary {
        font-size: 0.8rem;
    }

    .related-projects-container {
        max-width: 100%;
        padding: 0px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 480px) {
    .related-projects-body {
        padding: 20px 10px;
    }

    .related-projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .related-projects-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .related-projects-image-container {
        height: 200px;
    }

    .related-projects-content {
        padding: 15px;
    }


    .related-projects-category-tag {
        top: 12px;
        left: 12px;
        padding: 5px 10px;
        font-size: 10px;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 360px) {
    .related-projects-body {
        padding: 15px 8px;
    }

    .related-projects-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .related-projects-image-container {
        height: 180px;
    }

    .related-projects-content {
        padding: 12px;
    }



    .related-projects-location-primary {
        font-size: 0.8rem;
    }

    .related-projects-location-secondary {
        font-size: 0.75rem;
    }
}

/* Animation for loading */
.related-projects-card {
    opacity: 0;
    transform: translateY(30px);
    animation: related-projects-fadeInUp 0.6s ease forwards;
}

.related-projects-card:nth-child(1) {
    animation-delay: 0.1s;
}

.related-projects-card:nth-child(2) {
    animation-delay: 0.2s;
}

.related-projects-card:nth-child(3) {
    animation-delay: 0.3s;
}

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

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .related-projects-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .related-projects-body {
        background-color: white;
        padding: 20px;
    }

    .related-projects-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .related-projects-card:hover {
        transform: none;
        box-shadow: none;
    }
}


/* Service Page hero section */

.servicePage-hero {
    text-align: center;
    margin: 0 auto;

}

.serivePageButtonGroup {
    justify-content: center;
}

.learnMore-service {
    background-color: #fff;
    border: 2px solid #fff;
    color: #000;
}



/* Project page ================================================================== */

.video-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

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

.content-sec-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.content-section {
    padding-top: 0px;
}

.leftContentSec .headingRelatedPost,
.leftContentSec .button-group {
    text-align: left;
    margin-bottom: 40px;
    color: #000;
    line-height: 1.5;
    width: 80%;
    margin: 0 auto;
}

.leftContentSec .button-group {
    margin-top: 30px
}

@media (max-width:1990px) {

    .rightContentSection .service-page-main-content {
        width: 80%;
    }

}

@media (max-width:1024px) {

    .rightContentSection .service-page-main-content {
        width: 100%;
    }

    .leftContentSec .headingRelatedPost {
        text-align: left;
        margin-bottom: 40px;
        color: #000;
        line-height: 1.5;
        width: 80%;
        margin: 0 auto;
        font-size: 23px;

    }

    .projectService {
        padding-bottom: 0px;
    }

}

@media (max-width:768px) {

    .rightContentSection .service-page-main-content {
        width: 100%;
    }

    .leftContentSec .headingRelatedPost {
        text-align: left;
        margin-bottom: 30px !important;
        color: #000;
        line-height: 1.5;
        width: 100%;
        margin: 0 auto;
    }

    .content-sec-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

}

@media (max-width: 500px) {
    .leftContentSec .headingRelatedPost {
        font-size: 16px;
    }
}

/* Sector page css =============================================================================================================== */

.sector-sectionTwo {
    padding-left: 0px;
    padding-right: 0px;
}

.sector-sectionTwo {
    padding-top: 60px;
    padding-bottom: 60px;
}

.sector-page-header {
    background-color: #1a1a1a;
    color: white;
    position: relative;
    overflow: hidden;
}



.sector-page-content {
    display: flex;
    width: 100%;
    align-items: center;
}

.sector-page-feature {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 40px 30px;
    height: 120px;
}

.sector-page-feature-left {
    background-color: #1a1a1a;
}

.sector-page-feature-middle {
    background-color: #2a2a2a;
    background-image: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    position: relative;
}

.sector-page-feature-middle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sector-page-feature-right {
    background-color: #1a1a1a;
}

.sector-page-avatars {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.sector-page-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid #444;
    background-color: #666;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sector-page-avatar:not(:first-child) {
    margin-left: -18px;
}

.sector-page-avatar-1 {
    background-image: url('/images/profile1.jpg');
}

.sector-page-avatar-2 {
    background-image: url('/images/profile2.jpg');
}

.sector-page-avatar-3 {
    background-image: url('/images/profile3.jpg');
}

.sector-page-avatar-4 {
    background-image: url('/images/profile4.jpg');
}

.sector-page-avatar-more {
    background-color: #555;
    background-image: linear-gradient(135deg, #555 0%, #444 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #ddd;
    border-color: #666;
}

.sector-page-text {
    flex: 1;
    padding-left: 10px;
}

.sector-page-title {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    color: #e8e8e8;
    letter-spacing: -0.2px;
}


/* Special styling for middle section avatars */
.sector-page-feature-middle .sector-page-avatar {
    border-color: #555;
}

.sector-page-feature-middle .sector-page-avatar-more {
    background-color: #666;
    background-image: linear-gradient(135deg, #666 0%, #555 100%);
    border-color: #777;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sector-page-container {
        flex-direction: column;
    }

    .sector-page-content {
        flex-direction: column;
    }

    .sector-page-feature {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 30px 20px;
    }

    .sector-page-feature-middle {
        border-left: none;
        border-right: none;
        border-top: 1px solid #333;
        border-bottom: 1px solid #333;
    }
}

@media (max-width: 768px) {
    .sector-page-feature {
        flex-direction: column;
        gap: 20px;
        padding: 25px 15px;
    }

    .sector-page-title {
        font-size: 16px;
        text-align: center;
    }

    .sector-page-avatar {
        width: 50px;
        height: 50px;
    }

    .sector-page-avatar:not(:first-child) {
        margin-left: -15px;
    }
}

@media (max-width: 480px) {
    .sector-page-feature {
        padding: 20px 10px;
    }

    .sector-page-title {
        font-size: 15px;
        line-height: 1.3;
    }

    .sector-page-avatar {
        width: 45px;
        height: 45px;
    }

    .sector-page-avatar:not(:first-child) {
        margin-left: -12px;
    }

}

/* Hover effects */
.sector-page-avatar {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sector-page-avatar:hover {
    transform: translateY(-2px);
}


/* Sector page testimoneal */

.sector-page-testimonial {
    max-width: 1800px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 25px;
    padding: 60px 40px 50px 40px;
    position: relative;
    margin: 0px 20px;
}

.sector-page-rating-section {
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}



.sector-page-rating-content {
    background-color: #ffffff;
    padding: 0 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.sector-page-stars {
    display: flex;
    gap: 3px;
}

.sector-page-star {
    width: 18px;
    height: 18px;
    fill: #fbbf24;
    flex-shrink: 0;
}

.sector-page-rating-text {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

.sector-page-logos-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.sector-page-logo {
    flex: 1;
    min-width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* opacity: 0.6; */
    transition: opacity 0.3s ease;
}

.sector-page-logo:hover {
    opacity: 0.8;
}

.sector-page-logo svg {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sector-page-testimonial {
        padding: 55px 30px 45px 30px;
    }

    .sector-page-logos-container {
        gap: 15px;
    }

    .sector-page-logo {
        min-width: 90px;
        height: 55px;
    }

    .sector-page-rating-content {
        padding: 0 20px;
        gap: 10px;
    }

    .sector-page-star {
        width: 16px;
        height: 16px;
    }

    .sector-page-rating-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .sector-page-testimonial {
        padding: 50px 25px 40px 25px;
    }

    .sector-page-logos-container {
        gap: 12px;
    }

    .sector-page-logo {
        min-width: 80px;
        height: 50px;
    }

    .sector-page-rating-content {
        padding: 0 15px;
        gap: 8px;
    }

    .sector-page-star {
        width: 15px;
        height: 15px;
    }

    .sector-page-rating-text {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .sector-page-testimonial {
        padding: 45px 20px 35px 20px;
    }

    .sector-page-rating-content {
        flex-direction: column;
        gap: 5px;
        padding: 8px 15px;
    }

    .sector-page-rating-text {
        font-size: 12px;
        text-align: center;
    }

    .sector-page-logos-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .sector-page-logo {
        min-width: 120px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .sector-page-testimonial {
        padding: 40px 15px 30px 15px;
        border-radius: 20px;
    }

    .sector-page-logos-container {
        flex-direction: column;
        gap: 20px;
    }

    .sector-page-logo {
        width: 150px;
        height: 50px;
    }

    .sector-page-rating-content {
        padding: 10px 12px;
    }
}

.color-textblack {
    color: #000;
}


/* key Services ====================================== */

.contanienrSecFour {
    margin: 0px 20px;
}

@media (max-width:768px) {
    .contanienrSecFour {
        margin: 0px;
    }

    .sector-page-testimonial {
        margin: 0px;
    }
}


.sector-page-accordion-container {
    max-width: 1800px;
    margin: 0 auto;
}

.sector-page-content-wrapper {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: start;
}

.sector-page-accordion {
    width: 100%;
}

.sector-page-accordion-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}

.sector-page-accordion-item:last-child {
    border-bottom: none;
}

.sector-page-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.sector-page-accordion-header:hover {
    color: #374151;
}

.sector-page-accordion-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.sector-page-accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
    color: #6b7280;
}

.sector-page-accordion-item.active .sector-page-accordion-icon {
    transform: rotate(180deg);
}

.sector-page-accordion-content {
    display: none;
    overflow: hidden;
}

.sector-page-accordion-text {
    padding-bottom: 24px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.sector-page-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 16px;
    text-align: center;
    position: sticky;
    top: 20px;
}

/* Technical drawing placeholder */
.sector-page-technical-drawing {
    width: 90%;
    height: 550px;
    background-image: url('https://jf.hashtechorange.com/assets/images/sector/Screenshot%202025-07-07%20163858_Nero_AI_Image_Upscaler_Photo_Face.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sector-page-content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

    .sector-page-image-placeholder,
    .sector-page-technical-drawing {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .sector-page-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sector-page-accordion-title {
        font-size: 18px;
    }

    .sector-page-accordion-header {
        padding: 20px 0;
    }

    .sector-page-image-placeholder,
    .sector-page-technical-drawing {
        height: 550px;
    }
}

@media (max-width: 480px) {
    .sector-page-accordion-container {
        padding: 0px;
    }

    .sector-page-accordion-title {
        font-size: 15px;
    }

    .sector-page-accordion-header {
        padding: 16px 0;
    }

    .sector-page-accordion-text {
        font-size: 13px;
        padding-bottom: 20px;
    }

    .sector-page-image-placeholder,
    .sector-page-technical-drawing {
        height: 350px;
    }
}

.sector-page-accordion-item .sector-page-accordion-content {
    margin-bottom: 20px;
}


/* FrequentlyAsked ========================================*/
.frequently-asked-wrapper {
    margin: 0px 20px;
}

@media (max-width:768px) {
    .frequently-asked-wrapper {
        margin: 0px;
    }
}


/* benifits ccontainer ========== */

.container-benifits {
    max-width: 1800px;
    margin: 0 auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
}

.feature-icon::after {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M14,2H6A2,2 0 0,0 4,4V20A2,2 0 0,0 6,22H18A2,2 0 0,0 20,20V8L14,2M18,20H6V4H13V9H18V20Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-content {
    flex: 1;
    padding-top: 2px;
}

.container-benifits {
    padding: 0px 20px;
}



/* Responsive Design */
@media (max-width: 768px) {
    .container-benifits {
        padding: 0px;
    }


    .feature-card {
        padding: 24px;
        gap: 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon::after {
        width: 20px;
        height: 20px;
    }


}

@media (max-width: 480px) {
    .features-list {
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
    }


}


/* Modeliing Container Css */

.container-modeling {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.service-image-sector {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-image-sector img {
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
}

.service-content-modeling {
    padding: 24px;
}



.service-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 5px;
}



.image-modelling {

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 200px;
    height: 90px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .container-modeling {

        padding: 0px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .service-image-sector {
        height: 180px;
    }

    .service-content-modeling {
        padding: 20px;
    }



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

@media (max-width: 480px) {
    .service-content-modeling {
        padding: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }



    .service-description {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* international container section */

.container-international {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0px 20px;
}

.grid-international {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.card-international {
    padding: 30px 20px;
    border-radius: 8px;
    text-align: left;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    /* or customize: background 0.3s, box-shadow 0.3s, etc. */
}

.card-international:hover {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.logo-international {
    height: 40px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.logo-international img {
    max-height: 100%;
    max-width: 150px;
}

.schuco-logo-international {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
}

.kawneer-logo-international {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
}

.tubelite-logo-international {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
}

.kinlong-logo-international {
    font-size: 20px;
    font-weight: bold;
    color: #2c5aa0;
}

.reynaers-logo-international {
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.ykk-logo-international {
    color: #2980b9;
    font-size: 28px;
    font-weight: bold;
}

.ykk-tagline-international {
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

.gulf-logo-international {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gulf-text-international {
    color: #95a5a6;
    font-size: 18px;
}

.gulf-arrow-international {
    width: 0;
    height: 0;
    border-left: 15px solid #27ae60;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}


.special-text-international {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-international {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-international {
        grid-template-columns: 1fr;
    }

    .card-international {
        padding: 20px 15px;
        min-height: 150px;
    }

    .container-international {

        padding: 0px;
    }

}

@media (max-width: 480px) {
    .card-international {
        padding: 15px 10px;
    }

    .logo-international {
        height: 35px;
        margin-bottom: 15px;
    }

}



/* Building Wrapper section0 */
.benefits-banner-container {
    max-width: 1800px;
    width: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 30%, #c084fc 60%, #e9d5ff 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    position: relative;
    min-height: 500px;
}

.benefits-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 500px;
    position: relative;
    z-index: 2;
}

.benefits-banner-text {
    padding: 60px 80px;
    color: white;
}

.benefits-banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
}

.benefits-banner-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #374151;
    opacity: 0.8;
}

.benefits-banner-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000000;
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.benefits-banner-button:hover {
    background-color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.3);
}

.benefits-banner-button::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.benefits-banner-button:hover::after {
    transform: translateX(4px);
}

.benefits-banner-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 40px 0 20px;
    overflow: hidden;
}

.benefits-banner-building {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    object-position: bottom center;
    /* transition: transform 0.3s ease; */
    /* filter: drop-shadow(0 -10px 30px rgba(0, 0, 0, 0.1)); */
    /* transform-origin: bottom center; */
}



.benefits-banner-building::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    pointer-events: none;
}

.benefits-banner-building:hover::before {
    animation: shine 1s ease forwards;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .benefits-banner-title {
        font-size: 3rem;
    }

    .benefits-banner-text {
        padding: 50px 60px;
    }

    .benefits-banner-image {
        padding: 40px 40px 0 20px;
    }
}

@media (max-width: 1200px) {
    .benefits-banner-title {
        font-size: 2.5rem;
    }

    .benefits-banner-text {
        padding: 40px 50px;
    }

    .benefits-banner-building {
        max-width: 500px;
    }
}

@media (max-width: 1024px) {
    .benefits-banner-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .benefits-banner-text {
        padding: 40px;
        text-align: center;
    }

    .benefits-banner-title {
        font-size: 2.25rem;
    }

    .benefits-banner-image {
        padding: 20px 40px 0;
        min-height: 300px;
    }

    .benefits-banner-building {
        max-width: 400px;
    }
}

@media (max-width: 768px) {

    .benefits-banner-container {}

    .benefits-banner-container {
        border-radius: 16px;
        min-height: 450px;
    }

    .benefits-banner-content {
        min-height: 450px;
    }

    .benefits-banner-text {
        padding: 30px 24px;
    }

    .benefits-banner-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .benefits-banner-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .benefits-banner-button {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .benefits-banner-image {
        padding: 20px 24px 0;
        min-height: 250px;
    }

    .benefits-banner-building {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .benefits-banner-title {
        font-size: 1.75rem;
    }

    .benefits-banner-subtitle {
        font-size: 0.9rem;
    }

    .benefits-banner-text {
        padding: 24px 20px;
    }

    .benefits-banner-image {
        padding: 16px 20px 0;
        min-height: 200px;
    }

    .benefits-banner-building {
        max-width: 280px;
    }
}

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

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

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.benefits-banner-title {
    animation: fadeInUp 0.8s ease-out forwards;
}

.benefits-banner-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.banner-paragraph-benifit {
    color: #000;
    margin-bottom: 30px;
}

.benefits-banner-button {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.benefits-banner-building {
    animation: slideInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

/* Subtle floating animation for the building */
.benefits-banner-building:not(:hover) {
    animation: slideInUp 1s ease-out 0.6s forwards, subtleFloat 8s ease-in-out 2s infinite;
}



/* Why choose section================================================== */

.why-chose-section h3 {
    margin-bottom: 5px;
}

.why-chose-container {
    max-width: 100%;
    background: #ffffff;
    counter-reset: section-counter;
}

.why-chose-section {
    margin-bottom: 50px;
}

.why-chose-section:last-child {
    margin-bottom: 0;
}


.why-chose-list {
    list-style: none;
    padding: 0;
}

.why-chose-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

.why-chose-list li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {


    .why-chose-section {
        margin-bottom: 40px;
    }

    .why-chose-title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }


    .why-chose-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .why-chose-list li::before {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {

    .why-chose-section {
        margin-bottom: 35px;
    }


    .why-chose-list li {
        font-size: 14px;
        margin-bottom: 8px;
        align-items: flex-start;
    }

    .why-chose-list li::before {
        margin-right: 8px;
        margin-top: 1px;
    }
}

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

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


/* Sector Top banner section */

.facade-services-container {
    max-width: 1800px;
    margin: 0 auto;
    background: white;
    border: 2px solid #e5e7eb;
    border-top: 0;
    border-bottom: 0;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.facade-services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.facade-services-text {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facade-services-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 24px;
}

.facade-services-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 40px;
}

.facade-services-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.facade-services-btn-primary {
    background-color: #1f2937;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.facade-services-btn-primary:hover {
    background-color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.3);
}

.facade-services-btn-primary::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.facade-services-btn-primary:hover::after {
    transform: translateX(4px);
}

.facade-services-btn-secondary {
    background-color: transparent;
    color: #4b5563;
    padding: 16px 24px;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.facade-services-btn-secondary:hover {
    border-color: #9ca3af;
    background-color: #f9fafb;
    transform: translateY(-1px);
}

.facade-services-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 20px;
}

.facade-services-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}



.facade-services-badge {
    position: absolute;
    top: -3px;
    right: -2px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    padding: 12px 16px;
    border-radius: 5px 0px 0px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    z-index: 10;
}

.facade-services-badge-text {
    white-space: nowrap;
}

.facade-services-flags {
    display: flex;
    gap: 4px;
}

.facade-services-flag {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
    position: relative;
}

.facade-services-flag:nth-child(1) {
    background: linear-gradient(to bottom, #000 33%, #ff0000 33%, #ff0000 66%, #ffff00 66%);
}

.facade-services-flag:nth-child(2) {
    background: linear-gradient(to right, #002868 33%, white 33%, white 66%, #bf0a30 66%);
}

.facade-services-flag:nth-child(3) {
    background: linear-gradient(to bottom, #ff9933 33%, white 33%, white 66%, #138808 66%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .facade-services-text {
        padding: 50px 40px;
    }

    .facade-services-title {
        font-size: 2rem;
    }
}

@media (max-width: 1024px) {
    .facade-services-content {
        grid-template-columns: 1fr;
    }

    .facade-services-text {
        padding: 40px 30px;
    }

    .facade-services-title {
        font-size: 1.875rem;
    }

    .facade-services-buttons {
        justify-content: center;
    }

    .facade-services-image {
        min-height: 400px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .facade-services-container {
        border-radius: 12px;
    }

    .facade-services-text {
        padding: 30px 24px;
    }

    .facade-services-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .facade-services-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .facade-services-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .facade-services-btn-primary,
    .facade-services-btn-secondary {
        padding: 14px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }

    .facade-services-badge {
        top: 15px;
        right: 15px;
        padding: 10px 14px;
        font-size: 0.8rem;
        border-radius: 12px;
    }

    .facade-services-flag {
        width: 18px;
        height: 18px;
    }

    .facade-services-image {
        min-height: 300px;
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .facade-services-text {
        padding: 24px 20px;
    }

    .facade-services-title {
        font-size: 1.5rem;
    }

    .facade-services-description {
        font-size: 0.9rem;
    }

    .facade-services-badge {
        top: 12px;
        right: 12px;
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 10px;
    }

    .facade-services-flag {
        width: 16px;
        height: 16px;
    }

    .facade-services-image {
        min-height: 250px;
        padding: 20px 10px;
    }
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.facade-services-title {
    animation: fadeInUp 0.8s ease-out forwards;
}

.facade-services-description {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.facade-services-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}


.facade-services-badge {
    animation: fadeInUp 0.6s ease-out 1s forwards;
    opacity: 0;
}

/* Subtle floating animation for the cityscape */
.facade-services-img:not(:hover) {
    animation: float 6s ease-in-out infinite;
}




/* .button.w-button::after {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    opacity: 0.7;
    color: #fff !important; 
} */


/* sector css slider logo */
.sector-page-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.sector-page-slider-track {
    display: flex;
    align-items: center;
    margin: 0 -15px;
}

.sector-page-slider-item {
    padding: 0 15px;
    outline: none;
}

.sector-page-slider-img {
    max-width: 120px;
    height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sector-page-slider-img:hover {
    opacity: 1;
    /* transform: scale(1.1); */
}

@media (max-width: 768px) {
    .sector-page-slider-img {
        max-width: 100px;
        height: 30px;
    }
}


/*  scrool isdicator ==================== */
/* Scroll Indicator Styles */
.scroll-indicator {
    position: fixed;
    right: 30px;
    /* Changed from left to right */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-line {
    width: 3px;
    /* Made thinner */
    height: 120px;
    /* Made shorter */
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-progress {
    width: 100%;
    height: 0%;
    background-color: #ff4757;
    border-radius: 2px;
    transition: height 0.1s ease-out;
    position: absolute;
    top: 0;
    /* Changed from bottom to top for downward fill */
    left: 0;
}

.scroll-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    /* Made smaller */
    font-weight: bold;
    color: #ff4757;
    letter-spacing: 1px;
}


@media (max-width:1024px) {
    .nav-menu {
        display: none;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .scroll-indicator {
        right: 15px;
    }

    .scroll-line {
        height: 100px;
        width: 2px;
    }

    .scroll-text {
        font-size: 8px;
    }

}

@media (max-width: 480px) {
    .hero-bottom-cta-button {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: #ffffff;
        color: #0a0a0a;
        padding: 8px 22px;
        font-size: 10px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .scroll-indicator {
        right: 10px;
    }

    .scroll-line {
        height: 80px;
        width: 2px;
    }

    .content {
        margin-right: 40px;
        padding: 0 15px;
    }
}

.btx-location-graphic.btx-uk-graphic img{
    width: 100px;
}

.btx-location-graphic.btx-india-graphic img{
    width: 100px;
}

.container-modeling p{
    margin-bottom: 15px;
}

.related-projects-container h2{
    margin-bottom: 15px;
}

.innerpage-pagination-area .paginations{
    max-width: 300px;
    margin: auto;
    margin-top: 100px;
}

/* 

.blog-grid-page.pt-120.mb-120 .container .row.gy-5{
        display: grid
;
    grid-template-columns: repeat(3, 1fr);
    max-width: 70%;
    margin: 0 auto;
    gap: 30px;
}
@media (max-width:1366px) {
    .blog-grid-page.pt-120.mb-120 .container .row.gy-5{
        display: grid
;
    grid-template-columns: repeat(3, 1fr);
    max-width: 90%;
    margin: 0 auto;
    gap: 30px;
}
}
@media (max-width:1024px) {
    .blog-grid-page.pt-120.mb-120 .container .row.gy-5{
        display: grid
;
    grid-template-columns: repeat(2, 1fr);
    max-width: 90%;
    margin: 0 auto;
    gap: 30px;
}
}
@media (max-width:500px) {
    .blog-grid-page.pt-120.mb-120 .container .row.gy-5{
        display: grid
;
    grid-template-columns: 1fr;
    max-width: 90%;
    margin: 0 auto;
    gap: 30px;
}
}
.blog-details-page{
    max-width: 90%;
    margin: 0 auto;
}.blog-details-page .blog-details-top-area {
    max-width: 970px;
    width: 100%;
    margin: 0px auto 35px;
}.blog-details-page {
    margin-top: 120px;
} */


/* Footer add on  */

  .j-f-end-container {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            /* max-width: 1800px; */
            max-width: 95%;
            margin: 0 auto;
            padding: 20px;
            border-top: 1px solid lightgray;
        }

        .j-f-end-left {
            margin-bottom: 10px;
            color: #555;
        }
        .j-f-end-left p{
         font-size: 0.9rem;
        }

        .j-f-end-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .j-f-end-links {
            display: flex;
            gap: 20px;
        }
        .j-f-end-links a{
              font-size: 0.9rem;
        }

        .j-f-end-links a {
            color: #666;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .j-f-end-links a:hover {
            color: #000;
        }

        .j-f-end-socials {
            display: flex;
            gap: 10px;
        }

        .j-f-end-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            transition: background 0.3s ease;
        }

        .j-f-end-icon:hover {
            background: #eee;
        }

        .j-f-end-icon svg {
            width: 16px;
            height: 16px;
            fill: #000;
        }

        /* Responsive */
        @media (min-width: 600px) {
            .j-f-end-container {
                flex-direction: row;
            }

            .j-f-end-right {
                flex-direction: row;
                gap: 30px;
                align-items: center;
            }

            .j-f-end-left {
                margin-bottom: 0;
            }
        }
       @media (min-width: 500px) and (max-width: 1024px) {
    .btx-brand-section {
        margin-top: 104px;
    }
}

 @media (max-width: 1440px) {
     .j-f-end-container {
            max-width: 93%;
        }
 }
