/* =====================================================
   DESIGN TOKENS
===================================================== */
:root {
    --dark-blue: #1F3C88;
    --light-blue: #4A90E2;
    --red: #E53935;
    --yellow: #FBC02D;
    --white: #FFFFFF;
    --very-dark-blue: #0B1A3A;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    
    --shadow-sm: 0 2px 8px rgba(11, 26, 58, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 26, 58, 0.12);
    --shadow-lg: 0 10px 40px rgba(11, 26, 58, 0.15);
    --shadow-xl: 0 20px 60px rgba(11, 26, 58, 0.25);
    
    --gradient-primary: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    --gradient-accent: linear-gradient(135deg, var(--light-blue), var(--yellow));
}

/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--very-dark-blue);
    overflow-x: hidden;
    line-height: 1.6;
    text-align: justify; /* INSTRUCTION 1: All text justified */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* =====================================================
   UTILITIES
===================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

/* =====================================================
   HEADER
===================================================== */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(31, 60, 136, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* INSTRUCTION 3: Increase logo size */
.logo img {
    height: 90px; /* Increased from 65px */
    width: auto;
}

/* =====================================================
   NAVIGATION
===================================================== */
.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark-blue);
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.main-nav a:hover {
    color: var(--light-blue);
}

.main-nav a:hover::after {
    width: 100%;
}

/* =====================================================
   HEADER ACTIONS
===================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--dark-blue);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--dark-blue);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* =====================================================
   HAMBURGER MENU
===================================================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--very-dark-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.2s ease, transform 1.8s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.97) 0%,
        rgba(255,255,255,0.85) 40%,
        rgba(31,60,136,0.3) 100%
    );
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
    z-index: 2;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-left: 0;
    align-items: flex-start;
}

/* Hero header - displays full text */
.hero-content h1 {
    font-size: clamp(3rem, 3vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.3;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    max-width: 100%;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.7;
    font-weight: 400;
    color: rgba(11, 26, 58, 0.8);
    margin-bottom: 2.5rem;
    max-width: 55ch;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: var(--very-dark-blue);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-blue);
    border: 2px solid var(--dark-blue);
}

.btn-outline:hover {
    background: var(--dark-blue);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 5rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.prev-slide, .next-slide {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(31, 60, 136, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.prev-slide::before, .next-slide::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 3px solid var(--dark-blue);
    border-right: 3px solid var(--dark-blue);
}

.prev-slide::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.next-slide::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.prev-slide:hover, .next-slide:hover {
    background: var(--dark-blue);
    transform: scale(1.1);
}

.prev-slide:hover::before, .next-slide:hover::before {
    border-color: var(--white);
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--yellow);
    transform: scale(1.3);
}
/* =====================================================
   ABOUT SECTION
   INSTRUCTION 2: Reduced padding (previously 8rem)
===================================================== */
.about-section {
    padding: 4rem 1.5rem; /* REDUCED FROM 8rem - Adjust if needed */
    background: var(--white);
    position: relative;
}

.about-grid {
    display: grid;
    gap: 3rem; /* Reduced from 4rem */
    max-width: 1100px;
    margin: 0 auto;
}

/* Main Content */
.about-main {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-main h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.about-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--very-dark-blue);
    margin-bottom: 1.5rem;
}

/* INSTRUCTION 5: Our Strengths - Simplified (no arrow, no brackets) */
.about-distinction {
    background: var(--gray-50);
    padding: rem;
    border-radius: 20px;
}

.about-distinction h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.about-distinction p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(11, 26, 58, 0.85);
    margin: 0;
    font-weight: 500;
}

/* =====================================================
   EXPERTISE SECTION
   INSTRUCTION 2: Reduced padding
===================================================== */
.expertise-section {
    padding: 3rem 1.5rem; /* REDUCED FROM 8rem - Adjust if needed */
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.expertise-section .section-header {
    max-width: 900px;
    margin: 0 auto 4rem; /* Reduced from 6rem */
}

.expertise-section .section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.expertise-section .section-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(11, 26, 58, 0.7);
}

/* INSTRUCTION 6: All numbering on the left */
.expertise-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem; /* Reduced from 4rem */
    padding: 3rem;
    border-radius: 24px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.expertise-item:hover {
    box-shadow: 0 12px 40px rgba(31, 60, 136, 0.15);
    transform: translateY(-8px);
}

.expertise-item:hover::before {
    transform: scaleY(1);
}

.expertise-number {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(31,60,136,0.2) 0%, rgba(31,60,136,0.08) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-number {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.expertise-content h3 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--dark-blue);
    line-height: 1.3;
}

.expertise-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(11, 26, 58, 0.75);
    margin-bottom: 1.5rem;
}

/* INSTRUCTION 7: Space within "How we support..." paragraph */
.expertise-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(31, 60, 136, 0.1);
}

.expertise-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 1.5rem; /* Increased from 1rem for more space */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expertise-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-details li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(11, 26, 58, 0.8);
}

.expertise-details li::before {
    content: '.';
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: 700;
    font-size: 1.2rem;
}

.expertise-details li:hover {
    color: var(--dark-blue);
    transform: translateX(4px);
    transition: all 0.2s ease;
}

/* =====================================================
   ACHIEVEMENTS SECTION
   INSTRUCTION 2: Reduced padding
===================================================== */
.achievements-section {
    padding: 4rem 1.5rem; /* REDUCED FROM 8rem - Adjust if needed */
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(31,60,136,0.2) 50%, transparent 100%);
}

.achievements-section .section-header {
    max-width: 900px;
    margin: 0 auto 4rem; /* Reduced from 5rem */
}

.achievements-section .section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.achievements-section .section-header p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(11, 26, 58, 0.7);
}

.achievement-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: white;
    scrollbar-width: thin;
    scrollbar-color: var(--light-blue) #f1f5f9;
}

.achievement-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.achievement-table-wrapper::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.achievement-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--light-blue);
    border-radius: 10px;
}

.achievement-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

.achievement-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
    background: white;
}

.achievement-table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.achievement-table th {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: white;
    text-align: left;
    padding: 1.75rem 2rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.achievement-table th:first-child {
    border-top-left-radius: 20px;
    padding-left: 2.5rem;
}

.achievement-table th:last-child {
    border-top-right-radius: 20px;
    padding-right: 2.5rem;
}

.achievement-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(31, 60, 136, 0.08);
}

.achievement-table tbody tr:last-child {
    border-bottom: none;
}

.achievement-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(31, 60, 136, 0.03) 0%, rgba(31, 60, 136, 0.06) 50%, rgba(31, 60, 136, 0.03) 100%);
    transform: scale(1.01);
    box-shadow: 0 4px 20px rgba(31, 60, 136, 0.08);
}

.achievement-table td {
    padding: 2rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(11, 26, 58, 0.85);
    vertical-align: top;
}

.achievement-table td:first-child {
    padding-left: 2.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    max-width: 400px;
}

.achievement-table td:nth-child(2) {
    color: rgba(11, 26, 58, 0.75);
    font-size: 0.93rem;
}

.achievement-table td:last-child {
    padding-right: 2.5rem;
    max-width: 500px;
}

/* =====================================================
   TRUSTED SECTION
   INSTRUCTION 2: Reduced padding
===================================================== */
.trusted-section {
    padding: 4rem 1.5rem; /* REDUCED FROM 8rem - Adjust if needed */
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(31,60,136,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.trusted-section .section-header {
    max-width: 900px;
    margin: 0 auto 4rem; /* Reduced from 5rem */
    position: relative;
    z-index: 1;
}

.trusted-section .section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .trusted-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .trusted-logos {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 140px;
}

.logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31,60,136,0.05) 0%, rgba(31,60,136,0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(31, 60, 136, 0.15);
}

.logo-item:hover::before {
    opacity: 1;
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%) brightness(1.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.logo-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.logo-item img[style*="display: none"],
.logo-item img[src=""],
.logo-item:has(img[style*="display: none"]) {
    display: none;
}

.section-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-footer p {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-blue);
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.section-footer p::before,
.section-footer p::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--light-blue) 100%);
}

.section-footer p::before {
    right: 100%;
    margin-right: 1rem;
}

.section-footer p::after {
    left: 100%;
    margin-left: 1rem;
    background: linear-gradient(90deg, var(--light-blue) 0%, transparent 100%);
}

/* =====================================================
   CONTACT SECTION - INSTRUCTION 8: Simple text, no icons
   INSTRUCTION 2: Reduced padding
===================================================== */
.contact-section {
    padding: 4rem 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.25rem;
    color: rgba(11, 26, 58, 0.7);
    font-weight: 500;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-label {
    font-weight: 700;
    color: var(--dark-blue);
    margin-right: 0.5rem;
}

.contact-info {
    color: rgba(11, 26, 58, 0.85);
    font-weight: 500;
}

.contact-info a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* =====================================================
   FOOTER
   INSTRUCTION 2: Reduced padding
===================================================== */
.site-footer {
    background: var(--very-dark-blue);
    color: var(--white);
    padding: 2rem 1.5rem; /* REDUCED FROM 3rem */
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   BACK TO TOP BUTTON (from JS)
===================================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    transform: scale(1.1);
}

/* =====================================================
   MOBILE RESPONSIVE - INSTRUCTION 10
===================================================== */
@media (max-width: 900px) {
    /* Header */
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        display: block;
        transform: translateX(-100%);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.open {
        transform: translateX(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    
    .main-nav a {
        font-size: 1.25rem;
        font-weight: 700;
    }
    
    .menu-toggle {
        display: flex;
    }

    /* Logo */
    .logo img {
        height: 70px; /* Reduced for mobile but still larger than original */
    }
    
    /* Hero */
    .hero-section {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-controls {
        bottom: 3rem;
        right: 1rem;
    }
    
    .prev-slide, .next-slide {
        width: 40px;
        height: 40px;
    }
    
    /* About */
    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-distinction {
        padding: 2rem 1.5rem;
    }
    
    /* Expertise */
    .expertise-section {
        padding: 3rem 1.5rem;
    }

    .expertise-item {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .expertise-number {
        font-size: 3.5rem;
    }
    
    .expertise-content h3 {
        font-size: 1.5rem;
    }
    
    .expertise-content > p {
        font-size: 1rem;
    }
    
    /* Achievements */
    .achievements-section {
        padding: 3rem 1.5rem;
    }

    .achievement-table {
        min-width: 900px;
    }
    
    .achievement-table th,
    .achievement-table td {
        padding: 1.5rem;
    }
    
    /* Trusted */
    .trusted-section {
        padding: 3rem 1.5rem;
    }

    .trusted-logos {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 2rem 1.25rem;
    }
    
    .logo-item {
        padding: 1.5rem;
        min-height: 120px;
    }
    
    .logo-item img {
        max-height: 60px;
    }
    
 

@media (max-width: 600px) {
    .header-container {
        height: 70px;
    }
    
    .hero-section {
        margin-top: 70px;
    }
    
    .main-nav {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .logo img {
        height: 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary, .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .about-section,
    .expertise-section,
    .achievements-section,
    .trusted-section,
    .contact-section {
        padding: 2.5rem 1.5rem;
    }
    
    .expertise-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .expertise-number {
        font-size: 3rem;
        text-align: center;
    }
    
    .achievement-table th,
    .achievement-table td {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .trusted-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .logo-item {
        padding: 1rem;
        min-height: 90px;
    }
    
    .logo-item img {
        max-height: 45px;
    }

    .contact-item {
        padding: 1.5rem;
    }
}

/* =====================================================
   ANIMATIONS
===================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to elements */
.logo-item {
    animation: fadeInUp 0.6s ease backwards;
}

.logo-item:nth-child(1) { animation-delay: 0.1s; }
.logo-item:nth-child(2) { animation-delay: 0.15s; }
.logo-item:nth-child(3) { animation-delay: 0.2s; }
.logo-item:nth-child(4) { animation-delay: 0.25s; }
.logo-item:nth-child(5) { animation-delay: 0.3s; }
.logo-item:nth-child(6) { animation-delay: 0.35s; }
.logo-item:nth-child(7) { animation-delay: 0.4s; }
.logo-item:nth-child(8) { animation-delay: 0.45s; }
.logo-item:nth-child(9) { animation-delay: 0.5s; }
.logo-item:nth-child(10) { animation-delay: 0.55s; }
.logo-item:nth-child(11) { animation-delay: 0.6s; }
.logo-item:nth-child(12) { animation-delay: 0.65s; }
.logo-item:nth-child(13) { animation-delay: 0.7s; }
.logo-item:nth-child(14) { animation-delay: 0.75s; }
.logo-item:nth-child(15) { animation-delay: 0.8s; }
.logo-item:nth-child(16) { animation-delay: 0.85s; }

}