/* ===== WHO WE ARE PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    height: 70vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)),
                url(images/portrait-sad-woman_23-2150943347.jpg) center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.3) 0%,
        transparent 50%,
        rgba(255, 152, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.page-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.scroll-down span {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Story Section */
.story-section {
    background-color: var(--light-gray);
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, 
        transparent,
        var(--green-primary),
        var(--orange-primary),
        transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: 50%;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: 50%;
}

.timeline-year {
    position: absolute;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green-primary), var(--orange-primary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 3;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: calc(50% - 40px);
}

.timeline-item:nth-child(even) .timeline-year {
    left: calc(50% - 40px);
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    width: 90%;
    position: relative;
}

.timeline-icon {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green-primary);
    box-shadow: var(--shadow-sm);
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.timeline-text {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Value Pillars */
.value-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.pillar {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green-primary), var(--orange-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.pillar h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pillar p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Vision, Mission & Objectives Section */
.vision-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.cylinder-flow {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    padding: 40px 0;
}

.cylinder-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.cylinder-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
}

.cylinder-shape {
    width: 100%;
    height: 180px;
    border-radius: 90px;
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.vision-shape {
    background: linear-gradient(90deg, 
        rgba(76, 175, 80, 0.2) 0%,
        rgba(76, 175, 80, 0.4) 50%,
        rgba(76, 175, 80, 0.2) 100%);
}

.mission-shape {
    background: linear-gradient(90deg, 
        rgba(255, 152, 0, 0.2) 0%,
        rgba(255, 152, 0, 0.4) 50%,
        rgba(255, 152, 0, 0.2) 100%);
}

.objectives-shape {
    background: linear-gradient(90deg, 
        rgba(139, 195, 74, 0.2) 0%,
        rgba(139, 195, 74, 0.4) 50%,
        rgba(139, 195, 74, 0.2) 100%);
}

.cylinder-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.vision-shape .cylinder-circle {
    right: -40px;
}

.mission-shape .cylinder-circle {
    left: -40px;
}

.objectives-shape .cylinder-circle {
    right: -40px;
}

.cylinder-content {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--light-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cylinder-label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.label-icon {
    width: 40px;
    height: 40px;
    background: var(--green-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.label-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--green-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cylinder-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.4;
}

.cylinder-text {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.cylinder-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.cylinder-stats .stat {
    text-align: center;
}

.cylinder-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange-primary);
    display: block;
}

.cylinder-stats .stat-label {
    font-size: 0.8rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.mission-pillars .pillar {
    padding: 8px 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--green-primary);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.objectives-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.objective {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.objective-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-primary);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.objective-content {
    flex: 1;
}

.objective-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.objective-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.connector-line {
    position: absolute;
    height: 40px;
    width: 3px;
    background: linear-gradient(to bottom, var(--green-primary), var(--orange-primary));
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Team Section */
.team-section {
    background-color: var(--light-gray);
}

.team-categories {
    margin-bottom: 60px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.tab-btn.active {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: white;
}

.team-grid {
    position: relative;
}

.team-category {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.team-category.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.team-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--green-primary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-bio {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--green-primary);
    color: white;
    transform: translateY(-3px);
}

.team-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 20px;
    color: white;
    margin-top: 60px;
}

.team-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.team-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--green-primary);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-primary), var(--orange-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.info-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-contact {
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.social-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--orange-primary);
    color: white;
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check-label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.btn-block {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 25px;
    padding: 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    color: var(--green-primary);
    font-size: 0.9rem;
}

.form-note i {
    margin-right: 10px;
}

.map-container {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    margin-top: 60px;
}

.map-placeholder {
    color: var(--text-dark);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--green-primary);
    margin-bottom: 20px;
}

.map-placeholder h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map-placeholder p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--green-primary);
    color: var(--green-primary);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--green-primary);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-title {
        font-size: 3rem;
    }
    
    .cylinder-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cylinder-visual {
        order: 1;
    }
    
    .cylinder-content {
        order: 2;
    }
    
    .vision-shape .cylinder-circle,
    .mission-shape .cylinder-circle,
    .objectives-shape .cylinder-circle {
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
        right: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding: 0;
        justify-content: center;
    }
    
    .timeline-year {
        position: relative;
        left: auto !important;
        right: auto !important;
        margin: 0 auto 20px;
    }
    
    .story-timeline::before {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .value-pillars {
        grid-template-columns: 1fr;
    }
    
    .team-category {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .cylinder-shape {
        height: 150px;
    }
    
    .cylinder-circle {
        width: 150px;
        height: 150px;
    }
    
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 250px;
    }
}
/* ===== OUR TIMELINE SECTION (Unique Styling) ===== */

.our-timeline-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1545239351-ef35f43d514b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    position: relative;
    color: white;
    padding: 100px 0;
}

/* Ensure this doesn't affect homepage */
#programs, .programs {
    /* Homepage What We Do section remains untouched */
}

/* Timeline Container */
.timeline-container {
    position: relative;
    z-index: 2;
}

/* Timeline Grid for 6 Cards */
.timeline-grid-six {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

/* Timeline Card */
.timeline-item-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.timeline-item-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Card Image */
.timeline-item-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.timeline-year-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--green-primary), var(--orange-primary));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Image Overlay */
.timeline-item-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* Card Content */
.timeline-item-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Phase Tag */
.timeline-phase {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 152, 0, 0.2);
    color: var(--orange-light);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    align-self: flex-start;
}

/* Different colors for each phase */
.timeline-item-card:nth-child(1) .timeline-phase {
    background: rgba(76, 175, 80, 0.2);
    color: #8BC34A;
}

.timeline-item-card:nth-child(2) .timeline-phase {
    background: rgba(255, 152, 0, 0.2);
    color: #FFB74D;
}

.timeline-item-card:nth-child(3) .timeline-phase {
    background: rgba(156, 39, 176, 0.2);
    color: #CE93D8;
}

.timeline-item-card:nth-child(4) .timeline-phase {
    background: rgba(33, 150, 243, 0.2);
    color: #81D4FA;
}

.timeline-item-card:nth-child(5) .timeline-phase {
    background: rgba(255, 87, 34, 0.2);
    color: #FF8A65;
}

.timeline-item-card:nth-child(6) .timeline-phase {
    background: rgba(0, 150, 136, 0.2);
    color: #80CBC4;
}

/* Title */
.timeline-item-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    line-height: 1.3;
}

/* Description */
.timeline-item-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Stats */
.timeline-item-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-stat {
    text-align: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.timeline-stat:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.timeline-stat-icon {
    font-size: 1rem;
    color: var(--orange-primary);
    margin-bottom: 5px;
    display: block;
}

.timeline-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 2px;
}

.timeline-stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Link */
.timeline-item-link {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.timeline-item-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.timeline-item-link:hover {
    color: var(--orange-light);
}

.timeline-item-link:hover i {
    transform: translateX(5px);
}

/* Responsive for 6 Cards */
@media (max-width: 1200px) {
    .timeline-grid-six {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .timeline-grid-six {
        grid-template-columns: 1fr;
    }
    
    .timeline-item-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .timeline-item-stats {
        grid-template-columns: 1fr;
    }
}
/* ===== CLEAN HORIZONTAL CYLINDER LAYOUT ===== */

.vision-mission-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

/* Cylinder Container */
.cylinder-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, 
        #ffffff 0%,
        #f9fbfd 30%,
        #f9fbfd 70%,
        #ffffff 100%
    );
    border-radius: 100px;
    padding: 40px 60px;
    margin: 60px 0;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Cylinder side caps */
.cylinder-row::before,
.cylinder-row::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 100%;
    background: inherit;
    top: 0;
}

.cylinder-row::before {
    left: -100px;
    border-radius: 100px 0 0 100px;
    background: linear-gradient(90deg, 
        rgba(76, 175, 80, 0.05),
        transparent
    );
}

.cylinder-row::after {
    right: -100px;
    border-radius: 0 100px 100px 0;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 152, 0, 0.05)
    );
}

/* Title Side (Left) */
.cylinder-title-container {
    flex: 0 0 25%;
    padding-right: 40px;
    text-align: left;
}

.cylinder-main-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    line-height: 1.2;
}

.cylinder-main-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--green-primary);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.cylinder-subtitle {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-top: 25px;
    line-height: 1.6;
}

/* Content Middle */
.cylinder-content-container {
    flex: 0 0 50%;
    padding: 0 40px;
    text-align: center;
    position: relative;
}

.cylinder-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--green-primary);
    position: relative;
    overflow: hidden;
}

.cylinder-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(76, 175, 80, 0.03) 0%,
        transparent 100%);
    z-index: 0;
}

.cylinder-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-primary), #8BC34A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
}

.cylinder-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Image Side (Right) */
.cylinder-image-container {
    flex: 0 0 25%;
    padding-left: 40px;
    text-align: center;
}

.cylinder-image-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid white;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 12px rgba(76, 175, 80, 0.08);
    margin: 0 auto;
    position: relative;
}

.cylinder-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cylinder-image-wrapper:hover img {
    transform: scale(1.1);
}

.image-caption {
    margin-top: 20px;
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-style: italic;
}

/* Mission Row (Reversed colors) */
.mission-row .cylinder-row {
    background: linear-gradient(90deg, 
        #ffffff 0%,
        #fff9f2 30%,
        #fff9f2 70%,
        #ffffff 100%
    );
}

.mission-row .cylinder-row::before {
    background: linear-gradient(90deg, 
        rgba(255, 152, 0, 0.05),
        transparent
    );
}

.mission-row .cylinder-row::after {
    background: linear-gradient(90deg, 
        transparent,
        rgba(76, 175, 80, 0.05)
    );
}

.mission-row .cylinder-content {
    border-left-color: var(--orange-primary);
}

.mission-row .cylinder-content::before {
    background: linear-gradient(135deg, 
        rgba(255, 152, 0, 0.03) 0%,
        transparent 100%);
}

.mission-row .cylinder-icon {
    background: linear-gradient(135deg, var(--orange-primary), #FFB74D);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.2);
}

.mission-row .cylinder-main-title::after {
    background: var(--orange-primary);
}

/* For mission, swap title and image positions visually */
.mission-row .cylinder-title-container {
    order: 3;
    text-align: right;
    padding-right: 0;
    padding-left: 40px;
}

.mission-row .cylinder-title-container .cylinder-main-title::after {
    left: auto;
    right: 0;
}

.mission-row .cylinder-image-container {
    order: 1;
    padding-left: 0;
    padding-right: 40px;
}

.mission-row .cylinder-content-container {
    order: 2;
}

/* Hover Effects */
.cylinder-row:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
}

.cylinder-row:hover .cylinder-icon {
    transform: rotate(15deg) scale(1.1);
    transition: transform 0.4s ease;
}

/* Responsive */
@media (max-width: 1200px) {
    .cylinder-row {
        padding: 30px 40px;
    }
    
    .cylinder-main-title {
        font-size: 2.5rem;
    }
    
    .cylinder-image-wrapper {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 992px) {
    .cylinder-row {
        flex-direction: column;
        border-radius: 40px;
        padding: 40px;
    }
    
    .cylinder-row::before,
    .cylinder-row::after {
        display: none;
    }
    
    .cylinder-title-container,
    .cylinder-content-container,
    .cylinder-image-container {
        flex: 0 0 100%;
        width: 100%;
        padding: 20px 0;
        text-align: center;
    }
    
    .cylinder-main-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mission-row .cylinder-title-container .cylinder-main-title::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .mission-row .cylinder-title-container,
    .mission-row .cylinder-image-container {
        text-align: center;
        padding: 20px 0;
    }
    
    .cylinder-image-wrapper {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .cylinder-main-title {
        font-size: 2.2rem;
    }
    
    .cylinder-content {
        padding: 30px;
    }
    
    .cylinder-text {
        font-size: 1rem;
    }
}
/* ===== CYLINDER WITH EXTERNAL TITLE ===== */

.vision-mission-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

/* Main Container */
.cylinder-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 80px 0;
}

/* Title Section (Outside Cylinder) */
.external-title {
    flex: 0 0 35%;
}

.external-title h2 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.external-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: var(--green-primary);
    bottom: -15px;
    left: 0;
    border-radius: 3px;
}

.external-title .subtitle {
    color: var(--dark-gray);
    font-size: 1.2rem;
    margin-top: 30px;
    line-height: 1.6;
}

/* Mission title styling */
.mission-cylinder-layout .external-title h2::after {
    background: var(--orange-primary);
}

/* Cylinder Container (Right Side) */
.cylinder-right {
    flex: 0 0 65%;
    display: flex;
    justify-content: flex-end;
}

/* The Main Cylinder */
.main-cylinder {
    width: 600px;
    height: 300px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.98) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
    border-radius: 150px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Cylinder End Caps */
.main-cylinder::before,
.main-cylinder::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: inherit;
    top: 0;
    z-index: 1;
}

.main-cylinder::before {
    left: -150px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.95)
    );
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        5px 0 15px rgba(0, 0, 0, 0.05);
}

.main-cylinder::after {
    right: -150px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.98)
    );
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        -5px 0 15px rgba(0, 0, 0, 0.05);
}

/* Photo inside Cylinder (Left End) */
.cylinder-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid white;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 0 0 15px rgba(76, 175, 80, 0.08);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.cylinder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cylinder-photo:hover img {
    transform: scale(1.1);
}

/* Text Content inside Cylinder (Right of Photo) */
.cylinder-statement {
    flex: 1;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.cylinder-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    padding-left: 30px;
    border-left: 3px solid var(--green-primary);
}

/* Quote icon */
.cylinder-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(76, 175, 80, 0.2);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
    font-weight: bold;
}

/* Mission Cylinder Styling */
.mission-cylinder .main-cylinder::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98),
        rgba(255, 255, 255, 0.95)
    );
}

.mission-cylinder .main-cylinder::after {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.98)
    );
}

.mission-cylinder .cylinder-text {
    border-left-color: var(--orange-primary);
    padding-left: 30px;
    padding-right: 0;
}

.mission-cylinder .cylinder-text::before {
    color: rgba(255, 152, 0, 0.2);
}

.mission-cylinder .cylinder-photo {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 0 0 15px rgba(255, 152, 0, 0.08);
}

/* Mission Layout (Reversed) */
.mission-cylinder-layout {
    flex-direction: row-reverse;
}

.mission-cylinder-layout .cylinder-right {
    justify-content: flex-start;
}

.mission-cylinder-layout .external-title {
    text-align: right;
}

.mission-cylinder-layout .external-title h2::after {
    left: auto;
    right: 0;
}

/* Cylinder Hover Effects */
.main-cylinder {
    transition: all 0.4s ease;
}

.main-cylinder:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.main-cylinder:hover .cylinder-photo {
    transform: scale(1.05);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.2),
        0 0 0 15px rgba(76, 175, 80, 0.12);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-cylinder {
        width: 550px;
        height: 280px;
    }
    
    .cylinder-photo {
        width: 220px;
        height: 220px;
    }
    
    .external-title h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .cylinder-layout {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .external-title {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .external-title h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mission-cylinder-layout .external-title h2::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .mission-cylinder-layout .external-title {
        text-align: center;
    }
    
    .cylinder-right {
        flex: 0 0 auto;
        width: 100%;
        justify-content: center !important;
    }
    
    .main-cylinder {
        width: 100%;
        max-width: 600px;
        height: auto;
        min-height: 250px;
        flex-direction: column;
        padding: 40px;
        border-radius: 40px;
    }
    
    .main-cylinder::before,
    .main-cylinder::after {
        display: none;
    }
    
    .cylinder-photo {
        margin-bottom: 30px;
    }
    
    .cylinder-statement {
        padding: 0;
        text-align: center;
    }
    
    .cylinder-text {
        border-left: none;
        padding-left: 0;
        border-top: 3px solid var(--green-primary);
        padding-top: 20px;
    }
    
    .mission-cylinder .cylinder-text {
        border-top-color: var(--orange-primary);
    }
    
    .cylinder-text::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .external-title h2 {
        font-size: 2.5rem;
    }
    
    .cylinder-photo {
        width: 200px;
        height: 200px;
    }
    
    .cylinder-text {
        font-size: 1.05rem;
    }
    
    .vision-mission-section {
        padding: 70px 0;
    }
}
/* ===== STEP 1: PERFECT CYLINDER WITH IMAGE ===== */

.vision-mission-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

/* Simple container for alignment */
.cylinder-simple-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 80px 0;
    min-height: 350px;
}

/* The Perfect Cylinder */
.perfect-cylinder {
    width: 350px;
    height: 350px;
    position: relative;
    flex-shrink: 0;
}

/* Cylinder Body */
.cylinder-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.98)
    );
    border-radius: 175px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Perfectly Fitted Image */
.cylinder-image-perfect {
    width: 100%;
    height: 100%;
    border-radius: 175px;
    overflow: hidden;
    position: relative;
}

.cylinder-image-perfect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

/* Image Overlay */
.cylinder-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(76, 175, 80, 0.1),
        rgba(255, 152, 0, 0.1)
    );
    border-radius: 175px;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

/* Cylinder End Caps */
.cylinder-end {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    top: 0;
    z-index: -1;
}

.cylinder-end.left {
    left: -50px;
    box-shadow: 
        inset 5px 0 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

.cylinder-end.right {
    right: -50px;
    box-shadow: 
        inset -5px 0 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* Hover Effects */
.perfect-cylinder:hover .cylinder-image-perfect img {
    transform: scale(1.1);
}

.perfect-cylinder:hover .cylinder-image-overlay {
    opacity: 0.5;
}

.perfect-cylinder:hover .cylinder-body {
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Mission Cylinder Color */
.mission-cylinder .cylinder-image-overlay {
    background: linear-gradient(
        135deg,
        rgba(255, 152, 0, 0.15),
        rgba(76, 175, 80, 0.1)
    );
}
/* ===== STEP 3: ADD TITLES ON OTHER SIDE ===== */

/* Title Container */
.cylinder-title-side {
    flex: 1;
    padding: 40px;
}

/* Vision Title (Left of cylinder) */
.vision-title-container .cylinder-title-side {
    text-align: right;
    padding-right: 80px;
}

/* Mission Title (Right of cylinder) */
.mission-title-container .cylinder-title-side {
    text-align: left;
    padding-left: 80px;
}

/* Main Title */
.cylinder-main-heading {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

/* Title Underline */
.cylinder-main-heading::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: var(--green-primary);
    bottom: -15px;
    border-radius: 3px;
}

.vision-title-container .cylinder-main-heading::after {
    right: 0;
}

.mission-title-container .cylinder-main-heading::after {
    left: 0;
}

.mission-title-container .cylinder-main-heading::after {
    background: var(--orange-primary);
}

/* Subtitle */
.cylinder-sub-heading {
    color: var(--dark-gray);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 35px;
    max-width: 500px;
}

.vision-title-container .cylinder-sub-heading {
    margin-left: auto;
}

/* Layout Containers */
.vision-title-container {
    display: flex;
    align-items: center;
    margin: 80px 0;
}

.vision-title-container .perfect-cylinder {
    order: 2;
}

.vision-title-container .cylinder-title-side {
    order: 1;
}

.mission-title-container {
    display: flex;
    align-items: center;
    margin: 80px 0;
}

.mission-title-container .perfect-cylinder {
    order: 1;
}

.mission-title-container .cylinder-title-side {
    order: 2;
}
/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .perfect-cylinder {
        width: 300px;
        height: 300px;
    }
    
    .cylinder-main-heading {
        font-size: 3rem;
    }
    
    .vision-title-container .cylinder-title-side {
        padding-right: 60px;
    }
    
    .mission-title-container .cylinder-title-side {
        padding-left: 60px;
    }
}

@media (max-width: 992px) {
    .vision-title-container,
    .mission-title-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .vision-title-container .perfect-cylinder,
    .mission-title-container .perfect-cylinder {
        order: 1;
    }
    
    .vision-title-container .cylinder-title-side,
    .mission-title-container .cylinder-title-side {
        order: 2;
        padding: 0 20px;
        text-align: center;
    }
    
    .cylinder-main-heading::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }
    
    .cylinder-sub-heading {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 600px;
    }
    
    .perfect-cylinder {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .cylinder-main-heading {
        font-size: 2.5rem;
    }
    
    .perfect-cylinder {
        width: 250px;
        height: 250px;
    }
    
    .cylinder-sub-heading {
        font-size: 1.1rem;
    }
    
    .vision-mission-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .perfect-cylinder {
        width: 220px;
        height: 220px;
    }
    
    .cylinder-main-heading {
        font-size: 2.2rem;
    }
}
/* ===== CIRCULAR IMAGES WITH TITLES ===== */

.vision-mission-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

/* Layout Container */
.circular-layout {
    display: flex;
    align-items: center;
    min-height: 400px;
    margin: 80px 0;
}

/* Title Side */
.circular-title-side {
    flex: 1;
    padding: 40px;
}

/* Title Styling */
.circular-title {
    font-size: 3.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.circular-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: var(--green-primary);
    bottom: -15px;
    left: 0;
    border-radius: 3px;
}

/* Mission Title Color */
.mission-layout .circular-title::after {
    background: var(--orange-primary);
}

/* Description */
.circular-description {
    color: var(--dark-gray);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-top: 35px;
    max-width: 500px;
}

/* Image Side */
.circular-image-side {
    flex: 0 0 auto;
    padding: 40px;
}

/* Circular Image Container */
.circular-image-container {
    width: 320px;
    height: 320px;
    position: relative;
}

/* Main Circular Image */
.circular-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 12px solid white;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 0 0 15px rgba(76, 175, 80, 0.08);
    position: relative;
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

/* Image Overlay */
.circular-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(76, 175, 80, 0.15),
        rgba(255, 152, 0, 0.1)
    );
    border-radius: 50%;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Mission Image Overlay */
.mission-layout .circular-overlay {
    background: linear-gradient(
        135deg,
        rgba(255, 152, 0, 0.15),
        rgba(76, 175, 80, 0.1)
    );
}

/* Decorative Ring */
.circular-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px dashed rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
    pointer-events: none;
}

.mission-layout .circular-ring {
    border-color: rgba(255, 152, 0, 0.2);
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hover Effects */
.circular-image-container:hover .circular-image img {
    transform: scale(1.1);
}

.circular-image-container:hover .circular-overlay {
    opacity: 0.5;
}

.circular-image-container:hover .circular-image {
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.18),
        0 0 0 15px rgba(76, 175, 80, 0.12);
}

.circular-image-container:hover .circular-ring {
    animation-duration: 10s;
    border-width: 3px;
}

/* Vision Layout: Title Left, Image Right */
.vision-layout {
    flex-direction: row;
}

.vision-layout .circular-title-side {
    text-align: right;
    padding-right: 80px;
}

.vision-layout .circular-title::after {
    left: auto;
    right: 0;
}

.vision-layout .circular-description {
    margin-left: auto;
}

.vision-layout .circular-image-side {
    padding-left: 80px;
}

/* Mission Layout: Image Left, Title Right */
.mission-layout {
    flex-direction: row-reverse;
}

.mission-layout .circular-title-side {
    text-align: left;
    padding-left: 80px;
}

.mission-layout .circular-title::after {
    left: 0;
    right: auto;
}

.mission-layout .circular-image-side {
    padding-right: 80px;
}
/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .circular-image-container {
        width: 280px;
        height: 280px;
    }
    
    .circular-title {
        font-size: 2.8rem;
    }
    
    .vision-layout .circular-title-side {
        padding-right: 60px;
    }
    
    .vision-layout .circular-image-side {
        padding-left: 60px;
    }
    
    .mission-layout .circular-title-side {
        padding-left: 60px;
    }
    
    .mission-layout .circular-image-side {
        padding-right: 60px;
    }
}

@media (max-width: 992px) {
    .circular-layout {
        flex-direction: column !important;
        text-align: center;
        gap: 50px;
    }
    
    .circular-title-side {
        padding: 0 20px !important;
        text-align: center !important;
    }
    
    .circular-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }
    
    .circular-description {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 600px;
    }
    
    .circular-image-side {
        padding: 0 !important;
    }
    
    .circular-image-container {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .circular-title {
        font-size: 2.4rem;
    }
    
    .circular-image-container {
        width: 240px;
        height: 240px;
    }
    
    .circular-description {
        font-size: 1.1rem;
    }
    
    .vision-mission-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .circular-image-container {
        width: 220px;
        height: 220px;
    }
    
    .circular-title {
        font-size: 2.2rem;
    }
    
    .circular-image {
        border-width: 8px;
    }
}
/* ===== ALTERNATING CIRCULAR IMAGES WITH ORANGE UNDERLINES ===== */

.vision-mission-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

/* Section Header */
.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center .section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header-center .section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background: var(--orange-primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-header-center .section-subtitle {
    color: var(--dark-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Layout Container */
.alternating-layout {
    display: flex;
    align-items: center;
    min-height: 380px;
    margin: 80px 0;
}

/* Even items: Image on Right */
.alternating-layout:nth-child(even) {
    flex-direction: row;
}

/* Odd items: Image on Left */
.alternating-layout:nth-child(odd) {
    flex-direction: row-reverse;
}

/* Title Side */
.alternating-title-side {
    flex: 1;
    padding: 40px;
}

/* Image Side */
.alternating-image-side {
    flex: 0 0 auto;
    padding: 40px;
}

/* Title Styling with ORANGE Underline */
.alternating-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.alternating-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: var(--orange-primary); /* ORANGE underline */
    bottom: -15px;
    left: 0;
    border-radius: 3px;
}

/* For even items (image on right), title aligns left */
.alternating-layout:nth-child(even) .alternating-title::after {
    left: 0;
    right: auto;
}

/* For odd items (image on left), title aligns right */
.alternating-layout:nth-child(odd) .alternating-title::after {
    left: auto;
    right: 0;
}

/* Description */
.alternating-description {
    color: var(--dark-gray);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-top: 35px;
    max-width: 500px;
}

.alternating-layout:nth-child(even) .alternating-description {
    text-align: left;
}

.alternating-layout:nth-child(odd) .alternating-description {
    text-align: right;
    margin-left: auto;
}

/* Circular Image Container */
.alternating-image-container {
    width: 300px;
    height: 300px;
    position: relative;
}

/* Circular Image */
.alternating-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid white;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 0 0 15px rgba(255, 152, 0, 0.08); /* Orange glow */
    position: relative;
}

.alternating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

/* Orange Overlay */
.alternating-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 152, 0, 0.2), /* Orange overlay */
        rgba(255, 183, 77, 0.15)
    );
    border-radius: 50%;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Rotating Ring - Orange */
.alternating-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px dashed rgba(255, 152, 0, 0.3); /* Orange ring */
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hover Effects */
.alternating-image-container:hover .alternating-image img {
    transform: scale(1.1);
}

.alternating-image-container:hover .alternating-overlay {
    opacity: 0.5;
}

.alternating-image-container:hover .alternating-image {
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.18),
        0 0 0 15px rgba(255, 152, 0, 0.15); /* Brighter orange glow */
}

.alternating-image-container:hover .alternating-ring {
    animation-duration: 10s;
    border-width: 3px;
    border-color: rgba(255, 152, 0, 0.5); /* Brighter orange on hover */
}
/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .alternating-image-container {
        width: 280px;
        height: 280px;
    }
    
    .alternating-title {
        font-size: 2.5rem;
    }
    
    .alternating-title-side {
        padding: 30px;
    }
    
    .alternating-image-side {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .alternating-layout {
        flex-direction: column !important;
        text-align: center;
        gap: 50px;
        margin: 60px 0;
    }
    
    .alternating-title-side {
        padding: 0 20px !important;
        text-align: center !important;
    }
    
    .alternating-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .alternating-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 600px;
    }
    
    .alternating-image-side {
        padding: 0 !important;
        order: -1; /* Image comes first on mobile */
    }
    
    .alternating-image-container {
        width: 260px;
        height: 260px;
    }
    
    .section-header-center .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .alternating-title {
        font-size: 2.2rem;
    }
    
    .alternating-image-container {
        width: 240px;
        height: 240px;
    }
    
    .alternating-description {
        font-size: 1.1rem;
    }
    
    .section-header-center .section-title {
        font-size: 2.2rem;
    }
    
    .vision-mission-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .alternating-image-container {
        width: 220px;
        height: 220px;
    }
    
    .alternating-title {
        font-size: 2rem;
    }
    
    .alternating-image {
        border-width: 8px;
    }
}
/* ===== FIXED ALTERNATING LAYOUT ===== */

.vision-mission-section {
    background-color: #f8fafc;
    padding: 100px 0;
    position: relative;
}

/* Section Header */
.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center .section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header-center .section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background: var(--orange-primary);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-header-center .section-subtitle {
    color: var(--dark-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Base Layout */
.alternating-layout {
    display: flex;
    align-items: center;
    min-height: 380px;
    margin: 80px 0;
}

/* Vision & Objectives: Image on Right */
.layout-right-image {
    flex-direction: row; /* Title Left, Image Right */
}

/* Mission & Values: Image on Left */
.layout-left-image {
    flex-direction: row-reverse; /* Image Left, Title Right */
}

/* Title Side */
.alternating-title-side {
    flex: 1;
    padding: 40px;
}

/* Image Side */
.alternating-image-side {
    flex: 0 0 auto;
    padding: 40px;
}

/* Title Styling with ORANGE Underline */
.alternating-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.alternating-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 5px;
    background: var(--orange-primary);
    bottom: -15px;
    border-radius: 3px;
}

/* For right-image layouts (Vision, Objectives): title aligns left */
.layout-right-image .alternating-title::after {
    left: 0;
    right: auto;
}

.layout-right-image .alternating-title-side {
    text-align: left;
}

/* For left-image layouts (Mission, Values): title aligns right */
.layout-left-image .alternating-title::after {
    left: auto;
    right: 0;
}

.layout-left-image .alternating-title-side {
    text-align: right;
}

/* Description */
.alternating-description {
    color: var(--dark-gray);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-top: 35px;
    max-width: 500px;
}

.layout-right-image .alternating-description {
    text-align: left;
}

.layout-left-image .alternating-description {
    text-align: right;
    margin-left: auto;
}

/* Circular Image Container */
.alternating-image-container {
    width: 300px;
    height: 300px;
    position: relative;
}

/* Circular Image */
.alternating-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid white;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 0 0 15px rgba(255, 152, 0, 0.08);
    position: relative;
}

.alternating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

/* Orange Overlay */
.alternating-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 152, 0, 0.2),
        rgba(255, 183, 77, 0.15)
    );
    border-radius: 50%;
    opacity: 0.3;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Rotating Ring - Orange */
.alternating-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px dashed rgba(255, 152, 0, 0.3);
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hover Effects */
.alternating-image-container:hover .alternating-image img {
    transform: scale(1.1);
}

.alternating-image-container:hover .alternating-overlay {
    opacity: 0.5;
}

.alternating-image-container:hover .alternating-image {
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.18),
        0 0 0 15px rgba(255, 152, 0, 0.15);
}

.alternating-image-container:hover .alternating-ring {
    animation-duration: 10s;
    border-width: 3px;
    border-color: rgba(255, 152, 0, 0.5);
}
/* ===== FIXED RESPONSIVE DESIGN ===== */

@media (max-width: 1200px) {
    .alternating-image-container {
        width: 280px;
        height: 280px;
    }
    
    .alternating-title {
        font-size: 2.5rem;
    }
    
    .alternating-title-side {
        padding: 30px;
    }
    
    .alternating-image-side {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .alternating-layout {
        flex-direction: column !important;
        text-align: center;
        gap: 50px;
        margin: 60px 0;
    }
    
    .alternating-title-side {
        padding: 0 20px !important;
        text-align: center !important;
        order: 2;
    }
    
    .alternating-title::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .alternating-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 600px;
    }
    
    .alternating-image-side {
        padding: 0 !important;
        order: 1; /* Image comes first on mobile */
    }
    
    .alternating-image-container {
        width: 260px;
        height: 260px;
    }
    
    .section-header-center .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .alternating-title {
        font-size: 2.2rem;
    }
    
    .alternating-image-container {
        width: 240px;
        height: 240px;
    }
    
    .alternating-description {
        font-size: 1.1rem;
    }
    
    .section-header-center .section-title {
        font-size: 2.2rem;
    }
    
    .vision-mission-section {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .alternating-image-container {
        width: 220px;
        height: 220px;
    }
    
    .alternating-title {
        font-size: 2rem;
    }
    
    .alternating-image {
        border-width: 8px;
    }
}
/* Force Vision & Objectives: Image on RIGHT */
#vision .alternating-layout:nth-of-type(2),
#vision .alternating-layout:nth-of-type(1) {
    flex-direction: row !important;
}

#vision .alternating-layout:nth-of-type(2) .alternating-title-side,
#vision .alternating-layout:nth-of-type(1) .alternating-title-side {
    text-align: left !important;
    padding-right: 80px !important;
}

#vision .alternating-layout:nth-of-type(2) .alternating-title::after,
#vision .alternating-layout:nth-of-type(1) .alternating-title::after {
    left: 0 !important;
    right: auto !important;
}

/* Force Mission & Values: Image on LEFT */
#vision .alternating-layout:nth-of-type(2),
#vision .alternating-layout:nth-of-type(4) {
    flex-direction: row-reverse !important;
}

#vision .alternating-layout:nth-of-type(2) .alternating-title-side,
#vision .alternating-layout:nth-of-type(4) .alternating-title-side {
    text-align: right !important;
    padding-left: 80px !important;
}

#vision .alternating-layout:nth-of-type(2) .alternating-title::after,
#vision .alternating-layout:nth-of-type(4) .alternating-title::after {
    left: auto !important;
    right: 0 !important;
}
