.section-fade-up {
    position: relative;
    animation: sectionFade 0.85s ease-out both;
}

html {
    scroll-behavior: smooth;
}

.section-fade-up {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.section-fade-up.is-visible {
    animation: sectionFade 0.85s ease-out forwards;
}

.digital-hero-section {
    padding: 90px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    overflow: hidden;
}

.digital-hero-section .container {
    max-width: 1100px;
    padding: 0 24px;
}

.digital-hero-media {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    position: relative;
    animation: heroImageIn 1.1s ease forwards;
}

.digital-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    pointer-events: none;
}

.digital-hero-media img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.digital-hero-text {
    animation: heroTextIn 0.9s ease 0.15s forwards;
    opacity: 0;
}

.digital-hero-text .section-label-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(11, 106, 50, 0.08);
    margin-bottom: 18px;
}

.digital-hero-text .section-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.digital-hero-text .section-label-line {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.digital-hero-title {
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.digital-hero-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 900px;
}

.digital-hero-media,
.digital-hero-text {
    opacity: 0;
}

.digital-hero-section::before,
.digital-hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
    animation: floatCircle 14s ease-in-out infinite;
}

.digital-hero-section::before {
    width: 260px;
    height: 260px;
    top: -70px;
    right: -40px;
    background: radial-gradient(circle, rgba(11,106,50,0.35) 0%, transparent 70%);
}

.digital-hero-section::after {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: -80px;
    background: radial-gradient(circle, rgba(0,123,255,0.25) 0%, transparent 70%);
    animation-delay: 5s;
}

@media (max-width: 768px) {
    .digital-hero-section {
        padding: 70px 0 20px;
    }

    .digital-hero-media {
        border-radius: 20px;
        margin-bottom: 28px;
    }

    .digital-hero-description {
        font-size: 16px;
    }
}

.digital-services-overview {
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

.digital-services-overview .container {
    max-width: 1150px;
    padding: 0 20px;
}

.digital-overview-intro h2 {
    font-size: clamp(30px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.digital-overview-intro p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-secondary);
    max-width: 960px;
    margin-bottom: 32px;
}

.digital-services-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    background: #f2f6ff;
    border-radius: 32px;
    padding: 36px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    margin-bottom: 30px;
}

.services-card-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
}

.services-card-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.services-card-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--text-primary);
}

.service-checklist i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(11, 106, 50, 0.35);
}

.digital-overview-footer p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.digital-services-overview::before,
.digital-services-overview::after {
    content: '';
    position: absolute;
    border-radius: 24px;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, rgba(11,106,50,0.08), rgba(11,106,50,0));
    top: 40px;
    right: -120px;
    filter: blur(4px);
    animation: floatSquare 16s ease-in-out infinite;
    pointer-events: none;
}

.digital-services-overview::after {
    width: 170px;
    height: 170px;
    left: -90px;
    bottom: 30px;
    top: auto;
    animation-delay: 6s;
}

.choose-websolved-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.choose-websolved-section .container {
    max-width: 1200px;
    padding: 0 24px;
}

.choose-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    background: #f8fbfe;
    border-radius: 36px;
    padding: 48px;
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.08);
}

.choose-text h2 {
    font-size: clamp(30px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.choose-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 24px;
}

.choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-primary);
}

.choose-list i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.choose-visual img {
    width: 100%;
    border-radius: 28px;
    display: block;
    object-fit: cover;
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.12);
}

@media (max-width: 768px) {
    .digital-services-card {
        padding: 28px;
        gap: 24px;
    }

    .digital-overview-intro p,
    .digital-overview-footer p,
    .choose-text p {
        font-size: 16px;
    }

    .choose-content {
        padding: 32px;
    }
}

.choose-websolved-section::before,
.choose-websolved-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0,150,136,0.12), transparent 70%);
    top: -130px;
    left: 12%;
    animation: floatCircle 18s ease-in-out infinite;
    pointer-events: none;
}

.choose-websolved-section::after {
    width: 200px;
    height: 200px;
    right: 8%;
    left: auto;
    bottom: -110px;
    top: auto;
    animation-delay: 5s;
}

.digital-benefits-section {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #eefaf3 100%);
    position: relative;
    overflow: hidden;
}

.digital-benefits-section .container {
    max-width: 1200px;
    padding: 0 24px;
}

.digital-benefits-header {
    text-align: center;
    margin-bottom: 52px;
}

.digital-benefits-header h2 {
    font-size: clamp(32px, 3.8vw, 46px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.digital-benefits-header p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
    max-width: 860px;
    margin: 0 auto;
}

.digital-benefits-header::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    margin: 18px auto 0 auto;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 8px 20px rgba(11, 106, 50, 0.25);
}

.digital-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 28px 80px rgba(0, 53, 28, 0.08);
    border: 1px solid rgba(11, 106, 50, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 90px rgba(0, 53, 28, 0.12);
}

.benefit-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: radial-gradient(circle at top, var(--primary-light) 0%, var(--primary-color) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 20px 45px rgba(11, 106, 50, 0.35);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .digital-benefits-header p {
        font-size: 16px;
    }

    .benefit-card {
        padding: 30px;
    }
}

.digital-benefits-section::before,
.digital-benefits-section::after {
    content: '';
    position: absolute;
    border-radius: 24px;
    width: 240px;
    height: 240px;
    background: linear-gradient(135deg, rgba(11,106,50,0.08), rgba(255,255,255,0));
    top: 30px;
    right: -110px;
    animation: floatSquare 17s ease-in-out infinite;
    pointer-events: none;
}

.digital-benefits-section::after {
    width: 180px;
    height: 180px;
    left: -80px;
    bottom: 40px;
    top: auto;
    animation-delay: 7s;
}

.digital-cta-banner {
    padding: 60px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.digital-cta-banner .container {
    max-width: 1200px;
    padding: 0 24px;
}

.cta-banner-card {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 28px;
    padding: 48px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 30px 80px rgba(0, 53, 28, 0.25);
}

.cta-banner-text h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.cta-banner-text p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.cta-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border-radius: 16px;
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 53, 28, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 53, 28, 0.25);
}

@media (max-width: 768px) {
    .cta-banner-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px;
    }

    .cta-banner-btn {
        width: 100%;
        text-align: center;
    }
}

.digital-cta-banner::before,
.digital-cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(11,106,50,0.12), transparent 70%);
    top: 30px;
    right: 6%;
    animation: floatSquare 15s ease-in-out infinite;
    pointer-events: none;
}

.digital-cta-banner::after {
    width: 160px;
    height: 160px;
    left: 10%;
    animation-delay: 5s;
}

.digital-faq-section {
    padding: 70px 0 90px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.digital-faq-section .container {
    max-width: 1050px;
    padding: 0 24px;
}

.digital-faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.digital-faq-header h2 {
    font-size: clamp(32px, 3.4vw, 44px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.digital-faq-header p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.8;
}

.digital-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
    border-color: rgba(11, 106, 50, 0.3);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.faq-item summary {
    list-style: none;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-primary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    font-size: 18px;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 28px 24px 28px;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

@media (max-width: 768px) {
    .digital-faq-header p {
        font-size: 16px;
    }

    .faq-item summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-item summary i {
        align-self: flex-end;
    }
}

.digital-faq-section::before,
.digital-faq-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(0,150,136,0.12), transparent 70%);
    top: -100px;
    left: -60px;
    animation: floatCircle 18s ease-in-out infinite;
    pointer-events: none;
}

.digital-faq-section::after {
    width: 160px;
    height: 160px;
    right: -40px;
    left: auto;
    bottom: -80px;
    top: auto;
    animation-delay: 6s;
}

.digital-steps-section {
    padding: 60px 0 90px;
    background: linear-gradient(180deg, #fefefe 0%, #f1fbf5 100%);
    position: relative;
    overflow: hidden;
}

.digital-steps-section .container {
    max-width: 1240px;
    padding: 0 28px;
}

.digital-steps-header {
    text-align: left;
    margin-bottom: 40px;
}

[dir="rtl"] .digital-steps-header {
    text-align: right;
}

.digital-steps-header h2,
.digital-steps-title {
    font-size: clamp(32px, 3.8vw, 46px);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
}

[dir="rtl"] .digital-steps-header p {
    text-align: right;
}

.digital-steps-header p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.9;
    max-width: 900px;
    margin-bottom: 10px;
}

.digital-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 34px;
}

.digital-step-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 32px 34px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    box-shadow: 0 35px 90px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.03);
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(63, 81, 255, 0.35);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 16px;
    margin: 0;
}

@media (max-width: 768px) {
    .digital-steps-header p {
        font-size: 16px;
    }

    .digital-step-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 26px;
    }

    .digital-steps-grid {
        grid-template-columns: 1fr;
    }
}

.digital-steps-section::before,
.digital-steps-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11,106,50,0.12), transparent 70%);
    top: -140px;
    left: 15%;
    animation: floatCircle 20s ease-in-out infinite;
    pointer-events: none;
}

.digital-steps-section::after {
    width: 220px;
    height: 220px;
    right: 8%;
    left: auto;
    bottom: -120px;
    top: auto;
    animation-delay: 8s;
}

@media (max-width: 768px) {
    .digital-services-card {
        padding: 28px;
        gap: 24px;
    }

    .digital-overview-intro p,
    .digital-overview-footer p {
        font-size: 16px;
    }
}

@keyframes heroImageIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(1.03);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sectionFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatCircle {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes floatSquare {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, -10px) rotate(4deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

