/* About Us Page Styles - Clean Modern Design */

/* CSS Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Updated to match home.html colors */
    --primary-color: #0c71c3;
    --secondary-color: #062E39;
    --accent-color: #e21a22;
    --light-color: #ECF6FE;
    --dark-color: #333333;
    --white: #FFFFFF;
    --orange-light: #84c3ff;
    --blue-light: #67A8E9;
    --blue-dark: #006FA6;
    --light-bg: #ECF6FE;
    --dark-bg: rgba(0, 0, 0, 0.3);
    --border-color: #DDDDDD;
    --black: #000000;
    --gray: #CCCCCC;
    --dark-gray: #B1B1B1;
    
    /* Text colors using the new scheme */
    --text-dark: var(--dark-color);
    --text-gray: #666666;
    --text-light: var(--dark-gray);
    --bg-white: var(--white);
    --bg-light: var(--light-color);
    --border-light: var(--border-color);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-primary: 'Lexend Deca', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Typography */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* Layout */
.about-us-main {
    background: var(--bg-white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Background Alternation - Light and Dark Contrast */

.company-values { background: var(--secondary-color); }
.key-people { background: var(--secondary-color); }
.team-section { background: var(--bg-white); }
.world-motion-quote { background: var(--bg-white); }
.international-network { background: var(--secondary-color); }
.csi-section { background: var(--bg-white); }
.accreditations { background: var(--secondary-color); }
.why-choose-us { background: var(--bg-white); }
.national-offices { background: var(--secondary-color); }

/* Dark Section Text Color Adjustments */
.company-values,
.key-people,
.international-network,
.accreditations,
.national-offices {
    color: var(--white);
}

.team-section h2 {
    color: #000;
}

.company-values h2,
.company-values h3,
.team-section h3,
.international-network h2,
.international-network h3,
.accreditations h2,
.accreditations h3,
.national-offices h2,
.national-offices h3 {
    color: var(--white);
}

.company-values p,
.team-section p,
.international-network p,
.accreditations p,
.national-offices p {
    color: rgba(255, 255, 255, 0.9);
}

/* Dark section card backgrounds */
.company-values .value-card,
.team-section .team-member,
.international-network .network-stat,
.accreditations .accred-text,
.accreditations .accred-logos,
.accreditations .affil-logos,
.national-offices .office-card {
    background: var(--white);
    color: var(--text-dark);
}

.company-values .value-card h3,
.team-section .team-member h4,
.accreditations .accred-logos h3,
.accreditations .affil-logos h3,
.national-offices .office-card h3 {
    color: var(--text-dark);
}

.company-values .value-card p,
.team-section .team-member .member-role,
.accreditations .accred-text p,
.accreditations .affiliation-list li,
.national-offices .office-details span,
.national-offices .office-details p {
    color: var(--text-gray);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Company Values */
.company-values {
    padding: 100px 0;
    display: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Key People Section */
.key-people {
    padding: 100px 0;
}

.key-people h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: #fff;
}


.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Force 3 columns on desktop */
@media (min-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.leader-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-content {
    padding: 2rem;
}

.leader-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.leader-title {
    display: block;
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.leader-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0 0 1.5rem 0;
}

.leader-social {
    display: flex;
    gap: 10px;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.leader-social a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    color: var(--black);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-color);
    transition: var(--transition);
}

.team-member:hover .member-image {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-role {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member a {
    width: 36px;
    height: 36px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.team-member a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* World in Motion Quote */
.world-motion-quote {
    padding: 80px 0;
    text-align: center;
}

.quote-content blockquote {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-style: italic;
    line-height: 1.6;
    margin: 0 auto 2rem;
    max-width: 900px;
    color: var(--text-dark);
    position: relative;
    padding: 0 2rem;
}

.quote-content blockquote::before,
.quote-content blockquote::after {
    content: '"';
    font-size: 3rem;
    position: absolute;
    color: var(--primary-color);
    font-family: serif;
    opacity: 0.3;
}

.quote-content blockquote::before {
    top: -1rem;
    left: 0;
}

.quote-content blockquote::after {
    bottom: -2rem;
    right: 0;
}

.quote-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* International Network - Redesigned to match sample */
.international-network {
    padding: 100px 0;
    background: var(--secondary-color);
}

/* Network Hero Section */
.network-hero {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.network-content-left {
    color: var(--white);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.network-content-left h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.network-content-left p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.network-stats-inline {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: left;
}

.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orange-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.network-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: -webkit-fill-available;
    background-color: var(--white);
}

.network-image img {
    width: 100%;
    /* height: 400px; */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.network-image:hover img {
    /* transform: scale(1.05); */
}

/* Quote Section */
.network-quote-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

.quote-content-network {
    color: var(--white);
}

.quote-content-network blockquote {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.quote-content-network blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--orange-light);
    position: absolute;
    left: -1rem;
    top: -1rem;
    font-family: serif;
    opacity: 0.7;
}

.quote-author-network {
    color: rgba(255, 255, 255, 0.9);
}

.author-signature {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--orange-light);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.author-title {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.network-details-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.network-details-image img {
    width: 100%;
    /* height: 350px; */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.network-details-image:hover img {
    /* transform: scale(1.05); */
}

/* Network Details Text */
.network-details-text {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
  
.details-grid > .detail-item:first-child {
    border-right: 2px solid #9d9d9d; /* Adjust color and thickness as needed */
    padding-right: 20px; /* Add some space between the border and the content */
  }

.detail-item h4 {
    font-size: 1.25rem;
    color: rgb(0 158 255);
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

/* Button styling for network section */
.international-network .btn-primary {
    background: var(--orange-light);
    color: var(--secondary-color);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.international-network .btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.international-network .btn-primary::after {
    content: '→';
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.international-network .btn-primary:hover::after {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .network-hero,
    .network-quote-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .network-stats-inline {
        justify-content: center;
    }
    
    .network-details-text {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .international-network {
        padding: 60px 0;
    }
    
    .network-hero,
    .network-quote-section {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .network-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .network-details-image {
        order: 2;
    }

    .details-grid > .detail-item:first-child {
        border-bottom: 2px solid #9d9d9d;
        padding-bottom: 30px;
        border-right: none;
        padding-right: 0;
    }
}

/* Corporate Social Investment */
.csi-section {
    padding: 100px 0;
}

.csi-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.csi-section h3 {
    text-align: center;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.csi-intro {
    text-align: center;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 1rem auto 3rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.csi-initiatives {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.initiative {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.initiative:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.initiative h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.initiative p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.csi-commitment {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0;
    padding: 0;
    background: transparent;
    color: inherit;
    border-radius: 0;
    box-shadow: none;
    
}

/* CSI Images Marquee Container */
.csi-images-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.csi-images-marquee {
    display: flex;
    gap: 10px;
    animation: slideRight 15s linear infinite;
    width: fit-content;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .csi-images-marquee {
        animation: slideRight 20s linear infinite;
    }
}
@media (max-width: 992px) {
    .csi-images-marquee {
        animation: slideRight 25s linear infinite;
    }
}
@media (max-width: 768px) {
    .csi-images-marquee {
        animation: slideRight 200s linear infinite;
    }
}
@media (max-width: 576px) {
    .csi-images-marquee {
        animation: slideRight 250s linear infinite;
    }
}
@media (max-width: 480px) {
    .csi-images-marquee {
        animation: slideRight 300s linear infinite;
    }
}

/* CSI Image Cards */
.csi-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
    height: 200px;
    flex-shrink: 0;
}

.csi-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.csi-image-card:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.csi-image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

/* Commitment Content Column */
.commitment-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--accent-color), #ff4757);
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.commitment-number {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.commitment-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.commitment-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

/* Responsive Design for CSI Commitment */
@media (max-width: 1300px) {
    .csi-commitment {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .csi-images-container {
        height: 220px;
    }
    
    .csi-image-card {
        min-width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .csi-commitment {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .csi-images-container {
        height: 200px;
    }
    
    .csi-image-card {
        min-width: 200px;
        height: 200px;
    }
    
    .commitment-content {
        padding: 2rem 1.5rem;
    }
    
    .commitment-number {
        font-size: 3rem;
    }
    
    .commitment-text {
        font-size: 0.95rem;
    }
    
    .commitment-subtitle {
        font-size: 0.8rem;
    }
    
    .image-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
}

/* Buttons */

.csi-action {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Accreditations & Affiliations - Redesigned */
.accreditations {
    padding: 100px 0;
    background: var(--secondary-color);
}

/* Header Section */
.accred-header {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
}

.accred-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.accred-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.accred-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Accreditations Section */
.accred-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    /* margin-bottom: 4rem; */
    padding: 3rem 0;
}

.accred-content-left {
    color: var(--white);
}

.accred-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange-light), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.accred-content-left h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.accred-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.feature-bullet {
    color: var(--orange-light);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
}

.accred-images {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.accred-images img {
    width: 100%;
    /* height: 350px; */
    object-fit: cover;
    /* transition: transform 0.3s ease; */
}



/* Affiliations Section */
.affil-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3rem 0;
}

.affil-content-left {
    color: var(--white);
    order: 2;
}

.affil-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.affil-content-left h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.affil-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.affil-images {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    order: 1;
}

.affil-images img {
    width: 100%;
    /* height: 350px; */
    object-fit: cover;
    /* transition: transform 0.3s ease; */
}

/* Responsive Design for Accreditations */
@media (max-width: 1024px) {
    .accred-section,
    .affil-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .affil-content-left {
        order: 1;
    }
    
    .affil-images {
        order: 2;
    }
    
    .accred-icon,
    .affil-icon {
        margin: 0 auto 1.5rem;
    }
}

@media (max-width: 768px) {
    .accreditations {
        padding: 60px 0;
    }
    
    .accred-header {
        margin-bottom: 2.5rem;
    }
    
    .accred-section,
    .affil-section {
        gap: 2rem;
        margin-bottom: 1rem;
        padding: 0;
    }
    
    .feature-item {
        gap: 0.75rem;
    }
    
}

/* Why Choose Us Section - Icon Box Grid */
.why-choose-us {
    padding: 80px 0;
    position: relative;
    background: url(/wp-content/themes/transglobal/assets/white-pattern.webp) no-repeat;
    background-position: center center;
    background-size: auto;
    background-color: #fff;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(12, 113, 195, 0.02) 0%, rgba(6, 46, 57, 0.02) 100%);
    z-index: -1;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(57.6px, 4.244vw, 64px);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: clamp(18px, 1.3263vw, 20px);
    font-weight: 400;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Icon Box Grid */
.icon-box-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .icon-box-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .icon-box-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

/* Icon Box */
.icon-box {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(12, 113, 195, 0.1);
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.icon-box:hover::before {
    transform: scaleX(1);
}

/* Icon Wrapper */
.icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.icon-number {
    position: absolute;
    top: 0px;
    right: -2px;
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    background: rgba(12, 113, 195, 0.1);
    border-radius: 50%;
    padding: 12px;
}

.icon-box:hover .icon {
    color: var(--white);
    background: var(--primary-color);
    transform: scale(1.1);
}

.icon-box:hover .icon-number {
    background: var(--secondary-color);
    transform: scale(1.15);
}

/* Icon Content */
.icon-content {
    text-align: center;
}

.icon-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.icon-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Expertise List */
.expertise-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.expertise-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.expertise-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.expertise-list li:hover {
    color: var(--primary-color);
}

.benefits-highlight {
    text-align: center;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
}

.benefits-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.benefits-highlight-content {
    position: relative;
    z-index: 1;
}

.benefits-highlight h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: white;
}

.benefits-highlight p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
}

.benefits-actions {
    text-align: center;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.benefits-actions .btn-primary,
.benefits-actions .btn-secondary {
    min-width: 250px;
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Responsive Design for Icon Box Grid */
@media (max-width: 1024px) {
    .icon-box {
        padding: 2rem 1.5rem;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon {
        width: 42px;
        height: 42px;
        padding: 10px;
    }
    
    .icon-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        top: -6px;
        right: -6px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .section-subtitle {
        font-size: clamp(16px, 4vw, 18px);
    }
    
    .icon-box-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .icon-box {
        padding: 2rem 1.5rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .icon {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .icon-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        top: -4px;
        right: -4px;
    }
    
    .icon-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .icon-content p {
        font-size: 0.9rem;
    }
    
    .expertise-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0 0.4rem 1.2rem;
    }
    
    .expertise-list li::before {
        font-size: 1rem;
        top: 0.4rem;
    }
    
    .benefits-highlight {
        margin: 3rem 0;
        padding: 2rem 1rem;
    }
    
    .benefits-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-actions .btn-primary,
    .benefits-actions .btn-secondary {
        min-width: auto;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .icon-box {
        padding: 1.5rem 1rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon {
        width: 30px;
        height: 30px;
        padding: 6px;
    }
    
    .icon-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -3px;
        right: -3px;
    }
    
    .icon-content h3 {
        font-size: 1rem;
    }
    
    .icon-content p {
        font-size: 0.85rem;
    }
}



/* General Responsive Design */
@media (max-width: 1024px) {
    .accred-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    
    
    .company-values,
    .key-people,
    .team-section,
    .world-motion-quote,
    .csi-section,
    .accreditations,
    .why-choose-us,
    .national-offices {
        padding: 60px 0;
    }
    
    .values-grid,
    .leadership-grid,
    .benefits-grid,
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    
    .csi-commitment {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .commitment-number {
        font-size: 2.5rem;
    }
    
    .commitment-text {
        max-width: none;
        font-size: 0.95rem;
    }
    
    .benefits-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quote-content blockquote {
        padding: 0 1rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .value-card,
    .benefit-card,
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .leader-content,
    .office-card {
        padding: 2rem 1.5rem;
    }
    
    .csi-initiatives {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .initiative {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 