.dropdown:hover .dropdown-menu {
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: #f8f9fa;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-100px) translateX(50px);
    }

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInScale 1s ease forwards;
}

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

.section-title h2 {
    font-size: 48px;
    color: rgb(10, 10, 10);
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.title-underline {
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
    margin-top: 15px;
    animation: expandWidth 1.5s ease forwards 0.5s;
    transform: scaleX(0);
}

/* Work Process Section */
.process-wrapper {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 80px;
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: slideUp 1s ease 0.3s forwards;
}

.process-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    font-size: 32px;
    color: #2c3e50;
}

.pulse-dot {
    width: 16px;
    height: 16px;
    background: #ff6b6b;
    border-radius: 50%;
    position: relative;
    animation: pulseRing 2s ease-in-out infinite;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulseRingSpread 2s ease-in-out infinite;
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes pulseRingSpread {
    0% {
        transform: scale(1);
        opacity: 1;
    }

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

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Path Line */
.path-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
    background-size: 200% 100%;
    animation: fadeIn 1s ease 1s forwards, gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 2;
    opacity: 0;
    animation: bounceIn 0.8s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: 1.2s;
}

.process-step:nth-child(2) {
    animation-delay: 1.4s;
}

.process-step:nth-child(3) {
    animation-delay: 1.6s;
}

.process-step:nth-child(4) {
    animation-delay: 1.8s;
}

.process-step:nth-child(5) {
    animation-delay: 2s;
}

.circle {
    width: 140px;
    height: 140px;
    border: 4px solid #667eea;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.circle:hover::before {
    opacity: 1;
}

.circle:hover {
    transform: translateY(-20px) scale(1.15) rotate(5deg);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
    border-color: #ff6b6b;
}

.circle:hover .step-number,
.circle:hover .step-text {
    color: white;
    transform: scale(1.1);
}

.step-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-text {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
    padding: 0 10px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

/* Services Section */
.services-wrapper {
    opacity: 0;
    animation: slideUp 1s ease 0.6s forwards;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h3 {
    font-size: 38px;
    color: #3737c1;
    font-weight: 700;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.services-subtitle {
    color: rgba(12, 11, 11, 0.9);
    font-size: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #667eea, #764ba2); */
    border-radius: 20px;
    transition: all 0.5s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.service-card:hover .icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.icon-wrapper i {
    font-size: 48px;
    color: white;
}

.service-name {
    font-size: 20px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

/* Animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }

    50% {
        transform: scale(1.05) translateY(-10px);
    }

    70% {
        transform: scale(0.9);
    }

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

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .process-container {
        flex-wrap: wrap;
        gap: 60px;
        justify-content: center;
    }

    .path-line {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}







/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Navbar */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
    /* border-radius: 57px; */
    /* margin-top: 6px; */
    height: 80px;
}

.navbar-brand img {
    height: 95px;
    transition: transform 0.3s ease;
    width: 100px;
    margin-top: -16px;
    margin-left: 85px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.btn-primary {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Navbar scroll effect */
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {

    background: linear-gradient(135deg, #1000ff, #1b00ff 50%, #00ffa1 100%);
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
    padding: 180px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.btn-outline-light {
    border: 2px solid white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    animation: fadeInUp 1s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* B2B Partnership Section */
.b2b-partnership {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;

}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 1.1rem;
}

.partnership-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.partnership-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.partnership-card:hover .partnership-icon {
    transform: rotate(5deg) scale(1.1);
}

.partnership-icon i {
    font-size: 2.5rem;
    color: white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    animation: pulse 1s infinite;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

/* Service Section */
.rv-37-service {
    padding: 80px 0;
    background: white;
}

.rv-37-service-item {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
    border: 2px solid transparent;
}

img,
svg {
    vertical-align: middle;
    width: 100%;
    /* height: 100%; */

    border-radius: 12px;
}

.rv-37-service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.rv-37-service-item__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.rv-37-service-item:hover .rv-37-service-item__icon {
    animation: float 2s ease-in-out infinite;
}

.rv-37-service-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rv-37-service-item__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.rv-37-service-item__text {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.rv-37-service-item__more {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.rv-37-service-item__more:hover {
    transform: translateX(5px);
    color: #764ba2;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats-card {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Benefits Section */
.rv-31-abt-2 {
    padding: 80px 0;
}

.rv-31-sec-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rv-31-abt-info-1__item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.rv-31-abt-info-1__item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.rv-31-abt-info-1__item-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.rv-31-abt-info-1__item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.rv-31-abt-info-1__item-text h6 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Accordion */
.accordion-button {
    background: white;
    color: #333;
    font-weight: 600;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    /* padding: 60px 0 30px; */
    padding: 60px 0 30px;
}

.footer h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;

}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem !important;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* REMOVE this wrong selector:
                   .section-title h2 {
                        font-size: 36px;
                   }
                */

    .process-wrapper {
        padding: 40px 20px;
    }

    .circle {
        width: 120px;
        height: 120px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mobile-margin-fix {
        margin-top: -53px !important;
    }

    #oop {
        padding: 51px 0 320px;

    }

    #navbarNav {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        background: #ffffff;
        margin-left: 22%;
    }

    #new {
        margin-top: -22px !important;
        margin-left: -103px;
    }

    #work {
        margin-right: -98px !important;
    }
}

css
/* Mobile Footer Styles */


/* Extra small devices (phones, less than 576px) */
/* @media (max-width: 576px) {
                .footer {
                    padding: 25px 10px 15px !important;
                }

                .footer .col-lg-4,
                .footer .col-lg-2,
                .footer .col-lg-3,
                .footer .col-md-6 {
                    padding: 0 10px !important;
                    margin-bottom: 20px !important;
                }

                .footer img {
                    height: 55px !important;
                    width: 60px !important;
                }

                .footer p {
                    font-size: 13px !important;
                }

                .footer h5 {
                    font-size: 16px !important;
                    margin-bottom: 12px !important;
                }

                .footer ul li {
                    font-size: 13px !important;
                    margin-bottom: 8px !important;
                }

                .footer ul li a,
                .footer ul li i {
                    font-size: 13px !important;
                }

                .footer .social-links a {
                    margin: 0 6px !important;
                    font-size: 15px !important;
                }




            } */



.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}




@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    background: white;
    border-radius: 20px;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee-track {
    display: flex;
    animation: scroll 10s linear infinite;
    will-change: transform;
}

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

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

    100% {
        transform: translateX(-50%);
    }
}

.bank-card {
    flex: 0 0 auto;
    width: 280px;
    margin: 0 30px;
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.bank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.5s;
}

.bank-card:hover::before {
    left: 100%;
}

.bank-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #f3f3f3 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
}

.bank-card:hover .logo-container {
    transform: rotate(360deg);
    background: linear-gradient(135deg, #ffffff 0%, #fefdff 100%);
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.3);
    /* transition: filter 0.4s
            ease; */
    background: white;
}

.bank-card:hover .logo-container img {
    filter: grayscale(0) brightness(1.2);
}

.bank-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    transition: color 0.3s ease;
}

.bank-card:hover .bank-name {
    color: #667eea;
}

.trust-badge {
    text-align: center;
    margin-top: 50px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.trust-badge p {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.trust-badge .stars {
    font-size: 1.5rem;
    margin-top: 10px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}
