#my-assessment .sliderCard a.btn.btn-secondary{
    display: inherit;
}
.gradient-text {
    background: linear-gradient(90deg, #2563EB, #3B82F6, #60A5FA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-flow 5s ease-in-out infinite;
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animation for sections fading in on scroll */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Typing Text Animation */
.typ_text::after {
    content: '|';
    display: inline-block;
    animation: blink 0.7s infinite;
    font-weight: 400;
    color: #FBBF24; /* A yellow/gold color */
    margin-left: 4px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Swiper styles for logo carousel */
.swiper.logoSwiper {
    width: 100%;
    height: 100px;
    margin-top: 2rem;
}

.swiper-slide {
    font-size: 18px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logoSwiper .swiper-slide {
    height: 80px; /* Set a consistent height for the container */
}

.logoSwiper .swiper-slide img {
    display: block;
    max-width: 120px;   /* Set a max width */
    max-height: 100%;   /* Fit within the container's height */
    width: auto;        /* Let browser calculate width */
    height: auto;       /* Let browser calculate height */
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}
.logoSwiper .swiper-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
/* Added for smooth, linear transition */
.logoSwiper .swiper-wrapper {
    transition-timing-function: linear;
}
.image-3d {
    border-radius: 0.75rem; /* 12px */
    width: 100%;
    transition: transform 0.6s ease-out, box-shadow 0.6s ease-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.15);
}
.image-container-3d:hover .image-3d {
    transform: rotateY(10deg) rotateX(2deg) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

/* Why Futuremug Slider Styles */
.why-futuremug-slider {
    position: relative;
}

.why-futuremug-slider .swiper-slide {
    background: #ffffff;
    border-radius: 1rem; /* 16px */
    color: #1f2937; /* text-gray-800 */
    box-shadow: 0 4px 15px -2px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto; /* Allow height to be determined by content */
    display: flex;
    flex-direction: column;
    border-top: 4px solid #3B82F6; /* Blue accent */
    overflow: hidden;
}

.why-futuremug-slider .swiper-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px -8px rgba(0,0,0,0.15);
}

.why-futuremug-slider .swiper-slide ul {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    margin-top: 1rem;
    flex-grow: 1;
}

.why-futuremug-slider .swiper-slide ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    text-align: left;
    color: #4b5563; /* text-gray-600 */
}

.why-futuremug-slider .swiper-slide ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%233B82F6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='lucide lucide-check-circle-2'%3E%3Cpath d='M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.why-futuremug-slider .swiper-button-next,
.why-futuremug-slider .swiper-button-prev {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    transition: background-color 0.3s, transform 0.3s;
}
.why-futuremug-slider .swiper-button-next:hover,
.why-futuremug-slider .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.why-futuremug-slider .swiper-button-next::after,
.why-futuremug-slider .swiper-button-prev::after {
    font-size: 1.5rem;
}

.why-futuremug-slider .swiper-pagination {
    bottom: 20px !important;
    position: absolute;
}

.why-futuremug-slider .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.6);
    width: 12px;
    height: 12px;
    opacity: 1;
    transition: background-color 0.3s;
}

.why-futuremug-slider .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

.why-futuremug-slider.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom,8px);
    top: var(--swiper-pagination-top,auto);
    left: 0;
    width: 100%;
}

.why-futuremug-slider.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px);
}

.why-futuremug-slider .swiper-pagination {
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
}

/* Typing Text Animation */
.typ_text::after {
    content: '|';
    display: inline-block;
    animation: blink 0.7s infinite;
    font-weight: 400;
    color: #FBBF24; /* A yellow/gold color */
    margin-left: 4px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.m-lg-sl .subTitle{
    --tw-text-opacity: 1;
    color: rgb(191 219 254 / var(--tw-text-opacity, 1)) !important;
}
.logoSwiper .swiper-slide img {
    display: block;
    max-width: 120px;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}

@media (min-width: 768px) {
    .md\:pt-32 {
        padding-top: 12rem;
    }
}

@media (max-width: 768px) {
    .mh-sec{
        margin-top: 40px;
    }
}