--- START OF FILE about-us.css ---

/* ============================================================= */
/* == PAGE-SPECIFIC STYLES FOR ABOUT US PAGE                  == */
/* ============================================================= */




/* General containers for this page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /* Decreased padding for a more compact feel */
    padding: 3rem 1.5rem; 
}

/* Base section styles for alternating colors */
.section-light, .section-dark {
    /* Decreased vertical padding for sections */
    padding: 3rem 0; 
}
.section-light { background-color: #ffffff; }
.section-dark { background-color: #f0f2f5; }


/* Typography */
.section-heading {
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--accent-blue);
    margin-bottom: 10px;
    text-align: center;
}
.section-heading-left {
    font-size: 2rem;
    text-align: left;
    /* Slightly reduced margin */
    margin-bottom: 1rem; 
    color: var(--accent-blue);
    font-weight: 700;
}
.section-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: #555; /* Using a slightly darker grey for better contrast */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


/* Hero Section - UPDATED TO MATCH CERTIFICATES PAGE */
.hero-section {
    position: relative;
    width: 100%;
    height: 280px; /* Fixed height for consistency with certificates */
    background-image: url('../images/about-us-hero.webp'); /* Keep about us image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px; /* Consistent padding */
}
/* Overlay for the hero section - copied from certificates-style.css */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Darker overlay for better text readability */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-content h1 {
    font-weight: 700;
    color: white;
    font-size: 2.8rem; /* Matches certificates mobile h1 size */
    margin-bottom: 10px; /* Consistent margin */
    text-shadow: none; /* Removed text-shadow for consistency */
}
.hero-content p {
    font-size: 1.15rem; /* Matches certificates p size */
    font-weight: 400;
    margin-top: 1rem;
    opacity: 0.9; /* Added opacity for consistency */
}


/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* Reduced top margin */
    margin-top: 1.5rem; 
}
.value-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 8px;
}
.value-card .icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}
.value-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* Added top margin for consistency */
    margin-top: 1.5rem; 
}
.service-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border-top: 4px solid var(--accent-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.service-card .icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 600;
}
.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Product Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* Reduced top margin */
    margin-top: 1.5rem; 
}
.expertise-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--accent-blue);
}
.expertise-card .icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}
.expertise-card h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* Vision Section */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    /* Reduced top margin */
    margin-top: 1.5rem; 
}
.vision-item {
    text-align: center;
}
.vision-item .icon {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}
.vision-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}
.vision-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Infrastructure Section */
.infrastructure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Reduced gap between columns */
    gap: 2rem; 
    align-items: center;
}
.infrastructure-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.infrastructure-text p {
    /* Reduced bottom margin */
    margin-bottom: 1.5rem; 
    font-size: 1.1rem;
    line-height: 1.7;
}

.infra-list {
    list-style: none;
    padding-left: 0;
}
.infra-list li {
    font-size: 1.1rem;
    /* Reduced bottom margin */
    margin-bottom: 0.75rem; 
    position: relative;
    padding-left: 35px;
}
.infra-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- Blue Call-to-Action --- */
.new-blue-cta-section {
    position: relative;
    text-align: center;
    /* Maintained padding for this section as it's already well-proportioned */
    padding: 80px 20px; 
    background: url('../images/Contact_2_Us_V1.png') no-repeat center center;
    background-size: cover;
}
.blue-cta-box {
    position: relative;
    background-color: rgba(17, 61, 145, 0.95);
    max-width: 900px;
    margin: 0 auto;
    /* Maintained padding for the box itself */
    padding: 40px 20px; 
    border-radius: 8px;
    color: white;
}
.blue-cta-title {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 30px;
}
.blue-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.blue-cta-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid white;
    width: 100%;
    max-width: 250px;
}
.blue-cta-buttons .btn-primary {
    background-color: white;
    color: #113D91;
}
.blue-cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
}
.blue-cta-buttons .btn:hover {
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    /* Hero Section - Media Queries */
    .hero-section { 
        height: 350px; 
    }
    .hero-content h1 { 
        font-size: 3.5rem; 
    }

    .values-grid, .services-grid, .expertise-grid, .vision-grid {
        grid-template-columns: 1fr 1fr;
    }
    .infrastructure-grid {
        grid-template-columns: 1fr;
    }
    .infrastructure-image { 
        order: -1; 
        /* Adjusted margin */
        margin-bottom: 1.5rem; 
    }
    .section-heading-left { text-align: center; }

    /* General responsive adjustments */
    .container { 
        /* Adjusted padding for smaller screens */
        padding: 2.5rem 1rem; 
    }
    h1, .hero-content h1 { font-size: 2.25rem; }
    .section-heading, .blue-cta-title { font-size: 2rem; }
    .section-heading-left { font-size: 1.8rem; }
    .product-list { columns: 1; -webkit-columns: 1; -moz-columns: 1; }
    .values-grid, .services-grid, .expertise-grid, .vision-grid {
        grid-template-columns: 1fr;
    }
    /* Adjusted section padding for smaller screens */
    .section-light, .section-dark {
        padding: 2.5rem 0; 
    }
}

@media (min-width: 992px) {
    /* Hero Section - Media Queries */
    .hero-section { 
        height: 420px; 
    }
    .hero-content h1 { 
        font-size: 4rem; 
    }

    .values-grid, .services-grid, .expertise-grid, .vision-grid {
        grid-template-columns: repeat(4, 1fr); /* Revert to 4 columns for larger screens */
    }
    .vision-grid {
        grid-template-columns: repeat(3, 1fr); /* Vision grid stays 3 columns */
    }
    .infrastructure-grid {
        grid-template-columns: 1fr 1fr; /* Revert to 2 columns */
    }
    .infrastructure-image { 
        order: unset; /* Reset order */
        margin-bottom: 0; 
    }
    .section-heading-left { text-align: left; }
}
/* --- END OF FILE assets/css/about-us.css --- */