/* Enhanced Intro Text Section Styles */

/* Override default intro-text styles */
.intro-text {
    padding: 6rem 0 !important;
    background: linear-gradient(135deg, #7C9BC0 0%, #7C9BC0 50%, #012820 100%) !important;
    color: #ffffff !important;
    position: relative;
    overflow: hidden;
}

/* Decorative floating circles */
.intro-text::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 280px;
    height: 280px;
    border: 4px dashed #F4D03F;
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s ease-in-out infinite, rotate 40s linear infinite;
}

.intro-text::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 8%;
    width: 220px;
    height: 220px;
    border: 3px dashed #839D63;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s ease-in-out infinite reverse, rotate 30s linear infinite reverse;
}

.intro-text .container {
    position: relative;
    z-index: 2;
}

.intro-text p {
    margin-bottom: 1.8rem !important;
    font-size: 1.15rem !important;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95) !important;
    animation: fadeInUp 0.8s ease-out;
}

.intro-text p:first-of-type {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: #3456A3 !important;
    margin-bottom: 2rem !important;
    animation: fadeInUp 0.6s ease-out;
}

.intro-text h3 {
    color: #ffffff !important;
    font-size: 1.8rem !important;
    margin-top: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-left: 1.5rem;
    animation: fadeInLeft 1s ease-out;
}

.intro-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 60%;
    background: linear-gradient(to bottom, #F4D03F, #839D63);
    border-radius: 3px;
}

.intro-text .feature-list {
    margin-top: 2.5rem !important;
    padding-left: 0 !important;
    list-style: none !important;
}

.intro-text .feature-list li {
    margin-bottom: 2rem !important;
    padding-left: 3rem;
    position: relative;
    font-size: 1.1rem !important;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9) !important;
    animation: fadeInRight 1s ease-out;
    animation-fill-mode: both;
}

.intro-text .feature-list li:nth-child(1) {
    animation-delay: 0.2s;
}

.intro-text .feature-list li:nth-child(2) {
    animation-delay: 0.4s;
}

.intro-text .feature-list li:nth-child(3) {
    animation-delay: 0.6s;
}

.intro-text .feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
    color: #3456A3;
    font-weight: bold;
    animation: pulse 2s ease-in-out infinite;
}

.intro-text .feature-list li strong {
    color: #3456A3 !important;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Animations */
@keyframes float {

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

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

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

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

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

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

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

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

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro-text {
        padding: 4rem 0 !important;
    }

    .intro-text::before {
        width: 180px;
        height: 180px;
    }

    .intro-text::after {
        width: 150px;
        height: 150px;
    }

    .intro-text p:first-of-type {
        font-size: 1.2rem !important;
    }

    .intro-text h3 {
        font-size: 1.5rem !important;
    }

    .intro-text .feature-list li {
        padding-left: 2.5rem;
        font-size: 1rem !important;
    }

    .intro-text .feature-list li::before {
        font-size: 1.5rem;
    }
}