/* ===== CSS RESET & BASE STYLES ===== */
:root {
    --primary-purple: #a97bff;
    --dark-purple: #392455;
    --light-purple: #925FD6;
    --purple-gradient: #8B5CF6;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --white: #fff;
    --transition-smooth: all 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.ms-header {
    padding: 0;
}

.ms-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 0 !important;
}

/* ===== CTA BUTTONS ===== */
.cta-btn-digi-estate-header,
.cta-button-digi-estate {
    background: var(--primary-purple);
    color: var(--white);
    font-weight: 500;
    border-radius: 10px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.cta-btn-digi-estate-header:hover,
.cta-button-digi-estate:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(169, 123, 255, 0.3);
    /* color: var(--white); */
}

.cta-btn-digi-estate-header {
    background-color: #E6E2EF;
    color: var(--dark-purple);
    font-size: 18px;
    border: 2px solid var(--dark-purple);
}

.cta-button-digi-estate {
    width: fit-content;
    margin: auto;
}

/* ===== BANNER SECTION ===== */
.culture-banner-area {
    background: url(../images/banner-digiestate.webp) no-repeat center center;
    background-size: cover;
    margin-top: -113px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    animation: bannerGrow 8s ease-in-out infinite alternate;
    position: relative;
}

@keyframes bannerGrow {
    0% {
        background-size: 100% 100%;
    }

    100% {
        background-size: 105% 105%;
    }
}

.culture-banner-content-area {
    max-width: 1090px;
    margin: auto;
    padding: 150px 20px;
    text-align: center;
}

.cult-banner-title {
    font-size: clamp(30px, 5vw, 60px);
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out;
}

.cult-banner-sub-ttl {
    font-size: clamp(14px, 2vw, 24px);
    color: var(--white);
    margin: 20px 0;
    padding: 20px;
    line-height: 1.5;
    animation: fadeInUp 1.2s ease-out;
}

/* ===== HIGHLIGHT TEXT ===== */
.digi-estate-highlight {
    background: #c6acff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.h1-color {
    color: var(--primary-purple);
}

/* ===== PARTNERS SECTION ===== */
.digi-estate-partners-section {
    padding: 60px 0;
    background: url(../images/parterner-bg.webp) no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.digi-estate-partners-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    padding-inline: 60px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.digi-estate-partners-title b {
    font-weight: 600;
    color: var(--light-purple);
}

.digi-estate-partners-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.digi-estate-partners-track {
    display: flex;
    gap: 60px;
    animation: scrollPartners 30s linear infinite;
    width: fit-content;
}

.digi-estate-partners-track:hover {
    animation-play-state: paused;
}

.digi-estate-partner-logo {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.digi-estate-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: grayscale(20%);
}

.digi-estate-partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

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

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

/* ===== AI SECTION ===== */
.ai-section {
    padding: 160px 20px 80px;
}

.container-digiestate-ai {
    max-width: 1620px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: auto;
}

.visuals-col-digiestate-ai {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.purple-box-digiestate-ai {
    background-color: #F5F3FF;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
}

.feature-box-digiestate-ai {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
}

.white-info-card-digiestate-ai {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 2rem 2rem 48%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    z-index: 5;
}

.info-title-digiestate-ai {
    font-size: 1rem;
    color: #32353E;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.info-highlight-digiestate-ai {
    font-size: 2rem;
    color: #32353E;
    font-weight: 600;
}

.phone-wrapper-digiestate-ai {
    position: absolute;
    left: 25px;
    bottom: -46px;
    width: 45%;
    height: 230px;
    z-index: 20;
}

@keyframes phoneFloat {

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

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

.phone-frame-digiestate-ai {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    top: -120px;
}

.phone-frame-digiestate-ai img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.sound-icon-digiestate-ai {
    position: absolute;
    top: -80px;
    right: 30px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 25;
    color: #000;
    transform: rotate(-18deg);
}

.sound-icon {
    overflow: visible;
}

.wave {
    opacity: 0.2;
    animation: soundPulse 1.6s infinite ease-in-out;
    filter: drop-shadow(0 0 4px rgb(0, 0, 0));
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 0.2s;
}

.wave-3 {
    animation-delay: 0.4s;
}

@keyframes soundPulse {
    0% {
        opacity: 0.2;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.2;
        transform: scale(0.9);
    }
}

.stats-box-digiestate-ai {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 2rem 1rem;
    background-color: #F5F3FF;
    border-radius: 24px;
}

.stat-item-digiestate-ai {
    text-align: center;
    border-right: 1px solid #E5E7EB;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item-digiestate-ai.digi-estate-animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-item-digiestate-ai:last-child {
    border-right: none;
}

.stat-value-digiestate-ai {
    font-size: 2rem;
    color: #8B5CF6;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.stat-label-digiestate-ai {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.4;
}

.content-area-digiestate-ai h2 {
    text-align: left;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--dark-purple);
    line-height: 1.2;
    margin-block: 20px;
}

.content-area-digiestate-ai p {
    font-size: clamp(16px, 2vw, 20px);
    color: #32353E;
    font-weight: 300;
    margin-bottom: 20px;
}

.badge-digiestate-ai {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(139, 92, 246, 0.15);
    color: #8B5CF6;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.badge-digiestate-ai::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(139, 92, 246, 0.25) 45%,
            rgba(139, 92, 246, 0.45) 55%,
            transparent 70%);
    background-size: 200% 100%;
    animation: aiWave 1.8s infinite ease-in-out;
    pointer-events: none;
}

.badge-digiestate-ai>* {
    position: relative;
    z-index: 1;
}

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

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

/* ===== GROWTH STRATEGY SECTION ===== */
.digiestete-bg-section {
    position: relative;
    min-height: 420px;
    background: url(../images/growth-results-bg.webp) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.digiestete-bg-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.7),
            rgba(255, 255, 255, 0));
}

.container-growth {
    max-width: 1620px;
    margin: auto;
    padding: 60px 20px;
}

.digiestete-content {
    position: relative;
    width: 60%;
}

.digiestete-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
    color: var(--dark-purple);
    font-weight: 400;
    max-width: 433px;
    line-height: 1.2;
}

.digiestete-content p {
    font-size: clamp(16px, 2vw, 20px);
    color: #32353E;
    font-weight: 300;
    margin-bottom: 20px;
}

.digiestete-content li {
    font-size: clamp(16px, 2vw, 20px);
    color: #32353E;
    font-weight: 300;
    margin-left: 20px;
    margin-bottom: 8px;
}

/* ===== STATS SECTION ===== */
.digi-estate-growth-section {
    text-align: center;
    padding: 60px 20px 80px;
    background: url(../images/result.webp) no-repeat center center;
    background-size: cover;
    color: var(--white);
}

.digi-estate-growth-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.digi-estate-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 20px;
}

.digi-estate-stat-card {
    padding: 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.digi-estate-stat-card.digi-estate-animate {
    opacity: 1;
    transform: translateY(0);
}

.digi-estate-stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #fcfcfc;
    font-weight: 400;
    margin-bottom: 10px;
}

.digi-estate-stat-label {
    font-size: 18px;
    color: #fcfcfc;
}

/* ===== CAMPAIGN SECTION ===== */
.digi-estate-partners-section-new {
    background: url(../images/parterner-bg.webp) no-repeat center center;
    background-size: cover;
    padding: 60px 0;
    overflow: hidden;
}

/* ===== SERVICES SECTION ===== */
.digiestete-container-new {
    padding-block: 40px 0;
    max-width: 1620px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: fadeInSection 1.2s ease-out both;
}

.digiestete-container-new-h2 {
    margin-bottom: 30px;
}

.digiestete-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
    color: var(--white);
    margin-bottom: 40px;
    padding: 20px;
    max-width: 1440px;
    margin-inline: auto;
}

.digiestete-left {
    flex: 1;
    /* min-width: 300px; */
}

.digiestete-left-img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.digiestete-left-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.digiestete-right {
    flex: 1;
    /* min-width: 300px; */
    position: relative;
}

.digiestete-image-wrapper {
    position: relative;
}

.digiestete-top-img {
    width: 100%;
    height: 80%;
    display: block;
    border-radius: 8px;
}

.digiestete-overlay-img {
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 50%;
    height: auto;
    animation: imageBounce 7s ease-in-out infinite;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@keyframes imageBounce {

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

    50% {
        transform: translateY(60%);
    }
}

.digiestete-left h2 {
    color: #32353E;
    font-weight: 300;
    font-size: clamp(16px, 3vw, 32px);
    margin-bottom: 15px;
}

.digiestete-left p {
    font-size: clamp(12px, 2vw, 20px);
    color: #4b5563;
    font-weight: 300;
    line-height: 1.7;
}

.middle {
    align-self: center;
}

/* ===== VIDEO OPTIMIZATION ===== */
.digiestete-video {
    border-radius: 8px;
    object-fit: cover;
    background: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.digiestete-video:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Lazy load video optimization */
video[poster] {
    object-fit: cover;
}

/* ===== CTA SECTION ===== */
.digi-estate-services-container-discuss {
    padding-inline: 20px;
}

.digi-estate-services-new {
    color: var(--white);
    border-radius: 20px;
    padding-block: 40px 60px;
    max-width: 1620px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    animation: fadeInSection 1.2s ease-out both;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.digi-estate-services-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--dark-purple);
    text-align: center;
}

.digi-estate-services-title-new {
    margin-bottom: 2rem;
}

.impact-stats-button-wrapper {
    width: 100%;
    text-align: center;
}

.ai-btn {
    background: #8B5ACB;
    color: var(--white);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    display: inline-block;
    margin: 0;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.ai-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 203, 0.3);
}

/* ===== FAQ SECTION ===== */
.faq-new-conatiner {
    background-color: var(--white);
    padding: 60px 0;
}

.faq-container {
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-heading {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 60px;
    color: var(--dark-purple);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
    transition: all 0.3s ease;
    overflow: hidden;
}


.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 36px;
    gap: 20px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-question h3 {
    color: #111827;
    line-height: 1.4;
    flex: 1;
    margin-bottom: 0;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 400;
}

.faq-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 500;
    color: #1B1139;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg) !important;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 36px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 36px 26px;
}

.faq-answer p,
.faq-answer li {
    line-height: 1.7;
    color: #4b5563;
    font-size: clamp(16px, 1.8vw, 18px);
    font-weight: 300;
    animation: fadeIn 0.3s ease;
}

.faq-answer a {
    color: var(--light-purple);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--primary-purple);
}

/* ===== FORM SECTION ===== */
span.iti__country-name {
    color: var(--text-dark);
}

.container-section-digi-estate-form {
    background: linear-gradient(145deg, #392F81 0%, #2D1248 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.title-digi-estate-form {
    color: var(--white);
}

.iti__selected-dial-code {
    color: var(--white);
}

.container-digi-estate-form {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    margin: auto;
}

.title-digi-estate-form {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle-digi-estate-form {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
    font-weight: 300;
}

.form-container-digi-estate-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 50px);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
}

.form-digi-estate-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    position: relative;
}

.input-digi-estate-form,
.textarea-digi-estate-form {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition-smooth);
    outline: none;
}

.input-digi-estate-form::placeholder,
.textarea-digi-estate-form::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.input-digi-estate-form:focus,
.textarea-digi-estate-form:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.input-error {
    border-color: #d93025 !important;
    animation: shake 0.3s ease;
}

@keyframes shake {

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

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.field-error {
    display: none;
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 4px;
    text-align: left;
    animation: fadeIn 0.3s ease;
}

.input-error+.field-error {
    display: block;
}

.submit-btn-digi-estate-form {
    background: #AC6CFF;
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn-digi-estate-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(172, 108, 255, 0.3);
}

.submit-btn-digi-estate-form:active {
    transform: translateY(0);
}

.submit-btn-digi-estate-form:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.contact-info-digi-estate-form {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.contact-links-digi-estate-form {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-links-digi-estate-form a {
    color: #6b9cff;
    text-decoration: none;
    font-size: clamp(16px, 2vw, 18px);
    transition: var(--transition-smooth);
}

.contact-links-digi-estate-form a:hover {
    color: #8fb4ff;
    text-decoration: underline;
}

.divider-digi-estate-form {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20%;
    right: 5%;
    z-index: 1000;
}

.whatsapp-ico {
    fill: var(--white);
    width: 50px;
    height: 50px;
    padding: 3px;
    background-color: #4dc247;
    border-radius: 40%;
    animation: floatAround 20s ease-in-out infinite, pulseShadow 3s ease-in-out infinite;
    will-change: transform, box-shadow;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover .whatsapp-ico {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(77, 194, 71, 0.8);
}

.culture-banner-content-area p {
    font-size: clamp(16px, 2vw, 24px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floatAround {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    50% {
        transform: translate(-20px, -50px) rotate(-5deg);
    }

    75% {
        transform: translate(40px, -20px) rotate(3deg);
    }
}

@keyframes pulseShadow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(77, 194, 71, 0.4),
            0 0 15px rgba(77, 194, 71, 0.3),
            0 0 25px rgba(77, 194, 71, 0.2);
    }

    50% {
        box-shadow: 0 0 15px rgba(77, 194, 71, 0.6),
            0 0 30px rgba(77, 194, 71, 0.5),
            0 0 45px rgba(77, 194, 71, 0.4);
    }
}

/* ===== SCROLL ANCHOR ===== */
#form {
    display: block;
    margin-bottom: 80px;
}

/* ===== RESPONSIVE DESIGN ===== */

@media screen and (max-width: 768px) {
    .culture-banner-area {
        min-height: auto;
        margin-top: -100px;
    }

    .culture-banner-content-area {
        padding: 100px 20px 60px;
    }

    .cult-banner-title {
        margin-top: 50px;
    }

    .container-digiestate-ai {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-area-digiestate-ai {
        padding-left: 0;
    }

    .purple-box-digiestate-ai {
        padding: 1rem;
    }

    .stat-label-digiestate-ai {
        font-size: 0.75rem;
    }

    .stat-value-digiestate-ai {
        font-size: 1.2rem;
    }

    .digi-estate-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .digiestete-content {
        width: 90%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding-inline: 20px;
    }

    .faq-item.active .faq-answer {
        padding-inline: 20px;
    }

    .ai-section {
        padding: 100px 20px 40px;
    }

    .digi-estate-partners-section {
        padding: 40px 0;
    }

    .digi-estate-partners-track {
        gap: 30px;
        animation-duration: 20s;
    }

    .digi-estate-partner-logo {
        width: 150px;
        height: 75px;
    }

    .digiestete-overlay-img {
        width: 70%;
    }

    .cult-banner-sub-ttl {
        padding: 0;
        margin-block: 10px;
    }
}

@media screen and (max-width: 550px) {
    .cult-banner-title {
        margin-top: 40px;
    }

    .digi-estate-stats-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0;
        gap: 20px;
    }

    .digi-estate-stat-card,
    .digi-estate-partner-logo {
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {

    .input-digi-estate-form,
    .textarea-digi-estate-form {
        padding: 15px 18px;
        font-size: 15px;
    }

    .submit-btn-digi-estate-form {
        padding: 16px 30px;
        font-size: 16px;
    }

    .whatsapp-float {
        right: 5%;
        bottom: 15%;
    }

    .digi-estate-partners-track {
        gap: 20px;
        animation-duration: 15s;
    }

    .digi-estate-partner-logo {
        width: 130px;
        height: 65px;
    }
}

@media screen and (max-width: 600px) {
    .digi-estate-partners-title {
        padding: 0 20px;
    }

    .digiestete-content {
        width: 100%;
    }

    .digiestete-container {
        gap: 14px;
        align-items: center;
        padding: 20px 10px;
        margin-bottom: 20px;
    }

    .digiestete-overlay-img {
        left: -10px;
    }

    .digiestete-left h2,
    .digiestete-left p {
        line-height: 1.3;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .digi-estate-partners-track {
        animation: none;
    }

    .digi-estate-partners-wrapper {
        overflow-x: auto;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--primary-purple);
    outline-offset: 2px;
}

@media screen and (min-width:767px) {
    .desk-show {
        display: block;
    }
    .mob-show {
        display: none;
    }
}
@media screen and (max-width:767px) {
    .desk-show {
        display: none;
    }
    .mob-show {
        display: block;
    }
    .cta-btn-digi-estate-header {
        font-size: 14px;
    }
}