@font-face {
    font-family: "Sideboard";
    src: url("../fonts/sideboard-font/sideboard-personaluseonly.otf") format("otf)");
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #231F20;
    --secondry-color: #F1E9E6;
    --para-line-color: #E36925;
    --primary-font: "Lexend", sans-serif;
    --secondary-font: "Sideboard", sans-serif;
    --third-font: "Poppins", sans-serif;
    /* 
      Step 1: The single base font size variable you requested.
    */
    --base-font-size: 16px;

    /* 
      Step 2: Calculate all other font sizes based on the single variable.
      The format is: calc(var(--base-font-size) * [multiplier]).
    */
    --font-10px: calc(var(--base-font-size) * 0.625);
    --font-12px: calc(var(--base-font-size) * 0.75);
    --font-15px: calc(var(--base-font-size) * 0.9375);
    --font-16px: var(--base-font-size);
    --font-18px: calc(var(--base-font-size) * 1.125);
    --font-20px: calc(var(--base-font-size) * 1.25);
    --font-24px: calc(var(--base-font-size) * 1.5);
    --font-32px: calc(var(--base-font-size) * 2);
    --font-40px: calc(var(--base-font-size) * 2.5);
    --font-48px: calc(var(--base-font-size) * 3);
    --font-56px: calc(var(--base-font-size) * 3.5);
    --font-61px: calc(var(--base-font-size) * 3.8125);
    --font-78px: calc(var(--base-font-size) * 4.875);
    --font-96px: calc(var(--base-font-size) * 6);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /* border: 1px solid #000; */
}

html {
    overflow-x: hidden !important;
}

body {
    font-family: var(--primary-font);
    background-color: #fff;
    color: var(--primary-color);
    font-size: var(--font-16px);
}

/* General Container */
.container {
    max-width: 93%;
    padding-inline: 15px;
    margin: 0 auto;
}

.accordion-video video {
    width: 100%;
    border-radius: 0px;
}

.accordion-video {
    margin-top: 30px;
}

video {
    border-radius: 25px;
}

.h-100 {
    height: 100%;
}

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

.list-unstyled {
    list-style: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.pBlock-150 {
    padding-block: 150px;
}

.mb-150 {
    margin-bottom: 150px;
}

.pBlock-55 {
    padding-block: 55px;
}

.mb-0 {
    margin-bottom: 0px;
}

.pt-0 {
    padding-top: 0px !important;
}

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

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

.custom-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;
}

.custom-col-12,
.custom-col-10,
.custom-col-6,
.custom-col-5,
.custom-col-7,
.custom-col-4,
.custom-col-8,
.custom-col-3,
.custom-col-9 {
    flex: 0 0 auto;
    padding-inline: 15px;
}

.meet-slider-col {
    margin-inline: 20px;
}

.custom-col-12 {
    width: 100%;
}

.custom-col-10 {
    width: 86%;
}

.custom-col-6 {
    width: 50%;
}

.custom-col-3 {
    width: 25%;
}

.custom-col-9 {
    width: 75%;
}

.custom-col-4 {
    width: 33.333%;
}

.custom-col-8 {
    width: 66.667%;
}

.custom-col-7 {
    width: 58.333%;
}

.custom-col-5 {
    width: 40%;
}

.custom-col-7 {
    width: 60%;
}

/* Header Css Start */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 20px;
}

.menu-toggle {
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    width: 51px;
    height: 60px;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.menu-open {
    display: none;
}

.menu-toggle svg path {
    stroke: var(--secondry-color);
}

button.menu-toggle svg {
    width: 25px;
    height: 18px;
}

.menu-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.navbar-list {
    display: flex;
    align-items: center;
    gap: 0px 25px;
    list-style: none;
    border-radius: 10px;
    margin: 0;
    padding: 10px 10px;
    background-color: var(--primary-color);
}

.nav-link {
    color: var(--secondry-color);
    text-decoration: none;
    font-size: var(--font-16px);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px;
}

.nav-link:hover {
    background-color: #C76135;
    border-radius: 9px;
    color: var(--secondry-color);
}

.nav-link::after {
    display: none;
}

/* Header Css End */

/* Banner Css Start */
.banner-wrapper {
    background-image: url(../img/setu/banner.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 730px;
}

/* Banner Css End */


/* detail-wrapper-css Start */
.detail-cover {
    background-color: var(--secondry-color);
    border-radius: 24px;
    padding: 30px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-section-heading span {
    font-size: var(--font-20px);
    font-weight: 200;
    line-height: normal;
}

.detail-section-heading h2 {
    font-size: var(--font-96px);
    font-weight: 600;
    line-height: 150px;
}

.detail-cover-box ul {
    display: flex;
    align-items: center;
    gap: 0px 41px;
}

.detail-box-content h3 {
    font-size: var(--font-24px);
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}

.detail-box-content p {
    font-size: var(--font-20px);
    font-weight: 200;
    line-height: normal;
}

/* detail-wrapper-css End */

/* portfolio-wrapper Css Start */

.portfolio-wrapper .custom-row .col-12 .custom-row {
    margin-inline: -73px;
}

.portfolio-wrapper .custom-row {
    align-items: center;
}

section.portfolio-wrapper .custom-col-12 .custom-row {
    position: relative;
    margin-inline: -75px !important;
}

section.portfolio-wrapper .custom-col-12 .custom-row .custom-col-6 {
    padding-inline: 75px !important;
}

.portfolio-wrapper>.container>.custom-row {
    gap: 150px 0px;
}

.portfolio-wrapper .custom-col,
.portfolio-wrapper .customCol {
    flex: 0 0 auto;
    padding-inline: 73px;

}

.portfolio-wrapper .container .custom-row .custom-col-12:nth-child(2n) .custom-row .customCol:has(.port-content) {
    order: -1;
}

.portfolio-wrapper .custom-col {
    width: 55%;
}

.portfolio-wrapper .customCol {
    width: 45%;
}

.port-content h3 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 10px;
}

.port-content h4 {
    font-weight: 200;
    font-size: var(--font-20px);
    line-height: normal;
    margin-bottom: 25px;
}

.port-content p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.portfolio-image,
.portfolio-image-box {
    height: 100%;
}

.portfolio-image-box {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    padding-block: 20px;
}

.custom-col-12 .custom-row {
    position: relative;
}

.image-box {
    width: 50%;
    flex: 0 0 auto;
    position: relative;
}

.image-box::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.02) 0.25%, rgba(255, 255, 255, 0.00) 76.83%, #FFF 99.68%);
    position: absolute;
    top: 0px;
    left: 0px;
}

.image-box:nth-child(2n)::before {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.02) 0.25%, rgba(255, 255, 255, 0.00) 60.58%, #FFF 99.68%), linear-gradient(270deg, rgba(255, 255, 255, 0.50) 0.25%, rgba(255, 255, 255, 0.00) 33.29%);
}

.image-box img,
.portfolio-image img {
    width: 100%;
}

.line {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.line img {
    height: 100%;
}

/* portfolio-wrapper Css End */

/* summary-wrapper Css Start */

.summary-heading h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 27px;
}

.summary-image img {
    height: 175px;
}

.summary-wrapper .custom-col-10>.custom-row {
    margin-inline: -73px;
}

.summary-wrapper .custom-col-10>.custom-row>.custom-col-6 {
    padding-inline: 73px;
}

.summary-image {
    margin-bottom: 48px;
}

.summary-content h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    line-height: normal;
    margin-bottom: 25px;
}

.summary-content p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.summary-content p span {
    color: var(--para-line-color);
}

.summary-wrapper>.container>.custom-row {
    gap: 150px 0px;
}

.summary-wrapper-cover .custom-row {
    margin-inline: -35px;
}

.summary-wrapper-cover .custom-row .custom-col-5,
.summary-wrapper-cover .custom-row .custom-col-7 {
    padding-inline: 35px;
}

.summary-cover-heading h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    line-height: normal;
    margin-bottom: 25px;
}

.summary-cover-heading p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.summary-cover-image iframe {
    width: 100%;
}

.summary-main-heading h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 0px;
}

/* summary-wrapper Css End */

/* context-wrapper Css Start */
.contect-wrapper h3 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 35px;
}

.context-content h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    line-height: normal;
}

.context-content p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 20px;
}

.context-content h3.mb-0 {
    margin-bottom: 0px;
}

.contect-wrapper .custom-row .custom-col-12 .custom-row {
    margin-inline: -48px;
}

.contect-wrapper .custom-row .custom-col-12 .custom-row .custom-col-6 {
    padding-inline: 48px;
}

/* context-wrapper Css End */

/* research-wrapper Css Start */
.research-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 35px;
}

.research-box ul {
    display: grid;
    grid-template-columns: 19.2% 23.1% 26.6% 31.1%;
    /* ratio based */
    justify-content: center;
    /* center in container */
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1%;
    margin-bottom: 40px;
}

.research-box ul.research-list li {
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.research-box ul.research-list li:nth-child(1) .research-box-container {
    background: #EFF3F6;
}

.research-box ul li:nth-child(2) .research-box-container {
    background: #E5EBF0;
}

.research-box ul.research-list li:nth-child(3) .research-box-container {
    background: #DBE6EE;
}

.research-box ul.research-list li:nth-child(4) .research-box-container {
    background: #C5D6E3;
}

.research-box-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.research-list-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 equal columns */
    gap: 1%;
    /* upar wale grid ke jaisa gap */
    padding: 0;
    margin: 0;
    list-style: none;
}

.research-list-content li {
    display: flex;
}

.research-list-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.research-list-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -8px;
}

.research-list-col {
    width: 50%;
    flex: 0 0 auto;
    padding-inline: 8px;
}

.research-box-container {
    position: relative;
}

.research-box-container p {
    font-weight: 200;
    font-size: var(--font-20px);
    line-height: normal;
    position: relative;
    padding-bottom: 20px;
}

/* .research-box-container p::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
} */

ul.research-list li:nth-child(1) .research-box-container p::after,
.research-box ul.research-list li:nth-child(1) .research-box-container::before,
.research-list-content li:nth-child(1) .research-list-content-box h3::before {
    display: none;
}

.research-col-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.research-box-container::before {
    content: "";
    width: 1px;
    height: 56%;
    display: inline-block;
    border-left: 1px dotted var(--primary-color);
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 69%;
    transform: translate(-50%, -31%);
}

.research-list-content-box h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    line-height: normal;
    padding-top: 10px;
    margin-bottom: 0px;
    position: relative;
}

.research-list-content-box h3::before {
    content: "";
    width: 41px;
    height: 9px;
    border-radius: 2px;
    background-color: var(--primary-color);
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.research-list-content-box p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.research-box ul li:nth-child(2) .research-box-container::before {
    top: 75.9%;
    transform: translate(-50%, -25.9%);
    height: 76%;
}



.research-box ul li:nth-child(4) .research-box-container::before {
    height: 57%;
    left: 39%;
    top: 70%;
    transform: translate(-61%, -30%);
}

.research-box ul.research-list li:nth-child(4) .research-box-container::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 53%;
    left: 39%;
    transform: translate(-47%, -61%);
}

.research-list-image {
    max-width: 69%;
    margin-left: auto;
    margin-right: 5%;
    margin-top: -13%;
    position: relative;
}

.meet-slider-box img {
    width: 100%;
}

.meet-slider-col {
    margin-inline: -35px;
}

.research-list-image img {
    width: 100%;
}

/* .research-box ul li:nth-child(4) .research-box-container p::after {
    left: 24%;
    transform: translateX(-75%);
} */

/* .research-box ul li:nth-child(4) .research-box-container p::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0px;
    right: 23%;
} */

.research-box-container::after {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -44%);
    top: 56%;
}

.research-box ul.research-list li:nth-child(1) .research-box-container::after,
.research-box ul.research-list li:nth-child(4) .research-box-container::after {
    display: none;
}

.research-box ul li:nth-child(4) .research-box-container::after {
    content: "";
    width: 1px;
    height: 56%;
    display: inline-block;
    border-left: 1px dotted var(--primary-color);
    position: absolute;
    z-index: 9;
    height: 55%;
    right: 41%;
    top: 70%;
    transform: translate(-59%, -30%);
}

/* research-wrapper Css End */

/* primary-wrapper Css Start */
.primary-wrapper .custom-row {
    margin-inline: -92px;
}

.primary-wrapper .custom-row .custom-col-5,
.primary-wrapper .custom-row .custom-col-7 {
    padding-inline: 92px;
}

.primary-graph {
    --value: 63;
    /* percentage */
    width: 421px;
    height: 421px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: conic-gradient(from 90deg,
            #c5d6e3 0deg calc(var(--value) * 3.6deg),
            #ffffff calc(var(--value) * 3.6deg) 360deg);
    overflow: hidden;
}

.primary-graph::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(146deg, #C5D6E3 15.74%, #FFF 91.82%);
    mask: conic-gradient(from 90deg,
            #000 0deg calc(var(--value) * 3.6deg),
            transparent calc(var(--value) * 3.6deg) 360deg);
    -webkit-mask: conic-gradient(from 90deg,
            #000 0deg calc(var(--value) * 3.6deg),
            transparent calc(var(--value) * 3.6deg) 360deg);
}

.primary-graph span {
    position: absolute;
    z-index: 2;
    font-weight: 400;
    font-size: var(--font-48px);
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
}

.primary-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 41px 0px;
}

.primary-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 25px;
}

.primary-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.primary-graph-content p {
    font-weight: 200;
    font-size: var(--font-20px);
    line-height: normal;
    margin-bottom: 41px;
}

.primary-graph-content p:has(span) {
    color: var(--para-line-color);
    margin-bottom: 0px;
}

.primary-graph-content p span {
    font-weight: 400;
}

/* primary-wrapper Css End */


/* main-insight-wrapper Css Start */

.main-insight-slider {
    overflow: hidden;
    height: 100vh;
    /* Set a height for the slider container to show two slides */
    position: relative;
    /* Needed for absolute positioning if any, or for context */
}

.main-insight-slider::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    z-index: 9;
    background: linear-gradient(177deg, #FFF 2.14%, rgba(255, 255, 255, 0.00) 12.82%, rgba(255, 255, 255, 0.00) 64.93%, #FFF 91.01%);
}

.main-insight-wrapper .custom-row .custom-col-7 {
    padding-left: 150px !important;
}
.meet-slider-col {
    margin-inline: 25px;
}

.main-insight-slider ul {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 1s linear;
    /* Keep transition for smooth animation */
    display: block;
    /* Change to block for vertical flow */
    height: 100%;
    /* Take full height of container */
}

.main-insight-slider ul li {
    display: flex;
    /* Keep flex for content alignment within the slide */
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto !important;
    width: 100%;
}

.main-insight-slider ul li+li {
    margin-top: 30px;
    /* Remove margin-top for vertical stacking */
}

.insight-slider-box {
    padding: 30px 40px;
    background: #C5D6E3;
    border-radius: 20px;
    height: 100%;
    width: 100%;
}

.main-insight-wrapper .custom-col-10 .custom-row {
    margin-inline: -92px;
}

.main-insight-wrapper .custom-row .custom-col-5,
.main-insight-wrapper .custom-row .custom-col-7 {
    padding-inline: 92px;
}

.insight-slider-box p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

.insight-slider-box p:has(span) {
    margin-bottom: 0px;
}

.insight-slider-box p span {
    font-weight: 400;
}

.insight-slider-box {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.main-insight-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 35px;
}

.main-insight-wrapper p {
    font-weight: 200;
}

/* main-insight-wrapper Css End */

/* portfolio-preview-wrapper css Start */
.portfolio-preview-wrapper .custom-row {
    margin-inline: -95px;
}

.portfolio-preview-wrapper .custom-row .custom-col-5,
.portfolio-preview-wrapper .custom-row .custom-col-7 {
    padding-inline: 95px;
}

.portfolio-preview-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-24px);
    line-height: normal;
    margin-bottom: 25px;
}

.portfolio-preview-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.portfolio-preview-list ul {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -12px;
    gap: 24px 0px;
}

.portfolio-preview-list ul li {
    width: 50%;
    flex: 0 0 auto;
    padding-inline: 12px;
}

span.portfolio-icon {
    display: inline-block;
    height: 43px;
    margin-bottom: 10px;
}

.portfolio-box p {
    font-weight: 200;
    font-size: var(--font-20px);
    line-height: normal;
    margin-bottom: 0px;
}

.portfolio-box {
    background-color: #C5D6E3;
    padding: 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* portfolio-preview-wrapper css End */

/* key-wrapper Css Start */
.key-wrapper {
    background-image: url(../img/setu/key-image.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    z-index: 9;
}

.key-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.68);
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.key-wrapper p {
    font-weight: 200;
    font-size: var(--font-20px);
    color: var(--secondry-color);
    margin-bottom: 25px;
}

.key-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    color: var(--secondry-color);
}

/* key-wrapper Css End */

/* secondry-research-wrapper Css Start */

.secondry-research-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 9px;
}

.secondry-research-box {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: #C5D6E3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.secondry-research-image {
    position: absolute;
    top: -20%;
    height: 150px;
    display: flex;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
}

.secondry-research-content p {
    font-weight: 200;
    font-size: var(--font-20px);
    margin-bottom: 25px;
}

.secondry-research-content p:has(span) {
    margin-bottom: 0px;
    font-weight: 400;
    font-size: var(--font-16px);
}

.secondry-research-wrapper .custom-row {
    margin-inline: -73px;
}

.secondry-research-wrapper .custom-row .custom-col-5,
.secondry-research-wrapper .custom-row .custom-col-7 {
    padding-inline: 73px;
}

.secondry-research-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.secondry-research-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

/* secondry-research-wrapper Css End */


/* landscope-wrapper Css Start */
.landscope-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 25px;
}

.landscope-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
}

.landscope-wrapper>.container>.custom-row {
    gap: 42px 0px;
}

.landscope-wrapper>.container>.custom-row>.custom-col-12>.custom-row {
    margin-inline: -50px;
}

.landscope-wrapper>.container>.custom-row>.custom-col-12>.custom-row>.custom-col-6 {
    padding-inline: 50px;
}

.landscope-cover ul {
    position: relative;
    width: 100%;
    height: 100vh;
}

.landscope-cover ul li {
    position: absolute;
}

.landscope-cover ul li .landscope-image {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landscope-cover ul li .landscope-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Initially hidden */
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    /* Smooth transition for fade and scale */
    transform: scale(0.8);
    /* Start slightly scaled down */
}

.landscope-cover ul li:nth-child(1) {
    top: 8%;
    left: 10%;
}

.landscope-cover ul li:nth-child(2) {
    top: 2%;
    left: 35%;
}

.landscope-cover ul li:nth-child(3) {
    top: 5%;
    left: 70%;
}

.landscope-cover ul li:nth-child(4) {
    top: 20%;
    left: 60%;
}

.landscope-cover ul li:nth-child(5) {
    top: 35%;
    left: 8%;
}

.landscope-cover ul li:nth-child(6) {
    top: 37%;
    left: 35%;
}

.landscope-cover ul li:nth-child(7) {
    top: 42%;
    left: 68%;
}

.landscope-cover ul li:nth-child(8) {
    top: 60%;
    left: 15%;
}

.landscope-cover ul li:nth-child(9) {
    top: 63%;
    left: 38%;
}

.landscope-cover ul li:nth-child(10) {
    top: 66%;
    left: 65%;
}

.landscope-wrapper h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 25px;
}

.landscope-wrapper h3 span {
    color: var(--para-line-color);
}

.landscope-wrapperp {
    font-weight: 200;
    font-size: var(--font-16px);
}

/* landscope-wrapper Css End */

/* post-research-wrapper Css Start */
.post-research-wrapper-cover {
    padding: 56px 22px;
    border-radius: 20px;
    background: #E5EBF0;
}

.post-research-wrapper .custom-row {
    margin-inline: -7px;
}

.post-research-wrapper .custom-row .custom-col-4,
.post-research-wrapper .custom-row .custom-col-7 {
    padding-inline: 7px;
}

.post-research-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

.post-research-wrapper h2,
.post-research-wrapper h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 31px;
}

.post-research-wrapper h3 span {
    color: var(--para-line-color);
}

.post-research-wrapper h3:last-child {
    margin-bottom: 0px;
}

.post-research-image img {
    width: 100%;
}

/* post-research-wrapper Css End */

/* target-wrapper Css Start */
.target-wrapper {
    position: relative;
    z-index: 99;
    height: 600px;
}

.target-wrapper .custom-row .custom-col-6:nth-child(2) {
    padding-left: 13%;
}

.target-wrapper::before {
    content: "";
    width: 50%;
    height: 100%;
    display: inline-block;
    background-image: url(../img/setu/target-image-1.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.target-wrapper::after {
    content: "";
    width: 50%;
    height: 100%;
    display: inline-block;
    background-image: url(../img/setu/target-image-2.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -1;
}

.target-wrapper .container::before {
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    background: rgba(0, 0, 0, 0.78);
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 9;
}

.target-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    color: var(--secondry-color);
    margin-bottom: 0px;
}

.target-wrapper .container>.custom-row {
    gap: 120px 0px;
}

.target-wrapper .container>.custom-row>.custom-col-12,
.target-wrapper .container>.custom-row>.custom-col-10 {
    position: relative;
    z-index: 99;
}

.target-wrapper p {
    font-weight: 400;
    font-size: var(--font-20px);
    color: var(--para-line-color);
    margin-bottom: 9px;
}

.target-wrapper h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 9px;
    color: var(--secondry-color);
}

.target-wrapper ul li {
    font-weight: 200;
    font-size: var(--font-20px);
    color: var(--secondry-color);
}

.target-wrapper ul {
    padding-left: 20px;
}

/* target-wrapper Css End */

/* meet-wrapper Css Start */
.meet-image img {
    width: 100%;
}

.meet-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.meet-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

/* meet-wrapper Css End */

/* deliverable-wrapper Css Start */
.deliverable-wrapper .custom-col-12 .custom-row {
    margin-inline: -95px;
}

.deliverable-wrapper .custom-col-12 .custom-row .custom-col-6 {
    padding-inline: 95px;
}

.deliverable-cover {
    border-radius: 20px;
    background: #E5EBF0;
    padding-block: 55px;
}

.deliverable-cover p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

.deliverable-cover h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 0px;
}

/* deliverable-wrapper Css End */

/* branding-wrapper Css Start */
.branding-wrapper .custom-row {
    margin-inline: -31px;
}

.branding-wrapper .custom-row .custom-col-6 {
    padding-inline: 31px;
}

.branding-heading h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.branding-heading p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

.brand-subheading h3 {
    font-weight: 400;
    font-family: var(--secondary-font);
    font-size: var(--font-78px);
    color: var(--para-line-color);
    margin-bottom: 0px;
    line-height: 70px;
}

.brand-subheading span {
    font-weight: 300;
    font-family: var(--third-font);
    font-size: var(--font-18px);
    color: #000;
}

.brand-sub-heading h4 {
    font-family: var(--third-font);
    font-weight: 400;
    font-size: var(--font-61px);
    color: #2E2E2E;
    line-height: 71px;
}

.brand-sub-heading span {
    font-family: var(--third-font);
    font-weight: 300;
    font-size: var(--font-18px);
}

.brand-sub-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: -3%;
    margin-right: 38%;
    margin-bottom: 25px;
}

.brand-setu .custom-row {
    margin-inline: -16px;
}

.brand-setu .custom-row .custom-col-6 {
    padding-inline: 16px;
}

.brand-setu h5 {
    color: #000;
    font-weight: 400;
    font-size: var(--font-20px);
    margin-bottom: 25px;
}

.brand-setu p {
    color: #000;
    font-weight: 200;
    font-size: var(--font-16px);
}

.setu-image img {
    width: 100%;
}

.branding-box-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(10, 1fr);
    /* 10 rows for fine control */
    width: 100%;
    height: 500px;
    border-radius: 9px;
    overflow: hidden;
}

.branding-box-row .branding-col {
    padding: 7px 15px;
}

.branding-box-row .branding-col:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    border-radius: 9px 0px 0px 0px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    background: #FFF;
}

.branding-box-row .branding-col:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 4 / 11;
    border-radius: 0 0 0 0;
    background: linear-gradient(82deg, #E36925 14.13%, #FAC270 184.55%);
}

.branding-box-row .branding-col:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 1 / 11;
    background: #C5D6E3;
}

.branding-box-row .branding-col:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 1 / 4;
    border-radius: 0 0 0 0;
    background: #FFDE98;
}

.branding-box-row .branding-col:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 4 / 7;
    background: #D6CBE7;
}

.branding-box-row .branding-col:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 7 / 9;
    background: #E9EEF2;
}

.branding-box-row .branding-col:nth-child(7) {
    grid-column: 3 / 4;
    grid-row: 9 / 11;
    border-radius: 0 0 0 0;
    background: #2E2E2E;
}

.branding-col h2 {
    font-family: var(--third-font);
    font-size: var(--font-20px);
    color: #2E2E2E;
    font-weight: 600;
}

.branding-col p {
    font-weight: 500;
    font-family: var(--third-font);
    font-size: var(--font-12px);
}

.branding-box-row .branding-col:nth-child(2) h2,
.branding-box-row .branding-col:nth-child(2) p,
.branding-box-row .branding-col:nth-child(7) h2,
.branding-box-row .branding-col:nth-child(7) p {
    color: var(--secondry-color);
}

/* branding-wrapper Css End */

/* flow-wrapper Css Start */
.flow-wrapper .custom-row {
    margin-inline: -59px;
}

.flow-wrapper .custom-row .custom-col-6 {
    padding-inline: 59px;
}

.flow-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.flow-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

.flow-image img {
    width: 100%;
}

/* flow-wrapper Css End */

/* home-wrapper Css Start */
.home-wrapper-cover {
    background: #EFEFEF;
    border-radius: 20px;
    padding: 54px 50px;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

.home-cover-heading h2 {
    font-family: var(--third-font);
    font-weight: 600;
    font-size: var(--font-24px);
    text-transform: uppercase;
    color: #fff;
    width: 200px;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #2E2E2E;
    border-radius: 23px;
    position: relative;
}

.home-cover-heading h2::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #2E2E2E;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -8px;
}

.home-cover-heading {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    height: 53px;
}

.home-cover-heading::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #2E2E2E;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 200px;
}

.home-cover-content {
    width: calc(100% - 200px);
    padding-left: 30px;
    flex: 0 0 auto;
    margin-top: -26px;
}

.home-cover-col-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-arrow {
    position: relative;
    width: 2px;
    display: inline-block;
    height: 26px;
    background: #2E2E2E;
    border-radius: 5px;
}

.home-arrow::after {
    content: "";
    position: absolute;
    left: 44%;
    bottom: 0px;
    transform: translateX(-60%) rotate(-45deg);
    width: 6px;
    height: 7px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    border-radius: 1px;
}

.home-cover-row {
    display: flex;
    margin-inline: -57px;
}

.home-cover-col {
    width: 50%;
    flex: 0 0 auto;
    padding-inline: 57px;
}

.home-cover-col-content h3 {
    font-family: var(--third-font);
    font-weight: 700;
    font-size: var(--font-16px);
    color: #fff;
    display: inline-flex;
    width: fit-content;
    position: relative;
    margin-bottom: 47px;
    text-transform: capitalize;
    padding: 7px 22px;
    border-radius: 16px;
    background: #E36925;
}

.home-cover-col-content h3::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
}

.home-cover-col-content h3::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.heading-arrow {
    position: absolute;
    width: 2px;
    display: inline-block;
    height: 26px;
    background: #000;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -29px;
}

.heading-arrow::after {
    content: "";
    position: absolute;
    left: 44%;
    bottom: 0px;
    transform: translateX(-60%) rotate(-45deg);
    width: 6px;
    height: 7px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    border-radius: 1px;
}

.home-cover-col-content ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-cover-col-content ul li+li {
    padding-top: 16px;
}

.home-cover-box p {
    font-weight: 300;
    font-family: var(--third-font);
    font-size: var(--font-10px);
    margin-bottom: 0px;
    color: #2E2E2E;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 22px;
    border-radius: 16px;
    border: 1px solid #000;
}

.fade .home-cover-box p {
    font-family: var(--third-font);
    font-weight: 500;
    color: #fff;
    font-size: var(--font-15px);
    background: #DFA46C;
    border-color: #DFA46C;
}

.home-cover-col-content ul li {
    position: relative;
}

.home-cover-col-content ul li:nth-child(1)::before {
    display: none;
}

.home-cover-col-content ul li::before {
    content: "";
    width: 2px;
    height: 16px;
    display: inline-block;
    background-color: #000;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.home-cover-container {
    overflow: hidden;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

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

/* home-wrapper Css End */

/* wireframe-wrapper Css Start */

.wireframe-image img {
    width: 100%;
}

/* wireframe-wrapper Css End */


/* user-testing-wrapper Css Start */
.user-testing-cover {
    display: flex;
    flex-wrap: wrap;
}

.user-testing-heading {
    width: 200px;
    flex: 0 0 auto;
}

.user-testing-content-col {
    width: calc(100% - 200px);
    flex: 0 0 auto;
    padding-left: 90px;
}

.user-testing-heading h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.user-testing-heading p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

.user-testing-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -12px;
}

.user-testing-col {
    width: 33.33%;
    flex: 0 0 auto;
    padding-inline: 12px;
}

.user-testing-col-content {
    border-radius: 20px;
    background: #E5EBF0;
    padding: 55px;
    height: 100%;
}

.user-testing-col-content h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    padding-top: 25px;
    margin-bottom: 25px;
    position: relative;
}

.user-testing-col-content h3::before {
    content: "";
    width: 41px;
    height: 9px;
    border-radius: 2px;
    display: inline-block;
    background: var(--primary-color);
    position: absolute;
    top: 0px;
    left: 0px;
}

.user-testing-col-content p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

/* user-testing-wrapper Css End */

/* affinity-wrapper Css Start */
.affinity-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 57px;
}

.affinity-image img,
.affinity-mapping img {
    width: 100%;
}

/* affinity-wrapper Css End */

@font-face {
    font-family: "Sideboard";
    src: url("../fonts/sideboard-font/sideboard-personaluseonly.otf") format("otf)");
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-color: #231F20;
    --secondry-color: #F1E9E6;
    --para-line-color: #E36925;
    --primary-font: "Lexend", sans-serif;
    --secondary-font: "Sideboard", sans-serif;
    --third-font: "Poppins", sans-serif;
    /* 
      Step 1: The single base font size variable you requested.
    */
    --base-font-size: 16px;

    /* 
      Step 2: Calculate all other font sizes based on the single variable.
      The format is: calc(var(--base-font-size) * [multiplier]).
    */
    --font-10px: calc(var(--base-font-size) * 0.625);
    --font-12px: calc(var(--base-font-size) * 0.75);
    --font-15px: calc(var(--base-font-size) * 0.9375);
    --font-16px: var(--base-font-size);
    --font-18px: calc(var(--base-font-size) * 1.125);
    --font-20px: calc(var(--base-font-size) * 1.25);
    --font-24px: calc(var(--base-font-size) * 1.5);
    --font-32px: calc(var(--base-font-size) * 2);
    --font-48px: calc(var(--base-font-size) * 3);
    --font-61px: calc(var(--base-font-size) * 3.8125);
    --font-78px: calc(var(--base-font-size) * 4.875);
    --font-96px: calc(var(--base-font-size) * 6);
}

body {
    font-family: var(--primary-font);
    background-color: #fff;
    color: var(--primary-color);
    font-size: var(--font-16px);
}

/* General Container */
.container {
    max-width: 93%;
    padding-inline: 15px;
    margin: 0 auto;
}

.h-100 {
    height: 100%;
}

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

.list-unstyled {
    list-style: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.pBlock-150 {
    padding-block: 150px;
}

.mb-150 {
    margin-bottom: 150px;
}

.pBlock-55 {
    padding-block: 55px;
}

.mb-0 {
    margin-bottom: 0px;
}

.pt-0 {
    padding-top: 0px !important;
}

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

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

.custom-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -15px;
}

.custom-col-12,
.custom-col-10,
.custom-col-6,
.custom-col-5,
.custom-col-7,
.custom-col-4,
.custom-col-8,
.custom-col-3,
.custom-col-9 {
    flex: 0 0 auto;
    padding-inline: 15px;
}

.custom-col-12 {
    width: 100%;
}

.custom-col-10 {
    width: 86%;
}

.custom-col-6 {
    width: 50%;
}

.custom-col-3 {
    width: 25%;
}

.custom-col-9 {
    width: 75%;
}

.custom-col-4 {
    width: 33.333%;
}

.custom-col-8 {
    width: 66.667%;
}

.custom-col-7 {
    width: 58.333%;
}

.custom-col-5 {
    width: 40%;
}

.custom-col-7 {
    width: 60%;
}

/* Header Css Start */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 20px;
}

.menu-toggle {
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    width: 51px;
    height: 60px;
    border-radius: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.menu-toggle svg path {
    stroke: var(--secondry-color);
}

button.menu-toggle svg {
    width: 25px;
    height: 18px;
}

.menu-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.navbar-list {
    display: flex;
    align-items: center;
    gap: 0px 24px;
    list-style: none;
    border-radius: 10px;
    margin: 0;
    padding: 10px 10px;
    background-color: var(--primary-color);
}

.nav-link {
    color: var(--secondry-color);
    text-decoration: none;
    font-size: var(--font-16px);
}

/* Header Css End */

/* Banner Css Start */
.banner-wrapper {
    background-image: url(../img/setu/banner.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: 730px;
}

/* Banner Css End */


/* detail-wrapper-css Start */
.detail-cover {
    background-color: var(--secondry-color);
    border-radius: 24px;
    padding: 30px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-section-heading span {
    font-size: var(--font-20px);
    font-weight: 200;
    line-height: normal;
}

.detail-section-heading h2 {
    font-size: var(--font-96px);
    font-weight: 600;
    line-height: 150px;
}

.detail-cover-box ul {
    display: flex;
    align-items: center;
    gap: 0px 41px;
}

.detail-box-content h3 {
    font-size: var(--font-24px);
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
}

.detail-box-content p {
    font-size: var(--font-20px);
    font-weight: 200;
    line-height: normal;
}

/* detail-wrapper-css End */

/* portfolio-wrapper Css Start */

.portfolio-wrapper .custom-row .col-12 .custom-row {
    margin-inline: -73px;
}

.portfolio-wrapper .custom-row {
    align-items: center;
}

.portfolio-wrapper>.container>.custom-row {
    gap: 150px 0px;
}

.portfolio-wrapper .custom-col,
.portfolio-wrapper .customCol {
    flex: 0 0 auto;
    padding-inline: 73px;

}

.portfolio-wrapper .container .custom-row .custom-col-12:nth-child(2n) .custom-row .customCol:has(.port-content) {
    order: -1;
}

.portfolio-wrapper .custom-col {
    width: 55%;
}

.portfolio-wrapper .customCol {
    width: 45%;
}

.port-content h3 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 10px;
}

.port-content h4 {
    font-weight: 200;
    font-size: var(--font-20px);
    line-height: normal;
    margin-bottom: 25px;
}

.port-content p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.portfolio-image,
.portfolio-image-box {
    height: 100%;
}

.portfolio-image-box {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    padding-block: 20px;
}

.custom-col-12 .custom-row {
    position: relative;
}

.image-box {
    width: 50%;
    flex: 0 0 auto;
    position: relative;
}

.image-box::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.02) 0.25%, rgba(255, 255, 255, 0.00) 76.83%, #FFF 99.68%);
    position: absolute;
    top: 0px;
    left: 0px;
}

.image-box:nth-child(2n)::before {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.02) 0.25%, rgba(255, 255, 255, 0.00) 60.58%, #FFF 99.68%), linear-gradient(270deg, rgba(255, 255, 255, 0.50) 0.25%, rgba(255, 255, 255, 0.00) 33.29%);
}

.image-box img,
.portfolio-image img {
    width: 100%;
}

.line {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.line img {
    height: 100%;
}

/* portfolio-wrapper Css End */

/* summary-wrapper Css Start */

.summary-heading h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 27px;
}

.summary-wrapper .custom-col-10>.custom-row {
    margin-inline: -73px;
}

.summary-wrapper .custom-col-10>.custom-row>.custom-col-6 {
    padding-inline: 73px;
}

.summary-image {
    margin-bottom: 48px;
}

.summary-content h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    line-height: normal;
    margin-bottom: 25px;
}

.summary-content p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.summary-content p span {
    color: var(--para-line-color);
}

.summary-wrapper>.container>.custom-row {
    gap: 150px 0px;
}

.summary-wrapper-cover .custom-row {
    margin-inline: -35px;
}

.summary-wrapper-cover .custom-row .custom-col-5,
.summary-wrapper-cover .custom-row .custom-col-7 {
    padding-inline: 35px;
}

.summary-cover-heading h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    line-height: normal;
    margin-bottom: 25px;
}

.summary-cover-heading p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.summary-cover-image img {
    width: 100%;
}

.summary-main-heading h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 0px;
}

/* summary-wrapper Css End */

/* context-wrapper Css Start */
.contect-wrapper h3 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 35px;
}

.context-content h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    line-height: normal;
}

.context-content p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 20px;
}

.context-content h3.mb-0 {
    margin-bottom: 0px;
}

.contect-wrapper .custom-row .custom-col-12 .custom-row {
    margin-inline: -48px;
}

.contect-wrapper .custom-row .custom-col-12 .custom-row .custom-col-6 {
    padding-inline: 48px;
}

/* context-wrapper Css End */

/* research-wrapper Css Start */
.research-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 35px;
}

.research-box ul {
    display: grid;
    grid-template-columns: 19.2% 23.1% 26.6% 31.1%;
    /* ratio based */
    justify-content: center;
    /* center in container */
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1%;
    margin-bottom: 40px;
}

.research-box ul.research-list li {
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.research-box ul li:nth-child(1) .research-box-container {
    background: #EFF3F6;
}

.research-box ul li:nth-child(2) .research-box-container {
    background: #E5EBF0;
}

.research-box ul.research-list li:nth-child(3) .research-box-container {
    background: #DBE6EE;
}

.research-box ul.research-list li:nth-child(4) .research-box-container {
    background: #C5D6E3;
}

.research-box-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.research-box-container p {
    font-weight: 200;
    font-size: var(--font-20px);
    line-height: normal;
    position: relative;
    padding-bottom: 20px;
}

/* .research-box-container p::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
} */

.research-list-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 equal columns */
    gap: 1%;
    /* upar wale grid ke jaisa gap */
    padding: 0;
    margin: 0;
    list-style: none;
}

.research-list-content li {
    display: flex;
}

.research-list-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.research-list-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -8px;
}

.research-list-col {
    width: 50%;
    flex: 0 0 auto;
    padding-inline: 8px;
}

.research-box-container {
    position: relative;
}

.research-box-container p {
    font-weight: 200;
    font-size: var(--font-20px);
    line-height: normal;
    position: relative;
    padding-bottom: 20px;
}

/* .research-box-container p::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
} */

ul.research-list li:nth-child(1) .research-box-container p::after,
.research-box ul.research-list li:nth-child(1) .research-box-container::before,
.research-list-content li:nth-child(1) .research-list-content-box h3::before {
    display: none;
}

.research-col-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.research-box-container::before {
    content: "";
    width: 1px;
    height: 56%;
    display: inline-block;
    border-left: 1px dotted var(--primary-color);
    position: absolute;
    z-index: 9;
    left: 50%;
    top: 69%;
    transform: translate(-50%, -31%);
}

.research-list-content-box h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    padding-top: 10px;
    margin-bottom: 0px;
    position: relative;
}

.research-list-content-box h3::before {
    content: "";
    width: 41px;
    height: 9px;
    border-radius: 2px;
    background-color: var(--primary-color);
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.research-list-content-box p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.research-box ul li:nth-child(2) .research-box-container::before {
    top: 75.9%;
    transform: translate(-50%, -25.9%);
    height: 76%;
}

.research-box ul li .research-box-container::before,
.research-box ul li .research-box-container::after {
    display: none !important;
}

.research-box ul li:nth-child(3) .research-box-container::before {
    top: 74%;
    transform: translate(-50%, -26%);
    height: 67%;
}



/* .research-box ul li:nth-child(4) .research-box-container p::after {
    left: 24%;
    transform: translateX(-75%);
} */

/* .research-box ul li:nth-child(4) .research-box-container p::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0px;
    right: 23%;
} */

.research-box ul li:nth-child(4) .research-box-container::after {
    content: "";
    width: 1px;
    height: 56%;
    display: inline-block;
    border-left: 1px dotted var(--primary-color);
    position: absolute;
    z-index: 9;
    height: 55%;
    right: 41%;
    top: 70%;
    transform: translate(-59%, -30%);
}

/* research-wrapper Css End */

/* primary-wrapper Css Start */
.primary-wrapper .custom-row {
    margin-inline: -92px;
}

.primary-wrapper .custom-row .custom-col-5,
.primary-wrapper .custom-row .custom-col-7 {
    padding-inline: 92px;
}

.primary-graph {
    --value: 63;
    /* percentage */
    width: 421px;
    height: 421px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: conic-gradient(from 90deg,
            #c5d6e3 0deg calc(var(--value) * 3.6deg),
            #ffffff calc(var(--value) * 3.6deg) 360deg);
    overflow: hidden;
}

.primary-graph::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(146deg, #C5D6E3 15.74%, #FFF 91.82%);
    mask: conic-gradient(from 90deg,
            #000 0deg calc(var(--value) * 3.6deg),
            transparent calc(var(--value) * 3.6deg) 360deg);
    -webkit-mask: conic-gradient(from 90deg,
            #000 0deg calc(var(--value) * 3.6deg),
            transparent calc(var(--value) * 3.6deg) 360deg);
}



.primary-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 41px 0px;
}

.primary-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 25px;
}

.primary-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.primary-graph-content p {
    font-weight: 200;
    font-size: var(--font-20px);
    line-height: normal;
    margin-bottom: 41px;
}

.primary-graph-content p:has(span) {
    margin-bottom: 0px;
    color: var(--para-line-color);
}

.primary-graph-content p span {
    font-weight: 400;
}

/* primary-wrapper Css End */


/* main-insight-wrapper Css Start */

.main-insight-slider {
    overflow: hidden;
    height: 100vh;
    /* Set a height for the slider container to show two slides */
    position: relative;
    /* Needed for absolute positioning if any, or for context */
}

.main-insight-slider::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    display: inline-block;
    top: 0px;
    left: 0px;
    z-index: 9;
    background: linear-gradient(177deg, #FFF 2.14%, rgba(255, 255, 255, 0.00) 12.82%, rgba(255, 255, 255, 0.00) 64.93%, #FFF 91.01%);
}

.main-insight-slider ul {
    list-style: none;
    padding: 0;
    margin: 0;
    transition: transform 1s linear;
    /* Keep transition for smooth animation */
    display: block;
    /* Change to block for vertical flow */
    height: 100%;
    /* Take full height of container */
}

.main-insight-slider ul li {
    display: flex;
    /* Keep flex for content alignment within the slide */
    align-items: center;
    justify-content: center;
    text-align: center;
    height: auto !important;
    width: 100%;
}

.main-insight-slider ul li+li {
    margin-top: 30px;
    /* Remove margin-top for vertical stacking */
}

.insight-slider-box {
    padding: 30px 40px;
    background: #C5D6E3;
    border-radius: 20px;
    height: 100%;
    width: 100%;
}

.main-insight-wrapper .custom-col-10 .custom-row {
    margin-inline: -92px;
}

.main-insight-wrapper .custom-row .custom-col-5,
.main-insight-wrapper .custom-row .custom-col-7 {
    padding-inline: 92px;
}

.insight-slider-box p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

.insight-slider-box p:has(span) {
    margin-bottom: 0px;
}

.insight-slider-box p span {
    font-weight: 400;
}

.insight-slider-box {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.main-insight-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    line-height: normal;
    margin-bottom: 35px;
}

.main-insight-wrapper p {
    font-weight: 200;
}

/* main-insight-wrapper Css End */

/* portfolio-preview-wrapper css Start */
.portfolio-preview-wrapper .custom-row {
    margin-inline: -95px;
}

.portfolio-preview-wrapper .custom-row .custom-col-5,
.portfolio-preview-wrapper .custom-row .custom-col-7 {
    padding-inline: 95px;
}

.portfolio-preview-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-24px);
    line-height: normal;
    margin-bottom: 25px;
}

.portfolio-preview-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    margin-bottom: 0px;
}

.portfolio-preview-list ul {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -12px;
    gap: 24px 0px;
}

.portfolio-preview-list ul li {
    width: 50%;
    flex: 0 0 auto;
    padding-inline: 12px;
}

span.portfolio-icon {
    display: inline-block;
    height: 43px;
    margin-bottom: 10px;
}

.portfolio-box p {
    font-weight: 200;
    font-size: var(--font-20px);
    line-height: normal;
    margin-bottom: 0px;
}

.portfolio-box {
    background-color: #C5D6E3;
    padding: 24px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* portfolio-preview-wrapper css End */

/* key-wrapper Css Start */
.key-wrapper {
    background-image: url(../img/setu/key-image.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    z-index: 9;
}

.key-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.68);
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.key-wrapper p {
    font-weight: 200;
    font-size: var(--font-20px);
    color: var(--secondry-color);
    margin-bottom: 25px;
}

.key-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    color: var(--secondry-color);
}

/* key-wrapper Css End */

/* secondry-research-wrapper Css Start */

.secondry-research-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 9px;
}

.secondry-research-box {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: #C5D6E3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.secondry-research-image {
    position: absolute;
    top: -20%;
    height: 150px;
    display: flex;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
}

.secondry-research-content p {
    font-weight: 200;
    font-size: var(--font-20px);
    margin-bottom: 25px;
}

.secondry-research-content p:has(span) {
    margin-bottom: 0px;
    font-weight: 400;
    font-size: var(--font-16px);
}

.secondry-research-wrapper .custom-row {
    margin-inline: -73px;
}

.secondry-research-wrapper .custom-row .custom-col-5,
.secondry-research-wrapper .custom-row .custom-col-7 {
    padding-inline: 73px;
}

.secondry-research-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.secondry-research-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

/* secondry-research-wrapper Css End */


/* landscope-wrapper Css Start */
.landscope-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 25px;
}

.landscope-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
}

.landscope-wrapper>.container>.custom-row {
    gap: 42px 0px;
}

.landscope-wrapper>.container>.custom-row>.custom-col-12>.custom-row {
    margin-inline: -50px;
}

.landscope-wrapper>.container>.custom-row>.custom-col-12>.custom-row>.custom-col-6 {
    padding-inline: 50px;
}

.landscope-cover ul {
    position: relative;
    width: 100%;
    height: 100vh;
}

.landscope-cover ul li {
    position: absolute;
}

.landscope-cover ul li .landscope-image {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landscope-cover ul li .landscope-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Initially hidden */
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    /* Smooth transition for fade and scale */
    transform: scale(0.8);
    /* Start slightly scaled down */
}

.landscope-cover ul li:nth-child(1) {
    top: 8%;
    left: 10%;
}

.landscope-cover ul li:nth-child(2) {
    top: 2%;
    left: 35%;
}

.landscope-cover ul li:nth-child(3) {
    top: 5%;
    left: 70%;
}

.landscope-cover ul li:nth-child(4) {
    top: 20%;
    left: 60%;
}

.landscope-cover ul li:nth-child(5) {
    top: 35%;
    left: 8%;
}

.landscope-cover ul li:nth-child(6) {
    top: 37%;
    left: 35%;
}

.landscope-cover ul li:nth-child(7) {
    top: 42%;
    left: 68%;
}

.landscope-cover ul li:nth-child(8) {
    top: 60%;
    left: 15%;
}

.landscope-cover ul li:nth-child(9) {
    top: 63%;
    left: 38%;
}

.landscope-cover ul li:nth-child(10) {
    top: 66%;
    left: 65%;
}

.landscope-wrapper h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 25px;
}

.landscope-wrapper h3 span {
    color: var(--para-line-color);
}

.landscope-wrapperp {
    font-weight: 200;
    font-size: var(--font-16px);
}

/* landscope-wrapper Css End */

/* post-research-wrapper Css Start */
.post-research-wrapper-cover {
    padding: 56px 22px;
    border-radius: 20px;
    background: #E5EBF0;
}

.post-research-wrapper .custom-row {
    margin-inline: -7px;
}

.post-research-wrapper .custom-row .custom-col-4,
.post-research-wrapper .custom-row .custom-col-7 {
    padding-inline: 7px;
}

.post-research-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

.post-research-wrapper h2,
.post-research-wrapper h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 31px;
}

.post-research-wrapper h3 span {
    color: var(--para-line-color);
}

.post-research-wrapper h3:last-child {
    margin-bottom: 0px;
}

.post-research-image img {
    width: 100%;
}

/* post-research-wrapper Css End */

/* target-wrapper Css Start */
.target-wrapper {
    position: relative;
    z-index: 99;
    height: 600px;
}

.target-wrapper::before {
    content: "";
    width: 50%;
    height: 100%;
    display: inline-block;
    background-image: url(../img/setu/target-image-1.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.brand-subheading span.d-block {
    display: inline-block;
    margin-bottom: 20px;
}

.target-wrapper::after {
    content: "";
    width: 50%;
    height: 100%;
    display: inline-block;
    background-image: url(../img/setu/target-image-2.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: -1;
}

.target-wrapper .container::before {
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    background: rgba(0, 0, 0, 0.78);
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 9;
}

.target-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    color: var(--secondry-color);
    margin-bottom: 0px;
}

.target-wrapper .container>.custom-row {
    gap: 120px 0px;
}

.target-wrapper .container>.custom-row>.custom-col-12,
.target-wrapper .container>.custom-row>.custom-col-10 {
    position: relative;
    z-index: 99;
}

.target-wrapper p {
    font-weight: 400;
    font-size: var(--font-20px);
    color: var(--para-line-color);
    margin-bottom: 9px;
}

.target-wrapper h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 9px;
    color: var(--secondry-color);
}

.target-wrapper ul li {
    font-weight: 200;
    font-size: var(--font-20px);
    color: var(--secondry-color);
}

.target-wrapper ul {
    padding-left: 20px;
}

/* target-wrapper Css End */

/* meet-wrapper Css Start */
.meet-image img {
    width: 100%;
}

.meet-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.meet-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

/* meet-wrapper Css End */

/* deliverable-wrapper Css Start */
.deliverable-wrapper .custom-col-12 .custom-row {
    margin-inline: -95px;
}

.deliverable-wrapper .custom-col-12 .custom-row .custom-col-6 {
    padding-inline: 95px;
}

.deliverable-cover {
    border-radius: 20px;
    background: #E5EBF0;
    padding-block: 55px;
}

.deliverable-cover p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

.deliverable-cover h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 0px;
}

/* deliverable-wrapper Css End */

/* branding-wrapper Css Start */
.branding-wrapper .custom-row {
    margin-inline: -31px;
}

.branding-wrapper .custom-row .custom-col-6 {
    padding-inline: 31px;
}

.branding-heading h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.branding-heading p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

.brand-subheading h3 {
    font-weight: 400;
    font-family: var(--secondary-font);
    font-size: var(--font-78px);
    color: var(--para-line-color);
    margin-bottom: 0px;
    line-height: 70px;
}

.brand-subheading span {
    font-weight: 300;
    font-family: var(--third-font);
    font-size: var(--font-18px);
    color: #000;
}

.brand-sub-heading h4 {
    font-family: var(--third-font);
    font-weight: 400;
    font-size: var(--font-61px);
    color: #2E2E2E;
    line-height: 71px;
}

.brand-sub-heading span {
    font-family: var(--third-font);
    font-weight: 300;
    font-size: var(--font-18px);
}

.brand-sub-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: -3%;
    margin-right: 38%;
    margin-bottom: 25px;
}

.brand-setu .custom-row {
    margin-inline: -16px;
}

.brand-setu .custom-row .custom-col-6 {
    padding-inline: 16px;
}

.brand-setu h5 {
    color: #000;
    font-weight: 400;
    font-size: var(--font-20px);
    margin-bottom: 25px;
}

.brand-setu p {
    color: #000;
    font-weight: 200;
    font-size: var(--font-16px);
}

.setu-image img {
    width: 100%;
}

.branding-box-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(10, 1fr);
    /* 10 rows for fine control */
    width: 100%;
    height: 500px;
    border-radius: 9px;
    overflow: hidden;
}

.branding-box-row .branding-col {
    padding: 7px 15px;
}

.branding-box-row .branding-col:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    border-radius: 9px 0px 0px 0px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    background: #FFF;
}

.branding-box-row .branding-col:nth-child(2) {
    grid-column: 1 / 2;
    grid-row: 4 / 11;
    border-radius: 0 0 0 0;
    background: linear-gradient(82deg, #E36925 14.13%, #FAC270 184.55%);
}

.branding-box-row .branding-col:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 1 / 11;
    background: #C5D6E3;
}

.branding-box-row .branding-col:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 1 / 4;
    border-radius: 0 0 0 0;
    background: #FFDE98;
}

.branding-box-row .branding-col:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 4 / 7;
    background: #D6CBE7;
}

.branding-box-row .branding-col:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 7 / 9;
    background: #E9EEF2;
}

.branding-box-row .branding-col:nth-child(7) {
    grid-column: 3 / 4;
    grid-row: 9 / 11;
    border-radius: 0 0 0 0;
    background: #2E2E2E;
}

.branding-col h2 {
    font-family: var(--third-font);
    font-size: var(--font-20px);
    color: #2E2E2E;
    font-weight: 600;
}

.branding-col p {
    font-weight: 500;
    font-family: var(--third-font);
    font-size: var(--font-12px);
}

.branding-box-row .branding-col:nth-child(2) h2,
.branding-box-row .branding-col:nth-child(2) p,
.branding-box-row .branding-col:nth-child(7) h2,
.branding-box-row .branding-col:nth-child(7) p {
    color: var(--secondry-color);
}

/* branding-wrapper Css End */

/* flow-wrapper Css Start */
.flow-wrapper .custom-row {
    margin-inline: -59px;
}

.flow-wrapper .custom-row .custom-col-6 {
    padding-inline: 59px;
}

.flow-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.flow-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

.flow-image img {
    width: 100%;
}

/* flow-wrapper Css End */

/* home-wrapper Css Start */
.home-wrapper-cover {
    background: #EFEFEF;
    border-radius: 20px;
    padding: 54px 50px;
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

.home-cover-heading h2 {
    font-family: var(--third-font);
    font-weight: 600;
    font-size: var(--font-24px);
    text-transform: uppercase;
    color: #fff;
    width: 200px;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #2E2E2E;
    border-radius: 23px;
    position: relative;
}

.home-cover-heading h2::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #2E2E2E;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -8px;
}

.home-cover-heading {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    height: 53px;
}

.home-cover-heading::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #2E2E2E;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 200px;
}

.home-cover-content {
    width: calc(100% - 200px);
    padding-left: 30px;
    flex: 0 0 auto;
    margin-top: -26px;
}

.home-cover-col-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-arrow {
    position: relative;
    width: 2px;
    display: inline-block;
    height: 26px;
    background: #2E2E2E;
    border-radius: 5px;
}

.home-arrow::after {
    content: "";
    position: absolute;
    left: 44%;
    bottom: 0px;
    transform: translateX(-60%) rotate(-45deg);
    width: 6px;
    height: 7px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    border-radius: 1px;
}

.home-cover-row {
    display: flex;
    margin-inline: -57px;
}

.home-cover-col {
    width: 50%;
    flex: 0 0 auto;
    padding-inline: 57px;
}

.home-cover-col-content h3 {
    font-family: var(--third-font);
    font-weight: 700;
    font-size: var(--font-16px);
    color: #fff;
    display: inline-flex;
    width: fit-content;
    position: relative;
    margin-bottom: 47px;
    text-transform: capitalize;
    padding: 7px 22px;
    border-radius: 16px;
    background: #E36925;
}

.home-cover-col-content h3::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
}

.home-cover-col-content h3::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
}

.heading-arrow {
    position: absolute;
    width: 2px;
    display: inline-block;
    height: 26px;
    background: #000;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -29px;
}

.heading-arrow::after {
    content: "";
    position: absolute;
    left: 44%;
    bottom: 0px;
    transform: translateX(-60%) rotate(-45deg);
    width: 6px;
    height: 7px;
    border-left: 2px solid #000;
    border-bottom: 2px solid #000;
    border-radius: 1px;
}

.home-cover-col-content ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-cover-col-content ul li+li {
    padding-top: 16px;
}

.home-cover-box p {
    font-weight: 300;
    font-family: var(--third-font);
    font-size: var(--font-10px);
    margin-bottom: 0px;
    color: #2E2E2E;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 22px;
    border: 1px solid #000;
    border-radius: 16px;
}

.fade .home-cover-box p {
    font-family: var(--third-font);
    font-weight: 500;
    color: #fff;
    font-size: var(--font-15px);
    background: #DFA46C;
    border-color: #DFA46C;
}

.home-cover-col-content ul li {
    position: relative;
}

.home-cover-col-content ul li:nth-child(1)::before {
    display: none;
}

.home-cover-col-content ul li::before {
    content: "";
    width: 2px;
    height: 16px;
    display: inline-block;
    background-color: #000;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.home-cover-container {
    overflow: hidden;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }

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

/* home-wrapper Css End */

/* wireframe-wrapper Css Start */

.wireframe-image img {
    width: 100%;
}

/* wireframe-wrapper Css End */


/* user-testing-wrapper Css Start */
.user-testing-cover {
    display: flex;
    flex-wrap: wrap;
}

.user-testing-heading {
    width: 200px;
    flex: 0 0 auto;
}

.user-testing-content-col {
    width: calc(100% - 200px);
    flex: 0 0 auto;
    padding-left: 90px;
}

.user-testing-heading h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.user-testing-heading p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

.user-testing-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -12px;
}

.user-testing-col {
    width: 33.33%;
    flex: 0 0 auto;
    padding-inline: 12px;
}

.user-testing-col-content {
    border-radius: 20px;
    background: #E5EBF0;
    padding: 55px;
    height: 100%;
}

.user-testing-col-content h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    padding-top: 25px;
    margin-bottom: 25px;
    position: relative;
}

.user-testing-col-content h3::before {
    content: "";
    width: 41px;
    height: 9px;
    border-radius: 2px;
    display: inline-block;
    background: var(--primary-color);
    position: absolute;
    top: 0px;
    left: 0px;
}

.user-testing-col-content p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

/* user-testing-wrapper Css End */

/* affinity-wrapper Css Start */
.affinity-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 57px;
}

.affinity-image img,
.affinity-mapping img {
    width: 100%;
}

/* affinity-wrapper Css End */
.testing-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.testing-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

.testing-image img {
    width: 100%;
}

.testing-row {
    display: flex;
    flex-wrap: wrap;
}

.testing-col {
    width: 100%;
    flex: 0 0 auto;
}

.testing-slider-container {
    position: relative;
    overflow: hidden;
    /* This is crucial to hide overflowing slides */
    width: 100%;
}

.testing-slider-row {
    display: flex;
    transition: transform 0.5s ease-in-out;
    /* width will be set by JS */
}

ul.testing-slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px 40px;
    list-style: none;
    margin-block: 40px;
}

.testing-slider-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
    padding: 0;
    margin-block: 40px;
    gap: 0px 40px;
}


.testing-slider-dots button {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #E5EBF0;
    cursor: pointer;
    padding: 0;
    border: 0px;
}

.testing-slider-dots button.active {
    background-color: #C5D6E3 !important;
}

/* testing-wrapper Css End */

/* final-wrapper Css Start */
.final-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.final-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

.final-wrapper-cover {
    overflow: visible;
    position: relative;
    padding-block: 90px;
}

.mobile-search {
    display: none;
}

.final-wrapper-row .slick-slide {

    margin-inline: 10px;
    min-height: auto !important;

}

.fina-wrapper-image {
    height: 300px;
    height: auto;
}






.fina-wrapper-image img {
    height: 100%;
    height: auto;
}






.final-wrapper-col.active-slide {

    opacity: 1;

}





.final-wrapper-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    padding-inline: 40px;
    z-index: 2;
    /*background-color: rgb(255 255 255);*/
    box-sizing: border-box;
}



.final-wrapper-image img {

    width: 100%;

}

/* final-wrapper End */

/* accordion-wrapper Css Start */

.accordion-box-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content-active {
    padding: 20px;
    border-top: 1px solid #ccc;
}

.accordion-box {
    border-radius: 20px;
    background: #F1E9E6;
    padding: 30px;
}

.accordion-box+.accordion-box {
    margin-top: 15px;
}

.accordion-box button {
    padding: 0px;
    display: inline-flex;
    width: 100%;
    padding: 0px;
    border: 0px;
    position: relative;
    font-weight: 400;
    font-size: var(--font-24px);
    background-color: transparent;
    cursor: pointer;
}

.accordion-box button::after {
    content: "";
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="29" height="21" viewBox="0 0 29 21" fill="none"><path d="M2 1.34766H27" stroke="%23231F20" stroke-width="2.67857" stroke-linecap="round"/><path d="M2 10.3477H23" stroke="%23231F20" stroke-width="2.45495" stroke-linecap="round"/><path d="M2 19.2051H27" stroke="%23231F20" stroke-width="2.67857" stroke-linecap="round"/></svg>');
    width: 25px;
    display: inline-block;
    height: 17px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0px;
}

.accordion-box-content.accordion-content-active {
    max-height: initial !important;
    padding: 0px;
    border: 0px;
    margin-top: 30px;
}

.accordion-box-content.accordion-content-active img {
    width: 100%;
    height: 394px;
    margin: auto;
    text-align: center;
    max-width: 646px;
    margin-top: 20px;
    display: flex;
}

.accordion-box-content p {
    font-weight: 200;
    font-size: var(--font-16px);
}

/* accordion-wrapper Css End */

/* integrated-wrapper Css Start */
.integrated-wrapper {
    position: relative;
    background-color: #fff;
    background-image:
        radial-gradient(ellipse 50% 50% at 15% 40%, rgba(227, 235, 243, 0.7), transparent 80%),
        radial-gradient(ellipse 40% 50% at 85% 50%, rgba(227, 235, 243, 0.7), transparent 80%),
        radial-gradient(ellipse 50% 50% at 20% 85%, rgba(227, 235, 243, 0.7), transparent 80%);
}

.integrated-cover h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.integrated-cover p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 50px;
}

.integrated-cover>.custom-row {
    gap: 50px 0px;
}

.integrated-cover .custom-col-12 .custom-row {
    margin-inline: -51px;
}

.integrated-cover .custom-col-12 .custom-row .custom-col-6 {
    padding-inline: 51px;
}

.integrated-cover .custom-col-12 .custom-col-6>span {
    font-weight: 400;
    font-size: var(--font-20px);
    display: inline-block;
    margin-bottom: 11px;
    color: var(--para-line-color);
}

.integrated-cover .custom-col-12 .custom-col-6>h3 {
    font-weight: 700;
    font-size: var(--font-48px);
    line-height: normal;
    margin-bottom: 11px;
}

.integrated-cover .custom-col-12 .custom-col-6>p {
    font-weight: 400;
    font-size: var(--font-20px);
    margin-bottom: 0px;
}

.stay-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stay-row .stay-col {
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 8.302px 8.302px 0 rgba(0, 0, 0, 0.04);
    position: relative;
}

.stay-row .stay-col:nth-child(1) {
    grid-row: span 2;
    background: #D6CBE7;
}

.stay-row .stay-col:nth-child(2) {
    background: #FBFBFB;
}

.stay-row .stay-col:nth-child(3) {
    background: #FFE19F;
}

.stay-row .stay-col:nth-child(4) {
    background: #FFF;
    grid-column: span 2;
}

.stay-image {
    width: 46px;
    height: 46px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    bottom: 15px;
    left: 20px;
}

.stay-image img {
    width: 100%;
    height: 100%;
}

.stay-col h4 {
    font-weight: 500;
    font-family: var(--third-font);
    font-size: var(--font-18px);
    margin-bottom: 5px;
}

.stay-col p {
    font-weight: 300;
    font-family: var(--third-font);
    font-size: var(--font-20px);
}

.stay-col span {
    font-family: var(--third-font);
    font-weight: 300;
    font-size: var(--font-15px);
    margin-bottom: 5px;
}

.integrated-cusmto-col-12:nth-child(2n + 1)>.custom-row>.custom-col-6:nth-child(2) {
    order: -1;
}

.integrated-content {
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.04);
    padding: 30px 20px;
    position: relative;
    max-width: 60%;
    z-index: 9;
}

.integrated-content::before {
    content: "";
    width: 87%;
    height: 80%;
    border-radius: 40px 40px 40px 40px;
    border: 7px solid #FFF;
    display: inline-block;
    position: absolute;
    top: -20px;
    z-index: -1;
}

.integrated-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.integrated-time p {
    margin-bottom: 0px;
    display: inline-flex;
    align-items: center;
    gap: 0px 5px;
}

.integrated-time p svg {
    width: 24px;
    height: 24px;
}

.integrated-profile-image {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    overflow: hidden;
}

.integrated-profile h4 {
    font-weight: 500;
    font-family: var(--third-font);
    font-size: var(--font-24px);
    width: calc(100% - 92px);
    padding-right: 20px;
}

.integrated-profile {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.integrated-btn-box a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #2E2E2E;
    color: #fff;
    font-family: var(--third-font);
    font-weight: 500;
    font-size: var(--font-24px);
    padding: 11px 60px;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 30px;
}

.integrated-box>img {
    width: 100%;
}

/* integrated-wrapper Css End */


/* wrapper Css Start */

.wrapper img {
    width: 100%;
}

/* wrapper Css End */

/* learning-wrapper Css Start */

.learning-wrapper>.container>.custom-row {
    gap: 43px 0px;
}

.learning-wrapper>.container>.custom-row>.custom-col-12 .custom-row {
    margin-inline: -47px;
}

.learning-wrapper>.container>.custom-row>.custom-col-12 .custom-row .custom-col-4 {
    padding-inline: 47px;
}

.learning-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.learning-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

.leanring-cover {
    position: relative;
    padding: 55px 22px;
    border-radius: 20px;
    background: #E5EBF0;
    height: 100%;
}

.learning-box-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0px;
    position: absolute;
    top: -108px;
    left: 50%;
    transform: translateX(-50%);
}

.leanring-cover h3 {
    font-weight: 400;
    font-size: var(--font-24px);
    margin-bottom: 25px;
}

.leanring-cover p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 0px;
}

.custom-col-12:has(.leanring-cover) {
    margin-top: 108px;
}

.leanring-cover h3+p {
    margin-bottom: 25px;
}

.leanring-cover span {
    display: inline-block;
    font-weight: 200;
    font-size: var(--font-20px);
    margin-bottom: 25px;
}

/* learning-wrapper Css End */

/* process-wrapper Css Start */
.process-wrapper h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 25px;
}

.process-wrapper p {
    font-weight: 200;
    font-size: var(--font-16px);
    margin-bottom: 25px;
}

.process-btn {
    display: inline-block;
    font-weight: 200;
    font-size: var(--font-20px);
    text-decoration: underline;
    color: #000;
    border-radius: 20px;
    background: #F1E9E6;
    padding: 15px 30px;
}

.process-image img {
    width: 100%;
}

.process-image {
    animation: subtle-float 3s ease-in-out infinite;
}

@keyframes subtle-float {
    0% {
        transform: translateY(0);
    }

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

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

/* process-wrapper Css End */

/* project-wrapper Css Start */

.project-heading span {
    font-weight: 400;
    font-size: var(--font-24px);
    display: inline-block;
    margin-bottom: 25px;
    color: var(--para-line-color);
}

.project-heading h2 {
    font-weight: 400;
    font-size: var(--font-32px);
    margin-bottom: 0px;
}

.project-list-btn {
    font-weight: 200;
    font-size: var(--font-16px);
    line-height: normal;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #212021;
    padding: 20px 30px;
    color: #fff;
}

.project-wrapper-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.project-wrapper .custom-row {
    gap: 50px 0px;
}

.project-slider-cover .container {
    margin-right: 0px;
    padding-right: 0px;
    max-width: 98%;
}

.project-slider-cover {
    margin-top: 50px;
}

.project-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.project-box.blue .project-image {
    background: #012169;
}

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

.project-box.blue .project-image img {
    width: 100% !important;
    height: 100% !important;
}

.project-content {
    position: absolute;
    bottom: 0px;
    padding: 18px 18px;
    background: #181717;
    width: 100%;
    border-radius: 0px 0px 20px 20px;
    height: auto !important;
    display: none;
}

.project-content h3 {
    font-weight: 400;
    font-size: var(--font-18px);
    margin-bottom: 5px;
    line-height: normal;
    color: #fff;
}

.project-content p {
    font-weight: 200;
    font-size: var(--font-18px);
    line-height: normal;
    margin-bottom: 0px;
    color: #fff;
}

.project-cover .slick-list.draggable {
    padding-right: 10%;
}

.project-row .slick-slide {
    margin-inline: 30px;
}

.desk {
    display: none;
}

/* project-wrapper Css End */















.bookSelf {
  background: #fdfdfd;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  transition: all 0.6s ease;
}

.fan-card-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  transition: all 0.6s ease;
}

.fan-card {
  position: absolute;
  width: 500px;
  height: 500px;
  transition: transform 0.5s ease, z-index 0.3s;
  z-index: 1;
  cursor: pointer;
  transform-origin: bottom center;
}

.fan-card:nth-child(1) {
    transform: rotate(5deg) translateX(-320px) translateY(20px);
    z-index: 1;
}

.fan-card:nth-child(2) {
    transform: rotate(0deg) translateX(-130px) translateY(-60px);
    z-index: 2;
}

.fan-card:nth-child(3) {
    transform: rotate(0deg) translateX(90px) translateY(-60px);
    z-index: 3;
}

.fan-card:nth-child(4) {
    transform: rotate(-10deg) translateX(375px) translateY(50px);
    z-index: 4;
}

.fan-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* Hover zoom effect (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .fan-card:hover {
    z-index: 10;
  }

  .fan-card:hover img {
    transform: scale(1.08);
  }
}

/* ✅ Responsive 2x2 layout for mobile */
@media (max-width: 768px) {
  .bookSelf {
    height: auto;
    padding: 40px 0;
  }

  .fan-card-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    transition: all 0.6s ease;
  }

  .fan-card {
    position: relative;
    margin-left: 0;
    justify-self: center;
    cursor: default;
    transition: all 0.6s ease;
    width: auto;
    height: auto;
    transform: none !important;
  }

  .fan-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    transform: none !important;
    transition: all 0.6s ease;
  }
}




















/* Responsive Header */
@media (max-width: 768px) {
    :root {
        --base-font-size: 14px;
    }

    /* Header Css Start */
    .menu-container {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px 0;
        z-index: 100;
    }

    .menu-container.active {
        display: block;
    }

    .navbar-list {
        flex-direction: column;
        align-items: center;
    }


    .menu-container .nav-link {
        color: var(--secondry-color);
    }

    /* Header Css End */

    .accordion-box-content.accordion-content-active img {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }
}