/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE - TATA.COM DESIGN STYLE
   Minimal, Clean, Professional
   ═══════════════════════════════════════════════════════════ */

/* Hero Section - Tata Style */
.tata-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1C4E80 0%, #0D2847 100%);
}

.hero-content-tata {
    position: relative;
    z-index: 2;
}

.hero-content-tata h1 {
    font-size: 56px;
    font-weight: 100;
    color: var(--white);
    letter-spacing: -0.02em;
}

/* About Elaborate Section */
.about-elaborate {
    padding: 120px 0;
    background: var(--white);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.elaborate-content {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: var(--space-xl);
    color: var(--text-dark);
}

.elaborate-content p {
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

/* Mission & Vision - Tata Style */
.mission-vision-section {
    padding: 120px 0;
    background: #F5F5F5;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xxl);
}

.mv-card {
    background: var(--white);
    padding: var(--space-xxl);
    border: 1px solid #E0E0E0;
}

.mv-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #1C4E80;
    margin-bottom: var(--space-lg);
}

.mv-card h2 {
    font-size: 28px;
    font-weight: 100;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.mv-card p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-gray);
}

/* Leadership Section - Tata Style */
.leadership-tata {
    padding: 120px 0;
    background: var(--white);
}

.leadership-intro h2 {
    font-size: 36px;
    font-weight: 100;
    margin-bottom: var(--space-xxl);
    color: var(--text-dark);
}

.md-featured {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 60px;
    align-items: start;
}

.md-image-large {
    border: 1px solid #E0E0E0;
}

.md-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

.md-details {
    padding-top: var(--space-lg);
}

.md-role {
    display: block;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.md-details h3 {
    font-size: 32px;
    font-weight: 100;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.md-linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #0077B5;
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
    margin-left: 8px;
}

.md-linkedin-icon:hover {
    background: #005885;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.md-linkedin-icon i {
    line-height: 1;
}

/* Phone and Email Icons */
.md-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
    margin-left: 8px;
    position: relative;
}

.md-phone-icon {
    background: #25D366;
}

.md-phone-icon:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.md-email-icon {
    background: #EA4335;
}

.md-email-icon:hover {
    background: #C5221F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

.md-contact-icon i {
    line-height: 1;
}

/* Tooltip on hover */
.md-contact-icon::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #1F2937;
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.md-contact-icon::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: #1F2937;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.md-contact-icon:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

.md-contact-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
}

.md-linkedin-icon::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #1F2937;
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.md-linkedin-icon::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: #1F2937;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.md-linkedin-icon:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

.md-linkedin-icon:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-6px);
}

.md-quote {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: var(--space-lg);
    padding-left: var(--space-lg);
    border-left: 2px solid #1C4E80;
}

.md-description {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: var(--space-xl);
}

.md-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid #E0E0E0;
}

.md-stat-item {
    text-align: center;
}

.md-stat-item .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 100;
    color: #1C4E80;
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.md-stat-item .stat-label {
    display: block;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Board Section - Tata Style */
.board-section {
    padding: 80px 0 120px;
    background: var(--white);
}

.board-title {
    font-size: 28px;
    font-weight: 100;
    margin-bottom: var(--space-xxl);
    color: var(--text-dark);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.board-member {
    text-align: center;
}

.board-image {
    border: 1px solid #E0E0E0;
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.board-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.board-member:hover .board-image img {
    transform: scale(1.05);
}

.board-member h4 {
    font-size: 18px;
    font-weight: 100;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.board-role {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-gray);
}

/* Teams Section - Tata Style */
.teams-tata {
    padding: 120px 0;
    background: #F5F5F5;
}

.team-department-tata {
    margin-bottom: 80px;
}

.team-department-tata:last-child {
    margin-bottom: 0;
}

/* Department Header - Exact Tata Style */
.dept-header-tata {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid #E0E0E0;
}

.dept-header-tata h3 {
    font-size: 24px;
    font-weight: 100;
    color: var(--text-dark);
    letter-spacing: 0;
}

/* Team Grid - Tata Style with Hover Effect */
.team-grid-tata {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.team-card-tata {
    background: var(--white);
    border: 1px solid #E0E0E0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card-tata:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.team-image-tata {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.team-image-tata img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card-tata:hover .team-image-tata img {
    transform: scale(1.05);
}

.team-info-tata {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(28, 78, 128, 0.95) 0%, rgba(28, 78, 128, 0.85) 100%);
    transform: translateY(100%);
    transition: var(--transition);
    text-align: center;
}

.team-card-tata:hover .team-info-tata {
    transform: translateY(0);
}

.team-info-tata h4 {
    font-size: 18px;
    font-weight: 100;
    margin-bottom: var(--space-xs);
    color: var(--white);
}

.team-role-tata {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
}

/* Career Arrow */
.career-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    margin-top: var(--space-sm);
}

.career-arrow:hover {
    background: var(--white);
    color: #1C4E80;
    border-color: var(--white);
    transform: translateX(4px);
}

/* Commitments Section */
.commitments-section {
    padding: 120px 0;
    background: var(--white);
}

.section-title-center {
    font-size: 36px;
    font-weight: 100;
    text-align: center;
    margin-bottom: var(--space-xxl);
    color: var(--text-dark);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.commitment-card {
    padding: var(--space-xl);
    border: 1px solid #E0E0E0;
    background: var(--white);
    transition: var(--transition);
}

.commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.commitment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1C4E80;
    margin-bottom: var(--space-md);
}

.commitment-card h3 {
    font-size: 20px;
    font-weight: 100;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.commitment-card p {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-gray);
}

/* FAQ Section */
.faq-about {
    padding: 120px 0;
    background: #F5F5F5;
}

.faq-list-about {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item-about {
    background: var(--white);
    border: 1px solid #E0E0E0;
}

.faq-question-about {
    width: 100%;
    padding: var(--space-lg);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question-about:hover {
    color: #1C4E80;
}

.faq-question-about i {
    font-size: 14px;
    color: #1C4E80;
    transition: var(--transition);
}

.faq-item-about.active .faq-question-about i {
    transform: rotate(45deg);
}

.faq-answer-about {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-about.active .faq-answer-about {
    max-height: 500px;
}

.faq-answer-about p {
    padding: 0 var(--space-lg) var(--space-lg);
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-tata h1 {
        font-size: 40px;
    }
    
    .md-featured {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid-tata {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tata-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-content-tata h1 {
        font-size: 32px;
    }
    
    .about-elaborate,
    .mission-vision-section,
    .leadership-tata,
    .teams-tata,
    .commitments-section,
    .faq-about {
        padding: 60px 0;
    }
    
    .lead-text {
        font-size: 20px;
    }
    
    .board-grid,
    .team-grid-tata,
    .commitments-grid {
        grid-template-columns: 1fr;
    }
}


/* Career Popup Modal */
.career-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.career-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.career-popup-container {
    background: var(--white);
    max-width: 1000px;
    width: 100%;
    border: 2px solid #E0E0E0;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-height: 90vh;
    height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.career-popup-overlay.active .career-popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 10;
    border-radius: 0;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--text-dark);
}

/* Tata-Style Popup Layout */
.popup-content {
    display: grid;
    grid-template-columns: 380px 1fr;
    height: 100%;
    overflow: hidden;
}

.popup-left {
    background: #f5f5f5;
    background-image: url('static/img/ect\ new\ logo\ bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 30px;
    overflow: hidden;
    position: relative;
}

.popup-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(58, 123, 213, 0.12) 0%, rgba(58, 123, 213, 0.12) 100%);
    pointer-events: none;
    z-index: 1;
}

.popup-image-wrapper {
    width: 100%;
    max-width: min(320px, 80vw);
    max-height: min(400px, 50vh);
    position: relative;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.popup-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    max-width: 100%;
    max-height: 100%;
}

.popup-right {
    background: white;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

/* Custom Scrollbar for Popup */
.popup-right::-webkit-scrollbar {
    width: 8px;
}

.popup-right::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.popup-right::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.popup-right::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.popup-header {
    padding: 50px 60px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.popup-header h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.2;
}

.popup-role {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.popup-body {
    padding: 40px 60px 50px;
    flex: 1;
    overflow-y: visible;
}

.popup-section {
    margin-bottom: 40px;
}

.popup-section h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.popup-section p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
}

.popup-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #fff;
    border-color: #1C4E80;
    transform: translateX(4px);
}

.contact-link i {
    font-size: 18px;
    color: #1C4E80;
    min-width: 20px;
}

.contact-link span {
    color: var(--text-dark);
}

/* Responsive Popup */
@media (max-width: 968px) {
    .career-popup-container {
        max-width: 95%;
        height: auto;
        max-height: 90vh;
    }
    
    .popup-content {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
    }
    
    .popup-left {
        padding: 30px 20px;
        border-bottom: 1px solid #e0e0e0;
        height: auto;
    }
    
    .popup-right {
        max-height: 60vh;
    }
    
    .popup-image-wrapper {
        max-width: min(280px, 80vw);
        max-height: min(350px, 45vh);
    }
    
    .popup-header {
        padding: 40px 35px 25px;
    }
    
    .popup-header h2 {
        font-size: 28px;
    }
    
    .popup-body {
        padding: 30px 35px 40px;
    }
}

@media (max-width: 768px) {
    .career-popup-overlay {
        padding: 10px;
    }
    
    .career-popup-container {
        max-width: 100%;
        max-height: 95vh;
        height: auto;
    }
    
    .popup-right {
        max-height: 55vh;
    }
    
    .popup-close {
        top: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .popup-left {
        padding: 25px 15px;
    }
    
    .popup-image-wrapper {
        max-width: min(240px, 75vw);
        max-height: min(300px, 40vh);
    }
    
    .popup-header {
        padding: 30px 25px 20px;
    }
    
    .popup-header h2 {
        font-size: 24px;
    }
    
    .popup-role {
        font-size: 14px;
    }
    
    .popup-body {
        padding: 25px 25px 35px;
    }
    
    .popup-section h3 {
        font-size: 18px;
    }
    
    .popup-section p {
        font-size: 14px;
    }
    
    .contact-link {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .contact-link i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .career-popup-overlay {
        padding: 5px;
    }
    
    .career-popup-container {
        height: auto;
        max-height: 95vh;
    }
    
    .popup-right {
        max-height: 50vh;
    }
    
    .popup-left {
        padding: 20px 10px;
    }
    
    .popup-image-wrapper {
        max-width: 200px;
    }
    
    .popup-header {
        padding: 25px 20px 15px;
    }
    
    .popup-header h2 {
        font-size: 20px;
    }
    
    .popup-role {
        font-size: 13px;
    }
    
    .popup-body {
        padding: 20px 20px 30px;
    }
    
    .popup-section {
        margin-bottom: 25px;
    }
    
    .popup-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .popup-section p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .popup-contact {
        gap: 10px;
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .contact-link {
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .contact-link i {
        font-size: 15px;
    }
    }
    
    .popup-contact a {
        font-size: 13px;
    }
    
    .popup-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }



.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Update career arrow to be a button */
.career-arrow {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
}


/* P.I.L.L.A.R.S Section */
.pillars-section {
    padding: 120px 0;
    background: #F5F5F5;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-pillars {
    font-size: 48px;
    font-weight: 100;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    letter-spacing: 8px;
}

.section-subtitle-pillars {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.highlight {
    color: #1C4E80;
    font-weight: 400;
}

.kural-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--white);
    border: 1px solid #E0E0E0;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 auto 60px;
    display: block;
    width: fit-content;
}

.pillars-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    min-height: 500px;
}

.pillar-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border: 2px solid #E0E0E0;
    padding: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: all 0.5s ease;
}

.pillar-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.pillar-logo {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 150px;
    height: 150px;
    opacity: 0.6;
}

.pillar-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(80%);
}

.pillar-content {
    position: relative;
}

.pillar-number {
    display: block;
    font-size: 72px;
    font-weight: 100;
    color: rgba(28, 78, 128, 0.1);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.pillar-title {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: var(--space-lg);
}

/* Language Toggle */
.language-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.lang-btn {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid #1C4E80;
    color: #1C4E80;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.lang-btn:hover {
    background: rgba(28, 78, 128, 0.1);
}

.lang-btn.active {
    background: #1C4E80;
    color: white;
}

/* Language Content */
.lang-content {
    display: none;
}

.lang-content.active {
    display: block;
}

.kural-line {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    font-style: italic;
    padding-left: var(--space-lg);
    border-left: 3px solid #1C4E80;
}

.kural-meaning {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.pillar-signature {
    text-align: right;
    padding-top: var(--space-lg);
    border-top: 1px solid #E0E0E0;
}

.pillar-signature span {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-dark);
    font-style: italic;
}

/* Navigation */
.pillars-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.pillar-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: transparent;
    border: 2px solid #1C4E80;
    font-size: 13px;
    font-weight: 500;
    color: #1C4E80;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    min-width: 100px;
}

.pillar-nav-btn:hover {
    background: #1C4E80;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 78, 128, 0.2);
}

.pillar-nav-btn i {
    font-size: 11px;
}

.pillar-nav-btn span {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.pillar-dots {
    display: flex;
    gap: 12px;
}

.pillar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E0E0E0;
    cursor: pointer;
    transition: var(--transition);
}

.pillar-dot.active {
    background: #1C4E80;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .pillars-section {
        padding: 60px 0;
    }
    
    .section-title-pillars {
        font-size: 32px;
        letter-spacing: 4px;
    }
    
    .pillar-card {
        padding: 40px 30px;
    }
    
    .pillar-logo {
        width: 100px;
        height: 100px;
        top: 30px;
        right: 30px;
        opacity: 0.5;
    }
        
    
    .pillar-number {
        font-size: 48px;
    }
    
    .pillar-title {
        font-size: 20px;
    }
    
    .kural-line {
        font-size: 16px;
    }
    
    .pillars-nav {
        gap: 20px;
    }
    
    .pillar-nav-btn {
        padding: 8px 16px;
        min-width: 90px;
        font-size: 12px;
    }
    
    .pillar-nav-btn span {
        font-size: 12px;
    }
    
    .pillar-nav-btn i {
        font-size: 10px;
    }



/* FAQ Section */
.faq-about-section {
    padding: 120px 0;
    background: var(--white);
}

.faq-intro {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
}

.faq-list-about {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item-about {
    border-bottom: 1px solid #E0E0E0;
}

.faq-item-about:last-child {
    border-bottom: none;
}

.faq-question-about {
    width: 100%;
    padding: var(--space-lg) 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question-about:hover {
    color: #1C4E80;
}

.faq-question-about i {
    font-size: 14px;
    color: #1C4E80;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item-about.active .faq-question-about i {
    transform: rotate(45deg);
}

.faq-answer-about {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-about.active .faq-answer-about {
    max-height: 500px;
}

.faq-answer-about p {
    padding: 0 0 var(--space-lg);
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
    color: var(--text-gray);
}

@media (max-width: 768px) {}
 .faq-about-section {
        padding: 60px 0;
    }
    
    .faq-question-about {
        font-size: 16px;
    }
    }





/* ═══════════════════════════════════════════════════════════
   MD PROFILE SECTION - Clean Professional Design
   ═══════════════════════════════════════════════════════════ */

.md-profile-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

.md-profile-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    background: #FFFFFF;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    align-items: start;
}

.md-profile-image {
    position: relative;
}

.md-profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.md-profile-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid #3A7BD5;
    z-index: -1;
}

.md-profile-role {
    display: inline-block;
    padding: 8px 20px;
    background: #3A7BD5;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.md-profile-name {
    font-size: 36px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.md-profile-social {
    display: flex;
    gap: 12px;
}

.md-profile-social a {
    width: 40px;
    height: 40px;
    border: 2px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-size: 16px;
    transition: all 0.3s ease;
}

.md-profile-social a:hover {
    background: #3A7BD5;
    border-color: #3A7BD5;
    color: #FFFFFF;
}

.md-profile-quote {
    position: relative;
    padding: 24px 30px;
    background: #F9FAFB;
    border-left: 4px solid #3A7BD5;
    margin-bottom: 30px;
    font-size: 18px;
    font-style: italic;
    color: #374151;
    line-height: 1.7;
}

.md-profile-quote i {
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 24px;
    color: #3A7BD5;
    background: #F9FAFB;
    padding: 0 8px;
}

.md-profile-bio p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 16px;
}

.md-profile-bio p:last-child {
    margin-bottom: 0;
}

.md-profile-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #E5E7EB;
}

.md-stat {
    text-align: center;
}

.md-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #3A7BD5;
    line-height: 1;
    margin-bottom: 8px;
}

.md-stat-label {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

/* Responsive MD Profile */
@media (max-width: 1024px) {
    .md-profile-card {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .md-profile-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .md-profile-image::after {
        bottom: -15px;
        left: -15px;
    }
}

@media (max-width: 768px) {
    .md-profile-section {
        padding: 60px 0;
    }
    
    .md-profile-card {
        padding: 30px 20px;
    }
    
    .md-profile-name {
        font-size: 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .md-profile-quote {
        font-size: 16px;
        padding: 20px;
    }
    
    .md-profile-stats {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    
    .md-stat-number {
        font-size: 28px;
    }
}
