/* Hero Section Styles */
.carousel-fade .carousel-item {
    transition: opacity 1.5s ease-in-out;
    /* Adjust the duration as needed */
}

.hero_carousel {
    width: 50.5rem;
    /* Adjusted to a straightforward value */
    max-width: 100%;
}

.section_category .active {
    color: var(--black-clr);
    font-weight: 500;
    border-bottom-style: solid;
    border-bottom-width: 3px;
    border-bottom-color: var(--primary-clr);
}

.sectionCategoryItem {
    cursor: pointer;
    text-wrap: nowrap !important;
}

.hero_section_video {
    /* height: 400px; */
    object-fit: contain;
    margin-bottom: 2rem;
}

@media all and (max-width: 768px) {
    .hero_section_video {
        height: auto;
    }
}

#search-input {
    font-size: 16px;
    border: none;
    outline: none;
}

.custom_round_10 {
    border-radius: 2rem;
}

/* Stats Section Styles */
.stats-wrapper {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 30px 10px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.stat-item h3 {
    color: #d62828;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.stat-item:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.goal-tab {
    background: #ffffff;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    color: #212529;
    font-weight: 500;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
}

.goal-tab:hover {
    background: #e43434;
    color: white !important;
    border-color: #ff6b6b;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

/* Why Choose Us Section */
@keyframes wcuFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wcuSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes wcuShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes wcuPulseGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0.08);
    }
}

@keyframes wcuFloatBadge {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes wcuRipple {
    0% {
        transform: scale(0);
        opacity: 0.5;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

#why-choose-us {
    --wcu-text-main: #18181b;
    --wcu-text-sub: #52525b;
    --wcu-device-width: 480px;
    --wcu-device-height: 640px;
}

#why-choose-us * {
    box-sizing: border-box;
}

#why-choose-us .main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    max-width: 1400px;
    width: 100%;
    font-family: 'DM Sans', system-ui, sans-serif;
    background-image: radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.05) 0%, transparent 50%);
    min-height: 100vh;
    color: var(--wcu-text-main);
    animation: wcuFadeUp 0.7s ease both;
}

#why-choose-us .device-wrapper {
    flex-shrink: 0;
    width: min(92vw, var(--wcu-device-width));
    position: relative;
    z-index: 10;
    animation: wcuSlideInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#why-choose-us .tablet-frame {
    width: 100%;
    max-width: var(--wcu-device-width);
    aspect-ratio: 3 / 4;
    height: auto;
    background: linear-gradient(145deg, #2a2a2e, #1a1a1e);
    border-radius: 40px;
    box-shadow:
        0 0 0 1.5px #3c3c3e,
        0 0 0 3px #000,
        0 60px 120px -20px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    padding: 12px;
}

#why-choose-us .tablet-screen {
    width: 100%;
    height: 100%;
    background-color: #000;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

#why-choose-us .tablet-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

#why-choose-us .tablet-screen img.fading {
    opacity: 0.6;
    transform: scale(1.06);
    filter: blur(8px);
}

#why-choose-us .dynamic-island {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 32px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#why-choose-us .dynamic-island:hover {
    width: 140px;
}

#why-choose-us .camera-lens {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 35% 35%, #2a2a2a, #111);
    border-radius: 50%;
    box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.15), 0 0 0 1px #333;
}

#why-choose-us .home-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 5px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
    z-index: 30;
}

#why-choose-us .glass-overlay {
    position: absolute;
    bottom: 36px;
    left: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 6px 28px 6px 28px;
    padding: 26px 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

#why-choose-us .glass-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 10px;
    animation: wcuFloatBadge 3s ease-in-out infinite;
}

#why-choose-us .glass-overlay h2 {
    margin: 0 0 6px 0;
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
    line-height: 1.1;
    transition: all 0.3s ease;
}

#why-choose-us .glass-overlay span {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
}

#why-choose-us .blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 720px;
}

#why-choose-us .feature-block:nth-child(1) {
    animation: wcuFadeUp 0.6s 0.15s ease both;
}

#why-choose-us .feature-block:nth-child(2) {
    animation: wcuFadeUp 0.6s 0.25s ease both;
}

#why-choose-us .feature-block:nth-child(3) {
    animation: wcuFadeUp 0.6s 0.35s ease both;
}

#why-choose-us .feature-block:nth-child(4) {
    animation: wcuFadeUp 0.6s 0.45s ease both;
}

#why-choose-us .feature-block:nth-child(5) {
    animation: wcuFadeUp 0.6s 0.55s ease both;
}

#why-choose-us .feature-block:nth-child(6) {
    animation: wcuFadeUp 0.6s 0.65s ease both;
}

#why-choose-us .feature-block {
    background: #fff;
    padding: 22px 18px;
    cursor: pointer;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        background 0.3s ease;
    border: 1px solid #e9e9ec;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    overflow: hidden;
    border-radius: 6px 28px 6px 28px;
}

#why-choose-us .feature-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.5) 50%, transparent 60%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
}

#why-choose-us .feature-block:hover::before {
    opacity: 1;
    animation: wcuShimmer 0.7s ease forwards;
}

#why-choose-us .ripple-dot {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: wcuRipple 0.6s ease-out forwards;
    pointer-events: none;
    z-index: 5;
}

#why-choose-us .icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 2;
}

#why-choose-us .text-content {
    z-index: 2;
    width: 100%;
}

#why-choose-us .feature-block h3 {
    margin: 0 0 5px 0;
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wcu-text-main);
    transition: color 0.3s ease;
    line-height: 1.2;
}

#why-choose-us .feature-block p {
    margin: 0;
    font-size: 1rem;
    color: var(--wcu-text-sub);
    line-height: 1.5;
    font-weight: 400;
}

#why-choose-us .block-arrow {
    position: absolute;
    bottom: 14px;
    right: 16px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

#why-choose-us .feature-block:hover .block-arrow {
    opacity: 1;
    transform: translateX(0);
}

#why-choose-us .feature-block:hover {
    transform: translateY(-6px) scale(1.02);
}

#why-choose-us .feature-block:hover .icon-box {
    transform: rotate(-8deg) scale(1.12);
}

#why-choose-us .feature-block:hover .icon-box i{
    color: #fff;
}

#why-choose-us .feature-block.active-block {
    animation: wcuPulseGlow 2s ease infinite;
}

#why-choose-us .variant-red {
    border-top: 3px solid #ef4444;
    background: linear-gradient(160deg, #fef2f2, #fff);
}

#why-choose-us .variant-red .icon-box {
    background: #fee2e2;
    color: #ef4444;
}

#why-choose-us .variant-red .block-arrow {
    background: #ef4444;
    color: #fff;
}

#why-choose-us .variant-red:hover {
    background: linear-gradient(160deg, #fee2e2, #fff8f8);
    box-shadow: 0 18px 40px -8px rgba(239, 68, 68, 0.22);
}

#why-choose-us .variant-red:hover .icon-box {
    background: #ef4444;
    color: #fff;
}

#why-choose-us .variant-red:hover h3 {
    color: #b91c1c;
}

#why-choose-us .variant-maroon {
    border-top: 3px solid #7f1d1d;
    background: linear-gradient(160deg, #fff5f5, #fff);
}

#why-choose-us .variant-maroon .icon-box {
    background: #fecaca;
    color: #7f1d1d;
}

#why-choose-us .variant-maroon .block-arrow {
    background: #7f1d1d;
    color: #fff;
}

#why-choose-us .variant-maroon:hover {
    background: linear-gradient(160deg, #fed7d7, #fff5f5);
    box-shadow: 0 18px 40px -8px rgba(127, 29, 29, 0.22);
}

#why-choose-us .variant-maroon:hover .icon-box {
    background: #7f1d1d;
    color: #fff;
}

#why-choose-us .variant-maroon:hover h3 {
    color: #450a0a;
}

#why-choose-us .variant-orangered {
    border-top: 3px solid #ea580c;
    background: linear-gradient(160deg, #fff7ed, #fff);
}

#why-choose-us .variant-orangered .icon-box {
    background: #ffedd5;
    color: #ea580c;
}

#why-choose-us .variant-orangered .block-arrow {
    background: #ea580c;
    color: #fff;
}

#why-choose-us .variant-orangered:hover {
    background: linear-gradient(160deg, #fed7aa, #fff9f5);
    box-shadow: 0 18px 40px -8px rgba(234, 88, 12, 0.2);
}

#why-choose-us .variant-orangered:hover .icon-box {
    background: #ea580c;
    color: #fff;
}

#why-choose-us .variant-orangered:hover h3 {
    color: #9a3412;
}

#why-choose-us .variant-rose {
    border-top: 3px solid #e11d48;
    background: linear-gradient(160deg, #fff1f2, #fff);
}

#why-choose-us .variant-rose .icon-box {
    background: #ffe4e6;
    color: #e11d48;
}

#why-choose-us .variant-rose .block-arrow {
    background: #e11d48;
    color: #fff;
}

#why-choose-us .variant-rose:hover {
    background: linear-gradient(160deg, #fecdd3, #fff4f5);
    box-shadow: 0 18px 40px -8px rgba(225, 29, 72, 0.2);
}

#why-choose-us .variant-rose:hover .icon-box {
    background: #e11d48;
    color: #fff;
}

#why-choose-us .variant-rose:hover h3 {
    color: #9f1239;
}

#why-choose-us .variant-crimson {
    border-top: 3px solid #dc2626;
    background: linear-gradient(160deg, #fef2f2, #fff);
}

#why-choose-us .variant-crimson .icon-box {
    background: #fecaca;
    color: #dc2626;
}

#why-choose-us .variant-crimson .block-arrow {
    background: #dc2626;
    color: #fff;
}

#why-choose-us .variant-crimson:hover {
    background: linear-gradient(160deg, #fca5a5, #fef5f5);
    box-shadow: 0 18px 40px -8px rgba(220, 38, 38, 0.2);
}

#why-choose-us .variant-crimson:hover .icon-box {
    background: #dc2626;
    color: #fff;
}

#why-choose-us .variant-crimson:hover h3 {
    color: #991b1b;
}

#why-choose-us .variant-coral {
    border-top: 3px solid #f43f5e;
    background: linear-gradient(160deg, #fff1f2, #fff);
}

#why-choose-us .variant-coral .icon-box {
    background: #ffe4e6;
    color: #f43f5e;
}

#why-choose-us .variant-coral .block-arrow {
    background: #f43f5e;
    color: #fff;
}

#why-choose-us .variant-coral:hover {
    background: linear-gradient(160deg, #fda4af, #fff4f5);
    box-shadow: 0 18px 40px -8px rgba(244, 63, 94, 0.2);
}

#why-choose-us .variant-coral:hover .icon-box {
    background: #f43f5e;
    color: #fff;
}

#why-choose-us .variant-coral:hover h3 {
    color: #881337;
}

@media (max-width: 992px) {
    #why-choose-us .main-container {
        flex-direction: column;
        gap: 44px;
        padding: 16px 0;
    }
}

@media (max-width: 1200px) {
    #why-choose-us .main-container {
        padding: 20px 0;
    }

    #why-choose-us .device-wrapper {
        order: -1;
        width: min(78vw, 440px);
        transform: none;
    }

    #why-choose-us .blocks-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 94%;
    }
}

@media (max-width: 680px) {
    #why-choose-us .blocks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #why-choose-us .device-wrapper {
        width: min(90vw, 380px);
        transform: none;
    }

    #why-choose-us .tablet-frame {
        border-radius: 30px;
        padding: 10px;
    }

    #why-choose-us .tablet-screen {
        border-radius: 22px;
    }

    #why-choose-us .glass-overlay {
        left: 16px;
        right: 16px;
        bottom: 24px;
        padding: 20px 18px;
    }
}

@media (max-width: 480px) {
    #why-choose-us .device-wrapper {
        width: min(94vw, 330px);
    }

    #why-choose-us .tablet-frame {
        border-radius: 24px;
        padding: 8px;
    }

    #why-choose-us .tablet-screen {
        border-radius: 18px;
    }

    #why-choose-us .dynamic-island {
        width: 92px;
        height: 26px;
        top: 10px;
    }

    #why-choose-us .dynamic-island:hover {
        width: 104px;
    }

    #why-choose-us .home-indicator {
        width: 96px;
        height: 4px;
        bottom: 8px;
    }

    #why-choose-us .glass-overlay {
        left: 12px;
        right: 12px;
        bottom: 20px;
        padding: 16px 14px;
    }

    #why-choose-us .glass-overlay h2 {
        font-size: 1.1rem;
    }

    #why-choose-us .glass-overlay span {
        font-size: 0.8rem;
    }

    #why-choose-us .blocks-grid {
        grid-template-columns: 1fr;
    }
}


/* footer form  */

.connect-banner {
    position: relative;
    background: linear-gradient(90deg, #f70057 0%, #7b2ff7 100%);
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
    /* min-height: 122px; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.connect-banner::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 280px;
    height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.connect-banner::after {
    content: "";
    position: absolute;
    right: 30%;
    top: 25px;
    width: 180px;
    height: 80px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 2px, transparent 2px);
    background-size: 16px 16px;
}

.icon-circle {
    width: 82px;
    height: 82px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.icon-circle i {
    font-size: 34px;
    color: #f70057;
}

.banner-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.right-icons {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.85);
    opacity: 0.6;
}

.mail-icon {
    font-size: 48px;
    position: absolute;
    right: 180px;
    top: -10px;
    transform: rotate(-12deg);
}

.plane-icon {
    font-size: 58px;
    position: absolute;
    right: 0;
    top: -40px;
    transform: rotate(20deg);
}

.star-1,
.star-2 {
    position: absolute;
    font-size: 18px;
}

.star-1 {
    right: 120px;
    top: -45px;
}

.star-2 {
    right: 30px;
    top: 45px;
}

.dashed-line {
    position: absolute;
    width: 150px;
    height: 70px;
    border-top: 2px dashed rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    right: 70px;
    top: 15px;
    transform: rotate(10deg);
}

@media (max-width: 991px) {
    .right-icons {
        display: none;
    }

    .connect-banner {
        padding: 30px;
    }

    .banner-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .connect-banner {
        padding: 25px 20px;
    }

    .icon-circle {
        width: 65px;
        height: 65px;
    }

    .icon-circle i {
        font-size: 26px;
    }

    .banner-title {
        font-size: 1.35rem;
    }

    .banner-text {
        font-size: 0.95rem;
    }
}

.demo-heading {
    font-size: 16px;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 14px;
    display: block;
}

.demo-box {
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.demo-check {
    display: flex;
    align-items: center;
    width: 100%;
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #ff4f87;
    border-radius: 2px;
    margin-top: 0 !important;
    margin-right: 12px;
    cursor: pointer;
    background-color: #fff;
}

.custom-checkbox:checked {
    background-color: #ff4f87;
    border-color: #ff4f87;
}

.demo-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin: 0;
    cursor: pointer;
    width: 100%;
}

.demo-box:hover {
    border-color: #ff4f87;
}

@media (max-width: 768px) {
    .demo-box {
        min-height: auto;
        padding: 14px;
    }

    .demo-text {
        font-size: 14px;
    }
}


.trust-box {
    background: #f7f6fb;
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 96px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(111, 66, 193, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 20px;
    color: #7c3aed;
}

.trust-item h6 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #2d2d2d;
}

.divider {
    width: 1px;
    height: 48px;
    background: #e2e2e2;
    margin: 0 10px;
}

.submit-btn {
    width: 100%;
    height: 72px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #ff005d 0%, #5f00ff 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(111, 66, 193, 0.18);
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.privacy-text {
    margin-top: 14px;
    text-align: center;
    color: #8a8a8a;
    font-size: 12px;
    font-weight: 500;
}

.privacy-text i {
    margin-right: 8px;
    color: #9a9a9a;
}

.contact-sidebar {
    background: linear-gradient(180deg, #fff8fc 0%, #f9f6ff 100%);
    padding: 32px;
    border-radius: 20px;
    max-width: 420px;
    font-family: 'Inter', sans-serif;
    transition: all 0.4s ease;
}

/* Info Card Hover */
.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 30px rgba(236, 52, 126, 0.06);
    border: 1px solid #f3edf4;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 31, 115, 0.15);
    border-color: rgba(255, 31, 115, 0.2);
}

.info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 31, 115, 0.03),
            rgba(124, 58, 237, 0.04));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover::after {
    opacity: 1;
}

/* Icon Animation */
.icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #fff1f7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 51, 122, 0.15);
    transition: all 0.45s ease;
    position: relative;
    z-index: 2;
}

.info-card:hover .icon-box {
    transform: rotate(8deg) scale(1.08);
    box-shadow: 0 16px 35px rgba(255, 31, 115, 0.25);
    background: linear-gradient(135deg, #fff0f6, #fdf5ff);
}

.icon-box i {
    font-size: 30px;
    color: #ff1f73;
    transition: all 0.4s ease;
}

.info-card:hover .icon-box i {
    transform: scale(1.12);
    color: #e6005c;
}

/* Text Hover */
.info-content {
    position: relative;
    z-index: 2;
}

.info-content h4,
.info-content p,
.info-content a,
.info-content small {
    transition: all 0.35s ease;
}

.info-card:hover h4 {
    color: #ff1f73;
}

.info-card:hover a {
    color: #d90057;
}

/* Social Hover */
.social-icons a {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff2f78;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
}


.social-icons a:hover {
    transform: translateY(-8px) scale(1.08);
    background: linear-gradient(135deg, #ff2f78, #7c3aed);
    color: white;
    box-shadow: 0 15px 35px rgba(255, 47, 120, 0.25);
}

/* Promo Card Hover */
.promo-card {
    background: linear-gradient(135deg, #fff 0%, #fff7fb 100%);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid #f2e9f1;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.12);
}

.promo-card:hover .promo-image img {
    transform: scale(1.08) rotate(-4deg);
}

.promo-image img {
    width: 140px;
    transition: all 0.5s ease;
}

/* Badge Hover */
.status-badge {
    transition: all 0.35s ease;
}

.info-card:hover .status-badge {
    transform: scale(1.06);
    box-shadow: 0 8px 18px rgba(31, 169, 45, 0.15);
}

.contact-sidebar {
    background: linear-gradient(180deg, #fff8fc 0%, #f9f6ff 100%);
    padding: 32px;
    border-radius: 20px;
    max-width: 420px;
    height: 100%
}

.info-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #ff0f6d, #ff4d94);
    border-radius: 12px;
}

.icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #fff1f7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 51, 122, 0.15);
}

.icon-box i {
    font-size: 30px;
    color: #ff1f73;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #222;
}

.info-content p {
    font-size: 12px;
    line-height: 1.7;
    color: #4f4f4f;
    margin-bottom: 4px;
}

.info-content a {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #ff2f78;
    text-decoration: none;
    margin-bottom: 6px;
}

.info-content small {
    color: #7d7d7d;
    font-size: 15px;
}

.status-badge {
    display: inline-block;
    margin-top: 10px;
    background: #effcef;
    color: #1fa92d;
    padding: 8px 14px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
}

.divider-line {
    height: 1px;
    background: #e7dfe8;
    margin: 30px 0;
}

.social-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
}

.promo-card {
    background: linear-gradient(135deg, #fff 0%, #fff7fb 100%);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid #f2e9f1;
}

.promo-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #1e1e1e;
}

.promo-content span {
    color: #ff2f78;
}

.promo-content p {
    margin-top: 12px;
    font-size: 16px;
    color: #6d6d6d;
}

.promo-image img {
    width: 140px;
}

@media (max-width: 1400px) {
    .trust-item {
        gap: 8px;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
    }

    .trust-icon i {
        font-size: 18px;
    }

    .trust-box {
        padding: 10px;
        min-height: auto;
    }

    .submit-btn {
        height: auto;
        padding: 12px;
    }

    .contact-sidebar {
        padding: 20px;
    }

    .social-icons a {
        width: 42px;
        height: 42px;
    }

    .social-icons {
        gap: 10px;
    }
}

@media (max-width: 991px) {
    .trust-box {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .divider {
        display: none;
    }

    .submit-btn {
        height: 64px;
        font-size: 22px;
    }
}
/* Testimonial Section */
#testimonial-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

#testimonial-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-clr-rgb), 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

#testimonial-section #testimonial {
    gap: 15px;
}

#testimonial-section #testimonial .nav-item {
    flex: 0 1 auto;
    min-width: 160px;
}

#testimonial-section #testimonial .nav-link {
    background: rgba(255, 255, 255, 0.9);
    color: var(--black-clr) !important;
    border: 1px solid #eee !important;
    padding: 10px 30px;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#testimonial-section #testimonial .nav-link i {
    font-size: 1.3rem;
}

#testimonial-section #testimonial .nav-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-clr) !important;
}

#testimonial-section #testimonial .nav-link.active {
    background: var(--primary-clr);
    color: var(--white-clr) !important;
    border-color: var(--primary-clr) !important;
    box-shadow: 0 12px 30px rgba(214, 39, 54, 0.35);
}

#testimonial-section .glass-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

#testimonial-section .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    height: 100%;
    transition: transform 0.6s ease;
}

#testimonial-section .glass-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    flex: 1;
    height: 100%;
    padding: 25px;
    backdrop-filter: blur(8px);
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.55),
            rgba(0, 0, 0, 0.35));
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#testimonial-section .glass-overlay .testimonial-text {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
}

#testimonial-section .glass-overlay .user {
    display: flex;
    align-items: center;
}

#testimonial-section .glass-overlay .user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    object-fit: cover;
}

#testimonial-section .glass-overlay .user-name {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

#testimonial-section .glass-overlay .user-role {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

#testimonial-section .glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(var(--primary-clr-rgb), 0.1);
}

#testimonial-section .glass-card:hover .card-bg {
    transform: scale(1.08);
}

#testimonial-section .splideTestimonial .splide__track {
    padding-top: 20px;
    padding-bottom: 30px;
    margin-top: -20px;
    margin-bottom: -30px;
}

#testimonial-section .splide__pagination__page.is-active {
    background: var(--primary-clr) !important;
    transform: scale(1.4);
}
