﻿/* Leadership Team Page Styles */

/* Leadership Hero Section */
.leadership-hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(21, 101, 192, 0.1) 100%);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leadership-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leadership-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%231976d2" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leadership-dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.leadership-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.leadership-hero-header {
    margin-bottom: 40px;
}

.leadership-hero-subtitle {
    font-size: 1.8rem;
    color: #1976d2;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.leadership-hero-title {
    font-size: 4rem;
    color: #2c3e50;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.leadership-hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #1565c0);
    border-radius: 2px;
}

.leadership-hero-description {
    margin-bottom: 0;
}

.leadership-hero-description p {
    font-size: 1.4rem;
    color: #6c757d;
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Executive Leadership Section */
.executive-leadership-section {
    padding: 120px 0;
    background: #ffffff;
}

.executive-leadership-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.executive-leadership-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.executive-leadership-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #1565c0);
    border-radius: 2px;
}

.executive-leadership-header p {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
}

.executive-leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.leadership-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(25, 118, 210, 0.15);
    border-color: #1976d2;
}

.leadership-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.3s ease;
}

.leadership-card:hover .leadership-image img {
    
}

.leadership-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.9) 0%, rgba(21, 101, 192, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leadership-card:hover .leadership-overlay {
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

.contact-btn i {
    font-size: 1.1rem;
}

.leadership-content {
    padding: 40px;
}

.leadership-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.leadership-role {
    font-size: 1.2rem;
    color: #1976d2;
    margin-bottom: 20px;
    font-weight: 600;
}

.leadership-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Leadership Page */
@media (max-width: 1024px) {
    .executive-leadership-grid {
        gap: 40px;
    }
    
    .leadership-image {
        height: 350px;
    }
    
    .leadership-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .leadership-hero-section {
        padding: 80px 0;
        min-height: 50vh;
    }
    
    .leadership-hero-title {
        font-size: 2.8rem;
    }
    
    .leadership-hero-subtitle {
        font-size: 1.4rem;
    }
    
    .leadership-hero-description p {
        font-size: 1.2rem;
    }
    
    .executive-leadership-section {
        padding: 80px 0;
    }
    
    .executive-leadership-header h2 {
        font-size: 2.5rem;
    }
    
    .executive-leadership-header p {
        font-size: 1.1rem;
    }
    
    .executive-leadership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .leadership-image {
        height: 300px;
    }
    
    .leadership-content {
        padding: 25px;
    }
    
    .leadership-content h3 {
        font-size: 1.6rem;
    }
    
    .leadership-role {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .leadership-hero-section {
        padding: 60px 0;
        min-height: 40vh;
    }
    
    .leadership-hero-title {
        font-size: 2.2rem;
    }
    
    .leadership-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .leadership-hero-description p {
        font-size: 1.1rem;
    }
    
    .executive-leadership-section {
        padding: 60px 0;
    }
    
    .executive-leadership-header h2 {
        font-size: 2rem;
    }
    
    .executive-leadership-header p {
        font-size: 1rem;
    }
    
    .leadership-image {
        height: 250px;
    }
    
    .leadership-content {
        padding: 20px;
    }
    
    .leadership-content h3 {
        font-size: 1.4rem;
    }
    
    .leadership-role {
        font-size: 1rem;
    }
    
    .contact-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .leadership-hero-section {
        padding: 50px 0;
        min-height: 35vh;
    }
    
    .leadership-hero-content {
        padding: 0 15px;
    }
    
    .leadership-hero-title {
        font-size: 2rem;
    }
    
    .leadership-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .leadership-hero-description p {
        font-size: 1rem;
    }
    
    .executive-leadership-section {
        padding: 50px 0;
    }
    
    .executive-leadership-header {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .executive-leadership-header h2 {
        font-size: 1.8rem;
    }
    
    .executive-leadership-header p {
        font-size: 0.95rem;
    }
    
    .executive-leadership-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .leadership-image {
        height: 220px;
    }
    
    .leadership-content {
        padding: 18px 15px;
    }
    
    .leadership-content h3 {
        font-size: 1.3rem;
    }
    
    .leadership-role {
        font-size: 0.95rem;
    }
    
    .contact-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .leadership-hero-section {
        padding: 40px 0;
        min-height: 30vh;
    }
    
    .leadership-hero-content {
        padding: 0 12px;
    }
    
    .leadership-hero-title {
        font-size: 1.8rem;
    }
    
    .leadership-hero-subtitle {
        font-size: 1rem;
    }
    
    .leadership-hero-description p {
        font-size: 0.95rem;
    }
    
    .executive-leadership-section {
        padding: 40px 0;
    }
    
    .executive-leadership-header {
        padding: 0 12px;
        margin-bottom: 35px;
    }
    
    .executive-leadership-header h2 {
        font-size: 1.6rem;
    }
    
    .executive-leadership-header p {
        font-size: 0.9rem;
    }
    
    .executive-leadership-grid {
        padding: 0 12px;
        gap: 18px;
    }
    
    .leadership-image {
        height: 200px;
    }
    
    .leadership-content {
        padding: 15px 12px;
    }
    
    .leadership-content h3 {
        font-size: 1.2rem;
    }
    
    .leadership-role {
        font-size: 0.9rem;
    }
    
    .contact-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Print Styles for Leadership Page */
@media print {
    .leadership-hero-section {
        background: #ffffff !important;
        color: #000000 !important;
        padding: 40px 0;
    }
    
    .leadership-hero-title {
        color: #000000 !important;
    }
    
    .leadership-hero-subtitle {
        color: #1976d2 !important;
    }
    
    .leadership-hero-description p {
        color: #333333 !important;
    }
    
    .leadership-card {
        box-shadow: none !important;
        border: 1px solid #000000 !important;
        break-inside: avoid;
    }
    
    .leadership-card:hover {
        transform: none !important;
    }
    
    .leadership-overlay {
        display: none !important;
    }
}

/* High Contrast Mode for Leadership Page */
@media (prefers-contrast: high) {
    .leadership-hero-title {
        color: #000000;
    }
    
    .leadership-hero-subtitle {
        color: #0000ff;
    }
    
    .leadership-hero-description p {
        color: #000000;
    }
    
    .leadership-card {
        border: 2px solid #000000;
    }
    
    .leadership-content h3 {
        color: #000000;
    }
    
    .leadership-role {
        color: #0000ff;
    }
    
    .leadership-description {
        color: #000000;
    }
}

/* Reduced Motion for Leadership Page */
@media (prefers-reduced-motion: reduce) {
    .leadership-card {
        transition: none;
    }
    
    .leadership-card:hover {
        transform: none;
    }
    
    .leadership-image img {
        transition: none;
    }
    
    .leadership-card:hover .leadership-image img {
        transform: none;
    }
    
    .leadership-overlay {
        transition: none;
    }
    
    .contact-btn {
        transition: none;
    }
    
    .contact-btn:hover {
        transform: none;
    }
}

/* Key Personnel Section */
.key-personnel-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.key-personnel-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.key-personnel-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.key-personnel-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #1565c0);
    border-radius: 2px;
}

.key-personnel-header p {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
}

.key-personnel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.personnel-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.personnel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(25, 118, 210, 0.15);
    border-color: #1976d2;
}

.personnel-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.personnel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.3s ease;
}

/* Specific adjustment for Sreenath Ullanat's image (2nd personnel card) */
.personnel-card:nth-child(2) .personnel-image img {
    object-position: center 10%;
}

.personnel-card:hover .personnel-image img {
    
}

.personnel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.9) 0%, rgba(21, 101, 192, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.personnel-card:hover .personnel-overlay {
    opacity: 1;
}

.personnel-content {
    padding: 30px;
}

.personnel-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.personnel-role {
    font-size: 1rem;
    color: #1976d2;
    margin-bottom: 15px;
    font-weight: 600;
}

.personnel-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Key Personnel Section */
@media (max-width: 1200px) {
    .key-personnel-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .personnel-image {
        height: 280px;
    }
    
    .personnel-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .key-personnel-section {
        padding: 80px 0;
    }
    
    .key-personnel-header h2 {
        font-size: 2.5rem;
    }
    
    .key-personnel-header p {
        font-size: 1.1rem;
    }
    
    .key-personnel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .personnel-image {
        height: 250px;
    }
    
    .personnel-content {
        padding: 20px;
    }
    
    .personnel-content h3 {
        font-size: 1.2rem;
    }
    
    .personnel-role {
        font-size: 0.9rem;
    }
    
    .personnel-description {
        font-size: 0.85rem;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .key-personnel-section {
        padding: 50px 0;
    }
    
    .key-personnel-header {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .key-personnel-header h2 {
        font-size: 2rem;
    }
    
    .key-personnel-header p {
        font-size: 0.95rem;
    }
    
    .key-personnel-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .personnel-card {
        padding: 20px 15px;
    }
    
    .personnel-image {
        height: 200px;
    }
    
    .personnel-content h3 {
        font-size: 1.2rem;
    }
    
    .personnel-role {
        font-size: 0.9rem;
    }
    
    .personnel-description {
        font-size: 0.8rem;
    }
    
    .contact-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .key-personnel-section {
        padding: 40px 0;
    }
    
    .key-personnel-header {
        padding: 0 12px;
        margin-bottom: 35px;
    }
    
    .key-personnel-header h2 {
        font-size: 1.8rem;
    }
    
    .key-personnel-header p {
        font-size: 0.9rem;
    }
    
    .key-personnel-grid {
        padding: 0 12px;
        gap: 18px;
    }
    
    .personnel-card {
        padding: 18px 12px;
    }
    
    .personnel-image {
        height: 180px;
    }
    
    .personnel-content h3 {
        font-size: 1.1rem;
    }
    
    .personnel-role {
        font-size: 0.85rem;
    }
    
    .personnel-description {
        font-size: 0.75rem;
    }
    
    .contact-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .key-personnel-section {
        padding: 60px 0;
    }
    
    .key-personnel-header h2 {
        font-size: 2rem;
    }
    
    .key-personnel-header p {
        font-size: 1rem;
    }
    
    .key-personnel-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .personnel-image {
        height: 220px;
    }
    
    .personnel-content {
        padding: 18px;
    }
    
    .personnel-content h3 {
        font-size: 1.1rem;
    }
    
    .personnel-role {
        font-size: 0.85rem;
    }
    
    .personnel-description {
        font-size: 0.8rem;
    }
}

/* Support Departments Section */
.support-departments-section {
    padding: 120px 0;
    background: #ffffff;
}

.support-departments-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.support-departments-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.support-departments-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #1565c0);
    border-radius: 2px;
}

.support-departments-header p {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.6;
    font-weight: 400;
}

.support-departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1976d2, #1565c0);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.support-card:hover::before {
    transform: scaleX(1);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(25, 118, 210, 0.15);
    border-color: #1976d2;
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.support-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.3);
}

.support-card:hover .support-icon i {
    
}

.support-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.support-content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive Design for Support Departments Section */
@media (max-width: 1200px) {
    .support-departments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .support-card {
        padding: 35px 25px;
    }
    
    .support-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .support-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .support-departments-section {
        padding: 80px 0;
    }
    
    .support-departments-header h2 {
        font-size: 2.5rem;
    }
    
    .support-departments-header p {
        font-size: 1.1rem;
    }
    
    .support-departments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .support-card {
        padding: 30px 20px;
    }
    
    .support-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .support-icon i {
        font-size: 1.6rem;
    }
    
    .support-content h3 {
        font-size: 1.2rem;
    }
    
    .support-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .support-departments-section {
        padding: 60px 0;
    }
    
    .support-departments-header h2 {
        font-size: 2rem;
    }
    
    .support-departments-header p {
        font-size: 1rem;
    }
    
    .support-departments-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .support-card {
        padding: 25px 18px;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .support-icon i {
        font-size: 1.4rem;
    }
    
    .support-content h3 {
        font-size: 1.1rem;
    }
    
    .support-content p {
        font-size: 0.85rem;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .support-departments-section {
        padding: 50px 0;
    }
    
    .support-departments-header {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .support-departments-header h2 {
        font-size: 2rem;
    }
    
    .support-departments-header p {
        font-size: 0.95rem;
    }
    
    .support-departments-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .support-card {
        padding: 25px 20px;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .support-icon i {
        font-size: 1.5rem;
    }
    
    .support-content h3 {
        font-size: 1.2rem;
    }
    
    .support-content p {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .support-departments-section {
        padding: 40px 0;
    }
    
    .support-departments-header {
        padding: 0 12px;
        margin-bottom: 35px;
    }
    
    .support-departments-header h2 {
        font-size: 1.8rem;
    }
    
    .support-departments-header p {
        font-size: 0.9rem;
    }
    
    .support-departments-grid {
        padding: 0 12px;
        gap: 18px;
    }
    
    .support-card {
        padding: 20px 15px;
    }
    
    .support-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .support-icon i {
        font-size: 1.3rem;
    }
    
    .support-content h3 {
        font-size: 1.1rem;
    }
    
    .support-content p {
        font-size: 0.75rem;
    }
}

/* Footer Styles for Leadership Page */
.footer-section {
    padding: 80px 0 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    grid-template-rows: repeat(34, 1fr);
    height: 1200px;
    gap: 20px;
    position: relative;
}

/* Grid Areas */
.map-container {
    grid-area: 1 / 1 / 13 / 14;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.company-logo-container {
    grid-area: 1 / 21 / 4 / 26;
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.company-logo-container img {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain;
    object-position: center;
}

.contact-info {
    grid-area: 1 / 15 / 6 / 26;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.contact-info .email {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-info .phone-numbers {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-info .working-hours {
    font-size: 16px;
    color: #000;
    line-height: 1.2;
    margin: 0 0 25px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-info .days {
    color: #014B6F;
    font-weight: 400;
}

.contact-info .hours-highlight {
    color: #B00F0F;
    font-weight: 700;
}

.company-entities {
    grid-area: 6 / 15 / 13 / 26;
    z-index: 6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.company-entities ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.company-entities li {
    font-size: 14px;
    color: #000;
    line-height: 1.4;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.company-entities .address {
    font-size: 14px;
    color: #000;
    line-height: 1.4;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.company-entities .bahrain-text {
    color: #014B6F;
    font-weight: 600;
}

.separator-line {
    grid-area: 13 / 1 / 14 / 26;
    z-index: 2;
    height: 1px;
    background: #ddd;
    margin: 20px 0;
}

.quick-links-heading {
    grid-area: 14 / 1 / 15 / 26;
    z-index: 4;
    text-align: center;
    padding: 20px 0;
}

.quick-links-heading h4 {
    font-size: 18px;
    color: #000;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.quick-links-column-1 {
    grid-area: 15 / 1 / 22 / 9;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.quick-links-column-2 {
    grid-area: 15 / 10 / 22 / 18;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.quick-links-column-3 {
    grid-area: 15 / 19 / 22 / 26;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.quick-links-column-1 ul,
.quick-links-column-2 ul,
.quick-links-column-3 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-column-1 li,
.quick-links-column-2 li,
.quick-links-column-3 li {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.quick-links-column-1 li:hover,
.quick-links-column-2 li:hover,
.quick-links-column-3 li:hover {
    color: #014B6F;
    cursor: pointer;
}

/* WhatsApp Chat Button - Fixed positioning ensured */


.whatsapp-chat:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(20, 1fr);
        padding: 0 30px;
    }
    
    .map-container {
        grid-area: 1 / 1 / 13 / 12;
    }
    
    .company-logo-container {
        grid-area: 1 / 16 / 4 / 20;
    }
    
    .contact-info {
        grid-area: 1 / 13 / 6 / 20;
    }
    
    .company-entities {
        grid-area: 6 / 13 / 13 / 20;
    }
    
    .separator-line {
        grid-area: 13 / 1 / 14 / 20;
    }
    
    .quick-links-heading {
        grid-area: 14 / 1 / 15 / 20;
    }
    
    .quick-links-column-1 {
        grid-area: 15 / 1 / 22 / 7;
    }
    
    .quick-links-column-2 {
        grid-area: 15 / 8 / 22 / 14;
    }
    
    .quick-links-column-3 {
        grid-area: 15 / 15 / 22 / 20;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .map-container,
    .company-logo-container,
    .contact-info,
    .company-entities,
    .separator-line,
    .quick-links-heading,
    .quick-links-column-1,
    .quick-links-column-2,
    .quick-links-column-3 {
        grid-area: auto;
        position: static;
    }
    
    .map-container {
        height: 300px;
    }
    
    
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .contact-info .email,
    .contact-info .phone-numbers,
    .contact-info .working-hours {
        font-size: 14px;
    }
    
    .company-entities li,
    .company-entities .address {
        font-size: 12px;
    }
    
    .quick-links-column-1 li,
    .quick-links-column-2 li,
    .quick-links-column-3 li {
        font-size: 12px;
    }
    
    
}

/* Standardized WhatsApp Button - Consistent across all pages */
.whatsapp-btn,
.whatsapp-chat,
.whatsapp-chat-btn,
[class*="whatsapp"],
[class*="chat-btn"] {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 999999 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    pointer-events: auto !important;
    transform: none !important;
    contain: none !important;
    perspective: none !important;
    filter: none !important;
    isolation: auto !important;
    mix-blend-mode: normal !important;
    backface-visibility: visible !important;
    will-change: auto !important;
    float: none !important;
    clear: none !important;
    vertical-align: baseline !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    mask: none !important;
    object-fit: fill !important;
    object-position: 50% 50% !important;
    margin: 0 !important;
    padding: 0 !important;
    top: auto !important;
    left: auto !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    background-color: #25D366 !important;
    color: #fff !important;
    border: none !important;
    cursor: pointer !important;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
    transition: none !important;
    font-size: 26px !important;
    justify-content: center !important;
    align-items: center !important;
}

.whatsapp-btn:hover,
.whatsapp-chat:hover,
.whatsapp-chat-btn:hover,
[class*="whatsapp"]:hover,
[class*="chat-btn"]:hover {
    color: #fff !important;
    text-decoration: none !important;
    transform: none !important;
}

/* Standardized Header - Consistent across all pages */
.new-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 2147483647 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: visible;
    border-bottom: 2px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.1);
    backdrop-filter: blur(10px);
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    transform: none !important;
    contain: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    bottom: auto !important;
    height: 80px !important;
    filter: none !important;
    perspective: none !important;
}

