/* About Us Page Specific Styles */

/* Hero Section */
.about-hero {
    background: #fff;
    padding: 8rem 8%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.about-hero-left {
    flex: 1 1 50%;
}

.about-hero-left p {
    color: #0a2441;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-hero-left h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.about-hero-left .desc {
    color: #555;
    max-width: 520px;
    line-height: 1.7;
    font-size: 1rem;
}

/* Right - Circular Arrow */
.about-hero-right {
    flex: 0 0 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.circle-button {
    position: relative;
    width: 200px;
    height: 200px;
}

.rotate-circle {
    animation: rotate 10s linear infinite;
    transform-origin: center;
}

.textcircle {
    fill: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    stroke: none;
    fill: #333;
}

.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #0a2441;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow:hover {
    transform: translate(-50%, -50%) scale(1.2) rotate(15deg);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* About Section */
.about-section {
    background: #fff;
    padding: 3rem 8%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    border-top: 1px solid #eee;
}

.about-images {
    display: flex;
    gap: 1rem;
    flex: 1 1 45%;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.story {
    flex: 1 1 45%;
}

.story h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.story p {
    color: #444;
    line-height: 1.8;
    font-size: 0.97rem;
    text-align: justify;
}

/* Values Section */
.values-section {
    background: #f5f7f9;
    padding: 4rem 8%;
    text-align: center;
}

.values-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    border: 1px solid #e2e6ea;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.value-card i {
    font-size: 2rem;
    color: #0a2441;
    margin-bottom: 1rem;
    display: inline-block;
}

.value-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.values-section small {
    display: block;
    margin-top: 2rem;
    color: #777;
    font-size: 0.9rem;
}

/* Fade Animation */
.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles for About Page */
@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-left h1 {
        font-size: 2rem;
    }

    .about-section {
        flex-direction: column;
    }

    .about-images {
        flex-direction: column;
    }

    .values-section h2 {
        font-size: 1.6rem;
    }
    
    /* Center footer content on mobile */
    footer {
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    footer > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    footer ul {
        list-style: none;
        padding: 0;
    }
}


