:root {
    --primary-red: #d72638;
    --primary-red-dark: #b22234;
    --text-dark: #25282a;
    --text-medium: #3a3f40;
    --text-light: #6a7577;
    --background-light-gray: #f6f6f6;
    --white: #ffffff;
    --border-light: rgba(0, 0, 0, 0.1);
    --brand-red: #E33C3C;
    --ink: #101419;
    --muted: #6B7280;
    --card-bg: #ffffff;
    --section-bg: #FFF4F4;
    --radius: 14px;
}

body {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

p,
li {
    font-size: 16px;
    margin-bottom: 15px;
}

h3 {
    font-size: 21px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.red-bg {
    background-color: var(--primary-red-dark);

}

.red-bg p {
    color: #D3D3D3;
}

.red-bg-section {
    background-color: #D72638;
    border-radius: 20px;
    padding: 50px 0;
}

.dark-bg-section {
    background-color: #282828;
    border-radius: 20px;
    padding: 50px 0;
}

.grey-bg-section {
    background-color: #F2F2F2;
    border-radius: 20px;
    padding: 50px 0;
}

.red-bg-section .service-card a.learn-more {
    color: var(--primary-red);
}

.red-bg-section .service-card a.learn-more:hover {
    color: var(--white);
}

.red-bg-section .service-card {
    width: 100%;
}

.red-bg-section .service-card h3,
.red-bg-section .service-card p {
    margin-bottom: 10px;
}


.section-header {
    display: flex;
    margin: 0;
    margin-bottom: 25px;
    flex-direction: column;
    gap: 15px;
}

.list-breadcumb {
    display: flex;
    margin: 0;
    padding: 0;
}

.list-breadcumb li {
    align-items: center;
    display: flex;
    padding: 0 5px;
    font-weight: 500;
    line-height: normal;
    list-style: none;
    margin: 10px 0;
}

.list-breadcumb li a {
    text-decoration: none;
    color: #d72638;
}

ul.list-breadcumb li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    font-size: 22px;
}

@media (min-width: 992px) {
    .w-40 {
        width: 40% !important;
    }

    .w-45 {
        width: 45% !important;
    }

    .w-50 {
        width: 50% !important;
    }

    .w-55 {
        width: 55% !important;
    }

    .w-60 {
        width: 60% !important;
    }

    .w-65 {
        width: 65% !important;
    }

    .w-70 {
        width: 70% !important;
    }

    .w-75 {
        width: 75% !important;
    }

    .w-80 {
        width: 80% !important;
    }

    .w-85 {
        width: 85% !important;
    }

    .w-90 {
        width: 90% !important;
    }

    .w-95 {
        width: 95% !important;
    }

    .float-lg-right {
        float: right !important;
    }

    .service-image {
        border-radius: 15px;
        box-sizing: border-box;
        margin-top: -159px;
    }

    .services-row {
        margin-top: 160px;
    }
}

@media (max-width: 991px) {
    .w-40 {
        width: 100% !important;
    }

    .w-45 {
        width: 100% !important;
    }

    .w-50 {
        width: 100% !important;
    }

    .w-55 {
        width: 100% !important;
    }

    .w-60 {
        width: 100% !important;
    }

    .w-65 {
        width: 100% !important;
    }

    .w-70 {
        width: 100% !important;
    }

    .w-75 {
        width: 100% !important;
    }

    .w-80 {
        width: 100% !important;
    }

    .w-85 {
        width: 100% !important;
    }

    .w-90 {
        width: 100% !important;
    }

    .w-95 {
        width: 100% !important;
    }
}

/* custom btn */
/* Base button */
.custom-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-btn.rounded-10 {
    border-radius: 10px;
}

/* Default arrow after text */
.custom-btn::after {
    content: "\f178";
    /* Font Awesome long arrow right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: 10px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease, margin-left 0.3s ease;
}

/* Hover effect: arrow straightens and moves */
.custom-btn:hover::after {
    transform: rotate(0deg) translateX(6px);
}

/* Hover: lift and shadow */
.custom-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ========== Sliding overlay animation ========== */
.custom-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    /* subtle shine */
    transform: skewX(-20deg);
    transition: all 0.5s ease;
    z-index: 0;
}

/* Bring overlay on hover */
.custom-btn:hover::before {
    left: 200%;
}

/* Make sure text and arrow are above overlay */
.custom-btn>* {
    position: relative;
    z-index: 1;
}

/* ========== Button Variants ========== */

/* Red */
.custom-btn.primary-red {
    background-color: #d72638;
    color: #fff;
}

/* White */
.custom-btn.white {
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
}

/* Rounded */
.custom-btn.rounded-50 {
    border-radius: 50px;
}

/* ========== Responsive ========== */
@media (max-width: 576px) {
    .custom-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}



/* custom css end */

#video-lightbox {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

#video-lightbox[style*="block"] {
    display: flex !important;
}

.video-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
}

.video-lightbox-content {
    position: relative;
    z-index: 10;
    max-width: 90vw;
    max-height: 80vh;
    margin: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.video-lightbox-iframe-wrapper {
    width: 70vw;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.video-lightbox-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    border-radius: 8px;
}

.video-lightbox-close {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 2.5rem;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 20;
    line-height: 1;
    padding: 0 8px;
    transition: color 0.2s;
}

.video-lightbox-close:hover {
    color: #ff4444;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .video-lightbox-iframe-wrapper {
        width: 95vw;
        aspect-ratio: 16/9;
    }
}

.video-placeholder {
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    display: block;
}

.video-placeholder:hover .play-btn {
    opacity: 1;
}

.video-item iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: 8px;
    display: block;
}

.section-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    color: #2f3133;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--text-dark);
}

.section-title .light-font {
    font-weight: 300;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 19px 24px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: #333738;
}

.btn-arrow {
    width: 11px;
    height: 11px;
    border-top: 1.5px solid;
    border-right: 1.5px solid;
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 40px;
    }

    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .btn {
        padding: 15px 20px;
        font-size: 16px;
    }
}

/* CSS for section section:header */
.site-header {
    width: 100%;
    z-index: 100;
    padding-top: 20px;
    padding-bottom: 20px;
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 193px;
    height: auto;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #383a45;
    font-weight: 600;
    font-size: 14px;
}

.main-nav a img {
    width: 15px;
    height: auto;
}

.header-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 14px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
}


.navbar-toggler.mobile-nav-toggle {
    border: none;
    background: none;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    box-shadow: none;
}

.navbar-toggler.mobile-nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #25282a;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (min-width: 992px) {
    .navbar-toggler.mobile-nav-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-contact-btn {
        display: none;
    }
}

@media (max-width: 575px) {
    .navbar-collapse {
        flex-grow: 1;
        flex-basis: 100%;
        align-items: center;
        background-color: #f5f5f5;
        padding: 10px 20px;
    }
}

@media screen and (min-width: 769px) {
    .dropend:hover>.dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }
}

@media (max-width: 991px) {

    /* Disable hover open for mobile */
    .dropdown:hover>.dropdown-menu,
    .dropend:hover>.dropdown-menu {
        display: none;
    }
}



.dropdown-arrow {
    background: transparent !important;
    border: none;
    color: #000;
    font-size: 14px;
    padding: 6px;
    cursor: pointer;
    border-radius: 0px;
}

.nav-item button:hover {
    background: transparent;
    color: #222;
}

.dropdown-arrow::after {
    content: "\f078";
    /* Font Awesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
    background: transparent;
}

.dropdown.show>.dropdown-arrow::after,
.dropend.show>.dropdown-arrow::after {
    transform: rotate(180deg);
}


.navbar-nav .nav-link {
    color: #000;
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: #222;
    border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

.nav-item .custom-btn::after {
    content: "";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: 10px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease, margin-left 0.3s ease;
}

.nav-item {
    padding: 5px 10px;
    margin-bottom: 0px;
}

.dropend .dropdown-toggle::after {
    vertical-align: 0;
    float: right;
    position: relative;
    top: 8px;
}

.header-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    background-color: #d72638;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link.active,
.nav-link.active+.dropdown-arrow,
.navbar-nav .nav-link.show {
    color: #d72638;
}

.dropdown-item.active,
.dropdown-item:active,
.dropend .parent-menu.active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #d72638;
}

.dropdown-item:hover,
.dropend .parent-menu.active .dropdown-arrow {
    background-color: #d72638;
    color: #fff;
}

.dropend .parent-menu.active .dropdown-item {
    color: #fff;
}

.dropdown .dropdown-menu {
    display: none;
    border: transparent;
    border-top: 3px solid #d72638;
    border-radius: 0px;
}

.dropend .d-flex:hover {
    background-color: #d72638;
    color: #fff;
}

.dropend .d-flex:hover button {
    color: #fff;
}

.dropdown-arrow:hover+a {
    color: #fff !important;
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
    padding: 0;
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;

}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 20px;
    clear: both;
    font-weight: 400;
    font-size: 14px;
    color: var(--bs-dropdown-link-color);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: var(--bs-dropdown-item-border-radius, 0);
}

.dropdown-menu li {
    font-size: 16px;
    margin-bottom: 0px;
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
    display: block;
    margin-top: 0.125em;
    margin-left: 0.125em;
}

@media screen and (min-width: 769px) {
    .dropend:hover>.dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
    }


}

/* CSS for section section:hero */
.hero-section {
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

#section-hero {
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #25262b;
    overflow: hidden;
}

.hero-bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(37, 38, 43, 0) 0%, rgba(37, 38, 43, 0.5) 38.28%, #25262b 73.74%);
}

.hero-container {
    position: relative;
}

.hero-content {
    padding: 140px 0;
}

.hero-title {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
}

.hero-title .bold-font,
.bold-font {
    font-weight: 700;
}

.hero-title .light-font {
    font-weight: 300;
    color: #25282a;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 28px;
    letter-spacing: 0.68px;
    color: #3a3f40;
    opacity: 0.83;
    margin-bottom: 45px;
    max-width: 543px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 45px;
}

.hero-logos img {
    max-width: 250px;
    height: auto;
}

.hero-slider-nav {
    position: absolute;
    bottom: -20px;
    right: 20px;
    color: #f5f5f5;
    opacity: 0.83;
    font-size: 17px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    #section-hero .container-fluid {
        background: #515151 !important;
        border-radius: 20px;
    }

    .hero-bg-gradient {
        background: linear-gradient(360deg, rgba(37, 38, 43, 1) 10%, rgba(37, 38, 43, 0.7) 50%, rgba(37, 38, 43, 0) 100%);
    }

    .hero-content {
        margin: 0 auto;
        padding: 50px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }

    .hero-slider-nav {
        display: none;
    }
}

.main-home .banner-bg {
    border-radius: 20px;
}

.main-home .banner-bg {
    background-image: url(/images/virtual-assistant-services/index/hero-banner.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Hero content */
.main-home .hero-content {
    padding: 3rem 1rem;
}


.main-home .hero-title .light-font {
    font-weight: 300;
}

.main-home .hero-title .bold-font {
    font-weight: 700;
}

.main-home .hero-subtitle {
    margin-bottom: 2rem;
}

.main-home .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


/* ------------------------------
     RESPONSIVE STYLES
  --------------------------------*/
.main-home .banner-bg {
    border-radius: 20px;
}

@media (min-width: 1199px) {
    .main-home .hero-content {
        padding: 10rem 1rem;
    }
}

@media (max-width: 991px) {
    .main-home .banner-bg {
        background-position: center top;
        border-radius: 20px;
    }

    .main-home .hero-title {
        font-size: 1.8rem;
    }

    .main-home .hero-subtitle {
        font-size: 0.95rem;
    }

    .red-bg-section .service-card .card-body {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .main-home .banner-bg {
        background-position: top;
        background-size: cover;
    }

    .main-home .hero-content {
        padding: 2.5rem 1rem;
    }

    .main-home .hero-actions {
        justify-content: center;
    }

    .main-home .hero-title {
        font-size: 1.6rem;
    }

    .main-home .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* CSS for section section:about */
.about-section {
    background-color: var(--white);
}

#section-about,
#section-industries {
    background-image: url('/images/texture-bg.webp');
    background-size: 100% 100%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 60px;
    position: relative;
}

.about-img-1 {
    border-radius: 15px;
    object-fit: cover;
}

.about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 239px;
    border-radius: 15px;
    border: 4.5px solid var(--white);
    object-fit: cover;
}

.experience-box {
    position: absolute;
    bottom: 50px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.experience-line {
    width: 3.4px;
    height: 80px;
    background-color: #5c5354;
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.experience-years {
    font-size: 61px;
    font-weight: 700;
    color: #25393d;
}

.experience-text {
    font-size: 17px;
    font-weight: 500;
    color: #233032;
    max-width: 102px;
    text-align: center;
    line-height: 1.3;
}

.experience-bg-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-size: 74px;
    font-weight: 800;
    color: #000;
    opacity: 0.1;
    z-index: -1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.about-text-group {
    display: flex;
    gap: 15px;
}

.about-text-line {
    width: 8px;
    height: 106px;
    background: linear-gradient(to bottom, #433537 38.68%, #e9dedf 38.68%);
}

.about-text-group p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
}

.about-text-group p:first-child {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.about-text-group p:last-child {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
        height: 450px;
    }

    .about-img-1 {
        width: 90%;
        height: auto;
    }

    .about-img-2 {
        width: 50%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .about-images {
        display: none;
    }

    .about-content {
        text-align: center;
    }

    .section-subtitle {
        justify-content: center;
    }

    .about-text-group {
        text-align: left;
    }
}

/* CSS for section section:services */
.services-section {
    text-align: center;
}

.services-section h3 {
    font-size: 18px;
    font-weight: bold;
    padding-right: 50px;
}

.services-header {
    max-width: 771px;
    margin: 0 auto 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0px 3.7px 22px 0px #dae5ed;
    padding: 25px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover,
.service-card--active {
    background-color: var(--primary-red-dark);
    color: var(--white);
}

.service-icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    margin-bottom: 38px;
}

.service-icon-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-icon-wrapper .icon-white {
    opacity: 0;
}

.service-card:hover .icon-dark,
.service-card--active .icon-dark {
    opacity: 0;
}

.service-card:hover .icon-white,
.service-card--active .icon-white {
    opacity: 1;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 21px;
}

.service-card:hover h3,
.service-card--active h3 {
    color: var(--white);
}

.service-card p {
    font-size: 16px;
    line-height: 22px;
    color: #484d50;
    margin-bottom: 21px;
    flex-grow: 1;
}

.service-card:hover p,
.service-card--active p {
    color: var(--white);
}

.service-card a {
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 11px;
}

.service-card:hover a,
.service-card--active a {
    color: var(--white);
}

.service-card a img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(5%) saturate(389%) hue-rotate(154deg) brightness(95%) contrast(88%);
}

.service-card:hover a img,
.service-card--active a img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(102%) contrast(102%);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:why-us */
.main-home .why-us-section {
    background-color: #0c0e1d;
    color: var(--white);
    min-height: 701px;
    display: flex;
    align-items: center;
    background-image: url('/images/main-home/img-why-choose-us.webp');
    background-size: 100% 100%;
    border-radius: 20px;
}

.why-us-content {
    position: relative;
    z-index: 1;
}

.why-us-header {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin-bottom: 53px;
}

.why-us-header .section-subtitle {
    color: var(--white);
}

.why-us-header .section-title {
    color: var(--white);
}

.why-us-intro {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #f2f3fd;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 52px;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #cfcfcf;
}

.why-us-list li img {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .main-home .why-us-section {
        background: #0c0e1d;
        padding: 50px 0;
    }

    .why-us-content {
        margin: 0 auto;
        text-align: center;
    }

    .why-us-header {
        align-items: center;
    }

    .why-us-list li {
        text-align: left;
    }
}

/* CSS for section section:process */
.process-section {
    text-align: center;
}

.process-header {
    max-width: 724px;
    margin: 0 auto 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.process-grid {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: 40px;
    align-items: center;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #d4d1d1;
    position: relative;
}

.process-step.active {
    background: linear-gradient(90deg, #fde1e4 0%, rgba(253, 225, 228, 0) 100%);
}

.process-step.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary-red);
}

.step-number {
    font-size: 16px;
    font-weight: 600;
    color: #53555d;
    transform: rotate(-90deg);
    width: 36px;
    flex-shrink: 0;
    margin-left: -20px;
}

.process-step.active .step-number {
    color: var(--white);
    background-color: var(--primary-red);
    line-height: 36px;
    text-align: center;
}

.step-content-wrapper {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 30px;
}

.step-icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.step-icon-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.step-icon-wrapper .icon-red {
    opacity: 0;
}

.process-step.active .icon-red {
    opacity: 1;
}

.process-step.active .icon-dark {
    opacity: 0;
}

.step-text {
    text-align: left;
}

.step-text h4 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -1.4px;
    color: #585858;
    margin-bottom: 10px;
}

.process-step.active .step-text h4 {
    color: #a71f30;
}

.step-text p {
    font-size: 15px;
    line-height: 20px;
    color: #4c4f51;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-image {
        max-width: 550px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .step-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .step-text h4 {
        font-size: 22px;
    }
}

/* =========================
   Timeline Base
========================= */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3px;
    /* Tight gap between steps */
}

/* =========================
     Each Step Box
  ========================= */
.timeline-step {
    display: flex;
    align-items: stretch;
    position: relative;
    border: 1px solid #eee;
    border-left: none;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}

/* Down Arrow Connector */
.timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -23px;
    width: 0;
    height: 0px;
    border-left: 90px solid transparent;
    border-right: 35px solid transparent;
    border-top: 25px solid #ccc;
    margin-left: -1px;
    z-index: 1;
}

/* =========================
     Left Vertical Label
  ========================= */
.timeline-marker {
    background: #ccc;
    color: #333;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 8px;
    font-size: 13px;
    text-align: center;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

/* =========================
     Content Area
  ========================= */
.timeline-content {
    padding: 45px 25px;
    flex-grow: 1;
    gap: 10px
}

/* Step Heading with Icon */
.timeline-content h3 {
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

/* Icon Wrapper */


.icon-wrapper img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Description Text */
.timeline-content p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* =========================
     Active & Hover States
  ========================= */
.timeline-step.active .timeline-marker,
.timeline-step:hover .timeline-marker {
    background: #b30000;
    color: #fff;
}

.timeline-step.active,
.timeline-step:hover {
    background: linear-gradient(90deg, rgba(255, 77, 77, 0.15), rgba(255, 77, 77, 0.05));
    border-color: #f5b5b5;
}

.timeline-step.active::after,
.timeline-step:hover::after {
    border-top-color: #b30000;
}

.icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
}

.timeline-step img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.timeline-step .step-icon-red {
    opacity: 0;
}

.timeline-step.active .step-icon-red {
    opacity: 1;
}

.timeline-step .step-icon-dark {
    opacity: 1;
}

.timeline-step.active .step-icon-dark {
    opacity: 0;
}

.timeline-step:hover .step-icon-red {
    opacity: 1;
}

.timeline-step:hover .step-icon-dark {
    opacity: 0;
}


/* Hover: Change Icon Background + Tint Icon White */

.timeline-step:hover h5 {
    color: #b30000;
}

/* =========================
     Responsive
  ========================= */
@media (max-width: 767px) {
    .timeline {
        gap: 3px;
    }

    .timeline-step {
        flex-direction: column;
    }

    .timeline-marker {
        writing-mode: horizontal-tb;
        min-width: 100%;
        font-size: 12px;
    }

    .timeline-step::after {
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    .timeline-content {
        padding: 48px 25px;
        flex-grow: 1;
        gap: 31px;
    }

    .timeline-content h5 {
        font-size: 16px;
    }
}



/* CSS for section section:industries */
.industries-section {
    background-color: var(--white);
}

.industries-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/texture-bg.webp');
    background-size: cover;
    opacity: 0.07;
    transform: rotate(180deg);
    z-index: 0;
}

.industries-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
}

.industries-title-group {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.industries-nav,
.blogs-nav {
    gap: 15px;
    z-index: 999;
}

/* ============================
   INDUSTRIES NAVIGATION ARROWS
============================ */
.industries-nav,
.blogs-nav {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

/* Base arrow buttons */
.industries-nav .nav-arrow,
.blogs-nav .nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #e0e0e0;
    /* default light grey */
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Arrow shape */
.industries-nav .nav-arrow::before,
.blogs-nav .nav-arrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transition: all 0.3s ease;
}

/* Arrow direction */
.industries-nav .nav-arrow.prev::before,
.blogs-nav .nav-arrow.prev::before {
    transform: rotate(225deg);
    /* left arrow */
}

.industries-nav .nav-arrow.next::before,
.blogs-nav .nav-arrow.next::before {
    transform: rotate(45deg);
    /* right arrow */
}

/* Hover effects */
.industries-nav .nav-arrow:hover,
.blogs-nav .nav-arrow:hover {
    background-color: #333;
    /* dark circle */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.industries-nav .nav-arrow:hover::before,
.blogs-nav .nav-arrow:hover::before {
    border-color: #fff;
    /* white arrow */
}

/* Optional: slightly smaller on mobile */
@media (max-width: 767px) {

    .industries-nav .nav-arrow,
    .blogs-nav .nav-arrow {
        width: 36px;
        height: 36px;
    }
}



.nav-arrow {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-arrow img {
    width: 100%;
    height: 100%;
}

.industries-slider.swiper {
    width: 100%;
    padding-bottom: 20px;
}

.industries-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.industries-slider .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.industry-card {
    flex: 1 0 260px;
    background-color: var(--white);
    border: 1.2px solid #e5e9ed;
    border-radius: 15px;
    box-shadow: 0px 4px 18px 0px rgba(218, 229, 237, 0.53);
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.industry-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 50px;
}

.industry-icon img {
    width: 100%;
    height: 100%;
}

.industry-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.industry-card p {
    font-size: 16px;
    line-height: 22px;
    color: #484d50;
}

.industries-slider .swiper-button-prev,
.industries-slider .swiper-button-next {
    color: #d72638;
    top: 40%;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.industries-slider .swiper-button-prev {
    left: -22px;
}

.industries-slider .swiper-button-next {
    right: -22px;
}

.industries-slider .swiper-pagination {
    bottom: 0;
    text-align: center;
}

.industries-slider .swiper-pagination-bullet {
    background: #d72638;
    opacity: 0.4;
}

.industries-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 1024px) {
    .industries-slider .swiper-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .industries-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .industries-slider .swiper-slide {
        flex: 0 0 100%;
    }

    .industry-card {
        flex: 1 0 240px;
    }

    .industries-slider .swiper-button-prev,
    .industries-slider .swiper-button-next {
        top: 90%;
    }
}

/* CSS for section section:testimonials */
.testimonials-section {
    background-color: var(--background-light-gray);
}

.testimonials-header {
    margin: 0 auto 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    text-align: center;
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
    /* For when there are fewer items */
    flex-wrap: wrap;
    /* For responsiveness */
}

/* Make Swiper wrapper use flex so slides stretch equally */
.testimonials-slider .swiper-wrapper {
    display: flex;
    align-items: stretch;
    /* Ensures equal height */
}

/* Force each slide to fill available height */
.testimonials-slider .swiper-slide {
    display: flex;
    height: auto !important;
}

/* Let the testimonial card stretch inside */
.testimonial-card,
.blog-card {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    width: 100%;
    height: 100%;
}

.testimonial-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-content h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #484d50;
}

.testimonial-tag {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 18px;
    font-weight: 500;
    color: #292c2d;
    margin-top: auto;
}

.tag-line {
    width: 18px;
    height: 1.8px;
    background-color: #000;
}

.slider-pagination {
    margin-top: 48px;
    text-align: center;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
    }

    .testimonial-img {
        width: 100%;
    }
}

/* CSS for section section:faq */
#section-faq {
    background-image: url('/images/main-home/img-building-illustration.webp');
    background-size: 100% 100%;
    background-position: center;
    background-attachment: fixed;
}

.faq-section {
    /* padding: 120px 0; */
    position: relative;
}

.faq-bg-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0.25;
    z-index: -1;
}

.faq-bg-image img {
    width: 100%;
    display: block;
}

.faq-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-left {
    flex: 1;
}

.faq-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.faq-tag img {
    width: 16px;
    height: 15px;
}

.faq-tag span {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    color: #2f3133;
}

.faq-left h2 {
    font-size: 50px;
    line-height: 1.04;
    letter-spacing: -2px;
    margin: 0;
}

.faq-left .bold-text {
    font-weight: 700;
}

.faq-left .light-text {
    font-weight: 300;
}

.faq-right {
    flex: 1.5;
}

.faq-bg img {
    width: 100%;
    height: auto;
    display: block;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
}

.faq-title-area {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-title-area {
        text-align: center;
        align-items: center;
    }
}



.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border-radius: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
}

.accordion-item[open] {
    background-color: #fde1e4;
}

.accordion-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 500;
    color: #2d3136;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item p {
    padding: 0 25px 25px;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #4d5357;
}

.accordion-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1C1D1F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url('/images/faq-white-arrow.png');
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
}

.accordion-item[open] .accordion-icon {
    transform: rotate(-90deg);
    background-color: var(--primary-red);
}

@media (max-width: 1024px) {
    .faq-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .faq-right {
        width: 100%;
        text-align: left;
    }
}

/* CSS for section section:contact */

.main-home .contact-section,
.red-contact-section {
    background-color: var(--primary-red-dark);
    color: var(--white);
    padding-bottom: 0;
    border-radius: 20px;
}

.red-contact-section {
    background-color: var(--primary-red-dark);
    color: var(--white);
    padding-bottom: 0;
    border-radius: 20px;
}

.red-contact-section .about-text-group {
    color: #FFFFFF;
}

.red-contact-section .about-text-line {
    width: 10px;
    height: 106px;
    background: linear-gradient(to bottom, #EE0825 38.68%, #FFFFFF 38.68%);
}

.contact-section {
    color: var(--white);
    padding-bottom: 0;
    border-radius: 20px;
}

.service-home-v1 .contact-section {
    background-color: #282828;
    color: var(--white);
    padding-bottom: 0;
    border-radius: 20px;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/1_433.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    opacity: 0.5;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
    position: relative;
    padding: 50px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: flex-start;
}

.contact-info .section-subtitle {
    color: var(--white);
}

.contact-info .section-title {
    color: var(--white);
    font-size: 53px;
}

.contact-actions {
    display: flex;
    gap: 18px;
}

.contact-form-wrapper {
    /* background-color: rgba(255, 255, 255, 0.1); */
    /* padding: 30px; */
    border-radius: 10px;
    backdrop-filter: blur(5px);
    margin-left: 100px;
}

.contact-form-wrapper h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    background-color: rgba(255, 255, 255, 0.19);
    border: none;
    border-radius: 5px;
    padding: 18px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.77);
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-row input {
    width: 100%;
}

.contact-form textarea {
    min-height: 80px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

.contact-person-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-65%);
    width: 341px;
    height: auto;
    z-index: 1;
}

.contact-person-img img {
    width: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;

    }

    .contact-info {
        text-align: center;
        align-items: center;
    }

    .contact-person-img {
        display: none;
    }

    .contact-section {
        padding-bottom: 80px;
    }
}

@media (min-width: 768px) {
    .contact-container {
        padding: 80px 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .contact-actions {
        flex-direction: column;
    }
}

/* CSS for section section:footer */
.site-footer {
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--white);
}

.footer-main {
    padding: 70px 0;
}

.footer-main-container {
    display: grid;
    grid-template-columns: 300px repeat(3, 1fr);
    gap: 60px;
}

.footer-logo {
    width: 193px;
    margin-bottom: 46px;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.5;
    color: #2d363a;
}

.footer-links .title,
.footer-newsletter .title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1a1e20;
}

.footer-contact .title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1e20;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #2d363a;
    transition: all 0.25s ease;
}

#section-footer .footer-links ul li {
    margin-bottom: 5px;
}

.footer-links li a:hover {
    color: #000;
    transform: translateX(4px);
}

.footer-links li img {
    width: 15px;
    height: 15px;
}

.newsletter-form {
    position: relative;
    margin-bottom: 35px;
}

.newsletter-form input {
    width: 100%;
    height: 48px;
    border-radius: 5px;
    border: 1px solid var(--border-light);
    padding: 0 15px;
    box-sizing: border-box;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 38px;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 5px;
    padding: 0 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 13px;
}

.social-links a img {
    width: 30px;
    height: 30px;
}

#section-footer .footer-contact {
    padding: 30px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.footer-contact-container {
    display: flex;
    align-items: center;
    gap: 36px;
}

.footer-contact h4 {
    font-size: 18px;
    font-weight: 500;
    color: #1a1e20;
}

.contact-items-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-grow: 1;
    justify-content: space-around;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item img {
    width: 38px;
    height: 38px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    font-size: 15px;
}

.contact-item span {
    font-weight: 500;
    color: #2d363a;
}

.contact-item strong {
    font-weight: 400;
    color: #2d363a;
}

.footer-legal {
    padding: 30px 0;
}

.footer-legal-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #2d363a;
}

.footer-legal a {
    font-weight: 500;
}

.social-media-icons li a {
    width: 35px;
    height: 35px;
    object-fit: cover;
    display: inline-block;
    background: #212627;
    border-radius: 50%;
    padding: 3px 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .footer-main-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-about p {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-main-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-items-wrapper {
        display: inline-block;
        text-align: start;
    }

    .footer-legal-container {
        flex-direction: column;
        gap: 10px;
        text-align: start;
    }
}


/* virtual assistant services */

.service-home-v1 .banner-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
}

/* Hero content */
.service-home-v1 .hero-content {
    padding: 6rem 1rem;
}


.service-home-v1 .hero-title .light-font {
    font-weight: 300;
}

.service-home-v1 .hero-title .bold-font {
    font-weight: 700;
}

.service-home-v1 .hero-subtitle {
    margin-bottom: 2rem;
}

.service-home-v1 .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


/* ------------------------------
     RESPONSIVE STYLES
  --------------------------------*/
.service-home-v1 .banner-bg {
    border-radius: 20px;
}

@media (max-width: 991px) {
    .service-home-v1 .banner-bg {
        background-position: center top;
        border-radius: 20px;
    }

    .service-home-v1 .hero-title {
        font-size: 1.8rem;
    }

    .service-home-v1 .hero-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .service-home-v1 .banner-bg {
        background: rgb(46 42 39) !important;
        background-position: top;
        background-size: cover;
        text-align: center;
    }

    .service-home-v1 .hero-content {
        padding: 2.5rem 1rem;
    }

    .service-home-v1 .hero-actions {
        justify-content: center;
    }

    .service-home-v1 .hero-title {
        font-size: 1.6rem;
    }

    .service-home-v1 .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* CSS for section section:introduction */

.intro-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 43px;
    line-height: 1.12;
    letter-spacing: -0.43px;
    font-weight: 300;
    margin: 0;
}

.intro-left .bold-text {
    font-weight: 700;
}

.intro-right {
    flex: 1.5;
}

.intro-right p {
    font-size: 17px;
    line-height: 1.65;
    letter-spacing: 0.17px;
    font-weight: 500;
    margin: 0;
}

.why-choose-us-section {
    margin-top: 80px;
    background-color: #f2f2f2;
    padding: 80px 0;
    border-radius: 22px;
}

.why-choose-us-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.why-choose-us-left {
    flex: 1;
}

.why-choose-us-image {
    width: 100%;
    border-radius: 31px;
    display: block;
}

.why-choose-us-right {
    flex: 1.2;
}

.why-choose-us-right h3 {
    font-size: 43px;
    line-height: 1.14;
    letter-spacing: -0.43px;
    font-weight: 300;
    margin: 0 0 40px;
}

.why-choose-us-right h3 .bold-text {
    font-weight: 700;
}

.why-choose-us-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-choose-us-right li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-choose-us-right li img {
    width: 27px;
    height: 27px;
    margin-top: 3px;
}

.why-choose-us-right li p {
    font-size: 19px;
    line-height: 1.47;
    letter-spacing: 0.19px;
    font-weight: 500;
    margin: 0;
}

.why-choose-us-right li p strong {
    font-weight: 700;
}

@media (max-width: 1024px) {

    .intro-container,
    .why-choose-us-container {
        flex-direction: column;
        text-align: center;
    }

    .intro-left h2,
    .why-choose-us-right h3 {
        font-size: 36px;
    }

    .why-choose-us-right {
        text-align: left;
    }
}

/* Services section */
.service-section-heading {
    text-align: left;
    background-image: url('/images/virtual-assistant-services/index/va-services-bg.webp');
    position: relative;
    height: 100%;
    background-size: 100% 100%;
    padding: 30px;
}

.service-section-heading h2 {
    font-size: 39px;
    line-height: 1.12;
    letter-spacing: -0.43px;
    font-weight: 300;
    margin: 0;
    color: #fff;
}

.service-section-heading img {
    position: absolute;
    right: 5px;
    width: 40%;
    object-fit: cover;
    bottom: 0px;
    overflow: visible;
}

/* Service Cards */
.service-box {
    background: white;
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 15px 88px 15px 15px;
    padding: 25px 20px;
    height: 100%;
    min-height: 200px;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.service-box .service-title {
    font-size: 18px;
    font-weight: bold;
}

.service-box:before {
    content: "";
    position: absolute;
    top: -1px;
    right: 60px;
    width: 20px;
    height: 20px;
    background: #fff;
    z-index: 999;
    border-right: 3px solid #e5e7eb;
    border-radius: 0px 17px 15px 0px;
    transform: rotate(-52deg);
}

.service-icon-box {
    position: absolute;
    right: -1px;
    top: -2px;
    border-left: 20px solid #FFFFFF;
    border-top: 2px solid #ffffff;
    border-bottom: 20px solid #FFFFFF;
    border-right: 2px solid #ffffff;
    z-index: 999;
    box-shadow: -2px 3px 4px 0px rgba(218, 229, 237, 0.53);
    border-radius: 0px 0px 0px 20px;
}

.service-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Services section */

/* CSS for section section:testimonials */
.testimonials-section {
    background-color: var(--background-light);
    position: relative;
}

.testimonials-header {
    position: relative;
    text-align: center;
    margin-bottom: 23px;
}

.testimonials-section-left-dark .testimonials-header {
    display: flex;
    margin: 0;
    margin-bottom: 25px;
    flex-direction: column;
    align-items: start;
    text-align: left;
    gap: 15px;
}

.testimonials-section-left-dark .container-fluid {
    background-color: #282828;
    border-radius: 20px;
    padding: 50px 0;
}

.testimonials-section-left-dark .swiper-pagination-bullet {
    background: #eee2e2;
}

.testimonials-section-left-dark .swiper-pagination-bullet-active {
    background: #fff;
}

.testimonials-bg-text {
    font-size: 179px;
    font-weight: 800;
    color: #ebeced;
    opacity: 0.45;
    line-height: 0.5;
    letter-spacing: 5.37px;
    text-transform: uppercase;
    user-select: none;
}

.testimonials-title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials-container {
    background: #F2F2F2;
    padding: 30px 30px;
    border-radius: 20px;
}

.testimonials-title-wrapper img {
    width: 16px;
    height: 15px;
}

.testimonials-title-wrapper h3 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.7px;
    color: #2f3133;
    margin: 0;
    text-transform: uppercase;
}

.testimonial-card,
.blog-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid rgba(230, 230, 230, 0.45);
    height: 100%;
}

.rating-icons {
    margin-bottom: 10px;
}

.star-icon {
    color: #ddd;
    font-size: 1.5em;
    position: relative;
}

.star-icon.full:before {
    color: #FFD600;
    content: '\2605';
    /* Full star in UTF-8 */
    position: absolute;
    left: 0;
}

.star-icon.half:before {
    color: #FFD600;
    content: '\2605';
    /* Full star in UTF-8 */
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
}

@-moz-document url-prefix() {

    /* Firefox Hack :( */
    .star-icon {
        font-size: 50px;
        line-height: 34px;
    }
}

.card-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}

.user-info {
    margin-left: 15px;
}

.name {
    font-size: 16px;
    font-weight: 600;
    color: #333233;
    margin: 0;
}

.time {
    font-size: 13px;
    color: #7c7b7b;
    margin: 5px 0 0;
}

.quote-icon-wrapper {
    position: absolute;
    left: 45px;
    top: 35px;
}

.quote-icon-wrapper img {
    width: 42px;
    height: 42px;
}

.quote-char {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 51px;
    font-weight: 600;
    color: #646768;
    line-height: 0;
}

.rating {
    width: 92px;
    height: auto;
    margin-bottom: 15px;
}

.comment {
    font-size: 15px;
    line-height: 1.4;
    color: #7c7b7b;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-bg-text {
        font-size: 100px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* CSS for section section:case-study */
.case-study-section {
    background-color: var(--background-dark);
    padding: 80px 0;
    color: var(--white);
}

.case-study-header {
    margin-bottom: 40px;
}

.case-study-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.case-study-tag img {
    width: 16px;
    height: 15px;
}

.case-study-tag span {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.7px;
    text-transform: uppercase;
}

.case-study-header h2 {
    font-size: 50px;
    line-height: 1.16;
    letter-spacing: -1.5px;
    color: var(--white);
    margin: 0;
}

.case-study-header .light-text {
    font-weight: 300;
}

.case-study-header .bold-text {
    font-weight: 600;
}

.case-study-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    /* For responsiveness */
    padding-bottom: 20px;
}

.case-study-card {
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 15px;
    display: flex;
    flex-shrink: 0;
    width: calc(50% - 15px);
    overflow: hidden;
}

.case-study-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1.5;
}

.case-study-content h4 {
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.5px;
    font-weight: 600;
    margin: 0 0 10px;
}

.case-study-content .challenge p {
    font-size: 18px;
    line-height: 1.33;
    color: var(--text-medium);
    margin: 0;
}

.case-study-content .result h4 {
    font-size: 22px;
    line-height: 1.32;
    letter-spacing: -0.22px;
    font-weight: 600;
    color: #363a3c;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 7px;
}

.client-info .line {
    width: 18px;
    height: 1.8px;
    background-color: #000;
}

.client-info p {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.28px;
    margin: 0;
}

.case-study-image {
    flex: 1;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .case-study-slider {
        flex-direction: column;
        gap: 40px;
    }

    .case-study-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .case-study-card {
        flex-direction: column;
    }

    .case-study-image {
        height: 250px;
    }
}

/* CSS for section section:cta */
.cta-section {
    background-color: #282828;
    padding: 100px 0;
    border-radius: 22px;
    position: relative;
    margin: 0 20px;
    overflow: visible;
}

.cta-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 22px;
}

.cta-bg-image {
    position: absolute;
    left: 90px;
    bottom: 0;
    width: 33%;
    height: auto;
    z-index: 99;
}


.cta-content {
    position: relative;
    z-index: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cta-content h2 {
    font-size: 53px;
    line-height: 1.08;
    letter-spacing: -0.53px;
    color: var(--white);
    max-width: 732px;
    margin: 0 0 40px;
}

.cta-content .light-text {
    font-weight: 300;
}

.cta-content .bold-text {
    font-weight: 600;
}

@media (max-width: 1024px) {
    .cta-content {
        text-align: center;
        align-items: center;
    }

    .cta-bg-image {
        opacity: 0.3;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .cta-bg-shape {
        left: 50%;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 40px;
    }
}

/* End virtual assistant services */


/* Call Center Services */

/* ------------------------------
   HERO / BANNER SECTION
--------------------------------*/

@media (min-width: 992px) {
    .banner-bg {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .call-center-home .banner-bg {
        background-image: url(/images/call-center-services/call-center-banner.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        min-height: 400px;
        display: flex;
        align-items: center;
    }

    .data-services-home .banner-bg {
        background-image: url(/images/data-services/index/hero-banner.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        min-height: 400px;
        display: flex;
        align-items: center;
    }
}


/* Hero content */
.banner-bg-lg .hero-content,
.banner-bg-dark .hero-content {
    padding: 6rem 1rem;
}

.banner-bg-lg .hero-content {
    color: #111;
}

.banner-bg-lg .hero-subtitle {
    color: #444;
}

.banner-bg-dark .hero-content {
    color: #fff;
}

.banner-bg-dark .hero-subtitle {
    color: #fff;
}

.banner-bg-dark .hero-title .light-font {
    color: #fff;
}


.banner-bg-lg .hero-title .light-font,
.banner-bg-dark .hero-title .light-font {
    font-weight: 300;
}

.banner-bg-lg .hero-title .bold-font,
.banner-bg-dark .hero-title .bold-font {
    font-weight: 700;
}

.banner-bg-lg .hero-subtitle,
.banner-bg-dark .hero-subtitle {
    margin-bottom: 2rem;
}

.banner-bg-lg .hero-actions,
.banner-bg-dark .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


/* ------------------------------
     RESPONSIVE STYLES
  --------------------------------*/
.banner-bg-lg.banner-bg,
.banner-bg-dark.banner-bg {
    border-radius: 20px;
}

@media (max-width: 991px) {

    .banner-bg-lg .banner-bg,
    .banner-bg-dark .banner-bg {
        background-position: center top;
        border-radius: 20px;
    }

    .banner-bg,
    .banner-bg-lg,
    .banner-bg-dark {
        border-radius: 20px;
        padding: 30px;
    }

    .banner-bg-lg .hero-title,
    .banner-bg-dark .hero-title {
        font-size: 1.8rem;
    }

    .banner-bg-lg .hero-subtitle,
    .banner-bg-dark .hero-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {

    .banner-bg-lg .banner-bg,
    .banner-bg-dark .banner-bg {
        background-position: top;
        background-size: cover;
        text-align: center;
    }

    .banner-bg-lg .hero-content,
    .banner-bg-dark .hero-content {
        padding: 2.5rem 1rem;
        color: #fff;
    }

    .hero-title .light-font{
        color: #fff;
    }

    .banner-bg-lg .hero-subtitle{
        color: #fff;
    }

    .hero-subtitle{
        color: #fff;
    }

    .hero-title{
        color: #fff;
    }

    .social-links{
        justify-content: center;
    }

    .contact-item{
        margin-bottom: 20px;
    }

    .banner-bg-lg .hero-actions,
    .banner-bg-dark .hero-actions {
        justify-content: center;
    }

    .banner-bg-lg .hero-title,
    .banner-bg-dark .hero-title {
        font-size: 1.6rem;
    }

    .banner-bg-lg .hero-subtitle,
    .banner-bg-dark .hero-subtitle {
        font-size: 0.9rem;
    }
}


.solutions-section {
    background: var(--white);
}

.cs-why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cs-why-choose-content .h3 {
    font-size: 21px;
}

/* Ensure all cards in the row stretch equally */
.solutions-section .row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

.solutions-section .col-12,
.solutions-section .col-md-6,
.solutions-section .col-lg-3 {
    display: flex;
}

.solutions-header {
    margin: 0 auto 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
}

.eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-red);
    display: inline-block;
}

.solutions-title {
    color: var(--ink);
}

.solutions-title .strong {
    font-weight: 800;
}

/* Card styling */
.solution-card {
    border: 0;
    border-radius: var(--radius);
    background: var(--card-bg);
    box-shadow: 0 8px 24px rgba(16, 20, 25, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Keeps Learn More at bottom */
    height: 100%;
    padding: 25px;
}

.solution-card h3 {
    font-size: 21px;
}


.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(16, 20, 25, 0.12);
}

.solution-card .icon-check {
    color: var(--brand-red);
    font-size: 2rem;
    line-height: 1;
}

.solution-card h3 {
    color: var(--ink);
    margin: 1.75rem 0 .5rem;
}

.solution-card p {
    color: var(--muted);
    margin-bottom: 1rem;
    flex-grow: 1;
    /* makes height consistent when text is short */
}

.learn-more {
    /* display: inline-flex; */
    align-items: center;
    gap: .5rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    font-size: .925rem;
    margin-top: auto;
    /* ensures it stays at the bottom */
}

.learn-more i {
    transition: transform .2s ease;
}

.learn-more:hover i {
    transform: translateX(4px);
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: flex-start;
}

/* End Call Center Services */


/*  Start Kanagaraj CSS  */
/*  Start Virtual Services Box Css */
.virtual-service-box {
    background-image: url(/images/virtual-assistant-services/services-icon-back.png);
    text-align: left;
    min-height: 245px;
    width: 100%;
    object-fit: none;
    background-size: 100% 100%;
    background-position: center;
    display: flex;
    flex-direction: column;
    gap: 76px;
    position: relative;
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

@media (max-width: 575.98px) {
    .virtual-service-box {
        height: auto;
        background-image: none !important;
        background-color: #fff;
        border: 1px solid #ccc;
        margin-bottom: 20px;
        padding: 30px;
        gap: 20px;
    }

    .virtual-service-box .corner-icon {
        position: absolute;
        right: 14px;
        top: 21px !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .virtual-service-box {
        background-image: none;
        text-align: left;
        height: 90%;
        width: 100%;
        object-fit: none;
        background-size: cover;
        background-color: #fff;
        border: 1px solid #ccc;
        background-position: center;
        display: flex;
        flex-direction: column;
        gap: 25px;
        position: relative;
        padding: 27px;
        margin-bottom: 30px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        cursor: pointer;
    }

    .virtual-service-box .corner-icon {
        position: absolute;
        right: 14px;
        top: 31px !important;
    }
}

.virtual-service-box:hover {
    transform: translateY(2px);
    transform: scale(1.07);
}

.virtual-service-box .corner-icon {
    position: absolute;
    right: 14px;
    top: 0px;
}

.service-container {
    justify-content: space-around;
    gap: 20px;
}

.service-container h3 {
    width: 80%;
}

.service-container .corner-icon {
    position: absolute;
    right: 40px;
    top: 0;
}

.virtual-service-box h6 {
    width: 70%;
    color: #25282A;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.18px;
    text-transform: capitalize;
}

.virtual-service-box p {
    color: #484D50;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 131.25% */
    letter-spacing: 0.16px;
}

/*  End Virtual Services Box Css */


/*  Start Homepage Whychoose Box Css */
.timeline-step:hover .arrow-badge::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%) rotate(180deg);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 18px solid #b30000;
    /* same as background */
    transition: border-top-color 0.3s ease;
}

.steps-badge {
    background: #D7D7D7;
    width: 40px;
    padding-bottom: 0px;
    margin-top: -15px;
    border-bottom-right-radius: 13px;
    border-bottom-left-radius: 13px;
}

.arrow-badge {
    width: 100px;
    background-color: #D7D7D7;
    /* Gray default */
    color: #6c757d;
    /* Gray text */
    margin: 14px auto 0;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding: 10px 15px;
    z-index: 9;
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
    border-radius: 0 0 12px 12px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* The arrow shape using a pseudo element */
.arrow-badge::before {
    content: '';
    position: absolute;
    bottom: 97%;
    width: 100%;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%) rotate(180deg);
    border-left: 19px solid transparent;
    border-right: 19px solid transparent;
    border-top: 19px solid #ffffff;
    transition: border-top-color 0.3s ease;
}

.arrow-badge::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    z-index: 99;
    transform: translateX(-50%) rotate(180deg);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 18px solid #fff;
    /* same as background */
    transition: border-top-color 0.3s ease;
}

/* Hover effect: red */
.arrow-badge:hover,
.arrow-badge.active {
    background-color: #b30000;
    /* red background */
    color: white;
}

.timeline-step.active,
.timeline-step:hover {
    background: linear-gradient(90deg, #FDE1E4 0%, rgba(253, 225, 228, 0.00) 100%);

    border-color: #f5b5b5;
}

.arrow-badge:hover::after,
.arrow-badge.active::after {
    border-top-color: #b30000;
    /* red arrow */
}

/* Responsive text orientation vertical */
@media(min-width: 576px) {
    .arrow-badge {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        width: 40px;
        border-radius: 12px 12px 0 0;
        padding: 15px 9px;
        height: 142px;
    }

    .arrow-badge::after {
        bottom: auto;
        top: -9%;
        z-index: 99;
        left: 50%;
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: none;
        border-bottom: 18px solid #d3d3d3;
        transform: translateX(-50%);
    }

    .arrow-badge:hover::after,
    .arrow-badge.active::after {
        border-bottom-color: #b30000;
    }
}

/* Your existing arrow-badge::before is white by default, right? */
.arrow-badge.prev-active::before {
    background-color: #b30000;
    /* red arrow for previous */
}


/*  Start Inbound call center sertvices page css */

#inbound .main-banner-image {
    position: absolute;
    width: 44%;
    bottom: -1px;
    left: 26%;
}

.my-section {
    font-size: 46px;
}

.inbound-services-box img {
    text-align: center;
    z-index: 9;
    position: relative;
}

.inbound-services-box {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.inbound-services-box .text-center {
    flex-shrink: 0;
}

.inbound-services-inside {
    border-radius: 19px;
    background: #FFF;
    padding: 30px;
    margin-top: -27%;
    padding-top: 130px;
    gap: 15px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: start;
    height: 100%;
}

.inbound-services .container {
    border-radius: 22px;
    background: #D72638;
    /* padding: 50px; */
}

.inbound-services-inside p {
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}

.inbound-services-inside h3 {
    color: #484D50;
    leading-trim: both;
    text-edge: cap;
    font-family: Manrope;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 24.444px;
    /* 128.655% */
    letter-spacing: -0.38px;
}

.inbound-services-inside a {
    color: #D72638;
    leading-trim: both;
    text-edge: cap;
    font-family: Manrope;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.3px;
    text-transform: capitalize;
}

.new-sub {
    display: initial;
    text-align: center;
}

.inbound-consulting h2 {
    color: #25282A;
    leading-trim: both;
    text-edge: cap;
    font-family: Manrope;
    font-size: 46px;
    font-style: normal;
    font-weight: 300;
    line-height: 56px;
    /* 119.149% */
    letter-spacing: -1.41px;
    text-transform: capitalize;
}

.inbound-consulting h2 b {
    font-weight: 700;
}

.inbound-consulting p {
    color: #545A5B;
    leading-trim: both;
    text-edge: cap;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 155.556% */
    letter-spacing: -0.18px;
}

.inbound-consulting .para-light {
    color: #6A7577;
    leading-trim: both;
    text-edge: cap;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.16px;
}

.process-left {
    padding-left: 20px;
}

.tech-section {
    padding: 0px 0 70px;
}

.tech-section .container {
    background-color: #f7f7f7;
    border-radius: 20px;
    padding: 40px 0 50px;
    width: 1140px;
}

.tech-section h2 {
    color: #25282A;
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-family: Manrope;
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 53px;
    /* 139.474% */
    letter-spacing: -0.76px;
    text-transform: capitalize;
}

.tech-section h2 span {
    color: #25282A;
    leading-trim: both;
    text-edge: cap;
    font-family: Manrope;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 53px;
    letter-spacing: -0.76px;
    text-transform: capitalize;
}

.tech-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 25px;
}

.tech-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
}

.tech-item i {
    color: #d71920;
    font-size: 1rem;
    margin-right: 8px;
}

.divider {
    height: 18px;
    width: 1px;
    background-color: #ccc;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .divider {
        display: none;
    }

    .tech-list {
        flex-direction: column;
        gap: 15px;
    }
}

.custom-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 40px 25px 40px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    gap: 12px;
    height: 95%;
    flex-direction: column;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.icon-circle1 {
    position: absolute;
    top: -25px;
    left: 25px;
    width: 72px;
    z-index: 9;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e31735;
    font-size: 1.3rem;
}

.icon-circle1 i {
    font-size: 35px;
}

.round-icon1 {
    width: 75px;
    position: relative;
    margin-top: -40px;
    z-index: 2;
}

.round-icon2 {
    width: 75px;
    position: relative;
    margin-top: -41px;
    z-index: 1;
}

.custom-card h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 10px;
    color: #000;
    line-height: 25px;
}

.custom-card p {
    font-size: 0.95rem;
    color: #555;
}

.custom-card a {
    color: #e31735;
    font-weight: 500;
    text-decoration: none;
}

.float-right {
    float: right;
}

.blog-section .container {
    border-radius: 22px;
    background: #F2F2F2;
    padding: 40px 40px;
}

.blog-section h3 {
    color: #25282A;
    leading-trim: both;
    text-edge: cap;
    font-family: Manrope;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.4px;
    /* 123.158% */
    letter-spacing: -0.38px;
}

.blog-section p {
    color: #484D50;
    leading-trim: both;
    text-edge: cap;
    font-family: Manrope;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    /* 146.154% */
}


.faq-right .accordion-item {
    border: none;
    /* background-color: #f9f9f9; */
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-right .accordion-button {
    background-color: #f9f9f9;
    color: #000;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    padding: 18px 24px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-right .accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    display: none;
    /* Hide default Bootstrap arrow */
}

/* Custom icon circle */
.faq-right .accordion-button .icon-circle {
    width: 34px;
    height: 34px;
    background-color: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Active state */
.faq-right .accordion-button:not(.collapsed) {
    background-color: #faeeee;
    color: #000;
}

.faq-right .accordion-button:not(.collapsed) .icon-circle {
    background-color: #c41c24;
    transform: rotate(180deg);
}

.faq-right .accordion {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.faq-right .accordion-body {
    background-color: #faeeee;
    padding: 12px 24px 20px 24px;
    color: #4D5357;
    font-size: 0.95rem;
    margin-top: -10px;
    z-index: 9;
    position: relative;
}

@media (max-width: 576px) {
    .faq-right .accordion-button {
        font-size: 0.95rem;
        padding: 14px 18px;
    }

    .tech-section .container {
        background-color: #f7f7f7;
        border-radius: 20px;
        padding: 25px 15px 40px;
        width: auto;
    }

    .section-title br {
        display: none;
    }

    .blog-section .container {
        border-radius: 22px;
        background: #F2F2F2;
        padding: 20px 20px 0px;
    }

    .testimonial-card {
        padding: 30px 20px !important;
        border-radius: 14px;
        border: 1px solid rgba(230, 230, 230, 0.45);
        height: 265px;
    }

    .faq-title-area {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .faq-right .accordion-button .icon-circle {
        width: 41px;
        height: 20px;
        background-color: #111;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        font-size: 10px;
        transition: all 0.3s ease;
    }
}

.space10 {
    height: 10px;
}

.space20 {
    height: 20px;
}

.space15 {
    height: 15px;
}

.process-section1 .container {
    padding: 45px 0;
    color: #fff;
    position: relative;
    background-color: #282828;
    border-radius: 22px;
}

.process-title1 {
    text-align: center;
    margin-bottom: 40px;
}

.process-title1 h2 {
    color: #FFF;
    text-align: center;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 100;
    line-height: 51px;
    /* 108.511% */
    letter-spacing: -0.94px;
    text-transform: capitalize;
}

.process-wrapper1 {
    position: relative;
    max-width: 800px;
    margin: auto;
    padding-left: 40px;
}

/* Timeline vertical line */
.process-wrapper1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    width: 1px;
    height: 100%;
    /* background: #fff; */
    border: 1px dashed #fff;
    z-index: 0;
    transition: background 0.3s;
}

/* Each step box */
.process-step1 {
    position: relative;
    background: #F2F2F2;
    border-radius: 12px;
    padding: 20px 25px 20px 50px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
}

/* Number circle */
.process-step1::before {
    content: attr(data-step);
    position: absolute;
    left: -23px;
    top: 21%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #282828;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 1;
    transition: all 0.4s ease;
}

.process-step1 h3 {
    color: #484D50;
    padding-bottom: 8px;
    font-family: Manrope;
    font-size: 20.239px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.038px;
    /* 128.655% */
    letter-spacing: -0.405px;
}

.process-step1 p {
    color: #484D50;
    font-family: Manrope;
    font-size: 14.913px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.369px;
    /* 150% */
    letter-spacing: 0.149px;
}

/* Red left border (active state) */
.process-step1::after {
    content: "";
    position: absolute;
    left: -41px;
    top: -1px;
    width: 2px;
    height: 0;
    background: #c41c24;
    z-index: 0;
    transition: height 0.5s ease;
}

/* Active (visible) border */
.process-step1.active::after {
    height: 100%;
}

/* Hover and active styles */
.process-step1.active,
.process-step1:hover {
    background: #ffeaea;
    color: #000;
    transform: translateX(5px);
    border-color: #c41c24;
}

.process-step1.active::before,
.process-step1:hover::before {
    background: #c41c24;
    color: #fff;
    border-color: #c41c24;
}

.process-step1.active h5,
.process-step1:hover h5 {
    color: #000;
}

.process-step1.active p,
.process-step1:hover p {
    color: #444;
}

@media (max-width: 576px) {
    .process-wrapper1 {
        padding-left: 20px;
    }

    .process-step1::after {
        content: "";
        position: absolute;
        left: -22px;
    }

    .process-step1 {
        padding-left: 60px;
    }

    .process-step1::before {
        left: -15px;
    }

    .process-step11::after {
        left: 28px;
    }

    .inbound-services-inside {
        border-radius: 20px;
        background: #FFF;
        padding: 17px 20px 25px;
        margin-top: -41%;
        padding-top: 160px;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }

    .process-section1 .container {
        padding: 45px 20px 20px 10px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .inbound-services-inside {
        border-radius: 19px;
        background: #FFF;
        padding: 18px;
        margin-top: -27%;
        padding-top: 80px;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }

    .process-section1 .container {
        padding: 45px 20px;
        color: #fff;
        position: relative;
        background-color: #282828;
        border-radius: 22px;
    }

    .tech-section .container {
        background-color: #f7f7f7;
        border-radius: 20px;
        padding: 40px 0 50px;
        width: auto;
    }

    .tech-section .container {
        background-color: #f7f7f7;
        border-radius: 20px;
        padding: 40px 20px 50px;
        width: auto;
    }

    .testimonial-card {
        background-color: var(--white);
        padding: 30px;
        border-radius: 14px;
        border: 1px solid rgba(230, 230, 230, 0.45);
        /* height: 301px !important; */
    }

    .contact-form-wrapper {
        /* background-color: rgba(255, 255, 255, 0.1); */
        /* padding: 30px; */
        border-radius: 10px;
        backdrop-filter: blur(5px);
        margin-left: 0px;
    }

    .service-home-v1 .hero-content {
        padding: 0rem 0rem;
    }
}

/*  End Inbound call center sertvices page css */

/*  End Homepage Whychoose Box Css */

.telemarketing-section .container {
    background-color: #d62828;
    color: #fff;
    border-radius: 20px;
    padding: 70px 30px;
    text-align: center;
}

.telemarketing-section {
    padding-bottom: 30px;
}

.telemarketing-section span {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffdede;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

@media (max-width: 991px) {

    .banner-bg-lg,
    .banner-bg-dark {
        border-radius: 20px;
        padding: 30px 0px;
    }
}

.telemarketing-section h2 {
    color: #FFF;
    font-family: Manrope;
    font-size: 46px;
    font-style: normal;
    font-weight: 200;
    line-height: 59px;
    letter-spacing: -0.98px;
    text-transform: capitalize;
}

.telemarketing-section h2 b {
    font-weight: 600;
}

.telemarketing-section p {
    max-width: 820px;
    margin: 20px auto 50px;
    color: #ffeaea;
}

/* Service Box */
.telemarketing-more-services-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 15px 15px 15px;
    transition: all 0.3s ease;
    text-align: left;
    height: 100%;
    margin: 0;
}

.telemarketing-more-services-box .service-content {
    padding: 0 20px;
}


.telemarketing-more-services-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}


.telemarketing-more-services-box .service-content h3 {
    font-weight: 700;
    color: #111;
    padding-bottom: 8px;
    font-size: 1.1rem;
}

.telemarketing-more-services-box .service-content p {
    color: #555;
    font-size: 14px;
    margin: 0;
    line-height: 21px;
}

.telemarketing-more-services-box .learn-more {
    color: #d62828;
    font-weight: 600;
    text-decoration: none;
}

.telemarketing-more-services-box .learn-more:hover {
    text-decoration: underline;
}

/* Responsive layout: stack image above text on small devices */
@media (max-width: 767px) {
    .telemarketing-more-services-box {
        flex-direction: column;
        text-align: center;
        padding-bottom: 20px;
    }

    .process-section2 h2 {
        color: #25282A;
        font-family: Manrope;
        font-size: 37px !important;
        font-style: normal;
        font-weight: 300;
        line-height: 45px !important;
        margin-bottom: 15px;
        letter-spacing: -1.41px;
        text-transform: capitalize;
    }

    .whychoose-section h2 {
        color: #25282A;
        font-family: Manrope;
        font-size: 37px !important;
        font-style: normal;
        font-weight: 300;
        line-height: 47px !important;
        letter-spacing: -0.94px;
        text-transform: capitalize;
    }

    .accelerate-growth h2 {
        color: #FFF;
        font-family: Manrope;
        font-size: 37px !important;
        font-style: normal;
        font-weight: 100;
        line-height: 45px !important;
        letter-spacing: -0.94px;
        text-transform: capitalize;
    }

    .blog-section .container {
        border-radius: 22px;
        background: #F2F2F2;
        padding: 20px 20px 30px;
    }

    .faq-left h2 {
        font-size: 43px !important;
        line-height: 1.04;
        letter-spacing: -2px;
        margin: 0;
    }

    .contact-form-wrapper {
        /* background-color: rgba(255, 255, 255, 0.1); */
        /* padding: 30px; */
        border-radius: 10px;
        backdrop-filter: blur(5px);
        margin-left: 20px;
        margin-right: 20px;
    }

    .footer-contact .contact-container {
        background-color: var(--primary-red-dark);
        color: var(--white);
        padding-bottom: 0;
        border-radius: 20px;
        padding: 50px 10px;
    }

    .contact-info .section-title {
        color: var(--white);
        font-size: 42px;
    }

    .telemarketing-more-services-box img {
        margin-bottom: 20px;
    }

    .telemarketing-more-services-box .service-content {
        padding: 0;
    }

    .telemarketing-section .px-5 {
        padding-right: 0rem !important;
        padding-left: 0rem !important;
    }

    .telemarketing-section .container {
        padding: 70px 30px 30px;
    }

    .telemarketing-more-services-box .service-content {
        text-align: center;
    }
}

/*  Start Why Choose Section CSS */
.whychoose-section .container {
    background-color: #fff;
    color: #fff;
    border-radius: 20px;
    padding: 70px 30px;
    text-align: center;
}

.whychoose-section span {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2F3133;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.whychoose-section h2 {
    color: #25282A;
    font-family: Manrope;
    font-size: 47px;
    font-style: normal;
    font-weight: 300;
    line-height: 54px;
    letter-spacing: -0.94px;
    text-transform: capitalize;
}

.whychoose-section h2 b {
    font-weight: 600;
}

.whychoose-section p {
    max-width: 820px;
    margin: 20px auto 50px;
    color: #484D50;
}

/* Service Box */
.telemarketing-whychoose-box {
    background: #f2f2f2;
    border-radius: 15px;
    padding: 15px 15px 15px;
    transition: all 0.3s ease;
    text-align: left;
    height: 100%;
    margin: 0;
}

.telemarketing-whychoose-box .whychoose-service-content {
    padding: 0 20px;
}


.telemarketing-whychoose-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}


.telemarketing-whychoose-box .whychoose-service-content h3 {
    font-weight: 700;
    color: #111;
    padding-bottom: 8px;
    font-size: 1.1rem;
}

.telemarketing-whychoose-box .whychoose-service-content p {
    color: #555;
    font-size: 14px;
    margin: 0;
    line-height: 21px;
}

.telemarketing-whychoose-box .learn-more {
    color: #d62828;
    font-weight: 600;
    text-decoration: none;
}

.telemarketing-whychoose-box .learn-more:hover {
    text-decoration: underline;
}

/* Responsive layout: stack image above text on small devices */
@media (max-width: 767px) {
    .telemarketing-whychoose-box {
        flex-direction: column;
        text-align: center;
        padding-bottom: 20px;
    }

    .telemarketing-whychoose-box img {
        margin-bottom: 20px;
    }

    .telemarketing-whychoose-box .whychoose-service-content {
        padding: 0;
    }

    .whychoose-section .px-5 {
        padding-right: 0rem !important;
        padding-left: 0rem !important;
    }

    .whychoose-section p {
        max-width: 820px;
        margin: 0px auto 0px;
        color: #484D50;
    }

    .telemarketing-whychoose-box .whychoose-service-content {
        text-align: center;
    }
}


@media (min-width: 768px) and (max-width: 991.98px) {
    .whychoose-section p {
        max-width: 820px;
        margin: 0px auto 0px;
        color: #484D50;
    }
}

/*  End Why Choose Section CSS */

/*  Start Accelerate Growth CSS */
.accelerate-growth {
    background-image: url('/call-center/images/telemarketing-services/accelerate-growth-back.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.accelerate-growth h2 {
    color: #FFF;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 100;
    line-height: 48px;
    letter-spacing: -0.94px;
    text-transform: capitalize;
}

.accelerate-growth h2 b {
    font-weight: 700;
}

.margin-center {
    margin: 0 auto;
}

/*  End Accelerate Growth CSS */

/*  Start More Services CSS */
.more-services {
    background-color: #2b2b2b;
    border-radius: 20px;
    padding: 40px 30px;
    color: #fff;
}

.more-services h2 {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 30px;
}

.more-services-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #3a3a3a;
    border-radius: 50px;
    padding: 14px 24px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.more-services-box i {
    font-size: 18px;
}

/* Active (first) box red gradient */
.more-services-box.active,
.more-services-box:hover {
    background: linear-gradient(90deg, #D72638, #923030);
    color: #fff;
}

/* Spacing between buttons */
.service-col {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .service-col {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .more-services-box br {
        display: none;
    }
}

/* End More Services CSS */

/* Start technologies We Deploy Code */
.tech-deploy-section {
    background: #fff;
    padding: 60px 0;
}

.tech-box-deploy {
    background: linear-gradient(90deg, #D72638, #BD1A2B);
    color: #fff;
    border-radius: 15px;
    position: relative;
    padding: 45px 25px 30px;
    text-align: left;
    height: 160px;
}

.tech-box4-deploy {
    background: linear-gradient(90deg, #D72638, #BD1A2B);
    color: #fff;
    border-radius: 15px;
    position: relative;
    padding: 45px 25px 30px;
    text-align: left;
    height: 160px;
}

.tech-box-deploy:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    bottom: 15px;
    width: 1px;
    border-right: 2px dotted rgba(255, 255, 255, 0.5);
}

/* Circle check icon */
.tech-box-deploy::after {
    content: "";
    position: absolute;
    top: -7px;
    left: 100%;
    z-index: 9;
    transform: translateX(-50%);
    background: #fff;
    border: 4px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.tech-box-deploy::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 100%;
    z-index: 9;
    transform: translateX(-50%);
    background: #fff;
    border: 4px solid #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.deploy-icon {
    position: absolute;
    top: -25px;
    left: 25px;
    width: 52px;
    z-index: 9;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e31735;
    font-size: 1.3rem;
    background-color: #fff;
}

.tech-title-deploy {
    color: #FFF;
    font-family: Manrope;
    font-size: 19px;
    font-style: normal;
    font-weight: 600;
    line-height: 23px;
    letter-spacing: -0.19px;
}

.tech-para {
    font-size: 14px;
    padding-top: 10px;
}

@media (max-width: 767px) {
    .tech-box-deploy {
        margin-bottom: 20px;
    }

    .tech-box-deploy:not(:last-child)::after {
        display: none;
    }
}

/* End Technologies We Deploy Code */

/* Start Software Leverage Logo Code */
.software-section {
    padding: 60px 0;
    text-align: center;
}

.software-section h2 {
    margin-bottom: 40px;
    color: #25282A;
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    line-height: 53px;
    letter-spacing: -2px;
    text-transform: capitalize;
}

.software-section h2 span {
    font-weight: 700;
}

.software-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.software-logos img {
    max-height: 50px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.software-logos img:hover {
    transform: scale(1.05);
    opacity: 1;
}

@media (max-width: 768px) {
    .software-logos {
        gap: 30px;
    }

    .software-logos img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .software-logos img {
        max-height: 35px;
    }
}

/* End Software Leverage Logo Code */


/* Start Process Flow CSS */
.process-section2 .container {
    padding: 60px 30px;
    color: #fff;
    position: relative;
    background-color: #f4f4f4;
    border-radius: 22px;
}

.process-section2 h2 {
    color: #25282A;
    font-family: Manrope;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 55px;
    margin-bottom: 15px;
    letter-spacing: -1.41px;
    text-transform: capitalize;
}

.process-section2 b {
    font-weight: 600;
}

.process-wrapper1 {
    position: relative;
    max-width: 800px;
    margin: auto;
    padding-left: 40px;
}

.process-wrapper1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    width: 1px;
    height: 100%;
    border: 1px dashed #b7b3b3;
    z-index: 0;
}

/* Step Box */
.process-step2 {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 3px 25px 3px 25px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.process-step2 .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 20px 10px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--bs-accordion-btn-color);
    text-align: left;
    background-color: var(--bs-accordion-btn-bg);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

/* Number Circle */
.process-step2::before {
    content: attr(data-step);
    position: absolute;
    left: -23px;
    top: 8px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #D9D9D9;
    color: #484D50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Left Arrow Line */
.process-step2::after {
    content: "";
    position: absolute;
    left: -41px;
    top: -1px;
    width: 2px;
    height: 0;
    background: #c41c24;
    z-index: 0;
    transition: height 0.5s ease;
}

/* Active Styles */
.process-step2.active::after {
    height: 100%;
}

.process-step2.active,
.process-step2:hover {
    background: #ffeaea;
    transform: translateX(5px);
}

.process-step2.active::before,
.process-step2:hover::before {
    background: #c41c24;
    color: #fff;
}

.process-step2 h3 {
    color: #484D50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step2 p {
    color: #484D50;
    font-size: 15px;
    line-height: 22px;
}

.process-step2 .accordion-body {
    padding: 0px 20px 20px;
}

/* Responsive */
@media (max-width: 576px) {
    .process-wrapper1 {
        padding-left: 20px;
    }

    .process-step2 {
        padding-left: 30px;
    }

    .process-step2::before {
        left: -15px;
    }

    .process-step2::after {
        left: -22px;
    }

    .telemarketing-section h2 {
        color: #FFF;
        font-family: Manrope;
        font-size: 36px;
        font-style: normal;
        font-weight: 200;
        line-height: 45px;
        letter-spacing: -0.98px;
        text-transform: capitalize;
    }

    .section-title {
        font-size: 32px;
        font-weight: 700;
        line-height: 45px;
        letter-spacing: -2px;
        color: var(--text-dark);
    }
}

/* Start Extra CSS */
.text-left {
    text-align: left;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-300 b {
    font-weight: 700;
}

.margin-0 {
    margin: 0 auto;
}

.gap-10 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.back-gray {
    background-color: #f2f2f2;
    border-radius: 22px;
}

.d-flex {
    display: flex;
}

.milestone-section {
    background: #fff;
    padding: 0px 0 50px;
}

.milestone-title {
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    color: #2f3133;
    margin: 0 auto;
    text-align: center;
}

.mile {
    text-align: center;
    margin: 0 auto;
    display: block;
}

.milestone-item {
    position: relative;
    padding: 0 25px;
    display: flex;
}

.milestone-number {
    font-size: 56px;
    font-weight: 700;
    color: #111;
    line-height: 1;
}

.milestone-text {
    font-size: 16px;
    color: #555;
    text-align: left;
    padding-left: 14px;
    font-weight: 600;
}

/* Vertical Divider */
.milestone-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: #ddd;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .milestone-item:not(:last-child)::after {
        display: none;
    }

    .milestone-number {
        font-size: 37px;
        font-weight: 700;
        color: #111;
        line-height: 1;
        width: 110px;
        text-align: left;
    }

    .what-sets .px-5 {
        padding: 40px 20px 10px !important;
    }

    .milestone-section {
        background: #fff;
        padding: 10px 0;
    }

    .milestone-item {
        margin-bottom: 30px;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }
}

/* End Extra CSS */

/*  Start Why Choose Us Media Object CSS */

.process-section2 .media {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.process-section2 .media img {
    width: 40px;
    height: 40px;
    margin-right: 25px;
}

.process-section2 .media-body h5 {
    font-weight: 700;
    font-size: 18px;
    color: #111;
    margin-bottom: 8px;
}

.process-section2 .media-body p {
    color: #666;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Divider line */
.process-section2 .media+.media {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

@media (max-width: 767.98px) {
    .process-section2 .media {
        flex-direction: column;
        text-align: center;
    }

    .process-section2 .media img {
        margin: 0 auto 15px;
    }
}

.section-title {
    font-weight: 300;
}

.section-title b {
    font-weight: 700;
}

.image-annotation .banner-bg {
    background-position: top;
    background-size: cover;
}

.product-data .banner-bg {
    background-position: top;
    background-size: cover;
}

.sec-ttl {
    color: #3A3F40;
    font-family: Manrope;
    font-size: 35px;
    font-style: normal;
    font-weight: 300;
    line-height: 46px;
    letter-spacing: -0.7px;
    text-transform: capitalize;
}

.sec-ttl b {
    font-weight: 700;
}

/*  End Why Choose Us Media Object CSS */

/*  End Kanagaraj CSS  */


/* Css Starts - Manjunath  */

/* Starts Real Estate */
.real-estate-section {
    background: #F2F2F2;
}

.real-estate-image-left img {
    width: 100%;
}

.real-estate-right {
    position: absolute;
    right: 10%;
    top: 22%;
}

.real-estate-text-right {
    padding: 10%;
    background: #fff;
    border-radius: 28px;
}

.real-estate-text-right h1 {
    font-size: 40px;
    margin-bottom: 8%;
    font-weight: 100;
}

.real-estate-text-right h1 span {
    color: #000;
    font-weight: 800;
}

.real-estate-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.real-estate-feature h2 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
}

.real-estate-feature p {
    font-size: 16px;
    color: #555;
}

.service-card-list {
    line-height: 1.2rem;
    margin-bottom: 5px;
    list-style: disc;
    padding: 0 20px;
}

.service-card-list li {
    font-size: 14px;
    margin-bottom: 5px;
}

/* Responsive design */
@media (max-width: 500px) {
    .real-estate-right {
        position: initial;
    }
}

/* Service secton starts */
.real-estate-service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1d4d4;
    height: -webkit-fill-available;
}

.real-estate-service-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    background: #faf8f8;
}

.icon {
    background: #f43f5e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    top: 39%;
    outline: 10px solid #fff;
}

.real-estate-service-card h3 {
    font-size: 1.2em;
    margin-bottom: 10%;
    font-weight: 700;
    margin-top: 4%;
}

.real-estate-service-card p {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 20px;
}

.learn-more {
    font-weight: 600;
    transition: color 0.3s;
}

.learn-more:hover {
    color: #f43f5e;
}

@media (max-width: 600px) {

    .real-estate-service-card {
        padding: 20px;
        margin-bottom: 8%;
    }

    .icon {
        position: relative;
    }
}

/* Service sectio ends */


/* CTA Section */
.real-estate-cta-section {
    padding: 10px 0px 0px;
    background: #282828;
    border-radius: 19px;
    margin: 1%;
    margin-top: -24%;
}

/* Background city outline */

.background-buildings img {
    width: 100%;
    opacity: 0.20;
}

/* Image styling */
.real-estate-cta-image {
    position: relative;
    width: 280px;
    display: flex;
    justify-content: center;
}

.real-estate-cta-image-circle {
    position: absolute;
    width: 234px;
    height: 256px;
    background: #c40000;
    border-radius: 50%;
    z-index: 1;
    top: 33%;
    right: 6%;
}

.real-estate-cta-image img {
    z-index: 2;
    position: relative;
}

/* Text styling */
.real-estate-cta-text {
    padding-top: 7%
}

.real-estate-cta-text h2 {
    font-size: 3.5em;
    margin-bottom: 2%;
    font-weight: 100;
    color: #fff
}

.real-estate-cta-text h2 span {
    font-weight: 800;
    color: #fff
}

.real-estate-cta-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
}

/* CTA button */
.real-estate-cta-btn {
    display: inline-block;
    padding: 14px 25px;
    background: #e50914;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.real-estate-cta-btn:hover {
    background: #b0060f;
}

/* Responsive */
@media (max-width: 768px) {
    .real-estate-cta-text h2 {
        font-size: 2rem;
    }

    .real-estate-case-study {
        padding: 1rem !important;
    }

    .real-estate-cta-section {
        padding-bottom: 6%;
    }

    .accordion {
        width: 100% !important
    }
}

@media (max-width: 480px) {
    .real-estate-cta-btn {
        margin-bottom: 6%;
    }

    .background-buildings img {
        width: 100%;
        position: unset;
        opacity: 0.45;
    }
}

/* Real estate case study starts */
.real-estate-case-study {
    padding: 10px 0px 0px;
    background: #282828;
    border-radius: 19px;
    margin: 1%;
}

.real-estate-slide-case-study {
    background-color: #f8f9fa;
    padding: 2rem;
    border-right: 1px solid #ddd;
    border-radius: 20px;
    display: flex;
}

.real-estate-slide-content h3 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 900;
}

.real-estate-slide-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 14px;
}

/* Real estate case study Ends */
/*Real Estate Ends */


/* case study page start */

/* Case study main page start */
.case-section {
    padding-top: 0;
    position: relative;
    /* top: -40px; */
}

.case-section .tab:hover {
    background-color: #D72638;
    color: #fff;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
    width: max-content;
    margin: auto;
    padding: 1%;
    background: #fff;
    border-radius: 10px;
    /* margin-bottom: 3%; */
    border: 1px solid #d8cece;
    margin-top: 30px;
}

.tab {
    background: #EAEAEA;
    border: 1px solid #bab0b0;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 15px;
    color: #484D50;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: #D72638;
    color: #fff;
    border-color: #D72638;
}

.tab:hover {
    background: #D72638;
    color: #fff;
}

/* --- Card --- */
.case-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    border: 1px solid #d2c7c7;
    padding: 1%;
    /* margin: 2% 0; */
    height: -webkit-fill-available;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.badge {
    position: absolute;
    top: 27px;
    left: 21px;
    background: #ffffff;
    color: #2c2a2a;
    padding: 12px;
    font-size: 12px;
    border-radius: 50px;
    font-weight: 500;
}

.card-content {
    padding: 20px 10px;
}

.meta {
    display: flex;
    font-size: 13px;
    color: #8F9496;
    margin-bottom: 10px;
    gap: 34px;
    align-items: center;
}

.card-content h2 {
    padding: 10px 0;
    font-weight: 600;
    font-size: 1.4em;
}

.card-content p {
    padding: 10px 0;
    color: #767E81;
}

.category {
    font-weight: 600;
    color: #656A6D;
    background: #F6F4F4;
    padding: 0.6%;
    border-radius: 6px;
}

.category.healthcare {
    color: #2b8ea0;
    background: #d1eaef;
    padding: 0.6%;
    border-radius: 6px;
}

.category.virtual {
    color: #828180;
    background: #e5dcdc;
    padding: 0.6%;
    border-radius: 6px;
}

.category.it {
    color: #8F44C4;
    background: #F8EEFF;
    padding: 0.6%;
    border-radius: 6px;
}


.learn-more {
    font-size: 14px;
    color: #e53935;
    text-decoration: none;
    font-weight: 600;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .tabs {
        gap: 10px;
        display: grid;
    }

    .tab {
        padding: 8px 18px;
    }
}

/* case study main page ends */

.case-study-intro-subtitle h1 {
    font-size: 50px;
    line-height: 1.1;
}

/* challenge-solution Starts */
.case-study-challenge-solution {
    background: #F2F2F2;
}

/* left column */
.case-study-challenges {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.case-study-challenge-list {
    display: flex;
    flex-direction: column;
    gap: 23px;
    border-right: 2px solid #d6cece;
}

.case-study-challenge-item {
    padding: 14px 0px;
}

.case-study-challenge-item h4 {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 2;
}

.case-study-challenge-item p {
    color: #484D50;
    font-size: 18px;
}

/* right column */
.case-study-solutions {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.case-study-solution-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 40px;
    border: 1px solid #e1d7d7;
}

.case-study-solution-icon {
    width: 56px;
    height: 56px;
    display: flex;
}

.case-study-solution-body p {
    font-size: 18px;
    line-height: 1.4;
}

.case-study-cta {
    background: #b00000;
    color: #fff;
    border-radius: 12px;
    padding: 5%;
}

/* challenge-solution Ends */


/* Result Section Starts */

.statistic-head {
    font-size: 60px;
    line-height: normal;
    color: #A10101;
    font-weight: 800;
    display: flex;
    gap: 2px;
    padding-bottom: 10%;
}

.case-study-result {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #dfd3d3;
    cursor: pointer;
    padding: 7%;
    transition: background 0.4s ease;
    height: -webkit-fill-available;
}

.case-study-result .content {
    transition: opacity 0.4s ease;
    font-size: 1.1em;
}

.case-study-result .hover {
    opacity: 0;
    font-weight: 600;
}

.case-study-result:hover {
    background: #e50914;
}


.case-study-result:hover .default {
    opacity: 0;
    display: none;
}

.case-study-result:hover .hover {
    opacity: 1;
    color: #fff;
    padding-top: 31%;
}

.case-study-result-bg-text {
    font-size: 200px;
    font-weight: 800;
    color: #ebeced;
    opacity: 0.45;
    line-height: 0.5;
    letter-spacing: 50px;
    text-transform: uppercase;
    user-select: none;
}

.case-study-section-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
}

/* Result Section Ends */

/* case study success stories ends */
.cs-client-success-stories {
    background: #282828;
    border-radius: 19px;
    margin: 1%;
    padding: 4%;
}

.form-container {
    background: #555;
    padding: 30px;
    border-radius: 15px;
    color: #fff;
}

.cs-form-section {
    background: #3B3A3A;
    padding: 8%;
    border-radius: 10px
}

.form-container h2 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-size: 0.95rem;
}


button {
    background: #D72638;
    border: none;
    color: #fff;
    padding: 14px;
    font-size: 1rem;
    border-radius: 8px;
}

button:hover {
    background: rgb(224, 19, 33);
}

.cs-slider {
    height: 870px;
    overflow: hidden;
}

.cs-slide-track {
    display: flex;
    flex-direction: column;
    animation: scrollUp 25s linear infinite;
}

.cs-slide {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    margin: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cs-slide img {
    margin-left: 10px;
    width: 100%;
    border-radius: 12px;
}

.cs-slide-content h3 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 900;
}

.cs-slide-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 14px;
}

.cs-slide-content a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

/* Animation keyframes */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .cs-slider {
        height: 400px;
    }

    .case-study-intro-subtitle h1 {
        font-size: 30px;
        line-height: 1.1;
    }

    .facility-container {
        display: contents;
    }

    .cs-slide {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* case study success stories ends */


/* CTA Section Starts */
.case-study-cta-section {
    background: #282828;
    border-radius: 19px;
    margin: 1%;
}


/* Text styling */
.case-study-cta-text {
    padding-top: 7%
}

.case-study-cta-text h2 {
    font-size: 3em;
    margin-bottom: 2%;
    font-weight: 100;
    color: #fff
}

.case-study-cta-text h2 span {
    font-weight: 800;
    color: #fff
}


/* Responsive */
@media (max-width: 768px) {

    .case-study-cta-text h2 {
        font-size: 2rem;
    }

}

/* CTA Section Ends */

/* Case Study Ends */

/* .contact-info p {
    font-size: 1.6em;
    line-height: 1.6;
} */

.phs-section-title h2 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 9%;
}

.psa-testimonials-header {
    width: 73%;
    margin: 0 auto;
    text-align: center;
}

.psa-testimonials-header p {
    color: #6A7577
}

.pas-comprehensive {
    background: #D72638;
    border-radius: 19px;
    margin: 1%;
}

.pas-comprehensive-box {
    background: #fff;
    border-radius: 10px;
    padding: 10%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    height: -webkit-fill-available;
}

.pas-text h3 {
    font-size: 1.2em;
    font-weight: 600;
    padding-bottom: 6%;
}

.pas-comprehensive-box img {
    width: 27px;
    position: absolute;
    right: 61.6%;
}

.comprehensive-box-img {
    width: 27px;
    position: absolute;
    right: 88.9%;
}

.pas-comprehensive-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.statistic-desc {
    font-size: 24px;
    font-weight: 400;
    padding-left: 3%;
}

.statistic-container {
    border-right: 1px solid #000;
}


.value {
    font-size: 24px;
    font-weight: 700;
}



/* ABOUT US SECTION Starts */
/* History Content starts */
.history-section {
    background-color: #2d2d2d;
    margin: 1%;
    padding: 5%;
    border-radius: 19px;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 30px;
}

.history-card {
    background: #fff;
    color: #2d2d2d;
    border-radius: 15px;
    padding: 30px;
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.history-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.history-card p {
    color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
    .history-grid {
        grid-template-columns: 1fr;
    }

    .history-section {
        padding: 40px 20px;
    }

    .aboutus-cta-image {
        position: static !important;
    }

    .aboutus-cta-image img {
        width: -webkit-fill-available;
    }
}

/* History content ends */


/* CTA Section Starts */
.aboutus-cta-section {
    padding: 5% 0;
    background-image: radial-gradient(circle, #f24d61, #e24355, #d2384a, #c22d3f, #b22234);
    border-radius: 19px;
    margin: 1%;
    overflow: visible;
}

.aboutus-cta-text p {
    font-size: 1.3em;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 25px;

}

.aboutus-cta-text h2 {
    font-size: 3em;
    margin-bottom: 2%;
    font-weight: 100;
    color: #fff;
}

.aboutus-cta-text h2 span {
    font-weight: 800;
    color: #fff;
}

.aboutus-cta-image {
    position: absolute;
    bottom: 0;
    z-index: 99;
    top: -14%;
}

/* CTA Section Ends */

.physical-security-list-aboutus li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 5%;
    color: #6A7577;
}

.physical-security-list-aboutus {
    padding-top: 3%;
}

/* Facilities SECTION Starts */
.facility-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    align-items: center;
}

.facility-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
}

.facility-item img {
    margin-right: 10px;
}

/* Facilities SECTION Ends */

/*Key Difference Section Starts */
.key-difference {
    background: #F2F2F2;
    margin: 1%;
    border-radius: 19px;
}

/* Graph Section Starts */
.graph-1 {
    border: 1px solid #ccd4dc;
    border-radius: 15px;
    padding: 5%;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    height: -webkit-fill-available;
}

.graph-2 {
    border: 1px solid #ccd4dc;
    border-radius: 15px;
    padding: 5%;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

/* Graph Section Ends */

/* physical Security Section Starts */
.physical-security-box {
    background: #282828;
    margin: 1%;
    border-radius: 19px;
}

.physical-security-list {
    color: #fff;
    padding-top: 3%;
}

.physical-security-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 2%;
}

.physical-security-line {
    border-right: 1px solid #9d7d7d;
}

/* physical Security Section Ends */

/* ABOUT US SECTION Ends */

/* Beyound Business Starts */
.beyond-business-intro-bottom-content {
    background-color: #F2F2F2;
    border-radius: 19px;
    margin: 1%;
}

.beyond-business-section-title {
    font-size: 2em;
    color: #25282A;
    font-weight: 100;
}

.grid-do_more {
    position: relative;
}

.grid-do_more>.p0>a {
    color: #fff;
}

.grid-do_more>.p0>a:hover,
.grid-do_more>.p0>a:focus {
    color: #fff;
    text-decoration: none;
}

.grid-do_more figure {
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
    margin-bottom: 5%;
}

.grid-do_more figure img {
    position: relative;
    display: block;
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.grid-do_more figure figcaption::before,
.grid-do_more figure figcaption::after {
    pointer-events: none;
}

.grid-do_more figure figcaption {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 9;
    right: 20px;
    max-height: 40px;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.grid-do_more figure:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.grid-do_more figure:hover figcaption {
    height: auto;
    max-height: 200px;
    bottom: 50px;
}

.grid-do_more figure:hover .bottom-gradient-do_more {
    background: rgba(0, 0, 0, 0) linear-gradient(0deg, #000 0%, rgb(178, 34, 52) 100%) repeat scroll 0 0;
    transform: translateY(0px);
}

.bottom-gradient-do_more {
    /* background:rgba(0,0,0,0) linear-gradient(0deg,#000 0%,rgba(0,0,0,.2) 23%,rgba(0,0,0,0) 40%,rgba(0,0,0,0) 68%,rgba(0,0,0,0) 81%,rgba(0,0,0,0) 92%,rgba(0,0,0,0) 100%) repeat scroll 0 0; */
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    /* transform:translateY(100%); */
    /* transition:all .5s ease 0s; */
}

.do_more-grid-title {
    color: #fff;
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    height: 45px;
}

.grid-do_more figure:hover .do_more-grid-title {
    height: auto;
}

.grid-do_more figure::before {
    background: rgba(0, 0, 0, 0) linear-gradient(rgba(0, 0, 0, 0) 0, rgba(36, 11, 21, 44%) 58%) no-repeat scroll 0 0;
    content: "";
    height: 100px;
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.do_more-grid-desc {
    color: #fff;
    font-size: 16px;
    line-height: 23px;
    font-weight: 300;
}

.do_more-grid-desc>strong {
    display: block;
    margin-bottom: 10px;
}

/* Beyound Business Ends */

/* B2B Cold Calling Starts */
.b2b-cold-calling-adbanner {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
}

.b2b-cold-calling-left-section {
    background-color: #2A2E36;
    color: white;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    padding: 50px;
}

.b2b-cold-calling-right-section {
    flex: 2;
    background-color: #EFF5FF;
    padding: 58px;
}

.b2b-cold-calling-right-section h1 {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.b2b-cold-calling-right-section h1 span {
    font-weight: 700;
    color: #000;
}

.b2b-cold-calling-right-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* B2b Cold Calling Ends */

/* B2b Telemarketing Service Starts */
.telemarketing-process-flow {
    background-color: #f4f5f5;
    border-radius: 19px;
    margin: 1%;
}

/* B2b Telemarketing Service Ends */

/* B2b Why choose us Starts */
.B2b-why-choose-us {}

.B2b-feature-card {
    background: #F2F2F2;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 5%;
    border: 1px solid #e7dbdb;
    margin-top: 2%;
}

.B2b-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.B2b-feature-card img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.B2b-feature-card h3 {
    font-size: 18px;
    color: #484D50;
    margin: 8px 0 15px;
    font-weight: 600;
}

.B2b-feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #484D50;
}

/* B2b Why choose us Ends */

/* Ui Ux Design Starts */
.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.benefit i {
    color: #e53935;
    /* red check icon */
    font-size: 22px;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit .content h3 {
    font-size: 17px;
    color: #000;
    margin: 0;
    font-weight: 700;
}

.benefit .content p {
    font-size: 15px;
    color: #555;
    margin-top: 5px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .benefit .content h3 {
        font-size: 16px;
    }

    .benefit .content p {
        font-size: 14px;
    }
}

/* Ui Ux Design Ends */

.it-staffing-programming-tech {
    background-color: #F2F2F2;
    margin: 1%;
    padding: 5%;
    border-radius: 19px;
}

.security-monitoring {
    background: #B22234;
    border-radius: 19px;
    margin: 1%;
}


/* Css Ends - Manjunath  */

/* Banner Side Form */
.banner-side-form.form-section {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.banner-side-form.form-section input,
.banner-side-form.form-section textarea {
    color: #2c3e50;
}

.banner-side-form.form-section .title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

.banner-side-form .form-row-custom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.banner-side-form .form-group-custom label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 6px;
}

.banner-side-form .form-group-custom input,
.banner-side-form .form-group-custom textarea {
    width: 100%;
    padding: 7px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background-color: #f9fafb;
}

.banner-side-form .form-group-custom input:focus,
.banner-side-form .form-group-custom textarea:focus {
    outline: none;
    border-color: #3b9dd4;
    background-color: white;
}

.banner-side-form .form-group-custom textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group-custom .captcha-box {
    background-color: #EBEBEB;
}



@media (max-width: 1024px) {
    .banner-side-form.form-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .banner-side-form.form-section {
        padding: 25px 20px;
        min-width: auto;
    }

    .banner-side-form .form-row-custom {
        grid-template-columns: 1fr;
    }
}

/* Banner Side Form Ends */



/* Data Services */
.ds-why-choose-section .content-wrapper {
    padding: 0 40px;
}

.ds-why-choose-section .main-heading {
    font-weight: 300;
    margin-bottom: 40px;
    color: #2c3e50;
}

.ds-why-choose-section .main-heading strong {
    font-weight: 600;
}

.ds-why-choose-section .feature-item {
    margin-bottom: 0;
}

.ds-why-choose-section .feature-icon {
    display: flex;
    align-items: start;
    justify-content: center;
    border-radius: 8px;
    margin-right: 20px;
    flex-shrink: 0;
}

.ds-why-choose-section .feature-icon i {
    font-size: 24px;
    color: #6c757d;
}

.ds-why-choose-section .feature-content h3 {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
}

.ds-why-choose-section .feature-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.ds-why-choose-section .feature-divider {
    border: 0;
    border-top: 1px solid #a3a1a1;
    margin: 20px 0;
}

@media (max-width: 991px) {
    .ds-why-choose-section .image-wrapper {
        min-height: 400px;
        margin-bottom: 40px;
    }

    .ds-why-choose-section .main-heading {
        font-size: 2rem;
    }

    .ds-why-choose-section .content-wrapper {
        padding: 20px;
    }

    .ds-why-choose-section .bg-text {
        font-size: 50px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .ds-why-choose-section .main-heading {
        font-size: 1.5rem;
    }

    .ds-why-choose-section .feature-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        align-items: normal;
    }

    .ds-why-choose-section .feature-icon i {
        font-size: 20px;
    }

    .ds-why-choose-section .feature-content h3 {
        font-size: 1.1rem;
    }

    .ds-why-choose-section .bg-text {
        font-size: 35px;
    }
}

.outsourcing-container {
    background-image: url(/images/data-services/index/img-cta.webp);
    background-size: cover;
    background-position: right;
    border-radius: 20px;
}

.outsourcing-section .outsource-content {
    padding: 40px;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.steps-card {
    position: relative;
    background-image: url(/images/data-services/index/rectangle-bg.webp);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 48px 30px;
    padding-left: 42px;
}

.steps-card-icon {
    position: absolute;
    left: 5%;
    top: 15%;

}

.steps-card .achived-percentage {
    position: absolute;
    right: 35px;
    top: 41px;
    font-size: 22px;
    font-weight: bold;
}

.steps-card h3 {
    margin-top: -13px;
    margin-bottom: 36px;
    padding: 0 50px;
    padding-right: 62px;
    font-size: 17px;
    font-weight: 600;
}

.steps-card-icon i {
    font-size: 31px;
    color: #D72638;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    background: white;
    position: relative;
    border-radius: 12px;
    padding: 25px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item .check-icon {
    position: absolute;
    top: -3px;
    left: 6px;
    font-size: 28px;
    color: #D72638;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.more-services-section-bg-lg {
    background: #E7F2F6 !important;
    border-radius: 20px;
    padding: 30px;
}

.more-services-section img {
    margin-top: -40px;
}

@media (max-width: 768px) {
    .more-services-section .services-grid {
        position: relative;
        display: flex;
        flex-wrap: wrap;
    }
}


/* Data Services Ends */

/* Statistics section */
.milestones-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.milestones-title {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 60px;
}

.milestone-container {
    max-width: 1200px;
    margin: 0 auto;
}

.milestone-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.milestone-item::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    width: 2px;
    background-color: #d1d5db;
}

.milestone-item:last-child::after {
    display: none;
}

@media (min-width: 769px) {
    .col-lg-4:not(:last-child) .milestone-item::after {
        display: block;
    }
}

.milestone-number {
    font-size: 72px;
    font-weight: 700;
    color: #212529;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.milestone-label {
    font-size: 18px;
    font-weight: 400;
    color: #495057;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .milestone-item::after {
        display: none !important;
    }

    .milestone-item:not(:last-child) {
        margin-bottom: 50px;
        padding-bottom: 50px;
        border-bottom: 1px solid #dee2e6;
    }

    .milestone-number {
        font-size: 56px;
    }

    .milestone-label {
        font-size: 16px;
    }

    .milestones-section {
        padding: 60px 20px;
    }

    .milestones-title {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .milestone-number {
        font-size: 48px;
    }

    .milestone-label {
        font-size: 15px;
    }
}

/* Statistics section ends */

/* Main contact page */
.contact-page .contact-section {
    background-image: url(/images/texture-bg.webp);
    background-size: cover;
    background-position: center;
    color: #484D50;
}

.main-contact-form .contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.main-contact-form .section-title {
    font-size: 36px;
    font-weight: 300;
    color: #212529;
}

.main-contact-form .section-title strong {
    font-weight: 700;
}



.main-contact-form .contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.main-contact-form .contact-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.main-contact-form .contact-text a {
    color: #6c757d;
    text-decoration: none;
}

.main-contact-form .contact-text a:hover {
    color: #dc3545;
}

.main-contact-form .form-section {
    background-color: #FFFDFD;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 40px;
}

.main-contact-form .form-title {
    font-size: 28px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 30px;
}

.main-contact-form .form-label {
    font-size: 13px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.main-contact-form .form-control {
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    color: #495057;
    background-color: #EBEBEB;
    transition: border-color 0.3s ease;
}


.main-contact-form .form-control:focus {
    border-color: #3b9dd4;
    box-shadow: 0 0 0 0.2rem rgba(91, 171, 221, 0.15);
}

.main-contact-form .form-control::placeholder {
    color: #adb5bd;
}

.main-contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.main-contact-form .captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.main-contact-form .captcha-box {
    padding: 3px 14px;
}

.captcha-refresh {
    cursor: pointer;
}

.main-contact-form .steps-card {
    margin-top: -15px;
}

.main-contact-form #contactForm {
    gap: 0
}


/* Responsive Design */
@media (max-width: 991px) {
    .main-contact-form .contact-section {
        padding: 60px 20px;
    }

    .main-contact-form .section-title {
        font-size: 36px;
        font-weight: 600;
    }

    .main-contact-form .steps-card {
        margin-top: 0px;
    }

    .main-contact-form .form-section {
        padding: 30px 25px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .main-contact-form .form-section {
        padding: 25px 20px;
    }

    .main-contact-form .form-title {
        font-size: 24px;
    }

    .main-contact-form .captcha-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

.pas-comprehensive-box {
    position: relative;
    overflow: visible;
    padding: 30px;
    padding-left: 50px;
}

.pas-comprehensive-box::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -13.5px;
    width: 45px;
    height: 62px;
    background-image: url(/images/icon-tick-with-half-circle.webp);
}

/* Main contact page ends */

.cta-red-bg .container {
    background: linear-gradient(to right, #B22234, #F24D61, #B22234);
    border-radius: 20px;
}

.cta-red-bg .cta-red-box {
    padding: 10px 70px;
    color: #fff;
}

@media (max-width: 768px) {
    .cta-red-bg .cta-red-box {
        padding: 20px;
    }
}

/* More Services Section */
.more-services-section {
    padding: 60px 0;
    background: #fff;
}

.more-services-section .service-container {
    position: relative;
    /* margin-bottom: 30px; */
    padding: 0 10px;
}

.more-services-section .service-card {
    background: #F2F2F2;
    border-radius: 15px;
    padding: 30px 30px 30px 50px;
    position: relative;
    box-shadow: none;
    transition: background 0.3s ease;
    justify-content: center;
    height: 100%;
}

.more-services-section .service-row [class*="col-"] {
    display: flex;
}

.more-services-section.with-no-desc .service-description {
    display: inline-block;
}

.more-services-section .service-card:hover {
    background: #FFB8B8;
}

.more-services-section .service-card:hover h3,
.more-services-section .service-card:hover p {
    color: #282828;
}

.more-services-section .service-number {
    position: absolute;
    left: -25px;
    top: 30%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #282828;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
}

.more-services-section .service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.more-services-section .service-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}


@media (min-width: 768px) {
    .more-services-section .row {
        position: relative;
    }
}

@media (max-width: 767px) {
    .more-services-section .service-card {
        padding: 25px 20px 25px 45px;
    }

    .more-services-section .service-number {
        width: 45px;
        height: 45px;
        left: -22px;
        font-size: 18px;
    }

    .more-services-section .service-title {
        font-size: 16px;
    }

    .more-services-section .service-description {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .more-services-section {
        padding: 40px 0;
    }

    .more-services-section .service-container {
        margin-bottom: 25px;
    }
}

/* More Services Section Ends */

.policy-point {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
}

.policy-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background-image: url(/images/red-check.webp);
    border-radius: 50%;
}

.blogs-slider .swiper-wrapper {
    display: flex;
}

.blogs-slider .swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto !important;
    /* Ensures swiper doesn’t override height */
}

.blog-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .row {
    height: 100%;
}

/* Testimonials Swiper same height cards */
.testimonials-swiper .swiper-wrapper {
    display: flex;
}

.testimonials-swiper .swiper-slide {
    display: flex;
    height: auto;
}

.testimonials-swiper .testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    height: 100%;
    min-height: 340px;
}

/* Testimonials Swiper pagination dots styling */
.testimonials-swiper-pagination {
    position: relative !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    margin-bottom: 0;
    z-index: 2;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #bbb;
    opacity: 1;
    border-radius: 50%;
    margin: 0 4px;
    transition: background 0.2s;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: #d72638;
}


.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background-color: #e0e0e0;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover:not(:disabled) {
    background-color: #d0d0d0;
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider-btn.next {
    background-color: #4a4a4a;
    color: white;
}

.slider-btn.next:hover:not(:disabled) {
    background-color: #333;
}

.team-carousel {
    position: relative;
    overflow: hidden;
}

.team-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.team-member-slide {
    min-width: 100%;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .team-member-slide {
        min-width: 50%;
    }
}

@media (min-width: 1024px) {
    .team-member-slide {
        min-width: 50%;
    }
}

.team-member-box {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    background: white;
}

.team-member-content {
    padding: 25px;
}

.team-member-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.member-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info .member-name {
    font-size: 19px;
    font-weight: 700;
    color: #D72638;
    margin-bottom: 3px;
}

.member-info .member-designation {
    font-size: 19px;
    color: #25282A;
    font-weight: 600;
    margin: 0;
}

.percentage-box {
    background-color: #f5f5f5;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    height: 100%;
}

@media (max-width: 768px) {
    .percentage-box {
        height: auto;
        margin-bottom: 10px;
    }
    .banner-side-form .form-group-custom label{
        text-align: left;
        display: none;
    }

    .banner-bg-lg {
        background: #3b392d !important
    }

    .banner-bg-dark {
        background: #282828 !important;
    }
    
}

.percentage-box p {
    font-size: 10px;
}

.great-place-percentage .percentage-box img {
    margin-bottom: 13px;
    width: 95px;
}

.inbound-services .container {
    padding: 0px;
}

.inbound-services-inside {
    margin-top: -24%;
}