.cs-font2 {
    font-family: "Poppins", sans-serif;
}


/* ===============================
   CASE STUDY 1 INTRO
   =============================== */

.case-study-1-intro {
    font-family: "Poppins", sans-serif;
    display: flex;
    width: 100%;
    min-height: 600px;
}

.case-study-1-intro-image {
    width: 50%;
}

.case-study-1-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.case-study-1-intro-content-wrapper {
    width: 50%;
    background: #0c0c0c;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px;
}

.case-study-1-intro-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    max-width: 520px;
}

.case-study-1-intro-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #aaaaaa;
    display: block;
    margin-bottom: 20px;
}

.case-study-1-intro-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.case-study-1-intro-button {
    display: inline-block;
    padding: 14px 32px;
    background: #D2A35A;
    color: #ffffff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s ease;
}

.case-study-1-intro-button:hover {
    background: #c19047;
    transform: translateY(-2px);
}

.case-study-1-intro-overlay {
    position: absolute;
    inset: 0;
    background: #000000;
    z-index: 3;
    animation: caseStudyIntroReveal 1.2s ease forwards;
}

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

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

@media (max-width:768px) {

    .case-study-1-intro {
        flex-direction: column;
        position: relative;
        height: 420px;
    }

    .case-study-1-intro-image {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .case-study-1-intro-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .35;
    }

    .case-study-1-intro-content-wrapper {
        width: 100%;
        background: transparent;
        height: 100%;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
    }

    .case-study-1-intro-content {
        max-width: 90%;
    }

    .case-study-1-intro-title {
        font-size: 23px;
    }

    .case-study-1-intro-button {
        padding: 12px 26px;
        font-size: 14px;
    }

}

/* ===============================
   CASE STUDY 1 INTRO
   =============================== */






/* ===============================
   CASE STUDY 1 DETAIL CONTENT
   =============================== */

.case-study-stage {
    padding: 140px 0;
    font-family: "Poppins", sans-serif;
}

.case-study-stage:nth-child(even) {
    background: #f5f5f5;
}

.case-study-stage-text {
    display: flex;
    justify-content: flex-end;
}

.flex-md-row-reverse .case-study-stage-text {
    justify-content: flex-start;
}

.case-study-stage-text-inner {
    max-width: 480px;
}

.case-study-stage-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
}

.case-study-process-image {
    position: relative;
}

.case-study-process-badge {
    position: absolute;
    bottom: -35px;
    right: -35px;
    background: #111;
    color: #fff;
    padding: 32px;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.case-study-process-stage {
    font-size: 12px;
    letter-spacing: 3px;
    color: #777;
    display: block;
    margin-bottom: 14px;
}

.case-study-process-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #111;
}

.case-study-process-text {
    font-size: 18px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 28px;
    max-width: 520px;
}

.case-study-process-button {
    display: inline-block;
    background: #D2A35A;
    color: #fff;
    padding: 15px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.case-study-process-button:hover {
    background: #c19047;
}

@media (max-width:992px) {

    .case-study-stage {
        padding: 90px 0;
    }

    .case-study-stage-text {
        justify-content: flex-start;
        margin-top: 30px;
    }

    .case-study-stage-text-inner {
        max-width: 100%;
    }

    .case-study-stage-img {
        height: auto;
    }

    .case-study-process-title {
        font-size: 34px;
    }

}

/* ===============================
   CASE STUDY 1 DETAIL CONTENT
   =============================== */






/* ===============================
   CASE STUDY 2 DETAILS CONTENT
   =============================== */

/* .case-study-2-content {
    font-family: "Poppins", sans-serif;
}

.case-study-2-block {
    padding: 110px 0;
}

.case-study-2-inner {
    max-width: 520px;
}

.case-study-2-line {
    width: 50px;
    height: 3px;
    background: #D2A35A;
    margin-bottom: 20px;
}

.case-study-2-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111;
}

.case-study-2-text {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

.bg-light {
    background: #f7f7f7;
}



@media (max-width:768px) {

    .case-study-2-block {
        padding: 80px 0;
    }

    .case-study-2-title {
        font-size: 26px;
    }

} */

/* ===============================
   CASE STUDY 2 DETAILS CONTENT
   =============================== */




/* ===============================
   CASE STUDY DESCRIPTION
   =============================== */
.case-study-description-full {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    max-width: 720px;
}

.case-study-description {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    max-width: 720px;
}

.case-study-description p {
    margin-bottom: 18px;
}

.case-study-description h1,
.case-study-description h2,
.case-study-description h3,
.case-study-description h4 {
    font-weight: 600;
    color: #111;
    margin-top: 30px;
    margin-bottom: 14px;
}

.case-study-description ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.case-study-description ul li {
    margin-bottom: 8px;
}

.case-study-description ol {
    list-style: decimal;
    padding-left: 24px;
    margin-bottom: 20px;
}

.case-study-description ol li {
    margin-bottom: 8px;
}

.case-study-description a {
    color: #D2A35A;
    text-decoration: none;
    font-weight: 500;
}

.case-study-description a:hover {
    text-decoration: underline;
}

.case-study-description strong {
    font-weight: 600;
    color: #111;
}

.case-study-description blockquote {
    border-left: 4px solid #D2A35A;
    padding-left: 18px;
    margin: 20px 0;
    color: #555;
    font-style: italic;
}

/* ===============================
   CASE STUDY DESCRIPTION
   =============================== */




/* ===============================
   CASE STUDY DESCRIPTION FULL
   =============================== */
.case-study-description-full {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    /* max-width: 720px; */
}

.case-study-description-full {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    /* max-width: 720px; */
}

.case-study-description-full p {
    margin-bottom: 18px;
}

.case-study-description-full h1,
.case-study-description-full h2,
.case-study-description-full h3,
.case-study-description-full h4 {
    font-weight: 600;
    color: #111;
    margin-top: 30px;
    margin-bottom: 14px;
}

.case-study-description-full ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 20px;
}

.case-study-description-full ul li {
    margin-bottom: 8px;
}

.case-study-description-full ol {
    list-style: decimal;
    padding-left: 24px;
    margin-bottom: 20px;
}

.case-study-description-full ol li {
    margin-bottom: 8px;
}

.case-study-description-full a {
    color: #D2A35A;
    text-decoration: none;
    font-weight: 500;
}

.case-study-description-full a:hover {
    text-decoration: underline;
}

.case-study-description-full strong {
    font-weight: 600;
    color: #111;
}

.case-study-description-full blockquote {
    border-left: 4px solid #D2A35A;
    padding-left: 18px;
    margin: 20px 0;
    color: #555;
    font-style: italic;
}

/* ===============================
   CASE STUDY DESCRIPTION FULL
   =============================== */


/* ===============================
   CASE DIVIDER
   =============================== */

.case-divider {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    overflow: hidden;
}

.case-divider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

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

.case-divider-header {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto 30px auto;
}

.typing-word {
    display: inline-block;
    white-space: nowrap;
    border-right: 3px solid #D2A35A;
    padding-right: 4px;
    animation: typingReveal 4s steps(10, end) infinite;
}

@keyframes typingReveal {
    0% {
        clip-path: inset(0 100% 0 0)
    }

    40% {
        clip-path: inset(0 0 0 0)
    }

    60% {
        clip-path: inset(0 0 0 0)
    }

    100% {
        clip-path: inset(0 100% 0 0)
    }
}

.divider-line {
    width: 220px;
    height: 3px;
    background: #D2A35A;
    margin: 25px auto 18px auto;
}

.case-divider-descr {
    font-family: "Poppins", sans-serif;
    font-size: 19px;
    font-style: italic;
    color: #fff;
    opacity: .9;
}

@media (max-width:992px) {

    .case-divider {
        padding: 110px 0;
    }

    .case-divider-header {
        font-size: 28px;
        max-width: 90%;
    }

    .case-divider-descr {
        font-size: 18px;
    }

}

/* ===============================
   CASE DIVIDER
   =============================== */





/* ===============================
   OTHER CASE STUDIES SLIDER
   =============================== */

/* .other-case-studies {
    padding: 120px 0;
    font-family: "Poppins", sans-serif;
}

.other-case-studies-tag {
    font-size: 13px;
    letter-spacing: 3px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.other-case-studies-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 60px;
}

.case-study-card {
    cursor: pointer;
}

.case-study-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 18px;
}

.case-study-card-category {
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
    display: block;
    margin-bottom: 6px;
}

.case-study-card-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.swiper-pagination {
    margin-top: 40px;
    position: relative;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #D2A35A;
} */


/* ===============================
   OTHER CASE STUDIES SLIDER
   =============================== */




/* ===============================
   OTHER CASE STUDIES SLIDER
   =============================== */

.other-case-studies {
    padding: 120px 0;
    font-family: "Poppins", sans-serif;
}

.other-case-studies-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.other-case-studies-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 60px;
}

.case-study-card {
    cursor: pointer;
}

.case-study-card-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
}

.case-study-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.case-study-card-img-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(210, 163, 90, 0.45);
    opacity: 0;
    transition: .35s ease;
}

.case-study-card:hover .case-study-card-img-wrapper::after {
    opacity: 1;
}

.case-study-card-category {
    font-size: 12px;
    letter-spacing: 2px;
    color: #888;
    display: block;
    margin-bottom: 6px;
}

.case-study-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: .3s ease;
}

.case-study-card:hover .case-study-card-title {
    color: #c99742;
}

.swiper-pagination {
    margin-top: 40px;
    position: relative;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #D2A35A;
}

/* ===============================
   OTHER CASE STUDIES SLIDER
   =============================== */




/* ===============================
   CASE STUDY HOME SLIDER
   =============================== */

.case-study-home-slider {
    padding: 120px 0;
    font-family: "Poppins", sans-serif;
}

.case-study-home-slider-card a {
    text-decoration: none;
    color: inherit;
}

.case-study-home-slider-card {
    background: #0f0f0f;
    border-radius: 14px;
    overflow: hidden;
    transition: .35s;
    height: 100%;
}

.case-study-home-slider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .45);
}

.case-study-home-slider-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.case-study-home-slider-content {
    padding: 26px 30px 30px;
}

.case-study-home-slider-category {
    font-size: 12px;
    letter-spacing: 1px;
    color: #D2A35A;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.case-study-home-slider-title {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    color: #D2A35A;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-home-slider-text {
    font-size: 16px;
    line-height: 1.7;
    color: #b5b5b5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-home-slider .swiper-pagination {
    margin-top: 40px;
    position: relative;
}

.case-study-home-slider .swiper-pagination-bullet {
    background: #555;
    opacity: 1;
}

.case-study-home-slider .swiper-pagination-bullet-active {
    background: #D2A35A;
}

/* ===============================
   CASE STUDY HOME SLIDER
   =============================== */




/* ===============================
   CASE STUDY ITEM
   =============================== */

.case-study-item {
    background: #0f0f0f;
    border-radius: 14px;
    overflow: hidden;
    transition: .35s;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

.case-study-item a {
    text-decoration: none;
    color: inherit;
}

.case-study-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .45);
}

.case-study-item-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.case-study-item-body {
    padding: 26px 30px 30px;
    background: #0f0f0f;
}

.case-study-item-category {
    font-size: 13px;
    letter-spacing: 1px;
    color: #D2A35A;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.case-study-item-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #D2A35A;
    margin-bottom: 14px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-item-text {
    font-size: 15px;
    line-height: 1.7;
    color: #b5b5b5;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===============================
   CASE STUDY ITEM
   =============================== */



/* ===============================
   SERVICE DETAILS ONE
   =============================== */

.service-details-one {
    /* padding: 120px 0; */
    font-family: "Poppins", sans-serif;
}

.service-details-one-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #777;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-details-one-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 18px;
    max-width: 520px;
}

.service-details-one-text {
    font-size: 16px;
    color: #777;
    margin-bottom: 20px;
    /* max-width: 480px; */
}

.service-details-one-text p {
    margin-bottom: 10px;
    /* 🔥 reduce space between paragraphs */
    margin-top: 0;
    line-height: 1.7;
}

.service-details-one-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.service-step h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-step p {
    color: #777;
    line-height: 1.6;
    max-width: 450px;
}

.service-details-one-image img {
    /* width: 100%; */
    border-radius: 20px;
    object-fit: cover;
}


.service-details-one-background-image {
    position: relative;
    width: 100%;
    max-width: 900px;
    /* height: 320px;            */
    height: 70vh;

    margin: 60px auto;
    border-radius: 12px;
    overflow: hidden;

    background-size: contain;
    /* background-position: center; */
    background-position: center;
    background-repeat: no-repeat;
}

/* OPTIONAL: subtle overlay for premium feel */
.service-details-one-background-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    /* soft dark overlay */
    border-radius: 12px;
}

/* OPTIONAL: if you want slightly sharper look */
.service-details-one-background-image:hover {
    transform: scale(1.01);
    transition: transform 0.4s ease;
}

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

@media (max-width: 992px) {
    .service-details-one-background-image {
        height: 260px;
        margin: 50px auto;
    }
}

@media (max-width: 576px) {
    .service-details-one-background-image {
        height: 200px;
        margin: 40px 20px;
        /* small side padding on mobile */
        max-width: 100%;
    }
}

/* responsive */

@media (max-width:992px) {

    .service-details-one-title {
        font-size: 30px;
    }

    .service-details-one {
        padding: 80px 0;
    }

    .service-details-one-image {
        margin-top: 40px;
    }

}

/* ===============================
   SERVICE DETAILS ONE
   =============================== */




/* ===============================
   SERVICE DETAILS DESCRIPTION
   =============================== */

.service-details-description {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    /* slightly tighter than 2 for better balance */
    color: #666;
}

/* Paragraphs */
.service-details-description p {
    margin: 0 0 3px 0 !important;
    /* 🔥 force it tighter */
    line-height: 1.6;
}

/* Headings */
.service-details-description h1,
.service-details-description h2,
.service-details-description h3,
.service-details-description h4 {
    font-weight: 600;
    color: #111;
    margin-top: 20px;
    /* slightly tighter */
    margin-bottom: 10px;
}

.service-details-description h3 {
    display: none;
}

/* Unordered list */
.service-details-description ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 18px;
}

.service-details-description ul li {
    margin-bottom: 8px;
}

/* Ordered list */
.service-details-description ol {
    list-style: decimal;
    padding-left: 24px;
    margin-bottom: 18px;
}

.service-details-description ol li {
    margin-bottom: 8px;
}

/* Links */
.service-details-description a {
    color: #D2A35A;
    text-decoration: none;
    font-weight: 500;
}

.service-details-description a:hover {
    text-decoration: underline;
}

/* Bold text */
.service-details-description strong {
    font-weight: 600;
    color: #111;
}

/* Blockquote */
.service-details-description blockquote {
    border-left: 4px solid #D2A35A;
    padding-left: 16px;
    margin: 20px 0;
    color: #555;
    font-style: italic;
}

/* Remove empty paragraphs (CKEditor cleanup) */
.service-details-description p:empty {
    display: none;
}

/* Remove extra space on last element */
.service-details-description p:last-child {
    margin-bottom: 0;
}




/* ===============================
   SERVICE DIVIDER
   =============================== */

.service-divider {
    padding: 50px 0;
    background: #0b0b0b;
    text-align: left;
}

.service-divider-title {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 700;
    position: relative;
    padding-left: 28px;
    margin: 0;
}

.service-divider-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 100%;
    background: #D2A35A;
    border-radius: 4px;
}

/* ===============================
   SERVICE DIVIDER
   =============================== */




/* ===============================
   SERVICE CASE STUDY ONE 
   =============================== */

.case-study-process-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111;
    line-height: 1.3;
}

/* Tablet */

@media (max-width: 991px) {
    .case-study-process-title {
        font-size: 30px;
    }
}

/* Mobile */

@media (max-width: 576px) {
    .case-study-process-title {
        font-size: 22px;
        line-height: 1.35;
    }
}


.case-study-read-more {
    display: inline-block;
    margin-top: 10px;
    font-weight: 500;
    color: #c9a74d;
    text-decoration: none;
}

.case-study-read-more:hover {
    text-decoration: underline;
}

/* ===============================
   SERVICE CASE STUDY ONE
   =============================== */






/* ===============================
   SERVICE SLIDER
   =============================== */

.service-slider {
    padding: 120px 0;
    font-family: "Poppins", sans-serif;
}

.service-slider-header {
    margin-bottom: 60px;
    max-width: 600px;
}

.service-slider-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #11171c;
    display: block;
    margin-bottom: 10px;
}

.service-slider-heading {
    font-size: 30px;
    font-weight: 700;
    color: #D2A35A;
    margin-bottom: 12px;
}

.service-slider-description {
    color: #D2A35A;
    line-height: 1.8;
}

/* CARD */

.service-slider-card {
    position: relative;
    margin-bottom: 80px;
}

/* IMAGE WRAPPER */

.service-slider-image-wrapper {

    height: 320px;
    width: 100%;

    border-radius: 22px;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

/* FLOATING LABEL */


.service-slider-card-content {
    position: absolute;
    bottom: -28px;
    left: 28px;
    right: 28px;

    background: #fff;
    padding: 18px 24px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);

    transition: .3s;
}

.service-slider-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #11171c;
}

.service-slider-icon {
    font-size: 22px;
    color: #c9a74d;
}

.service-slider-card:hover .service-slider-card-content {
    transform: translateY(-6px);
}

/* PAGINATION */

.service-slider .swiper-pagination {
    margin-top: 70px;
    position: relative;
}

.service-slider .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
}

.service-slider .swiper-pagination-bullet-active {
    background: #c9a74d;
}

/* ===============================
   SERVICE SLIDER
   =============================== */





/* ===============================
CASE STUDY LISTS
=============================== */

.case-study-lists {
    font-family: "Poppins", sans-serif;
    padding-top: 0;
    margin-top: 0;
}

.case-study-list-row {
    padding: 120px 0;
}

.case-study-list-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.case-study-list-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

.case-study-list-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 45px solid transparent;
    border-right: 45px solid transparent;
    z-index: 2;
}

.case-study-list-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 45px solid transparent;
    border-left: 45px solid transparent;
    z-index: 2;
}

.case-study-list-content {
    padding-left: 40px;
}

.case-study-accent {
    display: block;
    width: 60px;
    height: 3px;
    background: #c9a74d;
    margin-bottom: 18px;
}

.case-study-label {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #c9a74d;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 400;
}

.case-study-list-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f2744;
    margin-bottom: 16px;
    line-height: 1.3;
}

.case-study-list-description {
    color: #777;
    line-height: 1.8;
    margin-bottom: 22px;
}

.case-study-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #c9a74d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: .3s;
}

.case-study-btn:hover {
    background: #b79540;
}

@media(max-width:991px) {

    .case-study-list-img {
        height: 320px;
    }

    .case-study-list-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .case-study-list-title {
        font-size: 28px;
    }

}

/* ===============================
CASE STUDY LISTS
=============================== */




/* ===============================
CASE STUDY 3 CONTENT
=============================== */



.case-study-3-content {
    font-family: "Poppins", sans-serif;
}

.case-study-3-intro {
    font-family: "Poppins", sans-serif;
    /* color: #111; */
    color: #666;
}

.case-study-3-intro h5 {
    /* color: #111; */
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
}



.case-study-3-content .row {
    min-height: 420px;
}

.cs3-image {
    height: 100%;
}

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

/* TEXT SIDE */

.cs3-text {
    height: 100%;
    padding: 90px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f5f5f5;
}

.cs3-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cs3-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.cs3-link {
    color: #e31e24;
    font-weight: 500;
    text-decoration: none;
}

.cs3-link:hover {
    text-decoration: underline;
}

/* MOBILE */

@media (max-width:768px) {

    .cs3-text {
        padding: 50px 30px;
    }

    .case-study-3-intro h5 {
        color: #111;
        font-size: 16px;
        line-height: 1.8;
        font-weight: 300;
    }

}

/* ===============================
CASE STUDY 3 CONTENT
=============================== */





/* ===============================
   CASE STUDY DESCRIPTION 4
   =============================== */

.case-study-description-4 {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    line-height: 2;
    /* color: #666; */
    color: #111;
}

.case-study-description-4 p {
    margin-bottom: 20px;
}

.case-study-description-4 h1,
.case-study-description-4 h2,
.case-study-description-4 h3,
.case-study-description-4 h4,
.case-study-description-4 span
 {
    font-weight: 600;
    color: #111;
    margin-top: 34px;
    margin-bottom: 16px;
}

.case-study-description-4 ul {
    list-style: disc;
    padding-left: 26px;
    margin-bottom: 22px;
}

.case-study-description-4 ul li {
    margin-bottom: 10px;
    /* color: #111; */
    color: #111;
}

ul li::marker {
    color: #111;
}

.case-study-description-4 ol {
    list-style: decimal;
    padding-left: 26px;
    margin-bottom: 22px;
}

.case-study-description-4 ol li {
    margin-bottom: 10px;
}

.case-study-description-4 a {
    color: #D2A35A;
    text-decoration: none;
    font-weight: 500;
}

.case-study-description-4 a:hover {
    text-decoration: underline;
}

.case-study-description-4 strong {
    font-weight: 600;
    color: #111;
}

.case-study-description-4 blockquote {
    border-left: 4px solid #D2A35A;
    padding-left: 18px;
    margin: 22px 0;
    color: #555;
    font-style: italic;
}

/* ===============================
   CASE STUDY DESCRIPTION 4
   =============================== */




/* ===============================
CASE STUDY 4
=============================== */

.case-study-4-content {
    font-family: "Poppins", sans-serif;
}

.cs4-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cs4-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.cs4-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0) 70%);
}

.cs4-title {
    position: absolute;
    z-index: 2;
    color: white;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    text-align: left;
}

.cs4-title h2 {
    font-size: 52px;
    font-weight: 600;
}

.cs4-text {
    padding: 120px 0;
}

@media (max-width:768px) {

    .cs4-hero {
        height: 300px;
    }

    .cs4-title {
        left: 30px;
    }

    .cs4-title h2 {
        font-size: 32px;
    }

    .cs4-text {
        padding: 60px 0;
    }

}

/* ===============================
END CASE STUDY 4
=============================== */







/* ===============================
SERVICE LIST 2
=============================== */

.service-list-2-card {
    display: block;
    margin-bottom: 70px;
    text-decoration: none;
    color: inherit;
}

.service-list-2-card,
.service-list-2-card * {
    text-decoration: none;
}

.service-list-2-card .row {
    min-height: 320px;
}

.service-list-2-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}

.service-list-2-text {
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.service-list-2-content {
    padding: 60px;
    max-width: 590px;
}

/* .service-list-2-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
} */

/* HEADER (NUMBER + TITLE INLINE) */
.service-list-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

/* NUMBER SAME SIZE AS TITLE */
.service-list-number {
    font-size: 25px;
    font-weight: 600;
    color: #c8a96a;
}

/* TITLE */
.service-list-title {
    font-size: 25px;
    font-weight: 600;
    margin: 0;
}

.service-list-2-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-list-2-learn {
    font-size: 16px;
    display: inline-block;
    position: relative;
    font-weight: 500;
    color: #111;
    padding-bottom: 6px;
}

.service-list-2-learn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #D2A35A;
}

.service-list-2-card:hover .service-list-2-learn::after {
    animation: serviceLine .6s ease;
}

@keyframes serviceLine {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

/* gold edge line */

.service-list-2-text::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0%;
    background: #D2A35A;
    transition: height .35s ease;
}

.service-list-2-card:hover .service-list-2-text::after {
    height: 100%;
}


.service-list-2-card.reverse .row {
    flex-direction: row-reverse;
}

.service-list-2-card.reverse .service-list-2-text::after {
    right: auto;
    left: 0;
}

@media (max-width:992px) {

    .service-list-2-content {
        padding: 40px;
    }

    .service-list-2-image {
        height: 260px;
    }

}

/* ===============================
END SERVICE LIST 2
=============================== */






/* ===============================
BACKGROUND DIVIDER
=============================== */

.background-divider {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0;
    color: #fff;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* dark transparent overlay */

.background-divider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

/* content */

.background-divider-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.background-divider-content h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
}

/* responsive */

@media (max-width:768px) {

    .background-divider {
        padding: 90px 0;
    }

    .background-divider-content h2 {
        font-size: 28px;
    }

}

/* ===============================
END BACKGROUND DIVIDER
=============================== */





/* ===============================
CASE STUDY SLIDER TWO
=============================== */

.case-study-slider-two {
    font-family: "Poppins", sans-serif;
    padding: 80px 0;
}

.case-study-slider-two-header {
    margin-bottom: 40px;
}

.case-study-slider-two-tag {
    font-size: 14px;
    letter-spacing: 1px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.case-study-slider-two-title {
    font-size: 25px;
    font-weight: 600;
    margin: 0;
}

.case-study-slider-two-heading {
    color: #C9A063;
    font-family: "Poppins", sans-serif;
}

.case-study-slider-two-card {
    position: relative;
    background: #f5f5f5;
    padding: 35px;
    min-height: 180px;
    overflow: hidden;
    cursor: pointer;
    border-top: 3px solid #D2A35A;
}

.case-study-slider-two-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D2A35A;
    transition: top .35s ease;
    z-index: 1;
}

.case-study-slider-two-card:hover::before {
    top: 0;
}

.case-study-slider-two-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100%;
}

.case-study-slider-two-category {
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
    display: block;
    margin-bottom: 14px;
}

.case-study-slider-two-card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #222;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-slider-two-arrow {
    font-size: 22px;
    color: #D2A35A;
}

.case-study-slider-two-card:hover .case-study-slider-two-card-title,
.case-study-slider-two-card:hover .case-study-slider-two-category,
.case-study-slider-two-card:hover .case-study-slider-two-arrow {
    color: #fff;
}

/* ===============================
END CASE STUDY SLIDER TWO
=============================== */





/* ===============================
CASE STUDY 5
=============================== */

.case-study-5 {
    font-family: "Poppins", sans-serif;
    padding: 80px 0;
}

.case-study-5-image {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
    margin-bottom: 40px;
}

.case-study-5-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-study-5-tab {
    border: none;
    background: #f5f5f5;
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: .25s ease;
}

.case-study-5-tab.active {
    background: #D2A35A;
    color: #fff;
}

.case-study-5-heading {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #C9A063;
}

@media (max-width:992px) {

    .case-study-5-image {
        height: 260px;
    }

    .case-study-5-tabs {
        flex-direction: row;
        margin-bottom: 20px;
    }

    .case-study-5-tab {
        flex: 1;
        text-align: center;
    }

}

/* ===============================
END CASE STUDY 5
=============================== */





/* ===============================
SERVICE LIST INTRO
=============================== */

.service-list-intro {
    font-family: "Poppins", sans-serif;
    padding: 90px 0;
    background: #f7f7f7;
}

.service-list-intro-image {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 6px;
}

.service-list-intro-content {
    padding-left: 40px;
}

.service-list-intro-title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #C9A063;
}

.service-list-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

@media(max-width:992px) {

    .service-list-intro-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .service-list-intro-image {
        height: 300px;
    }

}

/* ===============================
END SERVICE LIST INTRO
=============================== */




/* ===============================
SERVICE SLIDER 2
=============================== */

.service-slider-2 {
    font-family: "Poppins", sans-serif;
    padding: 90px 0;
}

.service-slider-2-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-slider-2-tag {
    display: block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 10px;
}

.service-slider-2-heading {
    font-size: 34px;
    font-weight: 600;
    color: #C9A063;
}

.service-slider-2-card {
    background: #f7f7f7;
    border-radius: 6px;
    overflow: hidden;
    transition: .35s ease;
    transform: scale(.9);
    opacity: .6;
}

.swiper-slide-active .service-slider-2-card {
    transform: scale(1.08);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-slider-2-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-slider-2-content {
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-slider-2-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #333;
}

.service-slider-2-link {
    color: #D2A35A;
    font-size: 20px;
}

/* pagination */

.service-slider-2 .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
}

.service-slider-2 .swiper-pagination-bullet-active {
    background: #D2A35A;
}

/* ===============================
END SERVICE SLIDER 2
=============================== */





/* ===============================
SERVICE SLIDER 2
=============================== */

.service-slider-2 {
    font-family: "Poppins", sans-serif;
    padding: 90px 0;
}

.service-slider-2-header {
    text-align: center;
    margin-bottom: 50px;
}

.service-slider-2-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.service-slider-2-heading {
    font-size: 36px;
    font-weight: 600;
    color: #C9A063;
}

.service-slider-2-card {
    border-radius: 14px;
    overflow: hidden;
    transition: .35s ease;
    transform: scale(.9);
    opacity: .6;
    background: #fff;
}

.swiper-slide-active .service-slider-2-card {
    transform: scale(1.08);
    opacity: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.service-slider-2-image {
    height: 230px;
    background-size: cover;
    background-position: center;
    transition: transform .45s ease;
}

.service-slider-2-card:hover .service-slider-2-image {
    transform: scale(1.08);
}

.service-slider-2-bottom {
    background: #D2A35A;
    padding: 32px 26px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-slider-2-title {
    font-size: 21px;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 500;
}

.service-slider-2-view {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
}

.service-slider-2-view i {
    font-size: 16px;
    transition: transform .25s ease;
}

.service-slider-2-card:hover .service-slider-2-view i {
    transform: translateX(6px);
}

.service-slider-2 .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
}

.service-slider-2 .swiper-pagination-bullet-active {
    background: #D2A35A;
}

/* ===============================
END SERVICE SLIDER 2
=============================== */







/* ===============================
CASE STUDY LIST 2
=============================== */

.case-study-list-2 {
    font-family: "Poppins", sans-serif;
    padding: 90px 0;
}

.category-list-2-title-tag {
    font-size: 25px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-list-2-title-wrapper hr {
    height: 4px;
    background-color: #11171c;
    border: none;
    opacity: 1;
}

.category-list-2-title-tag span {
    margin-bottom: 5px;
}

.case-study-list-2-header {
    margin-bottom: 20px;
}

.case-study-list-2-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.case-study-list-2-heading {
    font-size: 30px;
    font-weight: 600;
    color: #111;
    margin-bottom: 30px;
}

.case-study-list-2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
}

.case-study-list-2-image {
    height: 260px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    display: block;
    margin-bottom: 18px;
}

.case-study-list-2-title {
    font-size: 20px;
    /* increased */
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.35;
}

.case-study-list-2-title a {
    color: #111;
    text-decoration: none;
    transition: .3s ease;
}

.case-study-list-2-title a:hover {
    color: #C9A063;
}

.case-study-list-2-description {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-list-2-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.case-study-list-2-category {
    font-size: 12px;
    color: #888;
    letter-spacing: 1px;
}

.case-study-list-2-view {
    background: #111;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    transition: .3s ease;
}

.case-study-list-2-view:hover {
    background: #C9A063;
    color: #fff;
}

@media(max-width:992px) {

    .case-study-list-2-grid {
        grid-template-columns: 1fr;
    }

}

/* ===============================
END CASE STUDY LIST 2
=============================== */





/* ===============================
CASE STUDY PAGE DIVIDER
=============================== */

.case-study-page-divider {
    position: relative;
    background: #C6A25A;
    padding: 120px 0;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
}

.case-study-page-divider-title {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 500;
    max-width: 900px;
    margin: 0 auto;
}

.case-study-page-divider-tag {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: .9;
}

.case-study-page-divider::before {
    content: "";
    position: absolute;
    left: -150px;
    top: 40px;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
}

.case-study-page-divider::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 260px;
    height: 260px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}


@media (max-width: 992px) {
    .case-study-page-divider-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .case-study-page-divider {
        padding: 80px 0;
    }

    .case-study-page-divider-title {
        font-size: 22px;
        line-height: 1.4;
        padding: 0 15px;
    }
}

/* ===============================
END CASE STUDY PAGE DIVIDER
=============================== */




/* ===============================
CASE STUDY 6
=============================== */

.case-study-6 {
    font-family: "Poppins", sans-serif;
}

.case-study-6-image {
    width: 100%;
    height: 800px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
}

/* body */

.case-study-6-body {
    padding-left: 40px;
}

/* tabs */

.case-study-6-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.case-study-6-tab {
    background: none;
    border: none;
    padding: 12px 18px;
    font-weight: 500;
    color: #444;
    border-radius: 6px;
    transition: all .25s ease;
}

.case-study-6-tab.active {
    background: #C6A25A;
    color: #fff;
}

/* content */

.case-study-6-heading {
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #C6A25A;
}

.case-study-6-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* responsive */

@media (max-width:991px) {

    .case-study-6-body {
        padding-left: 0;
        margin-top: 40px;
    }

    .case-study-6-tabs {
        flex-wrap: wrap;
    }

}

/* ===============================
END CASE STUDY 6
=============================== */






/* ===============================
CASE STUDY 2 DETAILS CONTENT
=============================== */

.case-study-2-content {
    font-family: "Poppins", sans-serif;
}

.case-study-2-block {
    padding: 110px 0;
}

.case-study-2-inner {
    max-width: 520px;
}

.case-study-2-line {
    width: 50px;
    height: 3px;
    background: #D2A35A;
    margin-bottom: 20px;
}

.case-study-2-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #111;
}

.case-study-description {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

.bg-light {
    background: #f7f7f7;
}

@media (max-width:768px) {

    .case-study-2-block {
        padding: 80px 0;
    }

    .case-study-2-title {
        font-size: 26px;
    }

}

/* ===============================
END CASE STUDY 2 DETAILS CONTENT
=============================== */



/* ===============================
CASE STUDY SLIDER THREE
=============================== */

.case-study-slider-three {
    border-radius: 14px;
    overflow: hidden;
}

.case-study-slider-three .swiper {
    width: 100%;
}

.case-study-slider-three-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 14px;
}

.case-study-slider-three .swiper-button-prev,
.case-study-slider-three .swiper-button-next {
    color: #D2A35A;
}

.case-study-slider-three .swiper-pagination-bullet {
    background: #D2A35A;
    opacity: .5;
}

.case-study-slider-three .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width:768px) {

    .case-study-slider-three-slide img {
        height: 260px;
    }

}

/* ===============================
END CASE STUDY SLIDER THREE
=============================== */





/* ===============================
CASE STUDY SLIDER FOUR
=============================== */

.case-study-slider-four {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.case-study-slider-four-swiper {
    width: 100%;
}

.case-study-slider-four-swiper {
    width: 100%;
    height: 100%;
}

.case-study-slider-four-slide {
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.case-study-slider-four-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-slider-four .swiper-button-prev,
.case-study-slider-four .swiper-button-next {
    color: #D2A35A;
}

.case-study-slider-four .swiper-pagination {
    margin-top: 18px;
    position: relative;
}

.case-study-slider-four .swiper-pagination-bullet {
    background: #D2A35A;
    opacity: .4;
}

.case-study-slider-four .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width:768px) {

    .case-study-slider-four {
        max-width: 100%;
    }

    .case-study-slider-four-slide {
        height: 280px;
    }

}

/* ===============================
END CASE STUDY SLIDER FOUR
=============================== */






/* ===============================
CASE STUDY 7
=============================== */

.case-study-7 {
    font-family: "Poppins", sans-serif;
}

.case-study-7-content {
    padding-right: 50px;
}

.case-study-7-item {
    margin-bottom: 30px;
}

.case-study-7-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.case-study-7-number {
    font-size: 36px;
    font-weight: 600;
    color: #D2A35A;
    opacity: .6;
}

.case-study-7-title {
    font-size: 30px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.case-study-7-text {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    max-width: 520px;
}

.case-study-7-divider {
    height: 1px;
    background: #e6e6e6;
    margin: 30px 0;
}

.case-study-7-image {
    width: 100%;
    /* height:100%; */
    height: 800px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.case-study-7-image-2 {
    width: 100%;
    /* height:100%; */
    height: 800px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

@media (max-width:991px) {

    .case-study-7-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .case-study-7-image {
        height: 320px;
    }

    .case-study-7-image-2 {
        height: 320px;
    }

}

/* ===============================
END CASE STUDY 7
=============================== */







/* ===============================
CASE STUDY 8
=============================== */

.case-study-8 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
    overflow: visible;
}

.case-study-8-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    align-items: stretch;
    position: relative;
    overflow: visible;
}

.case-study-8-column {
    position: relative;
}

.case-study-8-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.case-study-8-outcome {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.case-study-8-outcome::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 60px solid transparent;
    border-bottom: 60px solid transparent;
    border-right: 60px solid var(--primary-gold);
    z-index: 1;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

/* ===============================
END CASE STUDY 8
=============================== */






/* ===============================
CASE STUDY 9
=============================== */

.case-study-9 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
}

.case-study-9-left {
    padding-right: 40px;
}

.case-study-9-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.case-study-9-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C6A25A;
}

.case-study-9-outcome {
    background: #C6A25A;
    color: #111;
}

.case-study-9-outcome .case-study-9-title {
    color: #111;
}

.case-study-9-outcome .case-study-description-4 {
    color: #111;
}

.case-study-9-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-study-9-icon {
    font-size: 20px;
    color: #C6A25A;
    flex-shrink: 0;
}

.case-study-9-outcome .case-study-9-icon {
    color: #111;
}

/* ===============================
END CASE STUDY 9
=============================== */





/* ===============================
CASE STUDY 11
=============================== */

.case-study-11 {
    font-family: "Poppins", sans-serif;
    padding: 100px 0;
}

.case-study-11-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.case-study-11-item {
    margin-bottom: 30px;
}

.case-study-11-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-study-11-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C6A25A;
    margin: 0;
}

.case-study-11-icon {
    font-size: 16px;
    color: #C6A25A;
    flex-shrink: 0;
}

.case-study-11 .case-study-description-4 {
    margin-top: 0;
    line-height: 1.8;
}

.case-study-11-item+.case-study-11-item {
    margin-top: 20px;
}

/* mobile */
@media (max-width: 991px) {

    .case-study-11-wrapper {
        max-width: 100%;
    }

    .case-study-11-title-wrap {
        margin-bottom: 8px;
    }

}

/* ===============================
END CASE STUDY 11
=============================== */






/* ===============================
CASE STUDY 10
=============================== */

/* .case-study-10 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
}

.case-study-10-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.case-study-10-item {
    position: relative;
    width: 33%;
}

.case-study-10-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.case-study-10-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
}

.case-study-10-left {
    transform: translateX(70px) scale(0.95);
    z-index: 1;
    opacity: 0.9;
}

.case-study-10-right {
    transform: translateX(-70px) scale(0.95);
    z-index: 1;
    opacity: 0.9;
}

.case-study-10-center {
    z-index: 3;
    transform: translateY(-50px);
}

.case-study-10-center .case-study-10-card {
    background: #C6A25A;
    color: #111;
    transform: scale(1.1);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.4);
}

.case-study-10-center .case-study-10-title {
    color: #111;
}

.case-study-10-center .case-study-description-4 {
    color: #111;
}


@media (max-width: 768px) {

    .case-study-10-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .case-study-10-item {
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
    }

    .case-study-10-card {
        transform: none !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .case-study-10-center {
        transform: none !important;
    }

    .case-study-10-center .case-study-10-card {
        background: #C6A25A;
        color: #111;
        transform: none !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .case-study-10-center .case-study-10-title {
        color: #111;
    }

    .case-study-10-center .case-study-description-4 {
        color: #111;
    }

} */


/* ===============================
END CASE STUDY 10
=============================== */




/* ===============================
CASE STUDY 10
=============================== */

.case-study-10 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
}

.case-study-10-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
    gap: 30px;
}

.case-study-10-item {
    position: relative;
    width: 33%;
    display: flex;
}

.case-study-10-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.case-study-10-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
}

.case-study-10-left {
    transform: translateX(70px) scale(0.95);
    z-index: 1;
    opacity: 0.9;
}

.case-study-10-right {
    transform: translateX(-70px) scale(0.95);
    z-index: 1;
    opacity: 0.9;
}

.case-study-10-center {
    z-index: 3;
    transform: translateY(-50px);
}

.case-study-10-left .case-study-10-card,
.case-study-10-right .case-study-10-card {
    min-height: 380px;
}

.case-study-10-center .case-study-10-card {
    background: #C6A25A;
    color: #111;
    transform: scale(1.1);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.4);
    min-height: 480px;
}

.case-study-10-center .case-study-10-title {
    color: #111;
}

.case-study-10-center .case-study-description-4 {
    color: #111;
}

@media (max-width: 768px) {

    .case-study-10-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .case-study-10-item {
        width: 100%;
        transform: none !important;
        opacity: 1 !important;
    }

    .case-study-10-card {
        transform: none !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        min-height: auto;
    }

    .case-study-10-center {
        transform: none !important;
    }

    .case-study-10-center .case-study-10-card {
        background: #C6A25A;
        color: #111;
        transform: none !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        min-height: auto;
    }

    .case-study-10-center .case-study-10-title {
        color: #111;
    }

    .case-study-10-center .case-study-description-4 {
        color: #111;
    }

}

/* ===============================
END CASE STUDY 10
=============================== */










/* ===============================
CASE STUDY 12 FINAL (NO OVERFLOW)
=============================== */

/* .case-study-12 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
    position: relative;
}

.case-study-14-header {
    margin-bottom: 25px;
}


.case-study-12-number {
    font-size: 18px;
    letter-spacing: 3px;
    color: #c8a96a;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}


.case-study-12-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
}


.case-study-12 .case-study-description-4 {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}


.case-study-12-line {
    width: 100%;
    height: 2px;
    background: #ccc;
    margin-bottom: 20px;
}

.case-study-12-outcome-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-12-outcome-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-study-12-arrow i {
    display: inline-block;
    color: #c9a24a;
    font-size: 35px;
    transform: scaleY(6);
    transform-origin: center;
}

.case-study-12-outcome {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.case-study-12-arrow-mobile {
    display: none;
    color: #c9a24a;
    font-size: 28px;
    margin-bottom: 15px;
}

.case-study-12-arrow-mobile i {
    display: inline-block;
    transform: scaleX(5);
    transform-origin: center;
}

@media (max-width: 991px) {

    .case-study-12-outcome-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .case-study-12-arrow {
        display: none;
    }

    .case-study-12-arrow-mobile {
        display: block;
    }
}
 */

/* ===============================
CASE STUDY 12 FINAL (NO OVERFLOW)
=============================== */



/* ===============================
CASE STUDY 12 FINAL (UPDATED)
=============================== */

.case-study-12 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
    position: relative;
}

/* HEADER (NUMBER + TITLE INLINE) */
.case-study-12-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

/* NUMBER SAME SIZE AS TITLE */
.case-study-12-number {
    font-size: 26px;
    font-weight: 700;
    color: #c8a96a;
}

/* TITLE */
.case-study-12-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

/* REMOVE LINE COMPLETELY */
.case-study-12-line {
    display: none;
}

/* TEXT */
.case-study-12 .case-study-description-4 {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* CARD FOR SITUATION & APPROACH */
.case-study-12-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* FORCE EQUAL HEIGHT */
.case-study-12-item {
    display: flex;
}

.case-study-12-item .case-study-12-card {
    width: 100%;
}

/* OUTCOME COLUMN */
.case-study-12-outcome-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* WRAP */
.case-study-12-outcome-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ARROW */
.case-study-12-arrow i {
    display: inline-block;
    color: #c9a24a;
    font-size: 35px;
    transform: scaleY(6);
    transform-origin: center;
}

/* OUTCOME BOX (DARK MODE) */
.case-study-12-outcome {
    background: #0b1d2a;
    /* dark like your sample */
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    width: 100%;
}

/* TEXT INSIDE OUTCOME */
.case-study-12-outcome .case-study-description-4 {
    opacity: 0.9;
    color: #fff;
}

/* NUMBER + TITLE WHITE IN OUTCOME */
.case-study-12-outcome .case-study-12-title {
    color: #fff;
}

.case-study-12-outcome .case-study-12-number {
    color: #c8a96a;
}

/* MOBILE ARROW */
.case-study-12-arrow-mobile {
    display: none;
    color: #c9a24a;
    font-size: 28px;
    margin-bottom: 15px;
}

.case-study-12-arrow-mobile i {
    display: inline-block;
    transform: scaleX(5);
    transform-origin: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .case-study-12-outcome-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .case-study-12-arrow {
        display: none;
    }

    .case-study-12-arrow-mobile {
        display: block;
    }
}




/* ===============================
CASE STUDY 13 FINAL (FLOW DOWN)
=============================== */

.case-study-13 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
}

.case-study-13-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.case-study-13-number {
    font-size: 24px;
    font-weight: 600;
    color: #C6A25A;
}

.case-study-13-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
}

.case-study-13-line {
    width: 100%;
    height: 2px;
    background: #ccc;
    margin-bottom: 20px;
}

.case-study-13-arrow-wrap {
    margin: 40px 0;
}

.case-study-13-arrow-desktop i {
    display: inline-block;
    color: #c9a24a;
    font-size: 40px;
    transform: scale(1.2);
}

.case-study-13-arrow-mobile {
    display: none;
}

.case-study-13-arrow-mobile i {
    display: inline-block;
    color: #c9a24a;
    font-size: 40px;
    transform: scaleY(2);
}

.case-study-13-outcome {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {

    .case-study-13-arrow-desktop {
        display: none;
    }

    .case-study-13-arrow-mobile {
        display: block;
    }
}







/* ===============================
CASE STUDY 14
=============================== */

.case-study-14 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
    position: relative;
}

/* WRAPPER */
.case-study-14-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    position: relative;
}

/* CARD */
.case-study-14-card {
    flex: 1;
    background: #f5f3ef;
    border-radius: 18px;
    padding: 50px 35px 70px;
    /* more bottom space for arrow */
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-study-14-card:hover {
    transform: translateY(-8px);
}

/* DARK FIRST CARD */
.case-study-14-dark {
    background: #0f2a44;
    color: #fff;
}

.case-study-14-dark .case-study-description-4 {
    color: #fff;
}


/* HEADER */
.case-study-14-header {
    margin-bottom: 25px;
}

/* NUMBER */
.case-study-14-number {
    font-size: 18px;
    letter-spacing: 3px;
    color: #c8a96a;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* TITLE */
.case-study-14-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

/* DESCRIPTION */
.case-study-14 .case-study-description-4 {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}





/* BIG ARROW HEAD */
.case-study-14-flow-line::after {
    content: "";
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 28px solid #c8a96a;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
}

/* OPTIONAL GLOW */
.case-study-14-flow-line::before {
    content: "";
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg,
            transparent,
            rgba(200, 169, 106, 0.6),
            transparent);
    filter: blur(8px);
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .case-study-14-wrapper {
        flex-direction: column;
    }

    .case-study-14-flow-line {
        display: none;
    }
}




/* ===============================
CASE STUDY 14
=============================== */

.case-study-14 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
    position: relative;
}

.case-study-14-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    position: relative;
}

.case-study-14-card {
    flex: 1;
    background: #f5f3ef;
    border-radius: 18px;
    padding: 50px 35px 70px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.case-study-14-card:hover {
    transform: translateY(-8px);
}

.case-study-14-dark {
    background: #0b1a2b;
    color: #fff;
}

.case-study-14-header {
    margin-bottom: 25px;
}

.case-study-14-number {
    font-size: 28px;
    letter-spacing: 3px;
    color: #c8a96a;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.case-study-14-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
}

.case-study-14 .case-study-description-4 {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

.case-study-14-flow {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 4;
    pointer-events: none;
}

.case-study-14-flow svg {
    width: 100%;
    height: 100%;
}

.flow-line {
    fill: none;
    stroke: #c8a96a;
    stroke-width: 10;
}

.flow-glow {
    fill: none;
    stroke: rgba(200, 169, 106, 0.4);
    stroke-width: 18;
    filter: blur(6px);
}

.flow-arrow {
    position: absolute;
    right: 12.5%;
    bottom: 36px;
    width: 0;
    height: 0;
    border-left: 16px solid #c8a96a;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}


.case-study-14-icon {
    font-size: 30px;
    color: #c8a96a;
    margin-bottom: 20px;
}

.case-study-14-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-study-14-number {
    margin-bottom: 0;
}



@media (max-width: 991px) {
    .case-study-14-wrapper {
        flex-direction: column;
    }

    .case-study-14-flow {
        display: none;
    }
}

/* ===============================
END CASE STUDY 14
=============================== */




/* ===============================
   CASE STUDY 15
   Panel Layout (Left aligned text)
=============================== */

.case-study-15 {
    font-family: "Poppins", sans-serif;
}

.case-study-15-wrapper {
    display: flex;
    justify-content: center;
}

.case-study-15-panel {
    max-width: 1100px;
    width: 100%;
    background: #eeeeee;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* .case-study-15-panel {
    max-width: 900px;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
} */

/* .case-study-15-item {
    padding: 30px;
    border-radius: 10px;
    background: #f9f9f9;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
} */

.case-study-15-item {
    padding: 30px;
    border-radius: 10px;
    background: #ffffff;
    margin-bottom: 25px;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.04),
        0 8px 20px rgba(0, 0, 0, 0.06);
}

.case-study-15-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
}

.case-study-15-icon {
    font-size: 24px;
    color: #c9a14a;
}

.case-study-15-number {
    display: block;
    font-size: 27px;
    font-weight: 600;
    color: #c9a14a;
}

.case-study-15-title {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.8px;
}

/* ===============================
   END CASE STUDY 15
=============================== */





/* ===============================
   CASE STUDY 16 (FIXED)
=============================== */

.case-study-16 {
    font-family: "Poppins", sans-serif;
    padding: 80px 0;
}

.case-study-16-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.case-study-16-title {
    font-size: 33px;
    font-weight: 600;
    margin-bottom: 10px;
}

.case-study-16-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
}

.case-study-16-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
}

.case-study-16-timeline {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.case-study-16-box {
    position: relative;
    flex: 1;
    min-height: 260px;
    display: flex;
}

.case-study-16-inner {
    padding: 40px 25px;
    width: 100%;
    text-align: left;
}

.case-study-16-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.case-study-16-number {
    font-size: 14px;
    font-weight: 600;
    color: #d4af37;
}

.case-study-16-icon {
    color: #d4af37;
    font-size: 22px;
}

.case-study-16-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.case-study-16-box.light {
    background: #ffffff;
    color: #222;
}

.case-study-16-box.dark {
    background: #000000;
    color: #ffffff;
}


/* ===============================
   ARROWS
=============================== */

.case-study-16-box::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    z-index: 3;
}

.case-study-16-box.light::after {
    border-left: 20px solid #ffffff;
}

.case-study-16-box.dark::after {
    border-left: 20px solid #000000;
}

.case-study-16-box.dark .case-study-description-4 {
    color: #fff;
}

.case-study-16-box::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 20px solid #f5f5f5;
    z-index: 2;
}

.case-study-16-box:first-child::before {
    display: none;
}

.case-study-16-box:last-child::after {
    display: none;
}


/* ===============================
   MOBILE
=============================== */

@media (max-width: 768px) {

    .case-study-16-timeline {
        flex-direction: column;
    }

    .case-study-16-box {
        width: 100%;
        margin: 0;
    }

    .case-study-16-box::before,
    .case-study-16-box::after {
        display: none !important;
    }

}






/* ===============================
   CASE STUDY 17
=============================== */

.case-study-17 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
}

.case-study-17-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.case-study-17-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
}

.case-study-17-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
}

.case-study-17-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.case-study-17-item {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 200px;
}

.case-study-17-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    width: 100%;
    height: 100%;
}

.case-study-17-left {
    min-width: 180px;
}

.case-study-17-number {
    display: block;
    font-size: 13px;
    color: #d4af37;
    margin-bottom: 5px;
}

.case-study-17-left h4 {
    font-size: 28px;
    font-weight: 600;
}

.case-study-17-left span {
    font-size: 28px;
    font-weight: 600;
}

.case-study-17-desc {
    flex: 1;
    padding: 0 20px;
    font-size: 14px;
}

.case-study-17-icon {
    font-size: 27px;
}

.case-study-17-item:nth-child(1) {
    width: 85%;
    margin-left: 0;
}

.case-study-17-item:nth-child(2) {
    width: 92%;
    margin-left: 40px;
}

.case-study-17-item:nth-child(3) {
    width: 100%;
    margin-left: 80px;
}

.case-study-17-item.gold {
    background: #d4af37;
    color: #ffffff;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.case-study-17-item.gold .case-study-17-desc,
.case-study-17-item.gold h4,
.case-study-17-item.gold .case-study-17-number,
.case-study-17-item.gold .case-study-17-icon {
    color: #ffffff;
}

.case-study-17-item.light {
    background: #eaeaea;
    color: #222;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.case-study-17-item.light .case-study-17-icon {
    color: #d4af37;
}

.case-study-17-item.dark {
    background: #000;
    color: #ffffff;
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.case-study-17-item.dark .case-study-17-desc {
    color: rgba(255, 255, 255, 0.85);
}

.case-study-17-item.dark h4,
.case-study-17-item.dark .case-study-17-number,
.case-study-17-item.dark .case-study-17-icon {
    color: #ffffff;
}

.case-study-17-item::after {
    display: none;
}

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

@media (max-width: 768px) {
    .case-study-17-item {
        width: 100% !important;
        margin-left: 0 !important;
        clip-path: none;
    }

    .case-study-17-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .case-study-17-desc {
        padding: 0;
    }
}





/* ===============================
   CASE STUDY 18
=============================== */

.case-study-18 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
}

.case-study-18-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.case-study-18-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
}

.case-study-18-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d4af37;
}

.case-study-18-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ITEM BASE */
.case-study-18-item {
    position: relative;
    width: 100%;
    display: flex;
}

/* CONTENT */
.case-study-18-content {
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

/* WIDTH CONTROL (KEY FIX) */
.case-study-18-item.left .case-study-18-content {
    width: 85%;
}

.case-study-18-item.right .case-study-18-content {
    width: 85%;
}

/* ALIGNMENT */
.case-study-18-item.left {
    justify-content: flex-start;
}

.case-study-18-item.right {
    justify-content: flex-end;
}

/* SHAPES */
.case-study-18-item.left .case-study-18-content {
    clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}

.case-study-18-item.right .case-study-18-content {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 8% 100%, 0 50%);
}

/* FIX TEXT CUTTING ON SLANT */
.case-study-18-item.right .case-study-18-content {
    padding-left: 70px;
}

.case-study-18-item.left .case-study-18-content {
    padding-right: 70px;
}

/* TITLE */
.case-study-18-title {
    font-size: 18px;
    font-weight: 600;
}

/* TEXT */
.case-study-18-desc {
    font-size: 14px;
}

/* ICON */
.case-study-18-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

/* EDGE NUMBERS (BIGGER) */
.case-study-18-edge-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 42px;
    /* 🔥 bigger */
    font-weight: 700;
    color: #d4af37;
}

.case-study-18-edge-number.left {
    left: -60px;
}

.case-study-18-edge-number.right {
    right: -60px;
}

/* COLORS */

.case-study-18-item.gold .case-study-18-content {
    background: #d4af37;
    color: #ffffff;
}

.case-study-18-item.gold .case-study-18-title,
.case-study-18-item.gold .case-study-18-desc,
.case-study-18-item.gold .case-study-18-icon {
    color: #ffffff;
}

.case-study-18-item.light .case-study-18-content {
    background: #eaeaea;
    color: #222;
}

.case-study-18-item.dark .case-study-18-content {
    background: #000;
    color: #ffffff;
}

.case-study-18-item.dark .case-study-18-desc {
    color: rgba(255, 255, 255, 0.85);
}

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

@media (max-width: 768px) {
    .case-study-18-content {
        width: 100% !important;
        clip-path: none !important;
        padding: 25px;
    }

    .case-study-18-edge-number {
        display: none;
    }

    .case-study-18-item {
        justify-content: flex-start !important;
    }



    .case-study-18-item.right .case-study-18-content {
        padding-left: 25px !important;
    }

    .case-study-18-item.left .case-study-18-content {
        padding-right: 25px !important;
    }
}





/* ===============================
CASE STUDY 19 another
=============================== */

/* .case-study-19-card {
    margin-bottom: 70px;
}

.case-study-19-card .row {
    min-height: 320px;
    align-items: stretch;
}


.case-study-19-number-box {
    width: 100%;
    height: 100%;
    background: #f4f4f4;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-19-number {
    font-size: 140px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.06);
    font-family: "Poppins", sans-serif;
    line-height: 1;
}


.case-study-19-text {
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}



.case-study-19-content {
    padding: 40px 60px;
    margin: auto 0;
}

.case-study-19-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
}


.case-study-19-text::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0%;
    background: #D2A35A;
    transition: height .35s ease;
}

.case-study-19-card:hover .case-study-19-text::after {
    height: 100%;
}


.case-study-19-card.reverse .row {
    flex-direction: row-reverse;
}

.case-study-19-card.reverse .case-study-19-text::after {
    right: auto;
    left: 0;
}

.case-study-19-card .col-lg-5,
.case-study-19-card .col-lg-7 {
    display: flex;
}

.case-study-19-number-box,
.case-study-19-text {
    width: 100%;
}


.case-study-19-card .col-lg-5 > *,
.case-study-19-card .col-lg-7 > * {
    flex: 1;
}


@media (max-width: 992px) {

    .case-study-19-number {
        font-size: 80px;
    }

    .case-study-19-content {
        padding: 40px;
    }

    .case-study-19-number-box {
        height: 200px;
    }
} */

/* ===============================
END CASE STUDY 19
=============================== */





/* ===============================
CASE STUDY 19
=============================== */

/* .case-study-19-card {
    margin-bottom: 70px;
}

.case-study-19-card .row {
    min-height: 320px;
}


.case-study-19-number-box {
    width: 100%;
    height: 100%;
    background: #f4f4f4;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-19-number {
    font-size: 140px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.06);
    font-family: "Poppins", sans-serif;
    line-height: 1;
}


.case-study-19-text {
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
}


.case-study-19-content {
    padding: 60px;
    max-width: 590px;
}

.case-study-19-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
}


.case-study-19-text::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0%;
    background: #D2A35A;
    transition: height .35s ease;
}

.case-study-19-card:hover .case-study-19-text::after {
    height: 100%;
}


.case-study-19-card.reverse .row {
    flex-direction: row-reverse;
}

.case-study-19-card.reverse .case-study-19-text::after {
    right: auto;
    left: 0;
}


@media (max-width: 992px) {

    .case-study-19-number {
        font-size: 80px;
    }

    .case-study-19-content {
        padding: 40px;
    }

    .case-study-19-number-box {
        height: 200px;
    }
} */

/* ===============================
END CASE STUDY 19
=============================== */






/* ===============================
CASE STUDY 19
=============================== */

.case-study-19-card {
    margin-bottom: 70px;
}

.case-study-19-card .row {
    min-height: 320px;
}

.case-study-19-number-box {
    width: 100%;
    height: 100%;
    /* background: #f4f4f4; */
    background: #11171c;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-19-number-box-2 {
    width: 100%;
    height: 100%;
    background: #f4f4f4;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-19-number {
    font-size: 140px;
    font-weight: 700;
    /* color: rgba(0, 0, 0, 0.06); */
    color: #D2A35A;
    font-family: "Poppins", sans-serif;
    line-height: 1;
}

.case-study-19-text {
    background: #fff;
    position: relative;
}

.case-study-19-content-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.case-study-19-content {
    padding: 60px;
    /* max-width: 590px; */
}

.case-study-19-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
}

.case-study-19-text::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0%;
    background: #D2A35A;
    transition: height .35s ease;
}

.case-study-19-card:hover .case-study-19-text::after {
    height: 100%;
}

.case-study-19-card.reverse .row {
    flex-direction: row-reverse;
}

.case-study-19-card.reverse .case-study-19-text::after {
    right: auto;
    left: 0;
}

@media (max-width: 992px) {

    .case-study-19-number {
        font-size: 80px;
    }

    .case-study-19-content {
        padding: 40px;
    }

    .case-study-19-number-box {
        height: 200px;
    }

    .case-study-19-number-box-2 {
        height: 200px;
    }
}

/* ===============================
END CASE STUDY 19
=============================== */



.cs-hero-sm {
    padding: 45px 0 !important;
}







/* ===============================
CASE STUDY 20 FINAL (UPDATED)
=============================== */

.case-study-20 {
    font-family: "Poppins", sans-serif;
    padding: 120px 0;
    position: relative;
}

/* HEADER (NUMBER + TITLE INLINE) */
.case-study-20-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

/* NUMBER SAME SIZE AS TITLE */
.case-study-20-number {
    font-size: 25px;
    font-weight: 700;
    color: #c8a96a;
}

/* TITLE */
.case-study-20-title {
    font-size: 25px;
    font-weight: 700;
    margin: 0;
}

/* REMOVE LINE COMPLETELY */
.case-study-20-line {
    display: none;
}

/* TEXT */
.case-study-20 .case-study-description-4 {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

/* CARD FOR SITUATION & APPROACH */
.case-study-20-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
}

/* FORCE EQUAL HEIGHT */
.case-study-20-item {
    display: flex;
}

.case-study-20-item .case-study-20-card {
    width: 100%;
}

/* OUTCOME COLUMN */
.case-study-20-outcome-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* WRAP */
.case-study-20-outcome-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ARROW */
.case-study-20-arrow i {
    display: inline-block;
    color: #c9a24a;
    font-size: 35px;
    transform: scaleY(6);
    transform-origin: center;
}

/* OUTCOME BOX (NOW WHITE, SAME SIZE) */
.case-study-20-outcome {
    background: #fff;
    /* ✅ changed from dark to white */
    color: #222;
    /* ✅ dark text */
    padding: 25px;
    border-radius: 10px;
    width: 100%;
}

/* TEXT INSIDE OUTCOME */
.case-study-20-outcome .case-study-description-4 {
    opacity: 0.9;
    color: #222;
    /* ✅ dark text */
}

/* TITLE + NUMBER INSIDE OUTCOME */
.case-study-20-outcome .case-study-20-title {
    color: #222;
    /* ✅ dark */
}

.case-study-20-outcome .case-study-20-number {
    color: #c8a96a;
    /* keep gold */
}

/* MOBILE ARROW */
.case-study-20-arrow-mobile {
    display: none;
    color: #c9a24a;
    font-size: 28px;
    margin-bottom: 15px;
}

.case-study-20-arrow-mobile i {
    display: inline-block;
    transform: scaleX(5);
    transform-origin: center;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .case-study-20-outcome-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .case-study-20-arrow {
        display: none;
    }

    .case-study-20-arrow-mobile {
        display: block;
    }
}


.clearlist {
    font-size: 18px;
}


.service-hyperlink-one-tag {
    font-size: 12px;
    letter-spacing: 3px;
    color: #c9a24a;
    display: block;
    /* margin-bottom: 8px; */
    text-transform: uppercase;
}




/* ===============================
CONTACT FORM TWO (UPDATED)
=============================== */

.contact-form-two {
    font-family: "Poppins", sans-serif;
}

.contact-form-two .btn {
    background-color: #c9a24a;
    color: #fff;
}

.contact-form-two-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}



/* FORCE ROUNDING */
.modal-content {
    border-radius: 17px !important;
    overflow: hidden;
    /* 🔥 required */
}

/* FIX HEADER */
.modal-header {
    border-top-left-radius: 17px !important;
    border-top-right-radius: 17px !important;
}

/* FIX FOOTER */
.modal-footer {
    border-bottom-left-radius: 17px !important;
    border-bottom-right-radius: 17px !important;
}


/* .modal-content {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3); 
} */



/* ===============================
SWIPER NAV
=============================== */

.service-nav-box {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    /* letter-spacing: 1px; */
    text-transform: capitalize;
}

.service-nav-box a {
    text-decoration: none;
}

/* Default: Desktop view */
.service-nav-mobile-view {
    display: none;
}

.service-nav-desktop-view {
    display: block;
}

/* Mobile (you can adjust breakpoint) */
@media (max-width: 768px) {
    .service-nav-mobile-view {
        display: block;
    }

    .service-nav-desktop-view {
        display: none;
    }
}

/* ===============================
SWIPER NAV
=============================== */



/* ===============================
SWIPER ARROWS 
=============================== */

.swipe-swipe .swiper {
    position: relative;
}

/* LEFT ARROW */
.swipe-swipe .swiper-button-prev {
    left: -10px ! important;
}


/* RIGHT ARROW */
.swipe-swipe .swiper-button-next {
    right: -10px ! important;
}

/* OPTIONAL: make them centered vertically */
.swipe-swipe .swiper-button-prev,
.swipe-swipe .swiper-button-next {
    top: 50%;
    transform: translateY(-50%);
}

/* ===============================
SWIPER ARROWS 
=============================== */

