/* =========================
   Hero Section
========================= */
.btn:hover {
    color: var(--bg3-color) !important;
}

.hero {
    position: relative;
    height: 100%;
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.1) 55%,
            rgba(0, 0, 0, 0) 80%);
}

.hero .overlay-bg {
    inset: 0;
    z-index: 0;
}

.overlay-image {
    inset: 0;
    transform: translateX(120px);
    transition: all 1s ease;
}

.overlay-image.active {
    opacity: 1;
    transform: translateX(0) !important;
}

.overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-image-mobile {
    display: none;
}

.hero .swiper,
.hero .swiper-wrapper {
    height: 100%;
}

.hero .swiper-slide {
    display: flex;
    align-items: center;
}

.hero-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    transform: translateY(80px);
    transition: all 0.8s ease;
}

.swiper-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(30px, 5vw, 45px);
    font-weight: 700;
    line-height: clamp(44px, 6vw, 50px);
}

.hero-content p {
    max-width: 520px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.hero-content .btn {
    margin-top: 15px;
}

.Indicators {
    position: absolute;
    bottom: 65px;
    left: 50%;
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 15px;
    user-select: none;
    transform: translateX(-50%);
}

.numPagination {
    color: #fff;
    font-size: 14px;
}

.numPagination span {
    color: #fff;
}

.custom-indicators {
    display: flex;
    gap: 2px;
    width: 300px;
}

.indicator {
    position: relative;
    flex: 1;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: #fff;
}

.hero-nav {
    display: flex;
    gap: 20px;
}

.hero-pause {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.hero-pause span {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.hero-pause:hover {
    border-color: #ff3b3b;
    background: #ff3b3b;
    transform: scale(1.1);
}

.hero-prev,
.hero-next {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.hero-prev span,
.hero-next span {
    margin: 0;
    color: #fff;
    transition: transform 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    transform: scale(1.1);
}

.hero-prev:hover span {
    transform: translateX(-3px);
}

.hero-next:hover span {
    transform: translateX(3px);
}


/* =========================
   Core Values Section
========================= */
.section-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 600;
}

.core-text {
    color: var(--para-text);
    font-size: 15px;
    line-height: 1.8;
}

/* Value Card */

.value-card {
    background: var(--bg-primary);
    padding: 40px 20px 30px;
    border-radius: var(--radius16);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    color: var(--button-color);
    font-weight: 600;
    margin-top: 30px;
    transition: color 0.4s ease;
}

.value-card p {
    font-size: 14px;
    color: var(--text-primary);
    margin-top: 10px;
    height: 100%;
    /* flex-grow: 1; */
    transition: color 0.4s ease;
}

/* Icon Circle */

.core-values-section .icon-circle {
    width: 80px;
    height: 120px;

    background: linear-gradient(90deg,
            rgba(177, 202, 235, 0.5) 0%,
            rgba(252, 253, 253, 0.5) 100%);

    border: 1px solid #D8E4FF;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    box-shadow:
        inset 0 0 4px rgba(0, 0, 0, 0.16);

    border-radius: var(--radius999);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -70px auto 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;

    transition:
        background 0.4s ease,
        transform 0.4s ease,
        box-shadow 0.4s ease;
}



.core-values-section .icon-circle svg {
    fill: var(--bg1-color);
    stroke: var(--bg1-color);

    transition:
        fill 0.4s ease,
        stroke 0.4s ease,
        transform 0.4s ease;

    position: relative;
    z-index: 11;
}

/* Hover Effects */

.value-card:hover .icon-circle {
    transform: scale(1.1);
}

.value-card:hover .icon-circle::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--bg1-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.value-card:hover .icon-circle svg {
    fill: var(--bg3-color);
    stroke: var(--bg3-color);
}



/* =========================
   Work Culture Section
========================= */

.work-culture-section {
    background: var(--bg-primary);
}

.work-wrapper {
    background: linear-gradient(90deg,
            rgba(238, 243, 253, 0.3) 0%,
            rgba(252, 253, 253, 0.3) 100%);

    border: 1px solid #D8E4FF;
    border-radius: var(--radius24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Heading */
.work-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-primary);
}

/* List */
.work-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    line-height: 1.7;
}

.check-icon {
    width: 22px;
    height: 22px;
    /* background: rgba(233, 41, 47, 0.1); */
    color: var(--button-color);
    border-radius: var(--radius999);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Image */
.work-image {
    border-radius: var(--radius16);
    max-height: 360px;
    object-fit: cover;
}

/* Badge */
.member-badge {
    position: absolute;
    display: flex;
    gap: 10px;
    align-items: center;
    bottom: -25px;
    right: -10px;
    background: #C11425CC;
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--bg3-color);
    padding: 18px 28px;
    border-radius: var(--radius16);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-badge strong {
    font-size: 22px;
    display: block;
}

.member-badge span {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
    color: var(--bg-primary);
}


/* Tablet */
@media (max-width: 991px) {
    .work-wrapper {
        padding: 35px 28px !important;
    }

    .work-wrapper .row {
        gap: 35px;
    }

    .work-title,
    .section-title {
        font-size: 32px;
        line-height: 40px;
    }

    .work-list li {
        font-size: 15px;
        line-height: 1.6;
    }

    .work-image {
        width: 100%;
        max-height: 420px;
    }

    .member-badge {
        right: 20px;
        bottom: -20px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .work-culture-section {
        padding: 35px 0 !important;
    }

    .work-wrapper {
        padding: 28px 18px !important;
        border-radius: 18px;
    }

    .section-label {
        font-size: 12px;
    }

    .work-title,
    .section-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 20px !important;
    }

    .work-list li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .check-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .check-icon svg {
        width: 20px;
        height: 20px;
    }

    .work-wrapper .col-lg-6.position-relative {
        text-align: center !important;
    }

    .work-image {
        width: 100%;
        max-height: 280px;
        border-radius: 14px;
    }

    .member-badge {
        position: static;
        margin: 16px auto 0;
        width: fit-content;
        padding: 14px 18px;
        border-radius: 14px;
        justify-content: center;
    }

    .member-badge strong {
        font-size: 18px;
    }

    .member-badge span {
        font-size: 11px;
    }
}


/* =========================
   LIFE AT PITTIE SECTION
========================= */

.life-section {
    padding: 80px 0;
}


.section-title {
    font-weight: 600;
    margin-top: 10px;
}

.life-desc {
    margin: 14px auto 0;
    font-size: 14px;
    color: var(--para-text);
    line-height: 1.7;
}

.life-section .masonry-grid {
    max-width: 1280px;
    margin: 0 auto;
}

.masonry-grid .edit {
    object-position: center;
}

@media (min-width: 992px) and (max-width: 1400px) {
    .life-section .masonry-grid {
        padding: 0 30px;
    }
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 290px;
    gap: 16px;
    margin-top: 50px;
}

/* Base Grid Item */

.grid-item {
    border-radius: var(--radius16);
    overflow: hidden;
    position: relative;
    background: #eee;
}

.grid-item16 img {
    object-position: 0px 70%;
}

/* Image Styling */

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

/* SPECIAL STRUCTURE CLASSES */

.big-center {
    grid-column: span 2;
    grid-row: span 2;
}

.tall-right {
    grid-row: span 2;
}

.row-1-col-2 {
    grid-row: span 1;
    grid-column: span 2;
}

.small {
    grid-row: span 1;
}



/* =========================
   KK sir Growth Section
========================= */

.growth-section-new {
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
}

.quote-tail-new img {
    transform: scaleX(-1);
}

.profile-info-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-transform: capitalize;
    place-self: flex-end;
}

.growth-wrapper-new {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: 100vh;
    max-height: 650px;
}

/* =========================
   Growth Section
========================= */

.growth-section {
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
}


.growth-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    max-height: 650px;
    max-width: 1400px;
    margin: auto;
}


/* LEFT SIDE */

.growth-left-new {
    width: 40%;
    background: linear-gradient(180deg, #0c3a6b, #001c38);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.growth-left-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.growth-left-new::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;

    top: -50px;
    left: 700px;

    border-radius: 50%;
    background: rgba(26, 65, 116, 0.2);
    filter: blur(70px);

    pointer-events: none;
    z-index: 0;
}

/* Aditya sir */

.growth-left {
    width: 40%;
    background: linear-gradient(180deg, #0c3a6b, #001c38);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.growth-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.growth-left::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;

    top: -50px;
    left: 500px;

    border-radius: 50%;
    background: rgba(26, 65, 116, 0.2);
    filter: blur(70px);

    pointer-events: none;
    z-index: 0;
}



/*  RIGHT SIDE */

#growth-content {
    background: linear-gradient(90deg,
            rgba(238, 243, 253, 0.3) 0%,
            rgba(252, 253, 253, 0.3) 100%);

    border: 1px solid #D8E4FF;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 20px;
}

.growth-right-new {
    width: 60%;
    padding: 80px;
    display: flex;
    justify-content: center;
    position: relative;
}

#kk-pittie .bg-icon {
    position: absolute;
    top: 61%;
    left: 0px;
}

#aditya-pittie .bg-icon {
    position: absolute;
    top: 63%;
    right: 0;
}

.growth-right {
    width: 60%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* QUOTE */

.quote-box {
    position: relative;
    max-width: 620px;
    margin-bottom: 50px;
}

.quote-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a3a3a;
    position: relative;
    padding: 0 20px;
}

/* Opening Quote */
.quote-box p::before {
    content: "“";
    position: absolute;
    left: -5px;
    top: -10px;
    font-size: 40px;
    color: var(--bg-danger);
}

/* Closing Quote */
.quote-box p::after {
    content: "”";
    position: absolute;
    bottom: -15px;
    font-size: 40px;
    color: var(--bg-danger);
}

/* Animated Characters */
.quote-box .char {
    display: inline-block;
    color: rgb(193, 193, 193);
    transition: color 0.15s linear;
}

/* PROFILE INFO */

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.leader h4,
.leader span {
    text-transform: uppercase;
}

.profile-info h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.profile-info span {
    font-size: 14px;
    color: #777;
}

/* BUTTON */

.btn-outline {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border: 1px solid #444;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}



/* =========================
   Tablet
========================= */
@media (max-width: 991px) {

    .growth-wrapper,
    .growth-wrapper-new {
        flex-direction: column;
        min-height: auto;
    }

    .growth-left,
    .growth-right,
    .growth-right-new {
        width: 100%;
    }

    .growth-left {
        height: 800px;
    }

    .growth-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .growth-right,
    .growth-right-new {
        padding: 60px 40px;
    }

    .quote-box {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .quote-box p {
        font-size: 17px;
        line-height: 1.7;
    }

    .profile-info,
    .profile-info-new {
        place-self: flex-start;
    }



}


/* =========================
   Mobile
========================= */
@media (max-width: 767px) {

    .growth-section,
    .growth-section-new,
    .growth-wrapper,
    .growth-wrapper-new {
        min-height: auto;
    }

    .growth-wrapper,
    .growth-wrapper-new {
        flex-direction: column;
    }

    .core-values-section-card {
        gap: 20px;
    }

    .growth-left {
        width: 100%;
        height: 420px;
    }

    .growth-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
    }

    .growth-right,
    .growth-right-new {
        width: 100%;
        padding: 40px 24px;
    }

    .quote-box {
        margin-bottom: 30px;
    }

    .quote-box p {
        font-size: 15px;
        line-height: 1.8;
        padding: 0 10px;
    }

    .quote-box p::before {
        left: -2px;
        top: -5px;
        font-size: 28px;
    }

    .quote-box p::after {
        font-size: 28px;
        bottom: -10px;
    }

    .profile-info h4,
    .profile-info-new h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    .profile-info span,
    .profile-info-new span {
        font-size: 13px;
        line-height: 1.5;
    }

    .btn-outline {
        margin-top: 20px;
        padding: 10px 22px;
        font-size: 13px;
    }
}


/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {


    .growth-right,
    .growth-right-new {
        padding: 32px 20px;
    }

    .quote-box p {
        font-size: 14px;
    }

    .profile-info h4,
    .profile-info-new h4 {
        font-size: 16px;
    }

    .profile-info span,
    .profile-info-new span {
        font-size: 12px;
    }
}


/* RESPONSIVE BREAKPOINTS */

@media (max-width: 1200px) {
    .masonry-grid {
        grid-auto-rows: 180px;
    }
}

@media (max-width: 992px) {
    #main-content {
        overflow: hidden;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .tall-right {
        grid-column: span 1;
    }

    .row-1-col-2 {
        grid-column: 1;
    }

}

@media (max-width: 768px) {
    .grid-item:nth-child(n+7) {
        display: none;
    }
}

@media (max-width: 576px) {

    .overlay-image-mobile {
        display: flex;
    }

    #main-content {
        overflow: hidden;
    }

    .masonry-grid {
        grid-auto-rows: auto;
        padding-inline: 10px;
    }

    .grid-item:nth-child(n+6) {
        display: none;
    }

    .grid-item.small {
        grid-row: span 1;
        grid-column: span 1;
    }


    /*================ Header Banner css 
    =================================*/

    .hero-wrapper {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0;
        position: absolute;
    }


    .swiper-slide .hero-content p {
        display: none;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }

    .hero-content {
        width: 100% !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }

    .hero .swiper-slide {
        padding: 0;
        align-items: center;
    }

    .Indicators {
        display: none;
    }

    .hero {
        height: 100%;
    }

    .hero .overlay-bg {
        position: relative;
        display: flex;
    }

    .overlay-image {
        flex: 0 0 100%;
    }

    .overlay-image.active {
        position: relative;
        z-index: 111;
    }
}




/* =========================
   TESTIMONIAL OVERLAP
========================= */

.testimonial-section {
    padding: 50px 0;
}

.testimonial-section .section-label {
    margin: auto;
    display: flex;
    width: fit-content;
}

.section-title {
    font-weight: 700;
    color: var(--text-primary);
}


/* Layout Wrapper */
.testimonial-layout {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 400px;
}

/* LEFT IMAGE */
.testimonial-image {
    width: 50%;
    position: absolute;
}

.testimonial-image img {
    width: 100%;
    height: 400px;
    object-position: top;
    object-fit: cover;
    border-radius: var(--radius24);
}

.testimonialSwiper-row {
    position: relative;
    min-height: 400px;
    align-content: center;
}


/* RIGHT CARD
.testimonial-card {
    position: absolute;
    right: 0;
    width: 60%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-primary);
    padding: 50px;
    border-radius: var(--radius16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
} */


/* Quote */
.quote-icon {
    font-size: 60px;
    color: var(--bg1-color);
    font-weight: bold;
    line-height: 1;
}

/* Text */
.testimonial-text {
    font-size: 14px;
    color: var(--para-text);
    line-height: 1.8;
    margin: 0px 0 30px;
}

/* Profile */
.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-profile img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-profile h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-profile span {
    font-size: 13px;
    color: var(--sub-text);
}

/* Footer */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

/* Navigation */
.swiper-button-prev,
.swiper-button-next {
    width: 42px;
    height: 42px;
    background: #000;
    border-radius: 50%;
    color: #fff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
}

.pagination-icon {
    width: 90%;
    justify-content: end;
    gap: 50px;
    position: absolute;
    top: 74%;
    z-index: 11;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-buttons .swiper-button-icon {
    position: relative;
    left: 0;
    right: 0;
}

/* Pagination */
.pagination-icon .pagination {
    gap: 5px;
    align-items: center;
}

.pagination-icon .pagination span {
    background: black;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    opacity: 1;
    margin-bottom: 0;
}

.pagination-icon .pagination span.active {
    background: var(--button-color);
}


.testimonial-card {
    position: absolute;
    right: 0;
    top: 50%;
    width: 60%;
    transform: translateY(-50%);
    background: var(--bg-primary);
    padding: 50px;
    border-radius: var(--radius16);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.testimonialContentSwiper .swiper-slide {
    background: var(--bg-primary);
}

.quote-icon {
    font-size: 60px;
    color: var(--bg1-color);
    line-height: 1;
}

.testimonial-text {
    font-size: 14px;
    color: var(--para-text);
    line-height: 1.8;
    margin: 0px 0 30px;
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-profile img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-profile h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-profile span {
    font-size: 13px;
    color: var(--sub-text);
}

.testimonial-controls {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 45px;
    width: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 50px;
}



.testimonial-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #000;
    opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--button-color);
}

.testimonial-nav {
    display: flex;
    gap: 12px;
}

.testimonial-prev,
.testimonial-next {
    width: 42px;
    height: 42px;
    background: radial-gradient(71.7% 135.42% at 49.77% 79.17%, #0059CF 0%, #111928 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    padding-bottom: 5px;
}

@media (min-width: 600px) and (max-width: 991px) {

    .testimonial-card {
        right: -19px !important;
        padding: 15px !important;
    }

    .testimonial-controls {
        top: -73% !important;
        right: -44px !important;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 60%;
        padding: 30px;
    }

    .testimonial-controls {
        width: 60%;
        padding: 0 30px;
    }

    .growth-wrapper {
        height: 100%;
        max-height: 100%;
    }

    .growth-left-new {
        width: 100%;
        overflow: visible;
    }
}

@media (max-width: 576px) {
    .testimonialSwiper-row {
        min-height: 850px;
        align-content: start;
    }

    .testimonial-image {
        width: 100%;
    }

    .testimonial-card {
        width: 100%;
        top: 40%;
        transform: none;
        padding: 28px;
    }

    .testimonial-controls {
        width: 100%;
        padding: 0 20px;
    }
}