:root {
    --color-primary: #644493;
    --color-secondary: #4ef7ff;
    --color-coral: #E9967A;
    --color-violet: #800080;
    --color-pink: #DB7093;
    --color-darker: #192335;
    --color-white-dark: #D9D9D9;
    --gradient-dark: linear-gradient(90deg, #2f57efbf 0%, #c586eeab 100%);
    --gradient-dark-2: linear-gradient(90deg, #2f57ef7d 0%, #c586ee52 100%);
    --color-primary-100: #323F92;
    --color-heading: #192335;
    --color-body: #6b7385;
    --color-white: #ffffff;
    --color-white-off: #FFFFFFAB;
    --color-bodyest: #273041;
    --color-bodyest-2: #324059b3;
    --color-bodyest-opacity: #2730415e;
    --color-dark: #27272E;
    --color-darkest: #232d40;
    --color-black: #111113;
    --shadow-7: 0px 15px 30px -2px rgba(0, 0, 0, 0.1);

    --clr-neutral-700: hsl(216,65%,11%);
    --clr-neutral-100: hsl(0 0% 100%);
    --clr-accent-400: hsl(142, 90%, 61%);
}




/*Custom CSS*/
/*Home*/
.hero-container {
    position: relative;
    overflow: hidden;
}

/* Main background settings */
/*.hero-bg {*/
/*    background-color: #000; !* Black background *!*/
/*    position: relative;*/
/*    padding: 100px 0;*/
/*}*/
.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures the background image stays behind content */
    overflow: hidden; /* Prevents image overflow */
}

.section-bg-image {
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    object-fit: cover; /* Ensures the image covers the section */
    object-position: center; /* Align the image to the top */
}

.section-career-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures the background image stays behind content */
    overflow: hidden; /* Prevents image overflow */
}

.section-career-bg-image {
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    object-fit: cover; /* Ensures the image covers the section */
    object-position: 0 100%; /* Align the image to the top */
}

.section-footer1-bg-image {
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    object-fit: fill; /* Ensures the image covers the section */
    object-position: center; /* Align the image to the top */
}

/* Left SVG using :before */
/*.hero-container:before {*/
/*    content: "";*/
/*    background-image: url('../../assets/images/home/sec1.png'); !* Left SVG *!*/
/*    background-repeat: no-repeat;*/
/*    background-size: contain;*/
/*    width: 50vw; !* Adjust width as needed *!*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    left: 0vw; !* Adjust to align correctly *!*/
/*    top: 0;*/
/*    transform: scale(1.2); !* Adjust size scaling *!*/
/*    z-index: 1;*/
/*    filter: blur(0); !* Optional: add blur if needed *!*/
/*}*/

/*!* Right SVG using :after *!*/
/*.hero-container:after {*/
/*    content: "";*/
/*    background-image: url('../../assets/images/home-2.svg'); !* Right SVG *!*/
/*    background-repeat: no-repeat;*/
/*    background-size: contain;*/
/*    width: 50vw; !* Adjust width as needed *!*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    right: -20vw; !* Adjust to align correctly *!*/
/*    top: 0;*/
/*    transform: scale(1.2); !* Adjust size scaling *!*/
/*    z-index: 1;*/
/*    filter: blur(0); !* Optional: add blur if needed *!*/
/*}*/

/* Section Styles */
.home-section {
    padding: 50px 0;
}

/* Gradient Button */
.home-gradient-btn {
    display: inline-block;
    background: linear-gradient(90deg, #53CBE7, #9363F7);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-transform: uppercase;
}

.home-gradient-btn:hover {
    transform: scale(1.1);
}

/* Home Card */
.home-card {
    background-image: url("../../assets/images/home/appointment-card-border.png");
    background-size: 100% 100%;
    background-color: hsla(0,0%,100%,.05);
    /*border: 3px solid transparent;*/
    border-radius: 10px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: border-image-source 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.home-card:before {
    /*content: "";*/
    /*position: absolute;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*width: 100%;*/
    /*height: 3px;*/
    /*!*background: linear-gradient(90deg, #53CBE7, #9363F7);*!*/
    /*opacity: 0;*/
    /*transition: opacity 0.3s ease;*/
    content: "";
    background-image: url("../../assets/images/home/appointment-card-glow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -28%;
    left: 0;
    width: 100%;
    height: 120px;
    margin: 0 auto;
    animation: rotate 6s linear infinite;
}

/*.home-card:hover {*/
/*    box-shadow: 0 8px 20px rgba(83, 203, 231, 0.4), 0 8px 20px rgba(147, 99, 247, 0.4);*/
/*}*/

.home-card:hover:before {
    opacity: 1;
}

/* Card Content */
.card-content {
    display: flex;
    /*align-items: center;*/
}

.circle-image {
    width: 170px;
    height: auto;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.text-content {
    max-width: 300px;
}

.text-content h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.text-content p {
    font-size: 1rem;
    margin: 5px 0;
    color: #aaa;
}

.home-appointment-btn {
    display: inline-block;
    background: #9363F7;
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.home-appointment-btn i {
    margin-right: 5px;
}

.home-appointment-btn:hover {
    background: #53CBE7;
}

.rbt-btn.btn-gradient {
    color: var(--color-white);
    background-size: 300% 100%;
    background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary), var(--color-secondary), var(--color-primary));
}
.rbt-btn {
    padding: 0 26px;
    background: var(--color-primary);
    height: 45px;
    line-height: 2.8rem;
    color: var(--color-white);
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease-in-out;
    border-radius: 30px;
    border: 0 none;
    outline: none;
    text-decoration: none;
}
.rbt-btn.btn-gradient:hover {
    background-color: inherit;
    background-position: 102% 0;
    transition: all 0.4s ease-in-out;
}
.rbt-btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
    transform: translate3d(0, -2px, 0);
    box-shadow: var(--shadow-7);
}

.rbt-btn:hover.icon-hover .btn-icon i {
    opacity: 1;
    transform: translateX(7px);
}
.rbt-btn.icon-hover .btn-icon i {
    transition-timing-function: cubic-bezier(0, 0.71, 0.4, 1);
    display: inline-block;
    opacity: 0;
    transform: translateX(-7px);
    transition: opacity 0.25s, transform 0.5s;
    padding-left: 0;
}
.rbt-btn i {
    padding-left: 6px;
    display: inline-block;
    top: 2px;
    position: relative;
    font-size: 17px;
}
.rbt-btn.icon-hover .btn-icon {
    margin-inline-start: -7px;
    display: inline-block;
}

/*Logo Carousel*/
.logo-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    /*background-color: var(--color-black);*/
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 60px 0;
}

.logo-track {
    display: flex;
    animation: scroll 15s linear infinite;
    width: calc(250px * 16); /* Increased width to accommodate duplicate logos */
}

.logo-slide {
    flex: 0 0 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    opacity: 0.6;
}

.logo-slide img {
    max-width: 200px;
    max-height: 80px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-carousel:hover .logo-track {
    animation-play-state: paused;
}

.logo-slide:hover {
    transform: scale(1.1);
    opacity: 1;
}

.logo-slide:hover img {
    filter: grayscale(0%);
}

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

/*Offering Cards*/
/*.offering-container {*/
/*    position: relative;*/
/*    width: 1000px;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/
.offering-container .offering-cards {
    position: relative;
    width: 100%;
    height: 400px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.offering-container .offering-cards:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 20;
    pointer-events: none;
}

.offering-container .offering-cards:nth-child(1) {
    background: linear-gradient(339deg, #51eefa3d, #64509bb3);
}

.offering-container .offering-cards:nth-child(2) {
    background: linear-gradient(45deg, #ccff00, #09afff);
}

.offering-container .offering-cards:nth-child(3) {
    background: linear-gradient(45deg, #65549d, #54eaf8);
}

.offering-container .offering-cards .offering-imgBx {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.3s ease;
}

.offering-container .offering-cards:hover .offering-imgBx {
    opacity: 0;
}

.offering-container .offering-cards .offering-imgBx h2 {
    margin: 10px 0 0;
    padding: 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.offering-container .offering-cards .offering-content {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    color: #fff;
}

.offering-container .offering-cards:hover .offering-content {
    opacity: 1;
    visibility: visible;
}

.home-offer-card {
    background-color: #161516;
    padding: 10%;
    border-radius: 20px;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.home-offer-card:hover {
    box-shadow: 0 8px 20px rgba(83, 203, 231, 0.4), 0 8px 20px rgba(147, 99, 247, 0.4);
}

.home-offer-content {
    padding-left: 15%;
}

/*.home-offer-card-img{*/
/*    height: 265px!important;*/
/*}*/

/*End*/

/*Metrics*/
.bg-world-map {
    background: url("../../assets/images/world-map.png") no-repeat;
    /*background-size: 50%; !* Adjust the width to 120% *!*/
    /*background-position: center 75%; !* Push the background image 20% down *!*/
    height: 75vh;
}
/* Gradient Shadow for Cards */
.metric-card {
    background: hsl(0deg 0% 5.1%);
    border: none;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.metric-card h2 {
    font-size: 4rem;
    color: #4ef7ff;
}

.metric-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px 5px rgba(100, 68, 147, 0.8);
}

.metric-card::after {
    content: "";
    background-image: url('../../assets/images/appointment-card-gradient-glow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -106px;
    left: 0;
    width: 100%;
    height: 120px;
    margin: 0 auto;
}
/*End*/

/*Portfolio*/
.portfolio-card-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
    z-index: 20;
    box-shadow: 10px 10px 53px 0px rgba(0, 0, 0, 0.49);
}
.portfolio-card-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 10px 10px 53px 0px rgba(0, 0, 0, 0.49);
}
.portfolio-card-wrapper:hover .portfolio-card-image {
    filter: blur(1.4px);
    transform: scale(1.5);
    overflow: hidden;
    transition: all 0.3s linear;
    box-shadow: inset -6px -1px 32px 0px rgba(0, 0, 0, 0.75);
}
.portfolio-card-wrapper:hover .portfolio-card-bottom {
    transform: translate(0%, -50%);
    transition: all 0.8s ease;
    /*background-image: url("../../assets/images/card-3-blur-gradient.png");*/
}
.portfolio-card-top {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.portfolio-card-bottom {
    width: 100%;
    position: absolute;
    z-index: 20;
    display: flex; /* Changed from 'none' to 'flex' */
    flex-direction: column; /* Ensures vertical stacking of elements */
    justify-content: center;
    align-items: center;
    top: 100%;
    /*background-color: rgba(110, 122, 92, 0);*/
    padding: 20px;
    color: #fff;
    transform: translate(100%, -50%);
    opacity: 0; /* Initially hidden */
    transition: all 0.8s ease;
}

.portfolio-card-wrapper:hover .portfolio-card-bottom {
    transform: translate(0%, -50%);
    opacity: 1; /* Make visible on hover */
    /*background-image: url("../../assets/images/card-3-blur-gradient.png");*/
}


.portfolio-card-top-text {
    font-size: 25px;
    line-height: 40px;
    font-weight: bold;
    letter-spacing: 1px;
}
.portfolio-card-bottom-text {
    font-size: 15px;
}
.portfolio-card-button {
    position: relative;
    display: block;
    outline: none;
    cursor: pointer;
    margin-top: 25px;
    border: none;
    border-radius: 3px;
    background-color: #f8961e;
    color: #fff;
    padding: 5px 20px;
}

.card-3 .card-3-data {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
    z-index: 2;
    width: 90%;
    margin: 0 auto;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    padding: 20px;
    text-overflow: ellipsis;
}

.card-3 .card-3-data:before {
    content: "";
    background-image: url("../../assets/images/card-3-blur-gradient.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.card-3 .card-3-data .card-3-data-industry {
    background-image: linear-gradient(90deg, transparent 15%, rgba(0, 0, 0, .5)), linear-gradient(90deg, #644493 0, #4ef7ff);
    background-size: auto, auto;
    background-repeat: no-repeat;
    margin-left: 40px;
    width: 150px;
    text-align: center;
    padding: 5px;
    font-size: 1rem;
    position: absolute;
    top: -20px;
    left: -20px;
    border-radius: 8px;
}

.card-3 .card-3-data .card-3-data-title {
    font-weight: 700;
    white-space: pre-wrap;
}

.card-3 .card-3-data .card-3-data-status, .card-3 .card-3-data .card-3-data-tags {
    font-size: 1rem;
}

.card-3 .card-3-data .card-3-data-button {
    padding: 0 10px;
    font-size: .8rem;
    background-color: #fff;
    border-radius: 20px;
}

.card-3 .card-3-data .card-3-data-button span {
    background-image: linear-gradient(90deg, #53cbe7, #9363f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/*End*/

/* Style for the blogs image container */
/* Blogs Image Container */
.blogs-image-container {
    position: relative;
    overflow: hidden; /* Ensures content stays within bounds */
    border-radius: 10px; /* Optional: Rounded corners */
}

/* Image with Zoom Effect */
.blogs-overlay-image {
    width: 100%;
    display: block;
    transition: transform 0.3s ease-in-out;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.blogs-image-container:hover .blogs-overlay-image {
    transform: scale(1.1);
}

.blogs-overlay-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.blogs-overlay-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

.blogs-overlay-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 0; /* Ensures the image is above the overlay */
}


/* Card Data Positioned Over Image */
.card-4-data {
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 2;
    width: 90%;
    margin: 0 auto;
    font-size: 1.5rem;
    /*background: rgba(0, 0, 0, 0.6); !* Semi-transparent background *!*/
    color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box; /* Ensure proper padding within the div */
}

/* Category Label */
.card-4-data-category {
    display: inline-block;
    padding: 0 20px;
    font-size: 1rem;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 10px;
}

.card-4-data-category span {
    background-image: linear-gradient(90deg, #53cbe7, #9363f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Title Styling */
.card-4-data-title {
    font-size: 30px;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* CTA Button */
/*.card-4-data-cta {*/
/*    font-size: 1rem;*/
/*    text-align: center;*/
/*    padding: 10px 20px;*/
/*    background-color: #53cbe7;*/
/*    border-radius: 8px;*/
/*    color: #fff;*/
/*    cursor: pointer;*/
/*    display: inline-block;*/
/*    margin-top: 10px;*/
/*    transition: background-color 0.3s ease;*/
/*}*/

/*.card-4-data-cta:hover {*/
/*    background-color: #9363f7;*/
/*}*/

.contact-us-container {
    position: relative;
    padding: 20px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: hsla(0, 0%, 100%, .05);
    height: 80%;
    overflow: hidden;
    border-radius: 12px;
}

.contact-us-container:after, .contact-us-container:before {
    content: "";
    background-image: url('../../assets/images/home/contact-form-top-border-gradient.png');
    background-repeat: no-repeat;
    background-size: inherit;
    position: absolute;
    height: 100%;
    margin: 0 auto;
    transform: scaleX(-1) scaleY(-1);
    z-index: -1;
}

.contact-us-container:after {
    background-position: 100% 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.contact-us-container label {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.contact-us-container .drop-area, .contact-us-container input[type="text"], .contact-us-container input[type="email"], .contact-us-container textarea, .home-select {
    background-color: #000;
    border: none;
    outline: 0;
    padding: 10px;
    margin: 0 auto;
    box-sizing: border-box;
    background-image: url('../../assets/images/portfolio/input-gradient.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-origin: border-box;
    border-radius: 8px;
    width: 100%;
    color: #fff;
}

.contact-text-area-border-radius{
    border-radius: 22px!important;
    height: 150px;
}

.appointment-button-span {
    background-image: linear-gradient(90deg, #53cbe7, #9363f7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-signup input {
    background-color: #000;
    border: none;
    outline: 0;
    margin: 0 auto;
    box-sizing: border-box;
    background-image: url('../../assets/images/portfolio/input-gradient.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-origin: border-box;
    border-radius: 8px;
    width: 160%;
    padding: 10px 12% 10px 10px;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #000;
    color: #fff;
    transition: right 0.3s ease-in-out;
    padding: 20px;
    z-index: 1050;
    /*display: flex;*/
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.sidebar.open {
    right: 0;
}

.sidebar .nav-link {
    color: #fff;
    margin: 10px 0;
    font-size: 18px;
    text-decoration: none;
}

.sidebar .nav-link:hover {
    color: #ddd;
}

.close-btn {
    position: absolute;
    top: 0px;
    left: 20px;
    background: none;
    border: none;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
}

.navbar-toggler {
    border: none;
    background-color: transparent;
}

li.nav-item {
    padding-right: 10px;
}
/*End*/

/*About Us*/
.about-us-top35{
    top: 35% !important;
}

.about-us-logo{
    width: 250px;
}

.gradient-bg {
    background: linear-gradient(90deg, #4ef6fe, #984eff);
}

.gradient-text {
    background: linear-gradient(90deg, #4ef6fe, #984eff); /* Adjust the gradient colors and degree as needed */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Ensures the gradient aligns properly */
}

/*.about-section{*/
/*    height: 125vh;*/
/*}*/

.cube-image {
    transition: transform 1s ease-in-out; /* Smooth transition for rotation */
}

.cube-image:hover {
    transform: rotate(360deg); /* Rotate 360 degrees on hover */
}

.bg-theme{
    background: linear-gradient(90deg, rgba(83, 203, 231, 0.8), rgba(147, 99, 247, 0.8));
}

.about-section-why-content {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.about-section-why-img{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Container styles for hover */
.img-hover-container {
    position: relative;
    overflow: hidden; /* Ensure overlay doesn't exceed boundaries */
}

.img-hover-container img {
    transition: transform 0.3s ease-in-out; /* Optional zoom effect */
}

/*.img-hover-container:hover img {*/
/*    transform: scale(1.1); !* Slight zoom-in effect *!*/
/*}*/

/* Overlay styles */
.img-hover-container .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.img-hover-container:hover .img-overlay {
    opacity: 1; /* Show overlay on hover */
}

/* Content styles for alignment */
.about-section-why-content {
    z-index: 1; /* Ensure it stays above the overlay */
    position: relative;
}

/*What we do*/
/* General container styles */
.what-we-do-tabs-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

/* Tab buttons */
.what-we-do-tabs {
    display: flex;
    gap: 10px;
}

.what-we-do-tabs .tab {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Hover state */
.what-we-do-tabs .tab:hover {
    /*background: linear-gradient(45deg, #4ef6fe, #984eff);*/
    color: #fff;
}

/* Active state */
.what-we-do-tabs .tab.active {
    background: transparent; /* No solid background */
    font-weight: bold;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, #4ef6fe, #984eff);
    display: inline-block;
}

/* Tab content styles */
.what-we-do-tab-content {
    margin-top: 20px;
    padding: 20px;
    background: hsla(0, 0%, 100%, .07);
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.what-we-do-tab-content:before {
    content: ""; /* Ensures the pseudo-element is rendered */
    position: absolute; /* Required for positioning */
    background-image: url('../../assets/images/what_we_do/appointment-card-gradient-glow.svg'); /* Ensure the path is correct */
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -3%;
    left: 25%; /* Adjust to center the element if needed */
    width: 50%;
    height: 70px;
    z-index: -1; /* Ensures it appears behind the content */
}


.what-we-do-content {
    font-size: 18px;
    color: #333;
}

/*.what-we-do-container .what-we-do-tags {*/
/*    width: 50%;*/
/*    font-size: .8rem;*/
/*    text-align: center;*/
/*}*/

/*.what-we-do-container .what-we-do-tags .logo {*/
/*    background: #000;*/
/*    border: 5px solid #2f2f2f;*/
/*    background-image: linear-gradient(90deg, #53cbe7, #9363f7);*/
/*    -webkit-background-clip: text;*/
/*    background-clip: text;*/
/*    color: transparent;*/
/*    z-index: 9;*/
/*}*/
/*.what-we-do-container .what-we-do-tags .industry, .what-we-do-container .what-we-do-tags .logo {*/
/*    background: #2f2f2f;*/
/*    padding: 10px;*/
/*    border-radius: 20px;*/
/*    z-index: 5;*/
/*}*/

/*.what-we-do-container .what-we-do-tags .industry {*/
/*    margin-left: 20px;*/
/*    background-position: 100% 100%;*/
/*}*/

/*.what-we-do-container .what-we-do-tags .industry, .what-we-do-container .what-we-do-tags .logo {*/
/*    background: #2f2f2f;*/
/*    padding: 10px;*/
/*    border-radius: 20px;*/
/*    z-index: 5;*/
/*}*/


/* InsightComponent.css */
/*.h-7rem {*/
/*    height: 7rem;*/
/*}*/

.insight-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.insight-item {
    /*padding: 15px 30px;*/
    /*padding: 15px 12%;*/
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    position: relative;
    min-width: 120px;
    z-index: 1;
}

.insight-left {
    background-color: #171717;
    border-radius: 15px;
    border: 0px solid #444;
    border-right: none;
}

.insight-right {
    background-color: #444;
    border-radius: 20px;
    border: 0px solid #444;
    border-left: none;
    color: #fff;
}

.insight-center-line {
    width: 45px;
    height: 25px;
    background-color: #171717;
    position: relative;
    z-index: 0;
    border-radius: 25px;
    border: 2px solid #444;
    margin: 0 -8px;
    overflow: hidden;
}

.insight-center-line::before,
.insight-center-line::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10px;
    height: 100%;
    background-color: #171717;
}

.insight-center-line::before {
    left: -10px;
}

.insight-center-line::after {
    right: -10px;
}

.insight-image {
    max-width: 100%;
    height: auto;
}

.font18 {
    font-size: 18px;
}

.clr-white {
    color: white;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-item .portfolio-img {
    transition: transform 0.3s ease, border-radius 0.3s ease;
    border-radius: 4px; /* Default border-radius for the image */
}

.portfolio-item:hover .portfolio-img {
    /*transform: scale(1.1);*/
    border-radius: 5px; /* Adds 5px border-radius on hover */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.portfolio-item:hover .overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content {
    color: #fff;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item:hover .overlay-content {
    opacity: 1;
    transform: translateY(0);
}

.overlay-content h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.overlay-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.overlay-content .btn {
    font-size: 14px;
    padding: 8px 15px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease, color 0.3s ease;
}

.overlay-content .btn:hover {
    background: #000;
    color: #fff;
}

.insight-image{
    width: 100px;
}

.career-card:before {
    content: "";
    background-image: url("../../assets/images/career/card-border.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.offering-container{
    padding-top: 2%;
    margin-top: 0px;
}

.career-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 20px;
}

.career-step {
    text-align: center;
    margin: 0 10px;
}

.career-circle {
    width: 120px;
    height: 120px;
    border: 2px solid #3942d8;
    background: #11131a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(57, 66, 216, 0.5);
    margin: auto;
    position: relative;
}

.career-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(57, 66, 216, 0.8);
}

.career-step-number {
    font-size: 50px;
    font-weight: bold;
    color: #3942d8;
    text-shadow: 0 0 10px rgba(57, 66, 216, 0.8);
}

.career-step-text {
    font-size: 18px;
    margin-top: 10px;
    color: #d1d5e2;
}

.career-arrow {
    font-size: 40px;
    color: #3942d8;
    margin: 0 5px;
    display: flex;
    align-items: center;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(57, 66, 216, 0.7);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .career-arrow {
        display: none; /* Hide arrows on small screens */
    }

    .career-circle {
        width: 100px;
        height: 100px;
    }

    .career-step-number {
        font-size: 40px;
    }

    .career-step-text {
        font-size: 16px;
    }
}
/*End*/

.footer-signup input::placeholder {
    color: #fff;
}


/*Contact*/
.contact-box{
    padding: 8%;
    background-color: #353434f2;
    transition: transform 0.3s, box-shadow 0.3s;
}

/*.contact-box:hover {*/
/*    transform: scale(1.05);*/
/*    box-shadow: 0px 0px 15px 5px rgba(100, 68, 147, 0.8);*/
/*}*/

.contact-box:after {
    content: "";
    background-image: url('../../assets/images/appointment-card-gradient-glow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -17%;
    left: 0;
    width: 100%;
    height: 120px;
    margin: 0 auto;
}

.contact-badge-tag {
    position: absolute;
    top: 10px;
    right: 5%;
    background: linear-gradient(90deg, #53CBE7, #9363F7);
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    z-index: 1;
}

.contact-img-overlay-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
}

.contact-img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.contact-content {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
}

.contact-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.5;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.5s ease;
    z-index: 1;
}

.contact-img-overlay-container:hover .contact-img {
    transform: scale(1.1); /* Zoom-in effect */
    opacity: 0.6; /* Dim the image on hover */
}

.contact-img-overlay-container:hover .contact-overlay {
    opacity: 1; /* Show the overlay */
}

.contact-btn {
    position: relative; /* Needed for :after positioning */
    display: inline-block; /* Ensure dimensions can be applied */
    width: 200px; /* Set width for the button */
    padding: 10px 20px; /* Adjust padding as needed */
    text-align: center;
    text-decoration: none;
    border-radius: 4px; /* Optional rounded corners */
    z-index: 10; /* Ensures the button is above the pseudo-element */
}

.contact-btn:after {
    content: ""; /* Renders the pseudo-element */
    display: block; /* Ensures it takes up space */
    position: absolute; /* Relative to .contact-btn */
    bottom: -60px; /* Adjust as needed */
    left: 0;
    width: 100%; /* Matches the button width */
    height: 120px; /* Height for the pseudo-element */
    background-image: url('../../assets/images/contact_us/inverted-gradient-border.png'); /* Adjust path as needed */
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1; /* Ensures it appears behind the button */
}



.contact-box {
    background: #151515ad;
    padding: 4%;
    border-radius: 20px;
    border: 3px solid;
}

.gradient-hover {
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    /*font-weight: bold;*/
}

.gradient-hover:hover {
    background: linear-gradient(90deg, #4EF7FF, #9363F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*padding: 5px 10px; !* Add padding to make hover area larger *!*/
    border-radius: 5px; /* Optional: Adds rounded corners to the hover effect */
    /*font-weight: bold;*/
}
/*End*/

.home-founder-bg{
    background: #000;
    width: 20%;
    padding: 5px;
    border-radius: 20px;
    text-align: center;
    margin-top: 5% !important;
    margin: 0 auto;
}

.cursor {
    display: inline-block;
    animation: blink 0.7s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/*BG image*/
.section-logo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensures the background image stays behind content */
    overflow: hidden; /* Prevents image overflow */
}

.section-logo-bg-image {
    width: 100%; /* Full width */
    height: auto; /* Full height */
    object-fit: cover; /* Ensures the image covers the section */
    object-position: 0 220%; /* Align the image to the top */
}

.blog-category-box{
    background: #fff;
    width: 55%;
    border-radius: 20px;
}

.h-125vh{
    height: 125vh!important;
}

.footer-bg{
    background: url('../../assets/images/home/footer2.png');
    background-size: 100% 110%;
}

/*.portfolio-sec2-bg-clr{*/
/*    background: #0b0c10!important;*/
/*}*/

.card-bg-theme-clr{
    background: #0d0e0e!important;
}


.career-what-vc-card:after {
    content: "";
    background-image: url('../../assets/images/appointment-card-gradient-glow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    margin: 0 auto;
    bottom: -14%;
}

.career-what-vc-card2:after {
    content: "";
    background-image: url('../../assets/images/appointment-card-gradient-glow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    margin: 0 auto;
    top: -4%;
}

.career-cure-cube{
    background: #000;
    width: 50%;
    /* padding: 0%; */
    text-align: center;
    border-radius: 5px;
    float: right;
}

.career-interview-sales-bg{
    width: 62%;
    /* padding: 0%; */
    text-align: center;
    border-radius: 5px;
    float: right;
    margin-bottom: 0%;
}

.section-portfolio-bg-image, .section-contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
/*End*/

/*Blog*/
.blog-img-height{
    height: 400px;
}
/*End*/

/*Career*/
.career-card-img{
    border-top-left-radius: 45%;
    height: 550px;
}
/*End*/

.jobs-card-bg{
    background: linear-gradient(340deg, #D9FDFF 13%, #4EF7FF 100%);
}

.insights-bg{
    background-image: url("../../assets/images/what_we_do/border.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-origin: border-box;
}


/*Contact Form*/
.contact-form-head {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 1.5rem;
}

.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea, .home-select {
    background-color: #000;
    border: none;
    outline: 0;
    padding: 10px;
    margin: 0 auto;
    box-sizing: border-box;
    background-image: url('../../assets/images/portfolio/input-gradient.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-origin: border-box;
    border-radius: 8px;
    width: 100%;
    color: #fff;
}

.dropzone-container {
    margin: 20px 0;
}

.dropzone {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}


.dropzone-content p {
    margin: 0;
    color: #666;
}

.file-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.file-preview {
    position: relative;
    /*width: 100px;*/
}

.preview-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.pdf-preview{
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 10px;
    height:50%;
}
.modal-i-frame{
    width: 100%;
    height: 500px;
}

.remove-file-btn {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guidelines-section {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.modal-content {
    background: rgba(255, 255, 255, 0.1); /* Transparent white */
    backdrop-filter: blur(10px); /* Blur effect for glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border */
    color: white; /* Ensure text remains readable */
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-body {
    color: white; /* Adjust text color for contrast */
}

/* Glass effect for the modal backdrop */
.modal.fade.show {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    backdrop-filter: blur(5px); /* Slight blur on background */
    -webkit-backdrop-filter: blur(5px);
}
.btn-close{
    color: white !important;
}

/*End*/