/* Modern Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #4b0082 0%, #6a0dad 100%);
    padding: 4rem 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(75, 0, 130, 0.1) 0%, rgba(106, 13, 173, 0.1) 100%);
    z-index: 1;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

/* Modern Cards */
.modern-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Modern Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #4b0082;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4b0082, #6a0dad);
    border-radius: 2px;
}

/* Modern Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Button Styles */
.modern-button {
    background: linear-gradient(45deg, #4b0082, #6a0dad);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.modern-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 0, 130, 0.3);
}

/* Image Hover Effects */
.hover-zoom {
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 15px;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #4b0082;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6a0dad;
}

/* Modern Section Layout */
.section {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Modern Card Style */
.card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(75, 0, 130, 0.07);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
    box-shadow: 0 8px 32px rgba(75, 0, 130, 0.13);
    transform: translateY(-4px) scale(1.01);
}

/* Modern Button */
.btn-main {
    background: linear-gradient(90deg, #4b0082, #6a0dad);
    color: #fff;
    border-radius: 30px;
    padding: 0.75rem 2rem;
    border: none;
    font-weight: 600;
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-main:hover {
    background: linear-gradient(90deg, #6a0dad, #4b0082);
    box-shadow: 0 2px 12px rgba(75, 0, 130, 0.15);
}

/* Modern Image */
img.modern-img {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(75, 0, 130, 0.06);
    transition: transform 0.2s;
}

img.modern-img:hover {
    transform: scale(1.03);
}

/* Typography */
body,
.section {
    font-family: 'Inter', 'Syne', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #222;
    background: #f8f8fc;
}

.section h1,
.section h2,
.section h3 {
    color: #4b0082;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section p {
    margin-bottom: 1.2rem;
}

.card-flex {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
}

.card-img-left-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.card-text-right {
    flex: 1;
    text-align: left;
}

.card-img-left {
    max-width: 200px;
    width: 32%;
    min-width: 120px;
    flex-shrink: 0;
}

.card-img-mission {
    display: block;
    margin: 0 auto 1.5rem auto;
    max-width: 300px;
    width: 60%;
    min-width: 180px;
}

@media (max-width: 900px) {
    .card-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .card-img-left-wrapper {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .card-img-left {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .card-img-mission {
        width: 100%;
        max-width: 100%;
    }
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(75, 0, 130, 0.1);
}

.feature-stats .stat {
    font-size: 2rem;
    font-weight: 800;
    color: #4b0082;
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.feature-stats .stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    display: block;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-widget-5 {
    height: 100%;
    padding: 2.5rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 0, 130, 0.1);
    margin-bottom: 2rem;
}

.feature-widget-5:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.12);
    border-color: rgba(75, 0, 130, 0.2);
}

.feature-widget-5__icon {
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05) 0%, rgba(106, 13, 173, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    display: inline-block;
}

.feature-widget-5__icon img {
    transition: transform 0.3s ease;
}

.feature-widget-5:hover .feature-widget-5__icon img {
    transform: scale(1.1);
}

.feature-widget-5__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #4b0082;
    line-height: 1.3;
}

.feature-widget-5__body p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.section-heading__subtitle {
    font-size: 1.3rem !important;
    line-height: 1.6;
    color: #4b5563 !important;
    margin-top: 1.5rem !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .feature-widget-5 {
        padding: 2rem;
    }

    .feature-stats {
        gap: 1rem;
    }

    .feature-stats .stat {
        font-size: 1.75rem;
    }

    .feature-stats .stat-label {
        font-size: 0.8rem;
    }
}