@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

body {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.fs-16 {
    font-size: 16px;
}
.fs-17 {
    font-size: 17px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-14 {
    font-size: 13px;
}
.fs-12 {
    font-size: 12px;
}
.fs-25 {
    font-size: 25px;
}
.fs-55 {
    font-size: 40px;
}
.fs-35 {
    font-size: 25px !important;
}
.fs-13 {
    font-size: 13px;
}

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

.color-1 {
    color: #5ac598;
}

.color-3 {
    color: #777;
}

.bg-1 {
    background: #5ac598;
}

.bg-2 {
    background: #23192d;
}
.bg-3 {
    background: #251b2c;
}

.h-370 {
    height: 370px;
    object-fit: cover;
}
.h-500 {
    height: 500px;
}
.mt-minus-20 {
    margin-top: -20%;
}
.sidebar-logo {
    width: 70px;
    height: 50px;
}
.border-right {
    border-right: 1px solid #ddd;
}
.border-left {
    border-left: 1px solid #ddd;
}
.search-btn-radius {
    width: 45px;
    height: 45px;
    border-radius: 45px;
}
.w-35 {
    width: 35px;
}
/* Hide the clear (×) button in search inputs for Chrome, Safari, Edge */
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

/* Optional: hide clear button in Firefox */
input[type="search"]::-moz-search-clear {
    display: none;
}
.error-msg {
    display: block;
    margin-top: 5px; /* space between input and message */
    font-size: 0.875rem;
    color: #dc3545; /* bootstrap danger color */
}

.input-error {
    border-bottom: 2px solid #dc3545 !important; /* highlight input */
}
.w-30 {
    width: 30px;
}
.w-139 {
    width: 139px !important;
    height: 93px !important;
}
.w-40 {
    width: 40px !important;
}

.pt-120 {
    padding-top: 90px;
}
.pt-55 {
    padding-top: 55px;
}
.pb-55 {
    padding-bottom: 55px;
}

.pb-120 {
    padding-bottom: 90px;
}

.w-80 {
    width: 80px;
}

.w-250 {
    width: 250px;
}

.border-top {
    border-top: 2px solid #5ac598 !important;
}
.border-top-4 {
    border-top: 4px solid #5ac598;
}

.border-top-right-radius,
.border-top-lefts-radius {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.border-bottom-right-radius-1 {
    border-bottom-right-radius: 60px;
}

.border-top-right-radius-1 {
    border-top-right-radius: 80px;
}

.border-top-right-radius-2 {
    border-top-right-radius: 120px;
}

.border-top-right-radius-4 {
    border-top-right-radius: 77px;
}

.border-top-left-radius-1 {
    border-top-left-radius: 60px;
}

.radius-top-right-1 {
    border-top-right-radius: 14px !important;
}

.cursor-pointer {
    cursor: pointer;
}

.industries-btn {
    position: absolute;
    right: 9%;
    top: 6%;
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #fff; /* optional */
    padding: 20px 0;
}
.marquee-container:hover .marquee {
    animation-play-state: paused;
}
/* Scrolling wrapper */
.marquee {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: marquee 30s linear infinite; /* adjust speed */
}

/* Each logo */
.clients img {
    max-height: 60px;
    display: block;
}

/* Scroll effect */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* only half because we duplicated set */
    }
}

.industry-card {
    border: 2px solid #eee;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #fff;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: #5ac598;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-story-bg {
    background: url("../images/home/success-story-bannerimg.png");
    height: auto;
    background-size: cover;
    background-position: center;
}

.jobs-card-hover {
    transition: background 0.4s ease, color 0.4s ease;
}
.client-left-box {
    position: absolute;
    width: 50px;
    height: 130px;
    bottom: 18%;
    z-index: 999;
    background-image: linear-gradient(
        to right,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0)
    );
}
.client-right-box {
    position: absolute;
    width: 50px;
    height: 130px;
    bottom: 18%;
    right: 3%;
    z-index: 999;
    background-image: linear-gradient(
        to left,
        rgba(255, 255, 255, 1),
        rgba(255, 255, 255, 0)
    );
}

.jobs-card-hover:hover {
    background: #5ac598 !important;
}

.jobs-card-hover:hover .job-icon {
    color: black !important;
}

.jobs-card-hover .color-3 {
    transition: 0.9s ease !important;
}

.jobs-card-hover:hover .color-3 {
    color: black !important;
    font-weight: 600;
}

.texture-footer-img {
    position: absolute;
    left: -5%;
    top: -30%;
    opacity: 0.2;
}

.texture-journey-img {
    position: absolute;
    left: -2%;
    top: -4%;
    opacity: 0.2;
}

.focus-industries-texture {
    position: absolute;
    right: 0%;
    opacity: 0.6;
}
#countersdata .card:hover {
    background: #5ac598;
}
.get-started {
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: color 0.4s ease;
    z-index: 1;
}

.get-started::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff !important;
    transition: all 0.5s ease;
    z-index: -1;
}

.get-started:hover {
    color: #000 !important;
}

.get-started:hover::before {
    left: 0;
}

#testimonials .testimonial-card-hover {
    transition: background 0.8s ease, color 0.4s ease;
}

#testimonials .testimonial-card-hover:hover {
    background: #5ac598 !important;
    color: #fff;
}

.our-services-bg {
    position: relative;
    /* important for overlay */
    background: url("../images/home/our-services-banner.jpg") center/cover
        no-repeat;
}

.our-services-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(23 11 36 / 60%);
    z-index: 1;
}

/* To ensure text/content stays above overlay */
.our-services-bg > * {
    position: relative;
    z-index: 2;
}

#our-services .card:hover {
    background: #23192d;
}

#our-services .card {
    background: #23192d78;
    border-radius: 20px;
    padding: 20px;
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #5ac59859;
}

#our-services .service-star {
    width: 55px;
    position: absolute;
    right: -29px;
    top: -13%;
}

/* #focus-industries h2 {
  position: absolute;
  bottom: 5%;
  font-size: 25px;
} */

#read-blogs .card h6 {
    position: absolute;
    right: 5%;
    top: 3%;
}

.rotated-icon {
    display: inline-block;
    transition: transform 0.4s ease;
    transform: rotate(0deg);
}

.rotated-icon:hover {
    transform: rotate(-45deg);
}

.img-top-zoom {
    /* width: 300px; */
    overflow: hidden;
    border-bottom-right-radius: 60px;
}

.img-top-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.img-top-zoom img:hover {
    transform: scale(1.1);
}

.img-bottom-zoom {
    /* width: 300px; */
    overflow: hidden;
    border-top-right-radius: 90px;
}

.img-bottom-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.img-bottom-zoom img:hover {
    transform: scale(1.1);
}

.btm-img {
    height: 225px !important;
}
#get-in-touch .nav-link.active {
    background: #5ac598;
    color: #fff !important;
}
#get-in-touch .nav-tabs .nav-link {
    color: #000;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}
#get-in-touch .nav-tabs {
    border: 1px solid #dee2e6;
}
.who-img-right {
    /* width: 300px; */
    overflow: hidden;
    border-top-left-radius: 60px;
}
.who-we-are-hover:hover {
    cursor: pointer;
    font-weight: bold;
    color: #5ac598;
}
.w-24 {
    width: 24px;
}
.who-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.who-img-right img:hover {
    transform: scale(1.1);
}

.border-top-right-radius-3 {
    border-top-right-radius: 90px;
}

.h-425 {
    height: 430px !important;
}

.h-215 {
    height: 215px;
}

.star-animation {
    position: absolute;
    top: -11%;
    right: -11%;
    width: 30%;
    transition: transform 2s ease !important;
    /* smooth rotation */
}

.star-animation.rotate {
    transform: rotate(360deg);
}

/*sidebar start*/
.sticky-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 110px;
    height: 100vh;
    z-index: 1000;
    background: #50d49c;
}

/*form*/
.search-bar {
    background: #fff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-input {
    border: none;
    box-shadow: none !important;
}

.search-input:focus {
    outline: none;
    box-shadow: none;
}

.search-btn {
    background-color: #4fd1a5;
    /* Green button */
    border-radius: 0 50px 50px 0;
    color: #fff;
    font-weight: 600;
    padding: 0 30px;
}

.search-btn:hover {
    background-color: #4fd1a5;
    cursor: pointer;
}

.divider {
    border-left: 1px solid #ddd;
    margin: 0 20px;
    height: 30px;
}

/* Push main content so it doesn’t hide behind sidebar */
.main-content {
    margin-left: 80px;
    /* same as sidebar width */
}

.toggle-button {
    border-radius: 50px;
    width: 50px;
    height: 50px;
}

.button-hover {
    position: relative;
    overflow: hidden;
    background: #5ac598 !important;
    color: #fff;
    /* default text color */
    transition: color 0.4s ease;
    z-index: 1;
    /* keep button content above pseudo-element */
}

.button-hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #23192d;
    /* hover color */
    transition: all 0.5s ease;
    z-index: -1;
    /* behind the button text */
}

.button-hover:hover {
    color: #fff;
    /* text color on hover */
}

.button-hover:hover::before {
    left: 0;
    /* slide overlay left to right */
}

.ind-btn-hover:hover {
    background: #5ac598;
}

.a-hover-color {
    color: #5ac598 !important;
}

/* Initial sticky header: transparent */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 9999;
    padding: 10px 20px;
    transition: background 0.3s ease;
}

/* Logo and buttons remain visible */
.sticky-header .hero-logo img {
    max-width: 250px;
}

.sticky-header .btn {
    color: #fff;
}

.sticky-header .btn-outline {
    border: 1px solid #fff;
    color: #fff;
}

/* Add background color when scrolled */
.sticky-header.scrolled {
    background: #1b1326f0 !important;
}

/* Hide action buttons when sidebar is open */
.sticky-header.sidebar-open .action-buttons {
    display: none;
}

/* Optional: if you want the menu button to stay visible */
.sticky-header.sidebar-open .menu-icon {
    display: flex;
}

.counters-icon {
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    padding: 15px;
}

.image-overlay-wrapper {
    position: relative;
    display: inline-block;
}

.image-overlay-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 19, 38, 0.5);
    border-radius: 1rem;
    pointer-events: none;
}

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 14%;
    z-index: 1000;
    background-color: #5ac598;
    border: 2px solid #5ac598;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
}

/* Overlay Menu */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    /* hidden by default */
    width: 300px;
    /* adjust width */
    height: 100vh;
    background: #1c1328;
    /* your purple color */
    transition: left 0.3s ease-in-out;
    z-index: 1100;
    padding: 20px;
}

/* When active (after click) */
.sidebar-menu.active {
    left: 0;
}

/* Sidebar hidden by default */
.sidebar {
    position: fixed;
    /* fixed so it stays sticky */
    top: 0;
    right: -600px;
    /* hidden initially */
    width: 600px;
    /* your width */
    height: 100vh;
    /* always full height */
    background-color: #1b1326;
    color: white;
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 20px;
    overflow-y: auto;
    /* scroll if content exceeds */
}

/* Show sidebar */
.sidebar.active {
    /* left: 0; */
    right: 0;
}

/* Sidebar close button */
.sidebar-header {
    display: flex;
    justify-content: flex-end;
    font-size: 20px;
    cursor: pointer;
    margin-top: 15%;
}

/* Menu styles */
.sidebar .menu {
    list-style: none;
    padding: 0;
    /* margin-top: 20px; */
}

.sidebar .menu li {
    margin: 10px 0;
}

.sidebar .menu li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

/*sidebar end*/

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000;
}

.overlay.active {
    display: block;
}

.hero-section {
    height: 100vh;
    display: flex;
}

.hero-left {
    background-color: #1b1326bf;
    color: white;
    flex: 1;
    height: 100vh;
}

.section-subtitle {
    color: #34d399;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
}

.section-title {
    font-size: 50px;
    font-weight: bold;
    margin-top: 10px;
}

.section-desc {
    margin-top: 15px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* let clicks go to form elements */
}

.card-btn {
    position: relative;
    overflow: hidden;
    color: #fff;
    transition: color 0.4s ease;
    z-index: 1;
}

.card-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: black !important;
    transition: all 0.5s ease;
    z-index: -1;
}

.card-btn:hover {
    color: #fff !important;
    background-color: #34d399;
}

.card-btn:hover::before {
    left: 0;
}

/**/

.section-desc {
    margin-top: 15px;
    max-width: 500px;
}

/* Position buttons in top-right */
.action-buttons {
    top: 20px;
    right: 20px;
    z-index: 5;
}

/* Green solid button */
.btn-submit {
    background: #5ac598;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #3ab977;
    color: #fff;
}

/* Outline button */
.btn-outline {
    border: 2px solid #4cd08a;
    color: #4cd08a;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #4cd08a;
    color: #fff;
}

/* Circle icon button */
.btn-icon {
    border: 2px solid #4cd08a;
    color: #4cd08a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.btn-icon:hover {
    background: #4cd08a;
    color: #fff;
}

.hero-left {
    min-height: 100vh;
    /* full height section */
}

.hero-logo {
    flex: 0 0 auto;
    /* fixed at top */
}

.hero-content {
    flex: 1;
    /* take remaining space */
}

/*client logo start*/
.wrap {
    position: relative;
}

.clients {
    align-items: center;
    -webkit-box-align: center;
    display: flex;
    gap: 4.8rem 4.8rem;
    grid-template-columns: auto auto;
    justify-items: center;
    /* margin: 4.8rem auto; */
    max-width: 1024px;
}

.clients li {
    list-style: none;
    margin: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.clients img {
    height: 70px;
    object-fit: contain;
}

.clients:hover li {
    filter: blur(0px);
    -webkit-filter: blur(0px);
}

.clients:hover li:not(:hover) {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.clients li:hover {
    -webkit-transform: translateY(-0.3rem);
    transform: translateY(-0.3rem);
}

/* --- Images (gray logo) --- */
.clients img {
    -webkit-filter: grayscale(100%) brightness(10%) contrast(10%);
    filter: grayscale(100%) brightness(10%) contrast(10%);
}

.clients img:hover {
    background: none;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*client logo end*/

/*redefining recruitment start mobile view*/
.highlight {
    color: #32d296;
    font-weight: bold;
    font-size: 14px;
}

.search-box {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.search-btn-mobile {
    background-color: #32d296;
    color: white;
    border-radius: 0 0 24px 24px;
    border: none;
    width: 100%;
    padding: 15px;
}

.icon {
    color: #666;
    margin-right: 8px;
}

.bw-img {
    filter: grayscale(100%);
}

/* #left-sidebar .typing {
    display: inline-block;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    color: #50d49c;
    border-right: 0.15em solid currentColor;
    animation: typing 6s steps(23, end) infinite, blink 0.8s step-end infinite;
} 
@keyframes typing {
    0% {
        width: 0ch;
    }

    40% {
        width: 23ch;
    }

    60% {
        width: 23ch;
    }

    100% {
        width: 0ch;
    }
}
 
@keyframes blink {
    50% {
        border-color: transparent;
    }
} */

/* animate width from 0 to the computed --target (set by JS) */
/* @keyframes typing {
    from {
        width: 0ch;
    }
    to {
        width: var(--target, 1ch);
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.typing {
    display: none; 
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    color: #50d49c;
    font-size: 32px; 
    width: 0ch;
} 
.first,
.second {
    opacity: 0;
} */
.typeJsWrapper .typeJsText {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    display: inline-block;
    padding: 0;
    color: #50d49c;
    border-right: 3px solid #50d49c;
    white-space: nowrap;
    overflow: hidden;
}
.linkedin-user-icon {
    position: absolute;
    right: 5%;
    top: 5%;
    background: #0077b5;
    width: 35px;
    height: 35px;
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 35px;
}

.img-zoom {
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.img-zoom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.img-zoom img:hover {
    transform: scale(1.1);
}

.img-zoom-only {
    overflow: hidden;
    border-radius: 20px;
}

.img-zoom-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    display: block;
}

.img-zoom-only img:hover {
    transform: scale(1.1);
}

.sticky-whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #5ac598;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s ease;
    border: 2px solid #5ac598;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.delay-20s {
    animation-delay: 20s !important;
}
#focus-industries-carousel .owl-nav {
    text-align: center;
}
#focus-industries-carousel .owl-prev {
    background: #32d296;
    width: 45px;
    height: 45px;
    font-size: 35px;
    color: #fff;
    line-height: 0;
    margin-top: 20px;
}
#focus-industries-carousel .owl-next {
    background: #32d296;
    width: 45px;
    height: 45px;
    font-size: 35px;
    color: #fff;
    line-height: 0;
    margin-top: 20px;
    margin-left: 15px;
}

/*about us page start*/
#about-hero .about_hero {
    background: url("../images/home/image.webp");
    height: 60vh;
}

#about-hero .about-hero-content {
    height: 60vh;
}

.about-star {
    position: absolute;
    right: -25px;
    top: -27px;
    width: 50px;
}
.member-card {
    transition: all 0.3s ease-in-out;
}

.member-card {
    transition: all 0.3s ease-in-out;
    position: relative;
}

.member-card .linkedin-icon {
    position: absolute;
    bottom: 32%;
    left: 30px;
    background: #0077b5;
    color: #fff;
    border-radius: 50%;
    padding: 8px 10px;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.member-card:hover .linkedin-icon {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.member-card .linkedin-icon:hover {
    background: #005582;
}

/*about us page end*/

/*career page start*/
#career-popup .modal-dialog {
    max-width: 700px;
}
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}
.underline-wrapper {
    position: relative;
    padding-bottom: 6px;
}

/* Input styling */
.underline-wrapper .form-control {
    width: 100%;
    box-shadow: none;
    outline: none;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 16px;
}

/* base gray line */
.underline-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #ddd;
}

/* animated colored fill */
.underline-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: #34d399;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 1;
}
.underline-wrapper:focus-within::after,
.underline-wrapper.focused::after,
.underline-wrapper.filled::after {
    transform: scaleX(1);
}

/* floating label */
.animated-label {
    position: absolute;
    left: 0;
    top: 22px; /* initial (inside) position */
    font-size: 15px;
    color: #000;
    pointer-events: none; /* so clicks reach the input */
    transition: top 0.18s ease, transform 0.18s ease, font-size 0.18s ease,
        color 0.18s ease;
    transform-origin: left top;
    z-index: 2;
    padding: 0 2px;
    background: transparent; /* set to a background color if needed */
}

/* float-up state: triggered by focus, filled, or JS toggled classes */
.underline-wrapper:focus-within .animated-label,
.underline-wrapper.focused .animated-label,
.underline-wrapper.filled .animated-label {
    top: 0;
    transform: translateY(-50%) scale(0.92);
    font-size: 15px;
}
.form-control:focus {
    border-color: #5ac598;
}

.career-card-hover:hover {
    background-color: #5ac598;
    color: #fff;
    transition: background-color 0.3s ease-in-out;
}

.career-card-hover:hover .hover-dot {
    color: #fff !important;
}

.career-card-hover:hover .card-btn {
    /* background-color: #fff; */
    color: #5ac598;
    transition: all 0.3s ease-in-out;
}
.career-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*career page end*/

/*contact page start*/
.nav-pills .nav-link.active {
    background: #72c79c;
}
.nav-pills .nav-link {
    color: #000;
}
/*contact page end*/

.img-cont {
    position: relative;
    overflow: hidden;
}

.img-cont h2 {
    position: absolute;
    bottom: 5%;
    left: 15px;
    font-size: 25px;
    color: #fff;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.hover-paragraph {
    position: absolute;
    bottom: 6px;
    left: 0;
    right: 0;
    border-bottom-right-radius: 17px;
    border-bottom-left-radius: 17px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.img-cont:hover .hover-paragraph {
    opacity: 1;
    transform: translateY(0);
}

.img-cont:hover h2 {
    bottom: 20%;
}

/* services page start */
.border-top-left-bottom {
    border-radius: 10px !important;
}
.border-top-left-right-radius {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
/* services page end */

/* cookies start */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #222;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none; /* hidden by default */
}

.cookie-consent button {
    margin: 0 5px;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#acceptCookies {
    background-color: #4caf50;
    color: white;
}

#declineCookies {
    background-color: #f44336;
    color: white;
}

/* cookies end */

@media (min-width: 1360px) and (max-width: 1440px) {
    .texture-footer-img {
        position: absolute;
        left: -11%;
        top: -30%;
    }

    .texture-journey-img {
        left: -17%;
    }
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 130px) and (max-device-width: 1400px) {
    .h-425 {
        height: 370px !important;
    }
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .fs-sm-35 {
        font-size: 30px !important;
    }

    .btn-w-sm-100 {
        width: 100%;
    }

    .hero-left {
        min-height: 50vh;
    }
    .w-sm-220 {
        width: 220px;
    }
    .pt-sm-60 {
        padding-top: 60px;
    }
    .pb-sm-60 {
        padding-bottom: 60px;
    }
    /*mobile menu start*/
    .custom-offcanvas {
        position: fixed;
        top: 0;
        left: -300px;
        width: -webkit-fill-available;
        height: 100vh;
        background: #251b2c;
        /* dark purple background */
        transition: left 0.3s ease-in-out;
        padding: 1.5rem;
        z-index: 1050;
        overflow-y: auto;
    }

    .custom-offcanvas.show {
        left: 0;
    }

    .custom-offcanvas .nav-link {
        color: #fff;
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    .custom-offcanvas .nav-link:hover {
        color: #4caf50;
        /* green hover */
    }

    .custom-offcanvas a {
        text-decoration: none;
    }

    .custom-offcanvas .offcanvas-header h6 {
        letter-spacing: 1px;
    }

    /*end*/
    .border-top-right-radius-1 {
        border-top-right-radius: unset;
    }

    .main-content {
        margin-left: unset;
    }
    .texture-journey-img {
        top: 0%;
    }
    .border-top-left-radius-1 {
        border-top-left-radius: unset;
    }
    .border-top-right-radius-2 {
        border-top-right-radius: unset !important;
    }
    .social-media-icon {
        width: 40px;
        height: 40px;
        border-radius: 40px;
        align-items: center;
        display: flex;
        justify-content: center;
    }
    .h-215 {
        height: auto;
    }
    #career-filter .border-left,
    #career-filter .border-right {
        border-right: unset;
        border-left: unset;
    }
    .career-btn {
        position: unset;
        transform: translateX(0%);
        display: block;
    }
    .h-500 {
        height: 100%;
    }
    .contact-nav-tab {
        overflow-x: auto;
        white-space: nowrap;
        display: -webkit-box;
    }
    .industry-card {
        height: 200px;
    }
    .client-left-box,
    .client-right-box {
        display: none;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .border-top-left-radius-1 {
        border-top-left-radius: 0px;
    }
    .w-md-250 {
        width: 250px;
    }
    #our-services .service-star {
        display: none !important;
    }
    .border-top-right-radius-2 {
        border-top-right-radius: 0px;
    }
    .h-215 {
        height: auto;
    }
    .career-btn {
        position: unset;
        transform: translateX(0%);
    }
    .sticky-header .hero-logo img {
        max-width: 210px;
    }
    .fs-md-14{
        font-size: 14px;
    }
    .section-subtitle-tab{
        padding-top: 100px !important;
    }
}

/*preloader start*/
/* Fullscreen preloader */
/* #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
} 
.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #5ac598;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}  */

/*bouncing start*/
/* #preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader {
    display: flex;
    gap: 8px;
}

.loader span {
    width: 12px;
    height: 12px;
    background: #5ac598;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.loader span:nth-child(2) { animation-delay: 0.2s; }
.loader span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
    from { transform: translateY(0); opacity: 0.4; }
    to { transform: translateY(-12px); opacity: 1; }
} */
/*bouncing end*/

/*dual ring start*/
/* #preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.dual-ring {
    width: 60px;
    height: 60px;
    border: 5px solid #5ac598;
    border-color: #5ac598 transparent #5ac598 transparent;
    border-radius: 50%;
    animation: rotate 1.2s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
} */
/*dual ring end*/

/*pulse start*/
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.pulse {
    width: 45px;
    height: 45px;
    background: #5ac598;
    border-radius: 50%;
    animation: pulseEffect 1s infinite ease-out;
}

@keyframes pulseEffect {
    0% {
        transform: scale(0.7);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
/*pulse end*/

.w-75 {
    width: 75px !important;
}
