﻿.about-hero {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
}

.about-hero-image {
    max-width: 80%;
    margin: auto;
}
.contact-form {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 40px;
    max-width: 500px;
    width: 100%;
}
.hero-shapes .shape-1,
.hero-shapes .shape-2 {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.hero-shapes .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.icon-2 {
    top: 50%;
    right: 10%;
    animation: float 3s ease-in-out infinite 1s;
}

.icon-3 {
    bottom: 20%;
    left: 20%;
    animation: float 3s ease-in-out infinite 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Value Cards */
.value-card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

    .timeline:before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: #e9ecef;
    }

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    position: relative;
    width: calc(50% - 30px);
    margin-left: auto;
    padding: 0 20px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-date {
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1a237e;
}

.timeline-card {
    border-radius: 15px;
}

/* Stats Section */
.stat-card {
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-5px);
    }

.stat-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter {
    font-weight: bold;
    color: #1a237e;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    position: relative;
    overflow: hidden;
}

    .cta-section:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.1)" x="0" y="0" width="100" height="100"/></svg>');
        opacity: 0.1;
        pointer-events: none;
    }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .timeline:before {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-right: 0;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
    }

    .about-hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .stat-card {
        margin-bottom: 1.5rem;
    }

    .value-card {
        margin-bottom: 1rem;
    }

    .hero-section {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter.animated {
    animation: countUp 1s ease-out forwards;
}
/* Additional Modal Styles */
#subscriptionModal .modal-content {
    border: none;
    border-radius: 15px;
}

#subscriptionModal .modal-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

#subscriptionModal .form-control,
#subscriptionModal .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

#subscriptionModal .btn-primary {
    padding: 0.75rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border: none;
    transition: transform 0.3s ease;
}

    #subscriptionModal .btn-primary:hover {
        transform: translateY(-2px);
    }

.bg-gradient-primary {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
}
