/* About Page Specific Styles */

/* Basic reset and container */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Spacing */
section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

section:nth-child(even) {
    background-color: #f8f9fa;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    z-index: 2;
}

.hero-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: linear-gradient(135deg, #2c3e50 0%, #1f2c3a 100%);
}

.hero-logo img {
    max-width: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-fade {
    animation: fadeInOut 4s ease-in-out infinite;
    opacity: 0;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 100, 0, 0.6), rgba(0, 0, 0, 0.7));
    z-index: 2;
}



/* Mission Section */
.mission-section {
    background-color: white;
}

.mission-content {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.indication-registry {
    display: flex;
    justify-content: center; /* Full viewport height */
    background-color: #f0f0f0; /* Optional background */
  }

  .indication-registry img {
    max-width: 100%;
    height: auto;
  }

  .content-wrapper {
    text-align: center;
  }
  
  .heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
/* Journey Section - Modern Layout */
.journey-section {
    background-color: #f8f9fa;
    overflow: visible;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.journey-section .container {
    position: relative;
    z-index: 2;
}

.journey-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 1;
    transform: none;
}

.journey-card {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 1;
    transform: none;
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.journey-icon {
    width: 60px;
    height: 60px;
    background: #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.journey-icon i {
    font-size: 24px;
    color: #333;
}

.journey-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.journey-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
}

.journey-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 98%, #ffd700 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-card:hover::before {
    opacity: 1;
}

/* Remove these conflicting styles */
.timeline,
.timeline::before,
.timeline-item,
.timeline-content::before,
.timeline-content::after,
.year {
    display: none;
}

/* Values Section */
.values-section {
    background-color: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.5rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.5rem;
}

.team-member p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-logo img {
        max-width: 300px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .journey-card {
        padding: 30px;
    }

    .journey-content h3 {
        font-size: 1.5rem;
    }

    .journey-content p {
        font-size: 1rem;
    }

    .team-member {
        max-width: 300px;
        margin: 0 auto;
    }
}
