.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff7a00, transparent);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content {
    order: 1;
}

.about-image {
    order: 2;
    position: relative;
}

.about-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #022c3b;
    margin-bottom: 20px;
    position: relative;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ff9533);
    border-radius: 2px;
}

.intro-text {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 30px;
}

.expertise-list {
    background: #eaf8fb;
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    border-left: 4px solid #ff7a00;
}

.expertise-list h3 {
    font-size: 20px;
    color: #022c3b;
    margin-bottom: 20px;
    font-weight: 700;
}

.expertise-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff7a00, #ff9533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.expertise-text {
    font-size: 16px;
    color: #022c3b;
    font-weight: 600;
}

.experience-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
    margin: 30px 0;
}

.principle-section {
    max-width: 1200px;
    padding: 80px 20px;
    margin:60px auto;  /* auto keeps the box centered on the html page */
    align-items: center;
}

.core-principle {
    background: linear-gradient(135deg, #022c3b, #034a5a);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.core-principle::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.principle-title {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.principle-values {
    position: relative;
    z-index: 2;
}

.principle-values strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.principle-values strong:first-child {
    color: #ff7a00;
}

.principle-values strong:last-child {
    color: #ffffff;
}

.about-image-container {
    position: relative;
    margin-top: -100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(2, 44, 59, 0.8));
    color: white;
    padding: 30px;
    text-align: center;
}

.overlay-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.overlay-subtext {
    font-size: 14px;
    opacity: 0.9;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 122, 0, 0.05);
    border-radius: 16px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ff7a00;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.cta-button {
  margin-left: auto;
  font-weight: 600;
  background: linear-gradient(135deg, #022c3b, #034a5a);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
  width: 100%;
  text-align: center;
  text-decoration: none; 
  display: inline-block;
  margin-top: 20px;
  border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

/* New sections */
.vision-mission-section {
    background: #f8fafc;
    padding: 80px 20px;
    margin: 60px 0;
}

.vision-mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card, .mission-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ff9533);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #022c3b, #034a5a);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #022c3b;
    margin-bottom: 20px;
}

.card-content {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.what-we-do-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eaf8fb 0%, #ffffff 100%);
}

.what-we-do-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #022c3b;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff7a00, #ff9533);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid #ff7a00;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 18px;
    color: #022c3b;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.value-proposition-section {
    background: #022c3b;
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.value-proposition-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.05) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.value-proposition-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 0, 0.2);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 122, 0, 0.1);
    transform: translateY(-3px);
}

.value-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ff7a00;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.team-section {
    background: #f1f9fb;
    padding: 80px 20px;
    text-align: center;
}

.team-title {
    font-size: 36px;
    margin-bottom: 50px;
    color: #022c3b;
    font-weight: 800;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.member-experience ul {
    margin: 10px 0;
    padding-left: 20px;
}

.member-experience li {
    margin-bottom: 8px;
    line-height: 1.4;
    color: #4a5568;
}

.education-list {
    margin: 10px 0;
}

.education-item {
    margin-bottom: 8px;
    padding-left: 10px;
    line-height: 1.4;
    color: #2d3748;
    font-weight: 500;
}

.education-item::before {
    content: "";
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .member-experience ul {
        padding-left: 15px;
    }
    
    .member-experience li {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .education-item {
        font-size: 14px;
        margin-bottom: 6px;
        padding-left: 5px;
    }
}

.member-name {
    font-size: 22px;
    color: #022c3b;
    margin-bottom: 8px;
    font-weight: 700;
}

.member-title {
    font-size: 16px;
    color: #ff7a00;
    margin-bottom: 20px;
    font-weight: 600;
}

.member-email {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.member-experience {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.member-education {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.differentiator-section {
    background: linear-gradient(135deg, #ff7a00, #ff9533);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.differentiator-section::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: float 10s ease-in-out infinite reverse;
}

.differentiator-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.differentiator-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.differentiator-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.differentiator-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.differentiator-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.differentiator-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.differentiator-item p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ff7a00;
}

.reqtraining {
    background: #ff7a00;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.reqtraining:hover {
    background: #e56a00;
}

.site-footer {
    background: #022c3b;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-branding img {
    height: 40px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff7a00;
}

@media (max-width: 768px) {
    .about-container,
    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .about-section h2,
    .section-title {
        font-size: 32px;
        text-align: center;
    }

    .about-section h2::after,
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .expertise-item:hover {
        transform: translateY(-5px);
    }

    header {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-section,
    .vision-mission-section,
    .what-we-do-section,
    .value-proposition-section,
    .team-section,
    .differentiator-section {
        padding: 60px 15px;
    }

    .expertise-list {
        padding: 20px;
    }

    .core-principle {
        padding: 30px 20px;
    }

    .principle-values strong {
        font-size: 24px;
    }
}