:root {
    --brand-blue: #0052CC;
    --brand-blue-dark: #003E99;
    --brand-yellow: #FFC400;
    --text-primary: #172B4D;
    --text-secondary: #5E6C84;
    --bg-light: #FFFFFF;
    --bg-secondary: #F4F5F7;
    --border-color: #DFE1E6;
    --font-global: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-global);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.7;
}

html {
    scroll-padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-secondary);
}

h1, h2, h3, h4 {
    font-family: var(--font-global);
    color: var(--text-primary);
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-global);
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--brand-blue);
    color: var(--bg-light);
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--brand-blue-dark);
    box-shadow: 0 6px 20px rgba(0, 82, 204, 0.2);
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 80px 20px;
}
.page-header h1 {
    font-size: 3.2rem;
    color: var(--brand-blue-dark);
    line-height: 1.2;
}
.page-header p {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 1rem auto 0;
    color: var(--text-secondary);
}

/* Mission Section */
.mission-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Image Slider */
.mission-image-slider {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    position: relative;
}
.slide img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.slide .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    padding: 40px 20px 20px;
    font-size: 0.95rem;
    text-align: center;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover {
    background-color: rgba(255,255,255,0.4);
}
.slider-btn.prev {
    left: 15px;
}
.slider-btn.next {
    right: 15px;
}
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
    padding: 0;
}
.dot.active {
    background-color: #fff;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.value-card {
    padding: 2rem;
}
.value-card .icon {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}
.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trusted By Section */
.trusted-by-section {
    text-align: center;
}
.trusted-by-section h2 {
    font-size: 2.5rem;
    color: var(--brand-blue-dark);
}
.trusted-by-section .section-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 1rem auto 3rem auto;
    font-size: 1.1rem;
}
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.logo-strip img {
    height: 40px;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
}
.logo-strip img:hover {
    transform: scale(1.05);
}

/* Awards Section */
#awards {
    background-color: #0d1e3a;
    background-image: linear-gradient(75deg, #002A66 0%, #0052CC 100%);
}
#awards h2 {
    color: #FFFFFF;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}
.awards-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.award-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 350px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.award-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}
.award-item img {
    height: 60px;
    object-fit: contain;
}
.award-item p {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.team-member-card {
    text-align: center;
}
.team-member-card img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.team-member-card:hover img {
    transform: scale(1.05);
}
.team-member-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}
.team-member-card .role {
    color: var(--brand-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.team-member-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}


/* Responsive */
@media (max-width: 992px) {
    .mission-section { grid-template-columns: 1fr; }
    .mission-image-slider { order: -1; margin-bottom: 2rem; }
    .page-header h1 { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; }
    .award-item { flex-direction: column; text-align: center; gap: 1rem; padding: 1.5rem; min-width: 280px;}
}
