﻿/* Leadership Section - Alternating Card Design */
.leadership-section {
    width: 100%;
    background: linear-gradient(135deg, #FEF9F0 0%, #FEF5E8 100%);
    padding: 80px 5%;
    position: relative;
}

.leadership-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.leadership-header {
    text-align: center;
    margin-bottom: 60px;
}

.leadership-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.leadership-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2D2A24;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

    .leadership-title .highlight {
        color: #FF8C00;
        position: relative;
        display: inline-block;
    }

        .leadership-title .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #FF8C00, #FFD700);
            border-radius: 3px;
        }

.leadership-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Alternating Cards - Professional Design */
.leader-card {
    display: flex;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .leader-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
    }

/* First Card - Archana Gole (Image on Right, Gold Theme) */
.leader-card-right {
    background: linear-gradient(135deg, #FFF8F0, #FFF5E8);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

    .leader-card-right .leader-content-left {
        flex: 1;
        padding: 50px 40px;
    }

    .leader-card-right .leader-image-right {
        flex: 1;
        position: relative;
        background: linear-gradient(135deg, #FFE8D4, #FFD8B8);
    }

/* Second Card - Dr. Sachin Gole (Image on Left, Green Theme) */
.leader-card-left {
    background: linear-gradient(135deg, #F0F8F0, #E8F5E8);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

    .leader-card-left .leader-image-left {
        flex: 1;
        position: relative;
        background: linear-gradient(135deg, #E0F0E0, #D0E8D0);
    }

    .leader-card-left .leader-content-right {
        flex: 1;
        padding: 50px 40px;
    }

/* Image Wrappers */
.image-wrapper-right, .image-wrapper-left {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}

.leader-image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image-full {
    transform: scale(1.03);
}

/* Image Badges */
.image-badge-right, .image-badge-left {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.image-badge-right {
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    right: 30px;
}

.image-badge-left {
    background: linear-gradient(135deg, #25D366, #128C7E);
    left: 30px;
    right: auto;
}

.image-overlay-gold, .image-overlay-green {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.image-overlay-gold {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(255, 107, 0, 0.05));
}

.image-overlay-green {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.05));
}

/* Content Sections */
.leader-info-full {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name-badge {
    display: inline-block;
    background: #FF8C00;
    color: white;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.green-badge {
    background: #25D366;
}

.leader-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2D2A24;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.leader-title {
    font-size: 0.9rem;
    color: #FF8C00;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.leader-card-left .leader-title {
    color: #25D366;
}

.leader-description-full p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

/* Achievements Section */
.leader-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
    flex: 1;
    min-width: 180px;
}

.achievement-icon {
    font-size: 1.3rem;
}

/* Expertise Tags */
.leader-expertise-full {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.expertise-tag {
    background: rgba(255, 140, 0, 0.1);
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #FF8C00;
}

.leader-card-left .expertise-tag {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

/* Mini Contact Button */
.leader-contact-mini {
    margin-top: 10px;
}

.mini-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

    .mini-wa-btn:hover {
        background: #128C7E;
        transform: translateX(5px);
    }

.green-btn {
    background: #FF8C00;
}

    .green-btn:hover {
        background: #e67e00;
    }

/* Vision, Mission & Moto Section */
.vision-mission-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.vision-card, .mission-card, .moto-card {
    background: white;
    padding: 35px;
    border-radius: 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

    .vision-card:hover, .mission-card:hover, .moto-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px rgba(255, 140, 0, 0.1);
    }

.vision-icon, .mission-icon, .moto-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vision-card h3, .mission-card h3, .moto-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D2A24;
    margin: 0 0 15px 0;
}

.vision-card p, .mission-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.moto-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FF8C00;
    margin: 0 0 10px 0;
}

.moto-sub {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* Company Backbone Section */
.company-backbone {
    background: white;
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.backbone-header {
    text-align: center;
    margin-bottom: 35px;
}

.backbone-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.backbone-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2D2A24;
    margin: 0 0 10px 0;
}

.backbone-header p {
    font-size: 0.95rem;
    color: #666;
}

.backbone-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.backbone-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: #FFF9F0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

    .backbone-item:hover {
        transform: translateY(-3px);
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

.backbone-icon-item {
    font-size: 2rem;
}

.backbone-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2D2A24;
    margin: 0 0 5px 0;
}

.backbone-item p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Excellence Section */
.excellence-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.excellence-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

    .excellence-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    }

.retail-card {
    border-top: 5px solid #FF8C00;
}

.export-card {
    border-top: 5px solid #25D366;
}

.excellence-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.excellence-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D2A24;
    margin: 0 0 20px 0;
}

.excellence-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

    .excellence-list li {
        padding: 8px 0;
        font-size: 0.9rem;
        color: #555;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .excellence-list li::before {
            content: "✓";
            color: #FF8C00;
            font-weight: bold;
        }

.export-card .excellence-list li::before {
    color: #25D366;
}

.excellence-cta {
    margin-top: 20px;
}

.excellence-btn {
    display: inline-block;
    background: #FF8C00;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

    .excellence-btn:hover {
        background: #e67e00;
        transform: translateX(5px);
    }

.export-card .excellence-btn {
    background: #25D366;
}

    .export-card .excellence-btn:hover {
        background: #128C7E;
    }

/* Leadership Contact */
.leadership-contact {
    background: linear-gradient(135deg, #FF8C00, #FF6B00);
    border-radius: 28px;
    padding: 35px;
    color: white;
}

.contact-lead-card {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.contact-lead-icon {
    font-size: 3rem;
}

.contact-lead-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.contact-lead-card p {
    font-size: 0.9rem;
    margin: 0 0 15px 0;
    opacity: 0.9;
}

.leadership-contact-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-lead-wa, .contact-lead-call, .contact-lead-email {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.contact-lead-wa {
    background: #25D366;
    color: white;
}

    .contact-lead-wa:hover {
        background: #128C7E;
        transform: scale(1.05);
    }

.contact-lead-call {
    background: white;
    color: #FF8C00;
}

    .contact-lead-call:hover {
        background: #FFF0E0;
        transform: scale(1.05);
    }

.contact-lead-email {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid white;
}

    .contact-lead-email:hover {
        background: white;
        color: #FF8C00;
        transform: scale(1.05);
    }

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
    .leadership-section {
        padding: 60px 4%;
    }

    .leadership-title {
        font-size: 2.2rem;
    }

    .leader-card {
        flex-direction: column;
    }

    .leader-card-right .leader-content-left,
    .leader-card-left .leader-content-right {
        padding: 40px;
        order: 1;
    }

    .leader-card-right .leader-image-right,
    .leader-card-left .leader-image-left {
        order: 2;
        min-height: 400px;
    }

    .image-wrapper-right, .image-wrapper-left {
        min-height: 400px;
    }

    .backbone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .leadership-section {
        padding: 50px 4%;
    }

    .leadership-title {
        font-size: 1.8rem;
    }

    .leadership-subtitle {
        font-size: 1rem;
    }

    .leader-name {
        font-size: 1.6rem;
    }

    .leader-card-right .leader-content-left,
    .leader-card-left .leader-content-right {
        padding: 30px;
    }

    .vision-mission-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .backbone-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .excellence-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .company-backbone {
        padding: 25px;
    }

    .backbone-header h3 {
        font-size: 1.5rem;
    }

    .leader-achievements {
        flex-direction: column;
        gap: 12px;
    }

    .achievement-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .leadership-section {
        padding: 40px 3%;
    }

    .leadership-title {
        font-size: 1.5rem;
    }

    .leadership-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }

    .leader-name {
        font-size: 1.3rem;
    }

    .leader-title {
        font-size: 0.8rem;
    }

    .leader-description-full p {
        font-size: 0.85rem;
    }

    .leader-card-right .leader-content-left,
    .leader-card-left .leader-content-right {
        padding: 25px;
    }

    .leader-card-right .leader-image-right,
    .leader-card-left .leader-image-left {
        min-height: 300px;
    }

    .image-wrapper-right, .image-wrapper-left {
        min-height: 300px;
    }

    .image-badge-right, .image-badge-left {
        padding: 5px 15px;
        font-size: 0.7rem;
    }

    .vision-card, .mission-card, .moto-card {
        padding: 25px;
    }

        .vision-card h3, .mission-card h3, .moto-card h3 {
            font-size: 1.2rem;
        }

    .moto-text {
        font-size: 1rem;
    }

    .excellence-card {
        padding: 25px;
    }

    .excellence-list li {
        font-size: 0.85rem;
    }

    .excellence-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .leadership-contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-lead-wa, .contact-lead-call, .contact-lead-email {
        text-align: center;
    }
}
