:root {
    --primary-blue: #114f7f;
    --primary-light: #3498db;
    --accent-blue: #44a7f6;
    --accent-blue-light: #63c5ff;
    --gray-dark: #747373;
    --gray-medium: #9a9b9b;
    --gray-light: #e0e6ed;
    --bg-light: #f9fafb;
}


body {
    font-family: 'Noto Sans', sans-serif;
    color: #222;
    line-height: 1.6;
    letter-spacing: 0.01em;
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6:not(.footer-new h3):not(.footer-new h4) {
color: #0056B3 !important;
}


.banner-title, .banner h1, .banner h2, .banner h3, .banner h4, .banner h5, .banner h6, .hero h1, .hero h2, .hero h3, .hero h4, .hero h5, .hero h6 {
color: #fff !important;
text-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.footer-new h3, .footer-new h4, header h1, header h2, header h3, header h4, header h5, header h6 {
color: #fff !important;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 18px;
    padding: 10px 24px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(52,152,219,0.13);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52,152,219,0.2);
}

.section-spacing {
    padding: 80px 0;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}


.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    margin: 15px auto 0;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}


.overview {
    padding: 80px 0;
    background-color: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.overview-text {
    padding-right: 20px;
}

.overview-text h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.overview-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.overview-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.overview-video video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: #fff;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h4 {
    font-size: 36px;
    color: var(--accent-blue);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    font-size: 14px;
    color: var(--gray-dark);
    margin: 0;
}


.dna-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.dna-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.dna-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.dna-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6a7e;
}

.dna-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.dna-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 25px 20px 30px;
    text-align: center;
}

.dna-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.dna-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0056b3;
    background-color: #f0f7ff;
    border-radius: 8px;
}

.dna-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.recognition-card {
    display: flex;
    gap: 25px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.recognition-icon {
    font-size: 40px;
    color: var(--accent-blue);

.recognition-card {
display: flex;
gap: 25px;
background: white;
border-radius: 12px;
padding: 30px;
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
max-width: 800px;
margin: 0 auto;
}

.recognition-icon {
font-size: 40px;
color: var(--accent-blue);
display: flex;
align-items: center;
justify-content: center;
}

.recognition-content h3 {
color: var(--primary-blue);
font-size: 22px;
margin-bottom: 10px;
}
    padding: 70px 0;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.venture-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    padding: 35px 30px;
    text-align: center;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.venture-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.venture-logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.venture-logo-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #e0eafc, #cfdef3) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.venture-logo-circle img {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    z-index: 1;
}

.venture-title {
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.venture-description {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.venture-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.venture-btn:hover {
    background: var(--primary-light);
}

@media (max-width: 1100px) {
    .ventures-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        max-width: 1000px;
    }
}

@media (max-width: 768px) {
    .ventures-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .venture-logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .venture-title {
        font-size: 20px;
    }
    
    .venture-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .ventures-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
}


.global-impact {
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.impact-map {
    text-align: center;
}

.map-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.impact-content h3 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.impact-content p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.impact-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.stat-details h4 {
    font-size: 24px;
    color: var(--primary-blue);
    margin: 0 0 5px 0;
}

.stat-details p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

.global-presence-cta {
    text-align: left;
}


.ceo-quote {
    background: var(--primary-blue);
    padding: 70px 0;
    color: white;
    position: relative;
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-text {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding: 0 60px;
}

.quote-text:before,
.quote-text:after {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text:before {
    top: -20px;
    left: 0;
}

.quote-text:after {
    content: '\201D';
    bottom: -50px;
    right: 0;
}

.quote-author {
    font-size: 20px;
    font-weight: 600;
}

.quote-position {
    font-size: 16px;
    opacity: 0.8;
    margin-top: 5px;
}


@media (max-width: 992px) {
    .overview-grid,
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .overview-text,
    .impact-content {
        padding-right: 0;
    }
    
    .section-spacing {
        padding: 60px 0;
    }
    
    .dna-grid {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        gap: 20px;
    }
    
    .dna-intro p {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .overview-text h3,
    .impact-content h3 {
        font-size: 24px;
    }
    
    .stat-item h4 {
        font-size: 30px;
    }
    
    .section-spacing {
        padding: 50px 0;
    }
    
    .recognition-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
    
    .logo-card {
        width: 120px;
        height: 120px;
    }
    
    .quote-text {
        font-size: 20px;
        padding: 0 30px;
    }
    
    .quote-author {
        font-size: 18px;
    }
    
    .impact-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .impact-stat {
        display: flex;
        align-items: center;
        gap: 15px;
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 22px;
    }
    
    .stat-details h4 {
        font-size: 24px;
        color: var(--primary-blue);
        margin: 0 0 5px 0;
    }
    
    .stat-details p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.3;
    }
    
    .global-presence-cta {
        text-align: left;
    }
    
    
    .ceo-quote {
        background: var(--primary-blue);
        padding: 70px 0;
        color: white;
        position: relative;
        height: 100px;
    }
    
    .venture-card {
        min-width: 100%;
    }
    
    .quote-text {
        font-size: 18px;
        padding: 0 15px;
    }
}



.recognition-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.recognition-card {
    display: flex;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    padding: 40px;
    margin-top: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    align-items: center;
}

.recognition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.recognition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0056b3, #3498db);
}

.recognition-icon {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056b3, #3498db);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,86,179,0.3);
    padding: 0;
}

.recognition-content {
    flex: 1;
}

.recognition-content p {
    color: #555;
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: 20px;
}

.recognition-content strong {
    color: #0056b3;
    font-weight: 600;
}

.award-badges {
    display: flex;
    gap: 15px;
}

.award-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0,86,179,0.1);
    border-radius: 30px;
    color: #0056b3;
    font-weight: 600;
    font-size: 15px;
}

@media (max-width: 768px) {
    .recognition-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    
    .recognition-icon {
        margin-bottom: 20px;
        margin-right: 0;
    }
    
    .recognition-content p {
        font-size: 16px;
    }
    
    .award-badges {
        justify-content: center;
    }
}



.dna-card-content h3 {
    color: #0056b3; 
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.dna-card-content p {
    margin: 0;
    font-size: 15px;
    color: #5a6a7e; 
    line-height: 1.5;
}

.dna-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0056b3;
    background-color: #f0f7ff;
    border-radius: 8px;
}

.dna-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 25px 20px 30px;
    text-align: center;
}

.dna-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.dna-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.dna-intro p {
    color: #5a6a7e;
}

.overview-video {
    position: relative;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); 
    pointer-events: none;
    border-radius: 12px;
}