
.services-section {
    background: #f0fff4;
    padding: 70px 0;
    font-family: 'Inter', sans-serif;
}

.services-section .container {
    max-width: 1200px;
}

.section-header {
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    color: #d53f8c;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(255,255,255,0.8);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid #fce7f3;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border-color: #cbd5e1;
}


.card-header-block {
    margin-bottom: 24px;
}

.icon-box-gradient {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover .icon-box-gradient {
    transform: rotate(-5deg) scale(1.05);
}

.card-blue .icon-box-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.4);
}
.card-blue .service-title {
    color: #1e3a8a;
}

.card-pink .icon-box-gradient {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    box-shadow: 0 8px 16px -4px rgba(236, 72, 153, 0.4);
}
.card-pink .service-title {
    color: #831843;
}

.card-purple .icon-box-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    box-shadow: 0 8px 16px -4px rgba(139, 92, 246, 0.4);
}
.card-purple .service-title {
    color: #5b21b6;
}

.service-tagline {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    display: block;
    color: #94a3b8;
}

.service-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.service-desc {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 28px;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    font-size: 13px;
    color: #334155;
    font-weight: 600;
    display: flex;
    align-items: center;
    background-color: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    border-left-width: 4px;
    transition: all 0.2s ease-out;
}

.card-blue .feature-list li {
    border-left-color: #3b82f6;
}
.card-pink .feature-list li {
    border-left-color: #ec4899;
}
.card-purple .feature-list li {
    border-left-color: #8b5cf6;
}

.feature-list li:hover {
    transform: translateX(5px);
    background-color: #fff;
    box-shadow: 0 4px 6px -2px rgba(0,0,0,0.05);
}

.card-blue .feature-list li:hover {
    border-color: #bfdbfe;
    border-left-color: #2563eb;
}
.card-pink .feature-list li:hover {
    border-color: #fbcfe8;
    border-left-color: #db2777;
}
.card-purple .feature-list li:hover {
    border-color: #ddd6fe;
    border-left-color: #7c3aed;
}

.feature-list li i {
    margin-right: 12px;
    font-size: 14px;
    color: #64748b;
}
.feature-list li:hover i {
    color: inherit;
}

.btn-action-fill {
    margin-top: auto;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #fff;
}

.card-blue .btn-action-fill {
    background: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}
.card-blue .btn-action-fill:hover {
    background: #2563eb;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.card-pink .btn-action-fill {
    background: #ec4899;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
}
.card-pink .btn-action-fill:hover {
    background: #db2777;
    box-shadow: 0 6px 16px rgba(236, 72, 153, 0.3);
}

.card-purple .btn-action-fill {
    background: #8b5cf6;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}
.card-purple .btn-action-fill:hover {
    background: #7c3aed;
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.btn-action-fill i {
    margin-left: 8px;
    transition: transform 0.2s;
}
.btn-action-fill:hover i {
    transform: translateX(3px);
}

.btn-action-fill:hover{
    color: #fff;
}

.teams-section {
    background: #ebf8ff;
    padding: 100px 0;
    border-top: 1px solid #f1f5f9;
}

.team-card {
    padding: 40px 32px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.team-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.08);
    transform: translateY(-8px);
    border-color: transparent;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248,250,252,0.8) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.team-card:hover::before {
    opacity: 1;
}

.team-content {
    position: relative;
    z-index: 1;
}

.team-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.team-card:hover .team-icon {
    transform: scale(1.1) rotate(-3deg);
}

.icon-enterprise {
    background: #eff6ff;
    color: #2563eb;
}
.team-card:hover .icon-enterprise {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
}

.icon-agency {
    background: #fdf2f8;
    color: #db2777;
}
.team-card:hover .icon-agency {
    background: #db2777;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(219, 39, 119, 0.3);
}

.icon-college {
    background: #f0fdf4;
    color: #16a34a;
}
.team-card:hover .icon-college {
    background: #16a34a;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.3);
}

.icon-edtech {
    background: #fff7ed;
    color: #ea580c;
}
.team-card:hover .icon-edtech {
    background: #ea580c;
    color: #fff;
    box-shadow: 0 10px 20px -5px rgba(234, 88, 12, 0.3);
}

.team-title {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.team-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.why-section {
    padding: 100px 0;
    background: #ebf8ff;
    overflow: hidden;
}

.why-swiper-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.why-split-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 20px;
    background: transparent;
}

.why-split-img {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.5s ease;
    height: 400px;
}

.why-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-split-card:hover .why-split-img img {
    transform: scale(1.05);
}

.why-split-content {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.why-split-number {
    font-size: 80px;
    font-weight: 900;
    color: black;
    line-height: 1;
    margin-bottom: -4px;
    position: relative;
    z-index: -1;
    opacity: 0.5;
}

.why-split-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
}

.why-split-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}

.why-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #6366f1, #ec4899);
    border-radius: 2px;
    margin-bottom: 24px;
}

.why-nav-btn {
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-nav-btn:hover {
    background: #6366f1;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.why-prev {
    left: -25px;
}
.why-next {
    right: -25px;
}

@media (max-width: 992px) {
    .why-split-card {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .why-split-img {
        width: 100%;
        height: 300px;
    }

    .why-split-content {
        text-align: center;
        padding-right: 0;
    }

    .why-split-number {
        margin-bottom: -10px;
        font-size: 60px;
    }

    .why-accent-line {
        margin: 0 auto 20px auto;
    }

    .why-nav-btn {
        display: none;
    }
}

.stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
    z-index: 1;
    flex: 1 1 200px;
    max-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.stat-icon {
    font-size: 24px;
    color: #475569;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-visual-wrapper {
    position: relative;
    padding: 20px;
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}



.hero-dashboard-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    margin-top: -150px;
}

.hero-live-badge {
    position: absolute;
    bottom: 50px;
    right: -20px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 26px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 40px -5px rgba(0,0,0,0.4);
    max-width: 320px;
    transition: transform 0.3s ease;
}

.hero-live-badge:hover {
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.2);
}

.pulse-indicator {
    position: relative;
    width: 12px;
    height: 12px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulseGreen 2s infinite;
    flex-shrink: 0;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.badge-content h5 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
    letter-spacing: -0.5px;
}

.badge-content p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .hero-visual-wrapper {
        margin-top: 60px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-live-badge {
        right: 0;
        bottom: -20px;
    }
}

.review-link {
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none !important;
}
.review-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.testimonial-section-new {
    padding: 100px 0;
    background-color: #f0fff4;
    position: relative;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-label {
    color: #8b5cf6;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
    background: rgba(139, 92, 246, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
}

.testimonial-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.testi-card-modern {
    background: #BBDEFB;
    border-radius: 24px;
    padding: 48px;
}

.testi-quote-icon {
    font-size: 40px;
    color: black;
    margin-bottom: 24px;
    display: inline-block;
}

.testi-text {
    font-size: 18px;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 32px;
}

.testi-author-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
    width: 100%;
}

.testi-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-info h5 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.testi-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    font-weight: 600;
}

.testi-nav-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.testimonial-swiper .swiper-slide {
    background: inherit;
}

.swiper-button-prev-one,
.swiper-button-next-one {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    border: 1px solid #e2e8f0;
    position: static !important;
    margin: 0 !important;
}

.swiper-button-prev-one:hover,
.swiper-button-next-one:hover {
    background: #8b5cf6;
    color: #fff;
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.swiper-button-prev-one::after, .swiper-button-next-one::after {
    display: none;
}


.hero-text-content{
    max-width: 100%;
}

.banner-wrapper.h-banner {
    padding: 100px 0;
}

.hero-text-content .sub-text {
    width: 475px;
}

.hero-reviews {
    justify-content: center;
}

.hero-reviews {
    margin-top: 100px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8fafc;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-details {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}
.faq-summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    list-style: none;
    color: #0f172a;
    font-size: 16px;
}
.faq-summary::-webkit-details-marker {
    display: none;
}
.faq-summary:after {
    content: "+";
    position: absolute;
    right: 20px;
    font-weight: bold;
    color: #6366f1;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.faq-details[open] .faq-summary:after {
    content: "-";
}
.faq-answer {
    padding: 0 20px 20px 20px;
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}


@media (max-width: 1400px) {
    .hero-reviews {
        margin-top: 20px;
    }
    .banner-wrapper.h-banner {
        padding: 150px 0;
    }
    .hero-dashboard-img {
        margin-top: -120px;
    }
}
@media (max-width: 1100px) {
    .hero-dashboard-img {
        margin-top: -70px;
    }
    .hero-reviews {
        margin-top: 0px;
    }
    .hero-live-badge {
        bottom: 10px;
    }
}


@media (max-width: 992px) {
    .banner-wrapper.h-banner {
        padding: 100px 0;
    }
}

@media (max-width: 525px) {
    .sub-text {
        width: 100% !important;
    }
}
