/* custom-styles */

:root {
    --left-gradient: #fa582d;
    --right-gradient: #ffc328;
}

@font-face {
    font-family: "SF Pro Display";
    src: url("/fonts/SFProDisplay-Regular.woff2") format("woff2"),
        url("/fonts/SFProDisplay-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

.color-site-gray {
    color: #535353 !important;
}

.font-sf-pro {
    font-family: "SF Pro Display", sans-serif;
}

.font-outfit {
    font-family: "Outfit", sans-serif;
}

.font-pt-sans {
    font-family: "PT Sans", sans-serif;
}

/* General Styles */
.background-white {
    background-color: #fff !important;
}

.background-white .nav-item,
.background-white .nav-item i {
    color: #000;
}

.background-white .site-action-btn {
    background: white !important;
}

.background-white .site-action-btn span {
    color: #000 !important;
}

.fs-12 {
    font-size: 12px;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-32 {
    font-size: 32px !important;
}

.fs-57 {
    font-size: 57px !important;
}

.fs-64 {
    font-size: 64px !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.decor-none {
    text-decoration: none;
}

.px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.px-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
}

.py-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}

.py-140px {
    padding-top: 140px !important;
    padding-bottom: 140px !important;
}

.grayscale {
    filter: grayscale(1);
}

.radius-24 {
    border-radius: 24px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.br-16px {
    border-radius: 16px !important;
}

.w-88 {
    width: 88% !important;
}

.py-40px {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.py-200px {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
}

.white-space-nowrap {
    white-space: nowrap !important;
}

.white-space-nowrap a {
    white-space: nowrap !important;
}

.bg-site-grey {
    background-color: #0d101b !important;
}

.container-sm {
    margin-right: 60px !important;
    margin-left: 60px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: var(--left-gradient);
    color: white;
    border: none;
    height: 40px;
    width: 40px;
    font-size: 16px;
    border-radius: 100%;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

#scrollToTop:hover {
    background-image: linear-gradient(
        to right,
        var(--left-gradient),
        var(--right-gradient)
    );
}

#scrollToTop i {
    font-size: 14px;
}

.navbar-toggler {
    background-image: linear-gradient(
        to right,
        var(--left-gradient),
        var(--right-gradient)
    );
}

.site-footer {
    background-color: #1b1e28;
    background-image: url("/images/frontend/gradient_2.svg");
    background-position: top right;
    background-size: cover;
    background-blend-mode: exclusion;
    /* height: 400px; */
    padding: 60px 90px;
    padding-bottom: 10px;
}

.gradient-div {
    height: 100%;
    background-image: radial-gradient(#fa582d, #ffc328);
    background-blend-mode: darken;
}

.footer-logo {
    width: 450px;
}

.footer-input-container {
    border: 1px solid #535353;
}

.footer-input {
    background-image: url("../images/frontend/envelop_icon.svg");
    background-repeat: no-repeat;
    background-position: left 20px center;
    background-color: transparent;
    border: none;
    height: 48px;
    padding-left: 60px;
    outline: none;
    color: #ffffffb2;
}

.button-gradient {
    background-image: linear-gradient(
        to right,
        var(--left-gradient),
        var(--right-gradient)
    );
}

.footer-button {
    border: none;
    outline: none;
    width: 160px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer-link-heading {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

.footer-link {
    color: #ffffff73;
    text-decoration: none;
    margin-bottom: 0.6rem;
    font-size: 14px;
    font-weight: 400;
}

.footer-links-container {
    width: 40%;
}

.footer-divider {
    background-color: #ffffff73;
    color: #ffffff73;
    opacity: 0.6;
}

.footer-bottom-text {
    color: #ffffffb2;
}

.header-logo {
    width: 200px;
    z-index: 9;
}

.site-header {
    padding: 20px 50px 0px 50px;
    z-index: 9;
    /* border-bottom: 1px solid #000; */
}

.site-navbar {
    /* gap: 25px; */
    z-index: 9;
}

.nav-item {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    padding: 20px 15px 30px 15px;
    border-bottom: 3px solid transparent;
}

.nav-item.active {
    border-bottom: 3px solid orange;
}

.cursor-pointer {
    cursor: pointer;
}

.mega-menu {
    border-radius: 0 0 20px 20px;
    padding: 60px;
    display: none; /* Hide menu initially */
    position: absolute;
    top: 100%; /* Adjust position below nav */
    left: 0;
    background: white;
    border-top: 1px solid #000;
}

.menu-head-1 {
    background: linear-gradient(
        to right,
        var(--left-gradient),
        var(--right-gradient)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-menu-head {
    font-size: 22px;
    font-weight: normal;
}

.menu-link {
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    color: #535353;
    margin-top: 8px;
}

.menu-link:first-child {
    margin-top: 12px;
}

.mega-menu-heading {
    font-size: 32px;
    font-weight: 500;
    color: #000;
}

.site-header-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 9991;
}

.content-container {
    background-color: #000;
}

.home-page {
    /* padding: 20px 15px; */
}

.mt-50 {
    margin-top: 50px;
}

.home-hero-section {
    background-color: #0d101bcc;
}

.hero-section {
    min-height: 800px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay color */
    z-index: 2; /* Keep overlay above background */
}

.home-hero-indicators {
    z-index: 3;
}

.hero-section > * {
    position: relative;
    z-index: 2; /* Ensure text and other content are above overlay */
    color: white; /* Example text color */
    padding-top: 160px;
}

.hero-check-container {
    padding: 6px;
    border-radius: 32px;
    border: 2px solid #fff;
    width: 128px;
    height: 36px;
}

.site-check-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.hero-title-text {
    font-size: 90px;
    font-weight: 400;
    color: #fff;
    margin-top: 31px;
    width: 90%;
    line-height: 1.1;
}

.hero-detail-text {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff99;
    margin-top: 40px;
    width: 70%;
    line-height: 1.1;
}

/* .brands-containe img {
    display: block;
    margin: auto;
} */

.hero-video {
    position: relative;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-top: 0;
    z-index: 1;
}

.slider-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.slider-track {
    display: flex;
    width: fit-content;
    animation: scroll 70s linear infinite;
}

.slider-track img {
    height: auto;
    margin: 0 10px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-brands {
    width: 100%;
    padding: 0px 60px 10px 60px;
    position: absolute;
    bottom: 0;
    z-index: 2;
}

.py-60px {
    padding-top: 50px;
    padding-bottom: 50px;
}

.div-graphic-element {
    position: absolute;
    top: 0;
    right: 0;
}

.home-section-2 {
    height: auto;
}

.w-60-perc {
    width: 60%;
}

.home-sect-2-title {
    font-weight: 400;
    font-size: 64px;
}

.home-sect-4-title {
    font-weight: 400;
    font-size: 57px;
}

.home-sect-2-img {
    width: 35%;
    height: 430px;
}

.py-35px {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.home-sect-2-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.home-sect-2-text-container {
    background-color: #0000000a;
    border-radius: 20px;
    width: 63%;
    height: 100%;
    padding: 15px 30px;
}

.home-sect-2-text-heading {
    font-size: 32px;
    font-weight: 500;
}

.home-sect-2-text-detail {
    font-size: 16px;
    font-weight: 400;
    color: #535353;
}

.home-sect-2-text-detail-2 h3 {
    font-size: 18px;
    font-weight: 500;
}

.home-sect-2-text-detail-2 ul {
    padding-left: 18px;
}

.home-sect-2-text-detail-2 li {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.home-sect-2-text-detail-2 p {
    font-size: 16px;
    font-weight: 400;
    color: #535353;
}

.home-sect-2-text-detail-2 span {
    font-size: 15px;
    font-weight: 400;
    color: #535353;
}

.fs-14 {
    font-size: 14px;
}

.carousel-indicators {
    align-items: center;
    gap: 10px;
    bottom: 14% !important;
}

.carousel-indicators button {
    height: 15px !important;
    width: 15px !important;
    border-radius: 100%;
}

.carousel-indicators .active {
    height: 20px !important;
    width: 20px !important;
    border-radius: 100%;
}

.home-section-3 {
    background-color: #0d101b;
}

.py-90px {
    padding-top: 90px;
    padding-bottom: 90px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: transparent;
    background: linear-gradient(
        to right,
        var(--left-gradient),
        var(--right-gradient)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.nav-pills .nav-link {
    text-align: left;
    color: #ffffffab;
    font-size: 22px;
    font-weight: 400;
}

.nav-pills .nav-link.active::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -32px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(
        45deg,
        var(--left-gradient),
        var(--right-gradient)
    );
    /*margin-right: 8px;*/ /* Space between dot and text */
    vertical-align: middle;
}

.nav.nav-pills {
    padding-left: 25px;
}

.section-3-tab-content {
    background-color: #ffffff0a;
    padding: 46px 40px;
    border-radius: 24px;
}

.section-3-tab-heading-1 {
    font-size: 30px;
    font-weight: 500;
}

.section-3-tab-detail-1 {
    font-size: 16px;
    font-weight: 400;
    color: #ffffffab;
}

.section-3-tab-heading-2 {
    font-size: 18px;
    font-weight: 500;
}

.section-3-img {
    border-radius: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.home-sect-3-content-container p img {
    border-radius: 20px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* .innovative-sec-table {
    border-top: 1px solid #ffffff40;
    border-left: 1px solid #ffffff40;
    border-image: linear-gradient(to bottom, #ffffff40, #ffffff00) 1 100%;
}

.innovative-sec-table:first-child {
    border-top-left-radius: 16px;
}

.innovative-sec-table:last-child {
    border-right: 1px solid #ffffff40;
    border-top-right-radius: 16px;
} */

.innovative-sec-table {
    padding: 40px;
    position: relative;
    border-left: 1px solid transparent; /* Left border on all */
    border-right: none; /* No right border by default */
    border-top: 1px solid #ffffff40; /* Top border */
    border-radius: 0; /* Reset default border-radius */

    /* Gradient on vertical borders */
    border-image-source: linear-gradient(to bottom, #ffffff40, #ffffff00);
    border-image-slice: 1;
    border-image-repeat: stretch;

    overflow: hidden;
}

/* First box: Add top-left border radius */
.innovative-sec-table:first-child {
    border-top-left-radius: 16px;
}

/* Last box: Add right border & top-right border radius */
.innovative-sec-table:last-child {
    border-right: 1px solid transparent;
    border-top-right-radius: 16px;
}

.innovative-sec-table-title {
    font-size: 21px;
    color: #fff;
    margin-top: 50px;
    font-weight: 500;
}

.innovative-sec-table-desc {
    font-size: 16px;
    color: #ffffff92;
    font-weight: 400;
}

.div-graphic-element-1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.contact-container {
    padding: 55px 35px;
}

.contact-section {
    padding: 80px 58px;
}

.home-sect-5-title {
    font-size: 34px;
    font-weight: 500;
}

.contact-sec-desc {
    font-size: 16px;
    font-weight: 400;
    color: #535353ab;
}

.contact-input {
    padding: 10px 10px 10px 20px;
    border-radius: 4px;
    border: 1px solid #535353;
    background-color: transparent;
    outline: none;
}

.contact-input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #535353;
}

.contact-flex-input {
    width: 49%;
}

textarea {
    resize: none;
}

.contact-textarea {
    padding: 10px 10px 10px 20px;
    height: 120px;
    border-radius: 4px;
    border: 1px solid #535353;
    background-color: transparent;
    outline: none;
}

.contact-form-btn {
    background-color: transparent;
    border: none;
    outline: none;
}

.tab-border-left {
    border-left: 2px solid transparent;

    border-image-source: linear-gradient(to bottom, #ff9862, #e82b8938);
    border-image-slice: 1;
    border-image-repeat: stretch;
}

#partners-carousel {
    background-color: #ffffff33;
    padding: 25px 60px 25px 60px;
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: start;
}

#partners-carousel .carousel-inner {
    padding: 0 85px;
}

.partners-icon {
    width: 200px;
    height: 200px;
    margin-top: -25px;
}

.partner-carousel-content {
    width: 70%;
}

/* Services page styles start */
.services-container {
    scroll-behavior: smooth;
}

.services-container .hero {
    height: 600px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.services-container .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay color */
    z-index: 1; /* Keep overlay above background */
}

.services-hero-container {
    z-index: 2;
    height: 100%;
    position: relative;
}

.services-hero-text-content {
    width: 80%;
}

.services-hero-title {
    line-height: 1.5;
    font-size: 57px;
    font-weight: 500;
}

.services-hero-subtitle {
    width: 85%;
    margin: auto;
    margin-top: 20px;
}

.page-nav-link {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

.page-nav-link:hover {
    background: linear-gradient(
        to right,
        var(--left-gradient),
        var(--right-gradient)
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.empowering-section {
    padding-top: 80px;
    padding-bottom: 80px;
    /* overflow: hidden; */
}

.sticky-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-content.fixed-on-scroll {
    width: 500px;
    background-color: #fff;
}

.empower-title {
    font-size: 57px;
    font-weight: 500;
    background-color: #000000; /* Base color */
    display: block;
    color: #000000; /* Text appears black by default */
    --gradient-position: 50%; /* Controlled by JS */

    background: -webkit-linear-gradient(
        308deg,
        #000000 0%,
        #000000 28.66%,
        #fa582d 32.66%,
        #ffc328 33%,
        #000000 37%,
        #000000 45%,
        #fa582d 47.5%,
        #ffc328 48%,
        #000000 50.5%,
        #000000 64%,
        #fa582d 69%,
        #000000 70%
    );

    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 200% 100%, 100% 100%;
    background-position: var(--gradient-position) 50%, 50% 50%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    position: relative;
    z-index: 5;
}

.services-graphic {
    position: absolute;
    right: 5%;
    top: 5%;
    width: 350px;
}

/* Optional: Smooth Animation */
@keyframes text-mask {
    0% {
        background-position: -100% center;
    }
    100% {
        background-position: 50% center;
    }
}

.empower-title.mask-animation {
    animation: text-mask 2s infinite alternate;
}

#fixed-on-scroll {
    position: sticky;
    top: 8.9375rem;
}

.empower-right-texts-parent {
    border-left: 1px solid black;
}

.empower-right-texts {
    padding-top: 30px;
    margin-bottom: 50px;
    position: relative;
    padding-left: 65px;
}

.empower-right-texts:first-child {
    padding-top: 0;
}

.empower-right-texts::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/images/frontend/empower_text_before_element.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -22px;
}

.empower-right-texts p {
    color: #535353;
}

.services-section-image {
    width: 450px;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    overflow: hidden;
}

.services-section-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.services-section-img:hover {
    scale: 1.2;
}

.consulting-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.services-section-bg-grad {
    /* background-image: url("/images/frontend/services_gradient.svg");
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: cover; */

    background-image: url(/images/frontend/bg-gradient_2.svg);
    background-repeat: no-repeat;
    background-position: right top;
}

.services-section-title {
    font-size: 32px;
    font-weight: 500;
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
}

.services-section-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

.services-section-desc {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff89;
}

.transformation-section {
    padding-top: 200px;
    padding-bottom: 200px;
}

.fa-brands {
    font-size: 38px;
    color: #ffffff4d;
    transition: all 0.3s ease-in-out;
}

.fa-brands:hover {
    color: #ffcb06;
}

.sticky-section-right-texts-parent {
    border-left: 1px solid black;
    position: relative;
}

.sticky-section-left-texts-parent {
    border-right: 1px solid #535353;
    position: relative;
}

.sticky-section-right-texts {
    padding-top: 30px;
    margin-bottom: 50px;
    position: relative;
    padding-left: 65px;
}

.sticky-section-left-texts {
    padding-top: 30px;
    margin-bottom: 50px;
    position: relative;
    padding-right: 65px;
}

.sticky-section-left-texts:first-child {
    padding-top: 0;
}

.sticky-section-right-texts:first-child {
    padding-top: 0;
}

.sticky-section-right-texts-parent::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/images/frontend/empower_text_before_element.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -10px;
}

.sticky-section-left-texts-parent::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/images/frontend/empower_text_before_element.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: -10px;
}

.sticky-section-left-texts h5 {
    color: #fff;
}

.sticky-section-left-texts p {
    color: #ffffff92;
}

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

.partner-logo img {
    width: 50%;
}

.partners-tabs .nav-link {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 20px;
}

.partners-tabs .nav-link .image-div {
    width: 75%;
    height: 30px;
}

.partners-tabs .nav-link.active::before {
    left: -32px;
}

.partners-tabs .nav-link .image-div img {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

#webinar-carousel {
    /* padding-bottom: 100px; */
}

#webinar-carousel .carousel-indicators {
    position: relative;
    margin-top: 50px;
}

#webinar-carousel .carousel-indicators button {
    background-color: #d9d9d9e5;
}

#webinar-carousel .carousel-indicators .active {
    background-color: #ff5a00;
}

#webinar-carousel .image-div {
    width: 45%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

#webinar-carousel .image-div .image-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
}

#webinar-carousel .image-div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay color */
    z-index: 1; /* Keep overlay above background */
    border-radius: 24px;
}

#webinar-carousel .image-div img {
    width: 100%;
    object-fit: cover;
    z-index: 2;
}

#webinar-carousel .text-content {
    width: 55%;
    padding: 40px;
}

#webinar-carousel .text-content h1 {
    font-size: 32px;
    font-weight: 500;
}

#webinar-carousel .text-content p {
    color: #535353;
    margin-top: 20px;
}

.capability-link {
    color: #ffffff99;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease-in-out;
}

.capability-link-dark {
    color: #000;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease-in-out;
}

.nav-content .nav-section {
    position: sticky;
    top: 0;
    z-index: 91;
    background-color: #000;
}

.contact-icons {
    width: 50px;
    height: 48px;
    object-fit: contain;
}

.border-b-1px {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    color: #535353;
}

.contact-content {
    font-size: 22px;
    font-weight: 500;
    margin-top: 15px;
    display: block;
}

.contact-content a {
    text-decoration: none;
    color: #000;
}

.about-sticky-img {
    width: 390px;
    height: 390px;
    object-fit: contain;
}

.sticky-gradient-text {
    width: 60%;
    font-size: 57px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    color: white; /* White fallback */
    z-index: 5;

    /* Gradient overlay */
    --gradient-position: 50%;
    background: -webkit-linear-gradient(
        308deg,
        #ffffff 0%,
        #ffffff 28.66%,
        #fa582d 32.66%,
        #ffffff 37%,
        #ffffff 45%,
        #fa582d 47.5%,
        #ffffff 50.5%,
        #ffffff 64%,
        #fa582d 69%,
        #ffffff 70%
    );
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 200% 100%;
    background-position: var(--gradient-position) 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-graphic {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 350px;
}

.sticky-right-texts-parent {
    border-left: 1px solid #fff;
}

.sticky-right-texts {
    padding-top: 30px;
    margin-bottom: 50px;
    position: relative;
    padding-left: 65px;
}

.sticky-right-texts::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/images/frontend/empower_text_before_element.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -22px;
}

.sticky-right-texts h5 {
    color: #fff;
    font-size: 22px;
}

.sticky-right-texts p {
    color: #868686;
}

.section-navbar::-webkit-scrollbar {
    display: none;
}

.section-navbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.section-navbar a#empower-link:nth-of-type(1),
.section-navbar a#empower-link:nth-of-type(2) {
    display: none !important;
}

.nav-btn {
    background-color: transparent;
    border: none;
    outline: none;
}

/* mobile navbar */
.menu-panel,
.mega-menu-mobile {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    background: #fff;
    color: #000;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

.menu-panel {
    left: -100%;
}

.mega-menu-mobile {
    right: -100%;
}

.menu-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.menu-list {
    list-style: none;
    padding: 0;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.menu-list::-webkit-scrollbar {
    display: none !important;
}

.menu-list li {
    margin-top: 5px;
    margin-bottom: 5px;
}

.menu-list li:first-child {
    border-top: 2px solid #eeeff1;
}

.menu-list button,
.menu-list a {
    display: block;
    width: 100%;
    padding: 10px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    color: #000;
    cursor: pointer;
}

.menu-list a {
    text-decoration: none;
}

/* .menu-list button:hover,
.menu-list a:hover {
    background: #343a40;
} */

/* Close & Back Buttons */
.close-btn {
    position: absolute;
    top: 10px;
    font-size: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #000;
}

.back-btn {
    font-size: 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #000;
}

.close-btn {
    right: 10px;
}

.back-btn {
    left: 10px;
}

.mobile-nav-link {
    border-bottom: 1px solid #eeeff1 !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
}

.back-btn-container {
    padding-right: 15px;
    padding-left: 15px;
    border-bottom: 2px solid #eeeff1;
}

.blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
}

.blog-card .sub-title-1 {
    display: block;
    color: #ffcb06;
    margin-top: 40px;
}

.blog-card .title {
    margin-top: 10px;
}

.blogs-container {
    row-gap: 120px;
}

.blog-paging {
    color: #535353;
    display: block;
    text-align: center;
}

.blog-bagination-container {
    border-top: 1px solid #eaecf0;
    margin-top: 100px;
    padding-top: 15px;
}

.blog-details-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-top: 30px;
}

.blog-details-container {
    padding-left: 80px;
    padding-right: 80px;
}

.text-gradient {
    background: linear-gradient(
        to right,
        var(--left-gradient),
        var(--right-gradient)
    ) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.site-action-btn {
    border: 2px solid #fc8e2b;
    background: transparent;
    border-radius: 18px;
    padding: 5px;
    width: max-content;
}

.site-action-btn-home {
    border: 2px solid #fc8e2b;
    background: transparent;
    border-radius: 18px;
    padding: 5px;
    width: max-content;
    margin-bottom: 110px;
}

.content-box {
    background: dimgrey;
    padding: 5px;
    border-radius: 18px;
}

.w-49 {
    width: 49%;
}

.section-3-tab-content ul,
.section-3-tab-content ol,
.section-3-tab-content ul li,
.section-3-tab-content ol li {
    color: #ffffffab;
}

.carousel-partner-img {
    object-fit: contain;
    width: 100px;
    height: 100px;
}

.cookiepolicy {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background-color: #f9f9f9;
    z-index: 99999;
}
.cookiepolicy.show {
    display: block;
}

/* .home-hero-section .carousel-item {
    height: 800px !important;
} */

/* responsive styles */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        padding-bottom: 160px;
    }
    #partners-carousel {
        padding: 25px 60px;
        height: auto;
        display: block;
    }
    .partner-carousel-content {
        width: 100%;
    }
    .footer-logo {
        margin: auto;
        display: block;
        margin-top: 40px;
    }
    .site-footer {
        height: auto;
    }
    .footer-links-container {
        width: 60%;
    }
    .contact-container {
        background-position: unset !important;
    }
    .services-hero-text-content {
        width: 100%;
    }
    #fixed-on-scroll {
        position: relative;
        top: unset;
    }
    .text-content.fixed-on-scroll {
        background-color: transparent;
    }
    .services-section-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 30px;
    }
    .services-section-title {
        font-size: 26px;
        font-weight: 500;
        position: relative;
        display: block;
        margin-top: 0;
    }
    .container-sm {
        margin-right: auto !important;
        margin-left: auto !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    #webinar-carousel .image-div {
        width: 100%;
    }
    #webinar-carousel .text-content {
        width: 100%;
    }
    .partners-icon {
        margin-top: auto;
    }
}

@media (max-width: 576px) {
    .site-footer {
        height: auto;
        padding: 60px 15px;
    }
    .footer-logo {
        width: 150px;
        margin: auto;
        display: block;
        margin-top: 40px;
    }
    .footer-input-container {
        width: 100%;
    }
    .footer-input {
        width: 65%;
    }
    .footer-button {
        width: 35%;
    }
    .header-logo {
        width: 150px;
    }
    .site-header {
        padding: 20px 10px;
    }
    .hero-title-text {
        font-size: 36px;
        width: 95%;
    }
    .hero-detail-text {
        font-size: 18px;
        font-weight: 400;
        color: #ffffff99;
        margin-top: 40px;
        padding-bottom: 15px;
        width: 90%;
        line-height: 1.1;
    }
    .hero-section {
        height: auto;
        padding-bottom: 50px;
    }
    .hero-brands {
        padding: 0 15px;
        margin-bottom: 10px;
    }
    /* .brands-container > div {
        display: block !important;
    } */
    /* .brands-container > div > img {
        display: block !important;
        margin: auto;
        margin-bottom: 10px;
    } */
    .carousel-indicators {
        bottom: 0 !important;
    }
    .home-sect-2-title {
        font-size: 36px;
    }
    .div-graphic-element {
        width: 50%;
    }
    .home-sect-2-content-container {
        display: block !important;
    }
    .home-sect-2-img {
        width: 100% !important;
        height: 250px !important;
    }
    .home-sect-2-text-container {
        width: 100%;
        margin-top: 20px;
    }
    .home-sect-2-text-heading {
        font-size: 24px;
    }
    .home-sect-4-title {
        font-size: 36px;
        text-align: center;
    }
    .innovative-sec-table {
        border-right: 1px solid #ffffff40;
    }
    .py-90px {
        padding-bottom: 20px !important;
        padding-top: 20px !important;
    }
    .contact-flex-input {
        width: 100%;
    }
    .contact-flex-input:first-child {
        margin-bottom: 8px;
    }
    .contact-section {
        padding: 0;
    }
    .contact-container {
        background-position: unset !important;
    }
    #partners-carousel {
        padding: 25px 60px;
        height: auto;
        display: block;
    }
    #partners-carousel .carousel-inner {
        padding: 0 5px;
    }
    .partner-carousel-content {
        width: 100%;
    }
    .services-container .hero {
        height: auto;
        padding: 50px 0;
        padding-top: 100px;
    }
    .services-hero-text-content {
        width: 100%;
    }
    .services-hero-title {
        line-height: 1.5;
        font-size: 32px;
        font-weight: 500;
    }
    .services-hero-subtitle {
        width: 100%;
        margin: auto;
        margin-top: 20px;
    }
    .text-content.fixed-on-scroll {
        width: 90%;
        background-color: transparent;
        margin: auto;
    }
    #fixed-on-scroll {
        position: relative;
        top: unset;
    }
    .container-sm {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .empower-right-texts {
        width: 80%;
        padding-top: 30px;
        margin-bottom: 50px;
        position: relative;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .empower-right-texts::before {
        left: -60px;
    }
    .fs-md-42px {
        font-size: 42px !important;
    }
    .fs-57 {
        font-size: 38px !important;
    }
    .services-section-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 30px;
    }
    .transformation-journey-section .home_graphic {
        width: 99%;
        margin: auto;
    }
    .services-section-title {
        font-size: 26px;
        font-weight: 500;
        position: relative;
        display: block;
        margin-top: 0;
    }
    .services-section-title img {
        width: 100px;
    }
    .services-section-subtitle {
        font-size: 18px;
    }
    .title-graphic-2 {
        width: 40%;
    }
    #carouselExampleIndicators .carousel-indicators {
        display: none;
    }
    .fa-brands {
        font-size: 26px;
    }
    .sticky-section-right-texts {
        padding-left: 10px;
    }
    .sticky-section-left-texts {
        padding-right: 10px;
    }
    .partner-logo img {
        width: 80%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    #webinar-carousel .image-div {
        width: 100%;
    }
    #webinar-carousel .text-content {
        width: 100%;
    }
    .section-3-tab-content {
        padding: 46px 5px;
    }
    .container {
        padding-right: 10px;
        padding-left: 10px;
    }
    .sticky-right-texts {
        width: 80%;
        padding-top: 30px;
        margin-bottom: 50px;
        position: relative;
        padding-left: 0;
        margin-left: auto;
        margin-right: auto;
    }
    .sticky-right-texts::before {
        left: -60px;
    }
    .sticky-gradient-text {
        width: 100%;
    }
    .px-35 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
    .partners-carousel-text {
        height: 200px;
        overflow-y: scroll;
    }
    .hero-more-btn {
        margin-bottom: 30px;
    }
    .hero-section > * {
        padding-top: 100px;
    }
    .fs-64 {
        font-size: 40px !important;
    }
    .blogs-container {
        row-gap: 20px;
    }
    .blog-bagination-container {
        margin-top: 50px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .blog-details-img {
        height: 230px;
    }
    .w-49 {
        width: 100% !important;
    }
    .sticky-section-right-texts-parent {
        border-left: none;
    }
    .sticky-section-right-texts-parent::before {
        content: none;
    }
    .sticky-section-left-texts-parent {
        border-right: none;
    }
    .sticky-section-left-texts-parent::before {
        content: none;
    }
}

@media (min-width: 1400px) {
    #partners-carousel .carousel-inner {
        padding: 0 130px;
    }
}

/* Contact Section Variations Styling */
.contact-variant-2-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-variant-2-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.contact-variant-3-wrapper {
    position: relative;
}

.contact-variant-3-info {
    transition: transform 0.3s ease;
}

.contact-variant-3-info:hover {
    transform: translateY(-3px);
}

.contact-variant-3-calendly {
    transition: transform 0.3s ease;
}

.contact-variant-3-calendly:hover {
    transform: translateY(-3px);
}

.contact-variant-4-sidebar {
    position: sticky;
    top: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-variant-4-sidebar:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
}

.contact-variant-4-main {
    transition: transform 0.3s ease;
}

.contact-variant-4-main:hover {
    transform: translateY(-3px);
}

.contact-variant-5-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-variant-5-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1) !important;
}

/* Responsive adjustments for contact variants */
@media (max-width: 991px) {
    .contact-variant-4-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    .contact-section-variant-2,
    .contact-section-variant-3,
    .contact-section-variant-4,
    .contact-section-variant-5 {
        padding: 60px 0 !important;
    }
}

@media (max-width: 767px) {
    .contact-variant-2-card,
    .contact-variant-3-info,
    .contact-variant-3-calendly,
    .contact-variant-4-sidebar,
    .contact-variant-4-main,
    .contact-variant-5-card {
        padding: 30px 20px !important;
    }
}
