
:root {
    --primary: #180161;
    --secondary: #4f1787;
    --accent: #eb3678;
    --highlight: #fb773c;
    --background: #ffffff;
    --text-color: #333;
    --white: #fff;
}

.services-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.services-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg') repeat;
    opacity: 0.1;
    animation: slideBackground 20s linear infinite;
}

@keyframes slideBackground {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 100%;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-purple);
    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: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--dark-purple);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(85, 173, 155, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card:hover .service-icon {
    background: var(--secondary);
}

.service-card h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.service-features span {
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features i {
    color: var(--primary);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary);
}

.learn-more:hover i {
    transform: translateX(5px);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .services-showcase {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* Statistics Section Styles */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern.svg') repeat;
    opacity: 0.1;
    animation: slideBackground 20s linear infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    gap: 30px;
    position: relative;
    z-index: 1;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(241, 248, 232, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 280px;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(216, 239, 211, 0.1) 0%, rgba(149, 210, 179, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.circular-chart {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(241, 248, 232, 0.1);
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke: #F1F8E8;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
}

.stat-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #F1F8E8;
}

.stat-content {
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #F1F8E8 0%, rgba(241, 248, 232, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card h3 {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 280px);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 280px;
        gap: 20px;
    }

    .stat-circle {
        width: 100px;
        height: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Process Timeline Styles */
.process-timeline {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.process-timeline .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-timeline .section-header h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.process-timeline .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.process-timeline .section-header p {
    color: var(--dark-purple);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: 0.2;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: white;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: all 0.3s ease;
}

.timeline-content h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.timeline-item:hover .timeline-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(24, 1, 97, 0.1);
}

@media (max-width: 768px) {
    .process-timeline {
        padding: 4rem 0;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-start;
        padding-left: 30px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        margin: 0 1rem 0 0;
    }

    .timeline-content {
        width: calc(100% - 100px);
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .timeline-content p {
        font-size: 0.9rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 2rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(85, 173, 155, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-content {
    flex-grow: 1;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline {
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background: var(--primary) !important;
}

.bg-secondary {
    background: var(--secondary) !important;
}

.bg-accent {
    background: var(--accent) !important;
}

.bg-highlight {
    background: var(--highlight) !important;
}

.team-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.team-card:hover {
    border-color: var(--accent);
}

.team-card:hover .team-info h3 {
    color: var(--accent);
}

.team-card:hover .team-info p {
    color: var(--highlight);
}

.team-social a {
    color: var(--primary);
}

.team-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.achievements-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.achievement-card:hover {
    background: var(--accent);
}

.achievement-card:hover .achievement-icon {
    background: var(--highlight);
}

.achievement-card:hover .achievement-icon i {
    color: var(--white);
}

.achievement-card:hover h3,
.achievement-card:hover p {
    color: var(--white);
}

.process-icon {
    background: var(--secondary);
    color: var(--white);
}

.process-card:hover .process-icon {
    background: var(--accent);
}

.process-card:hover h3 {
    color: var(--accent);
}

.testimonial-card:hover {
    border-color: var(--accent);
}

.testimonial-card:hover .testimonial-content p {
    color: var(--primary);
}

.testimonial-card:hover .author-info h4 {
    color: var(--accent);
}

.testimonial-card:hover .author-info p {
    color: var(--highlight);
}

.contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.contact-info-card {
    background: var(--primary);
}

.contact-info-card:hover {
    background: var(--secondary);
}

.contact-info-card i {
    color: var(--accent);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.contact-form button {
    background: var(--primary);
}

.contact-form button:hover {
    background: var(--secondary);
}

.footer {
    background: var(--primary);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social a {
    background: var(--secondary);
}

.footer-social a:hover {
    background: var(--accent);
}



/* Hero Section Styles */
.hero {
    min-height: 100vh;
    padding: 8rem 0;
    background: linear-gradient(rgba(24, 1, 97, 0.85), rgba(79, 23, 135, 0.85)),
        url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg') center/cover no-repeat fixed;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png') repeat;
    opacity: 0.1;
    z-index: -1;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    color: white;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 160px;
}

.hero-buttons .btn-primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-buttons .btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-vector {
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 6rem 0;
    }

    .hero-text h1 {
        font-size: 2.75rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-buttons .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        order: -1;
        padding: 1rem;
    }

    .hero-vector {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* About Section Styles */
.about-section {
    padding: 8rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png') repeat;
    opacity: 0.05;
}

.about-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.about-text p {
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p:last-of-type {
    margin-bottom: 2rem;
}

.about-text .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.about-text .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 1, 97, 0.15);
}

.about-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.about-vector {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1200px) {
    .about-section {
        padding: 6rem 0;
    }

    .about-grid {
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 5rem 0;
    }

    .about-grid {
        gap: 2.5rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .about-text {
        max-width: 100%;
    }

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-text p {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .about-image {
        order: -1;
        padding: 1rem;
    }

    .about-vector {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 0;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-text .btn {
        width: 100%;
        padding: 0.875rem 2rem;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.achievement-vector {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-vector {
        height: 180px;
        /* Slightly smaller height on mobile */
    }
}

.process-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.process-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(24, 1, 97, 0.1);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-icon i {
    font-size: 2.5rem;
    color: white;
}

.process-card:hover .process-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

.process-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.process-card p {
    color: #4b5563;
    line-height: 1.5;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .achievement-vector {
        height: 180px;
    }

    .achievement-card h3 {
        font-size: 2rem;
    }

    .achievement-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}