/* About Us Page Styles */

/* Unified horizontal padding for all About Us sections */
.breadcrumb-section,
.who-we-are-section,
.description-section,
.timeline-section,
.vision-mission-section,
.team-section,
.gallery-cta-section {
    padding-left: 40px;
    padding-right: 40px;
}

/* Who We Are Section */

/* Hide Our Journey (timeline) and Team sections on all devices without removing markup */
.timeline-section,
.team-section {
    display: none;
}
.who-we-are-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.who-we-are-container {
    display: grid;
    grid-template-columns: 5fr 5fr;
    gap: 60px;
    align-items: center;
}

.who-we-are-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.who-we-are-subtitle {
    font-size: 18px;
    color: #F3D02D;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.who-we-are-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 32px;
    font-family: 'Poppins', sans-serif;
}

.who-we-are-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-we-are-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.who-we-are-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F3D02D;
    font-weight: bold;
    font-size: 18px;
}

.who-we-are-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(243, 208, 45, 0.05);
    text-align: left;
}

.feature-item:hover {
    background: rgba(243, 208, 45, 0.15);
    transform: translateX(8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F3D02D 0%, #DFBE40 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    flex-shrink: 0;
    font-weight: 600;
}

.feature-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 6px 0;
}

.feature-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Why Attend Section */
.description-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -1px;
}

.timeline-subtitle {
    font-size: 18px;
    color: #F3D02D;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.timeline-container {
    position: relative;
    padding: 60px 0;
}

.timeline-road {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #F3D02D 0%, #DFBE40 50%, #F3D02D 100%);
    border-radius: 100px;
    transform: translateY(-50%);
    z-index: 1;
}

@media (min-width: 992px) {
    .timeline-road {
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F3D02D 0%, #DFBE40 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(243, 208, 45, 0.3);
    transition: all 0.3s ease;
    border: 4px solid #ffffff;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(243, 208, 45, 0.4);
}

.timeline-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 14px;
    color: #666666;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.vision-mission-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -1px;
}

.vision-mission-subtitle {
    font-size: 18px;
    color: #F3D02D;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

.vision-mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-card, .mission-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #F3D02D 0%, #DFBE40 100%);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #DFBE40 0%, #F3D02D 100%);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(243, 208, 45, 0.2);
}

.vm-icon-wrapper {
    margin-bottom: 30px;
}

.vm-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F3D02D 0%, #DFBE40 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(243, 208, 45, 0.3);
    transition: transform 0.3s ease;
}

.vision-card:hover .vm-icon, .mission-card:hover .vm-icon {
    transform: scale(1.1) rotate(5deg);
}

.vm-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 20px;
    margin: 0 0 20px 0;
}

.vm-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.team-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -1px;
}

.team-subtitle {
    font-size: 18px;
    color: #F3D02D;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 60px;
}

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

.team-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(243, 208, 45, 0.2);
}

.team-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(243, 208, 45, 0.1) 0%, rgba(223, 190, 64, 0.1) 100%);
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .member-image {
    transform: scale(1.05);
}

.team-card-content {
    padding: 30px 24px;
}

.member-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 6px;
    margin: 0 0 6px 0;
}

.member-designation {
    font-size: 12px;
    color: #F3D02D;
    font-weight: 600;
    margin-bottom: 16px;
    margin: 0 0 16px 0;
    font-family: 'Poppins', sans-serif;
}

.member-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(243, 208, 45, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F3D02D;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #F3D02D 0%, #DFBE40 100%);
    color: #ffffff;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 991px) {
    /* Increase horizontal breathing room on tablet */
    .breadcrumb-section,
    .who-we-are-section,
    .description-section,
    .timeline-section,
    .vision-mission-section,
    .team-section,
    .gallery-cta-section {
        padding-left: 32px;
        padding-right: 32px;
    }
    /* Who We Are Section */
    .who-we-are-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Hide Who We Are visual on tablet */
    .who-we-are-visual {
        display: none;
    }

    .who-we-are-features {
        display: none;
        grid-template-columns: 1fr 1fr;
    }

    .who-we-are-title {
        font-size: 36px;
    }

    /* Timeline Section */
    .timeline-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .timeline-marker {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .timeline-title {
        font-size: 36px;
    }

    /* Why Attend: 2-column grid on tablet */
    .description-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    /* Vision & Mission Section */
    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Lighten Vision & Mission background on tablet */
    .vision-mission-section {
        background: #ffffff;
    }

    .vision-mission-title {
        font-size: 36px;
    }

    .vision-card, .mission-card {
        padding: 40px 30px;
    }

    .vm-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .vm-title {
        font-size: 28px;
    }

    /* Hide Timeline section on tablet */
    .timeline-section {
        display: none;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* Hide Team section on tablet */
    .team-section {
        display: none;
    }

    .team-card-image {
        height: 180px;
    }

    .team-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    /* Comfortable horizontal padding on mobile */
    .breadcrumb-section,
    .who-we-are-section,
    .description-section,
    .timeline-section,
    .vision-mission-section,
    .team-section,
    .gallery-cta-section {
        padding-left: 28px;
        padding-right: 28px;
    }

    /* Hide Who We Are visual on mobile */
    .who-we-are-visual {
        display: none;
    }

    /* Why Attend: single column on mobile */
    .description-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Hide Timeline section on mobile */
    .timeline-section {
        display: none;
    }

    /* Hide Team section on mobile */
    .team-section {
        display: none;
    }

    /* Lighten Vision & Mission background on mobile */
    .vision-mission-section {
        background: #ffffff;
    }

    .who-we-are-title {
        font-size: 28px;
    }

    .who-we-are-subtitle {
        font-size: 14px;
    }

    .who-we-are-description p {
        font-size: 15px;
    }

    .who-we-are-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        gap: 12px;
        padding: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .feature-content h4 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 13px;
    }

    /* Timeline Section */
    .timeline-items {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .timeline-road {
        left: 35px;
        width: 4px;
        height: calc(100% + 50px);
        top: 0;
        transform: none;
        border-radius: 10px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-left: 20px;
        margin-bottom: 20px;
    }

    .timeline-item {
        align-items: flex-start;
        text-align: left;
        padding-left: 100px;
    }

    .timeline-content h4 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
    }

    .timeline-title {
        font-size: 28px;
    }

    /* Vision & Mission Section */
    .vision-mission-title {
        font-size: 28px;
    }

    .vision-card, .mission-card {
        padding: 30px 24px;
    }

    .vm-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .vm-title {
        font-size: 24px;
    }

    .vm-description {
        font-size: 15px;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .team-card-image {
        height: 150px;
    }

    .team-title {
        font-size: 28px;
    }

    .member-name {
        font-size: 18px;
    }

    .member-designation {
        font-size: 13px;
    }

    .team-card-content {
        padding: 20px;
    }

    /* Digital Partners Section */
    .partners-title {
        font-size: 28px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-card {
        padding: 20px;
    }

    .partner-logo {
        height: 60px;
    }

    .partner-name {
        font-size: 13px;
    }
}