 :root {
     --primary: #2563eb;
     --primary-light: #3b82f6;
     --primary-dark: #1d4ed8;
     --secondary: #f59e0b;
     --accent: #10b981;
     --light: #f8fafc;
     --light-gray: #e2e8f0;
     --medium-gray: #94a3b8;
     --dark: #1e293b;
     --dark-gray: #475569;
     --white: #ffffff;
     --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
     --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
     --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
     --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
     --radius-sm: 10px;
     --radius-md: 16px;
     --radius-lg: 24px;
     --radius-xl: 32px;
     --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     --spacing-xs: 8px;
     --spacing-sm: 16px;
     --spacing-md: 24px;
     --spacing-lg: 40px;
     --spacing-xl: 60px;
 }

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

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

 body {
     font-family: 'Inter', sans-serif;
     color: var(--dark);
     background-color: var(--light);
     line-height: 1.6;
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Playfair Display', serif;
     font-weight: 600;
     line-height: 1.2;
 }

 a {
     color: inherit;
     text-decoration: none;
     transition: var(--transition);
 }

 img {
     max-width: 100%;
     height: auto;
     display: block;
 }

 ul {
     list-style: none;
 }

 button {
     font-family: 'Inter', sans-serif;
     cursor: pointer;
     border: none;
     outline: none;
     transition: var(--transition);
 }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

 @media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

 @media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

 .section {
     padding: 80px 0;
 }

 @media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
}

 .section-header {
     text-align: center;
     margin-bottom: 48px;
     max-width: 680px;
     margin-left: auto;
     margin-right: auto;
     padding: 0 16px;
 }

 .section-header h2 {
     font-size: 28px;
     margin-bottom: 12px;
 }

 @media (min-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }
    .section-header {
        margin-bottom: 60px;
    }
}

 .section-subtitle {
     font-size: 16px;
     color: var(--medium-gray);
     margin-top: 12px;
     font-weight: 400;
     line-height: 1.7;
 }

 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 14px 28px;
     border-radius: var(--radius-md);
     font-weight: 600;
     font-size: 15px;
     letter-spacing: 0.01em;
     transition: var(--transition);
     min-height: 48px;
 }

 @media (min-width: 768px) {
    .btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

.btn:focus-visible,
.nav-link:focus-visible,
.gallery-btn:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.35);
    outline-offset: 3px;
}

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

 .btn-primary:hover {
     background-color: var(--primary-dark);
     transform: translateY(-3px);
     box-shadow: var(--shadow-lg);
 }

 .btn-secondary {
     background-color: var(--white);
     color: var(--primary);
     border: 2px solid var(--primary);
 }

 .btn-secondary:hover {
     background-color: var(--primary);
     color: var(--white);
     transform: translateY(-3px);
 }

 /* ========== HEADER ========== */
 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     background-color: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(226, 232, 240, 0.6);
     transition: var(--transition);
 }

 .navbar {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 14px 0;
     min-height: 70px;
 }

 @media (min-width: 768px) {
    .navbar {
        padding: 16px 0;
        min-height: 80px;
    }
}

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .logo.logo-text-only {
     gap: 0;
 }

 .logo-icon {
     width: 44px;
     height: 44px;
     border-radius: var(--radius-sm);
     background: linear-gradient(135deg, var(--primary), var(--accent));
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 6px;
     flex-shrink: 0;
}

@media (min-width: 768px) {
    .logo-icon {
        width: 48px;
        height: 48px;
    }
    .logo {
        gap: 12px;
    }
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

 .logo-text h2 {
     font-size: 18px;
     font-weight: 700;
     color: var(--dark);
     line-height: 1.2;
 }

 @media (min-width: 768px) {
    .logo-text h2 {
        font-size: 22px;
    }
}

 .logo-text p {
     font-size: 10px;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--medium-gray);
     margin-top: 2px;
 }

 @media (min-width: 768px) {
    .logo-text p {
        font-size: 11px;
        letter-spacing: 1.2px;
    }
}

 .nav-links {
     display: flex;
     align-items: center;
     gap: 28px;
 }

 @media (min-width: 1200px) {
    .nav-links {
        gap: 36px;
    }
}

 .nav-link {
     font-weight: 500;
     font-size: 15px;
     color: var(--dark-gray);
     position: relative;
     padding: 8px 0;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--primary);
     transition: width 0.3s ease;
 }

 .nav-link:hover,
 .nav-link.active {
     color: var(--primary);
 }

 .nav-link:hover::after,
 .nav-link.active::after {
     width: 100%;
 }

 .nav-cta {
     margin-left: 20px;
 }

 .nav-toggle {
     display: none;
     background: transparent;
     color: var(--dark);
     font-size: 24px;
 }

 /* ========== HERO SECTION ========== */
 .hero {
     padding-top: 100px;
     padding-bottom: 60px;
     position: relative;
     overflow: hidden;
     background: linear-gradient(160deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
 }

 @media (min-width: 768px) {
    .hero {
        padding-top: 130px;
        padding-bottom: 80px;
    }
}

 @media (min-width: 1024px) {
    .hero {
        padding-top: 150px;
        padding-bottom: 100px;
    }
}

 .hero .container {
     display: grid;
     grid-template-columns: 1fr;
     gap: 40px;
     align-items: center;
 }

 @media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

 @media (min-width: 1200px) {
    .hero .container {
        gap: 80px;
    }
}

 .hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
 }

 @media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

 .hero-logo {
     margin-bottom: 24px;
     display: flex;
     justify-content: center;
 }

 .hero-logo img {
     width: 100px;
     height: 100px;
     object-fit: contain;
     filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
     animation: fadeInUp 0.6s ease-out;
 }

 @media (min-width: 768px) {
    .hero-logo img {
        width: 120px;
        height: 120px;
    }
 }

 @media (min-width: 1024px) {
    .hero-logo {
        justify-content: flex-start;
    }
    .hero-logo img {
        width: 140px;
        height: 140px;
    }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-subtitle {
     font-size: 13px;
     color: var(--primary);
     font-weight: 600;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     margin-bottom: 12px;
     display: inline-flex;
     align-items: center;
     gap: 10px;
     justify-content: center;
 }

 @media (min-width: 768px) {
    .hero-subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
}

 @media (min-width: 1024px) {
    .hero-subtitle {
        justify-content: flex-start;
    }
}

 .hero-subtitle::before {
     content: '';
     display: block;
     width: 30px;
     height: 2px;
     background-color: var(--primary);
 }

 @media (min-width: 768px) {
    .hero-subtitle::before {
        width: 40px;
    }
}

 .hero-title {
     font-size: 32px;
     margin-bottom: 20px;
     color: var(--dark);
     line-height: 1.15;
 }

 @media (min-width: 768px) {
    .hero-title {
        font-size: 42px;
    }
}

 @media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
        margin-bottom: 24px;
    }
}

 @media (min-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
}

 .hero-description {
     font-size: 16px;
     color: var(--dark-gray);
     margin-bottom: 32px;
     line-height: 1.75;
     max-width: 540px;
     margin-left: auto;
     margin-right: auto;
 }

 @media (min-width: 768px) {
    .hero-description {
        font-size: 17px;
    }
}

 @media (min-width: 1024px) {
    .hero-description {
        font-size: 18px;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 36px;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    align-items: center;
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
        margin-bottom: 48px;
    }
}

.hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

@media (min-width: 480px) {
    .hero-trust {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.trust-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    align-items: flex-start;
    transition: var(--transition);
}

.trust-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.15);
}

.trust-item i {
    color: var(--primary);
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .trust-item i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.trust-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

@media (min-width: 768px) {
    .trust-item h4 {
        font-size: 16px;
    }
}

.trust-item p {
    color: var(--medium-gray);
    font-size: 13px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .trust-item p {
        font-size: 14px;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-stats {
        display: flex;
        gap: 40px;
        text-align: left;
    }
}

 .stat-item {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 @media (min-width: 1024px) {
    .stat-item {
        align-items: flex-start;
    }
}

 .stat-number {
     font-size: 24px;
     font-weight: 700;
     color: var(--primary);
     line-height: 1;
     margin-bottom: 4px;
 }

 @media (min-width: 768px) {
    .stat-number {
        font-size: 32px;
    }
}

 .stat-label {
     font-size: 11px;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--medium-gray);
     line-height: 1.3;
 }

 @media (min-width: 768px) {
    .stat-label {
        font-size: 12px;
        letter-spacing: 1.2px;
    }
}

 .hero-image {
     position: relative;
     z-index: 1;
 }

 .image-main {
     border-radius: var(--radius-xl);
     overflow: hidden;
     box-shadow: var(--shadow-lg);
     position: relative;
     height: 500px;
 }

 .image-main img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 1s ease;
 }

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

 .image-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 40px;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
     color: var(--white);
 }

 .image-overlay h3 {
     font-size: 24px;
     margin-bottom: 8px;
 }

 .image-overlay p {
     font-size: 16px;
     opacity: 0.9;
 }

 .floating-elements {
     position: absolute;
     top: 50px;
     right: -20px;
     z-index: 2;
 }

 .floating-card {
     width: 220px;
     background: var(--white);
     border-radius: var(--radius-lg);
     padding: 20px;
     box-shadow: var(--shadow-lg);
     position: relative;
     overflow: hidden;
 }

 .floating-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 6px;
     height: 100%;
     background: linear-gradient(to bottom, var(--primary), var(--accent));
 }

.floating-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.floating-card p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Hero Showcase - Logo & Sectors Display */
.hero-showcase {
    background: linear-gradient(145deg, var(--white) 0%, #f8fafc 100%);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-showcase {
        padding: 40px 32px;
        border-radius: var(--radius-xl);
    }
}

@media (min-width: 1024px) {
    .hero-showcase {
        padding: 48px 40px;
    }
}

.hero-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

@media (min-width: 768px) {
    .hero-showcase::before {
        height: 5px;
    }
}

.showcase-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: var(--white);
    border-radius: 50%;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(37, 99, 235, 0.08);
    animation: pulse-glow 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .showcase-logo {
        width: 150px;
        height: 150px;
        padding: 20px;
        margin-bottom: 28px;
    }
}

@media (min-width: 1024px) {
    .showcase-logo {
        width: 160px;
        height: 160px;
    }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12); }
    50% { box-shadow: 0 12px 48px rgba(37, 99, 235, 0.18); }
}

.showcase-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-sectors {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 400px) {
    .showcase-sectors {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .showcase-sectors {
        gap: 12px;
    }
}

.sector-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 12px;
    color: var(--dark);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .sector-badge {
        font-size: 13px;
        padding: 14px 16px;
        gap: 10px;
    }
}

.sector-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sector-badge i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .sector-badge i {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }
}

/* ========== PILLARS SECTION ========== */
.pillars {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 480px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

.pillar-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 22px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .pillar-card {
        padding: 26px;
        border-radius: var(--radius-lg);
    }
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.2);
}

.pillar-card:hover::before {
    opacity: 1;
}

/* Primary/Core Focus pillar styling */
.pillar-primary {
    background: linear-gradient(145deg, var(--white) 0%, rgba(37, 99, 235, 0.02) 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.pillar-primary::before {
    opacity: 1;
    height: 4px;
}

.pillar-primary .pillar-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.pillar-primary .pillar-tag {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.08);
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 13px;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .pillar-icon {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.05);
}

.pillar-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

@media (min-width: 768px) {
    .pillar-card h3 {
        font-size: 20px;
    }
}

.pillar-card p {
    color: var(--dark-gray);
    margin-bottom: 14px;
    line-height: 1.65;
    font-size: 14px;
}

@media (min-width: 768px) {
    .pillar-card p {
        font-size: 15px;
    }
}

.pillar-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--dark);
    font-size: 12px;
}

@media (min-width: 768px) {
    .pillar-tag {
        font-size: 13px;
    }
}

/* ========== LEADERSHIP SECTION ========== */
.leadership {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
}

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

@media (min-width: 768px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .section-kicker {
        font-size: 12px;
        padding: 10px 16px;
    }
}

.leader-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .leader-content h2 {
        font-size: 34px;
    }
}

@media (min-width: 1024px) {
    .leader-content h2 {
        font-size: 38px;
    }
}

.leader-intro {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.75;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .leader-intro {
        font-size: 16px;
    }
}

.leader-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .leader-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    align-items: flex-start;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.highlight i {
    color: var(--primary);
    font-size: 16px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .highlight i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.highlight h4 {
    margin-bottom: 4px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

@media (min-width: 768px) {
    .highlight h4 {
        font-size: 16px;
    }
}

.highlight p {
    color: var(--medium-gray);
    font-size: 13px;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .highlight p {
        font-size: 14px;
    }
}

.leader-quote {
    margin-top: 8px;
    padding: 16px 18px;
    border-left: 3px solid var(--primary);
    background: rgba(37, 99, 235, 0.04);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 500;
    line-height: 1.65;
    font-style: italic;
}

@media (min-width: 768px) {
    .leader-quote {
        padding: 18px 20px;
        font-size: 15px;
    }
}

.leader-image-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.leader-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 2;
    font-size: 14px;
}

.leader-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.8s ease;
}

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

/* ========== FOUNDER GALLERY ========== */
.founder-gallery {
    background: #f8fafc;
}

.gallery-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.gallery-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    aspect-ratio: 16 / 9;
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.6s ease;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    font-size: 16px;
    text-align: left;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.gallery-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--light-gray);
    color: var(--dark);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ========== SERVICE MODAL ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
}

.modal-dialog {
    position: relative;
    width: 100%;
    max-width: 640px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.12);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.modal-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-gray);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 10px;
}

.modal-dialog h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.modal-summary {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.modal-points {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.modal-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 600;
}

.modal-points li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent);
    font-size: 14px;
}

.modal-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid var(--light-gray);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
    font-weight: 600;
}

.meta-item i {
    color: var(--primary);
}

/* ========== SERVICES SECTION ========== */
.services {
    background-color: var(--light);
}

 .services-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 20px;
 }

 @media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

 .service-card {
     background: var(--white);
     border-radius: var(--radius-md);
     overflow: hidden;
     border: 1px solid rgba(226, 232, 240, 0.8);
     transition: var(--transition);
     position: relative;
     z-index: 1;
     box-shadow: var(--shadow-sm);
 }

 .service-card:hover {
     transform: translateY(-4px);
     border-color: rgba(37, 99, 235, 0.2);
     box-shadow: var(--shadow-md);
 }

 @media (min-width: 768px) {
    .service-card:hover {
        transform: translateY(-6px);
    }
}

 .service-image {
     height: 160px;
     overflow: hidden;
     position: relative;
 }

 @media (min-width: 768px) {
    .service-image {
        height: 180px;
    }
}

 .service-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .service-card:hover .service-image img {
     transform: scale(1.08);
 }

 .service-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(37, 99, 235, 0.15), transparent);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .service-icon {
     width: 56px;
     height: 56px;
     border-radius: var(--radius-sm);
     background: rgba(255, 255, 255, 0.95);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     color: var(--primary);
     box-shadow: var(--shadow-md);
 }

 @media (min-width: 768px) {
    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
}

 .service-content {
     padding: 20px;
 }

 @media (min-width: 768px) {
    .service-content {
        padding: 24px;
    }
}

 .service-card h3 {
     font-size: 18px;
     margin-bottom: 10px;
     color: var(--dark);
 }

 @media (min-width: 768px) {
    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

 .service-card p {
     color: var(--dark-gray);
     margin-bottom: 16px;
     font-size: 14px;
     line-height: 1.6;
 }

 @media (min-width: 768px) {
    .service-card p {
        font-size: 15px;
    }
}

 .service-features {
     margin-top: 16px;
 }

 .service-features li {
     display: flex;
     align-items: center;
     gap: 8px;
     margin-bottom: 8px;
     font-size: 13px;
 }

 @media (min-width: 768px) {
    .service-features li {
        font-size: 14px;
    }
}

.service-features li i {
    color: var(--accent);
    font-size: 12px;
    flex-shrink: 0;
}

.service-detail-btn {
    margin-top: 14px;
    padding: 10px 14px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .service-detail-btn {
        font-size: 14px;
        padding: 12px 16px;
    }
}

.service-detail-btn::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
}

.service-detail-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Primary/Featured Service Card */
.service-primary {
    border: 2px solid rgba(37, 99, 235, 0.2);
    background: linear-gradient(145deg, var(--white) 0%, rgba(37, 99, 235, 0.02) 100%);
}

.service-primary::before {
    content: 'CORE FOCUS';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.service-primary .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

/* ========== FARMING SPOTLIGHT ========== */
.farming {
    background: linear-gradient(120deg, #eef2ff 0%, #f8fafc 60%, #ffffff 100%);
}

.farming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.farming-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.farming-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.farming-content p {
    color: var(--dark-gray);
    margin-bottom: 18px;
    line-height: 1.7;
}

.farming-points {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.farming-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 600;
}

.farming-points i {
    color: var(--primary);
}

 /* ========== DESTINATIONS SECTION ========== */
 .destinations {
     background-color: #f8fafc;
     position: relative;
 }

 .destinations-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
 }

 .destination-card {
     border-radius: var(--radius-lg);
     overflow: hidden;
     position: relative;
     height: 400px;
     box-shadow: var(--shadow-md);
     transition: var(--transition);
 }

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

 .destination-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 1s ease;
 }

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

 .destination-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     padding: 30px;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
     color: var(--white);
 }

 .destination-overlay h3 {
     font-size: 24px;
     margin-bottom: 8px;
 }

 .destination-overlay p {
     font-size: 15px;
     opacity: 0.9;
     margin-bottom: 15px;
 }

 .destination-tag {
     display: inline-block;
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
     padding: 6px 16px;
     border-radius: 50px;
     font-size: 14px;
     margin-top: 10px;
 }

 /* ========== PROCESS SECTION ========== */
 .process {
     background-color: var(--white);
 }

 .process-steps {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     position: relative;
 }

 .process-step {
     text-align: center;
     position: relative;
     z-index: 1;
 }

 .step-number {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: linear-gradient(135deg, var(--primary), var(--accent));
     color: var(--white);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     font-weight: 700;
     margin: 0 auto 24px;
     position: relative;
     z-index: 2;
 }

 .process-step h3 {
     font-size: 22px;
     margin-bottom: 16px;
     color: var(--dark);
 }

 .process-step p {
     color: var(--dark-gray);
     font-size: 16px;
 }

 /* ========== TESTIMONIALS ========== */
 .testimonials {
     background-color: #f8fafc;
     position: relative;
 }

 .testimonial-slider {
     max-width: 800px;
     margin: 0 auto;
     position: relative;
 }

 .testimonial-card {
     background: var(--white);
     border-radius: var(--radius-md);
     padding: 32px 24px;
     box-shadow: var(--shadow-sm);
     text-align: center;
     position: relative;
     border: 1px solid rgba(226, 232, 240, 0.6);
 }

 @media (min-width: 768px) {
    .testimonial-card {
        padding: 40px 36px;
        border-radius: var(--radius-lg);
    }
}

 .testimonial-card::before {
     content: '"';
     position: absolute;
     top: 20px;
     left: 24px;
     font-size: 60px;
     color: rgba(37, 99, 235, 0.08);
     font-family: 'Playfair Display', serif;
     line-height: 1;
 }

 @media (min-width: 768px) {
    .testimonial-card::before {
        font-size: 72px;
        top: 24px;
        left: 32px;
    }
}

 .testimonial-text {
     font-size: 16px;
     font-style: italic;
     color: var(--dark-gray);
     margin-bottom: 24px;
     line-height: 1.75;
     position: relative;
     z-index: 1;
 }

 @media (min-width: 768px) {
    .testimonial-text {
        font-size: 18px;
    }
}

 .testimonial-author {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
 }

 .author-avatar {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     overflow: hidden;
     border: 2px solid var(--primary);
 }

 @media (min-width: 768px) {
    .author-avatar {
        width: 64px;
        height: 64px;
    }
}

 .author-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .author-info h4 {
     font-size: 16px;
     margin-bottom: 3px;
     font-family: 'Inter', sans-serif;
     font-weight: 600;
 }

 .author-info p {
     color: var(--medium-gray);
     font-size: 13px;
 }

 .slider-controls {
     display: flex;
     justify-content: center;
     gap: 12px;
     margin-top: 28px;
 }

 .slider-btn {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background: var(--white);
     border: 1px solid rgba(226, 232, 240, 0.8);
     color: var(--dark);
     font-size: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: var(--transition);
 }

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

 /* ========== CONTACT SECTION ========== */
 .contact {
     background-color: var(--light);
 }

 .contact-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 32px;
 }

 @media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 24px;
 }

 .contact-card {
     background: var(--white);
     border-radius: var(--radius-md);
     padding: 24px;
     border-left: 3px solid var(--primary);
     box-shadow: var(--shadow-sm);
 }

 @media (min-width: 768px) {
    .contact-card {
        padding: 28px;
    }
}

 .contact-card h3 {
     font-size: 20px;
     margin-bottom: 18px;
     color: var(--dark);
 }

 .contact-details {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 .contact-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
 }

 .contact-icon {
     width: 42px;
     height: 42px;
     border-radius: var(--radius-sm);
     background: rgba(37, 99, 235, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     color: var(--primary);
     flex-shrink: 0;
 }

 .contact-text h4 {
     font-size: 15px;
     margin-bottom: 3px;
     font-family: 'Inter', sans-serif;
     font-weight: 600;
 }

 .contact-text p {
     color: var(--dark-gray);
     font-size: 14px;
 }

 .social-links {
     display: flex;
     gap: 10px;
     margin-top: 16px;
 }

 .social-link {
     width: 40px;
     height: 40px;
     border-radius: var(--radius-sm);
     background: rgba(37, 99, 235, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     color: var(--primary);
     transition: var(--transition);
 }

 .social-link:hover {
     background: var(--primary);
     color: var(--white);
     transform: translateY(-3px);
 }

 .contact-form-card {
     background: var(--white);
     border-radius: var(--radius-md);
     padding: 24px;
     box-shadow: var(--shadow-sm);
 }

 @media (min-width: 768px) {
    .contact-form-card {
        padding: 32px;
    }
}

 .contact-form-card h3 {
     font-size: 22px;
     margin-bottom: 8px;
     color: var(--dark);
 }

 @media (min-width: 768px) {
    .contact-form-card h3 {
        font-size: 24px;
    }
}

 .form-description {
     color: var(--medium-gray);
     margin-bottom: 24px;
     font-size: 14px;
 }

 .form-group {
     margin-bottom: 18px;
 }

 @media (min-width: 768px) {
    .form-group {
        margin-bottom: 20px;
    }
}

 .form-group label {
     display: block;
     font-weight: 500;
     margin-bottom: 6px;
     color: var(--dark);
     font-size: 14px;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 14px 16px;
     border-radius: var(--radius-sm);
     border: 1px solid rgba(226, 232, 240, 0.8);
     background: var(--light);
     font-family: 'Inter', sans-serif;
     font-size: 15px;
     color: var(--dark);
     transition: var(--transition);
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: var(--primary);
     box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
 }

 .form-group textarea {
     min-height: 120px;
     resize: vertical;
 }

 /* ========== FOOTER ========== */
 footer {
     background: var(--dark);
     color: var(--white);
     padding: 60px 0 24px;
 }

 @media (min-width: 768px) {
    footer {
        padding: 80px 0 30px;
    }
}

 .footer-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 32px;
     margin-bottom: 40px;
 }

 @media (min-width: 480px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

 @media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 50px;
    }
}

 .footer-col h3 {
     font-size: 17px;
     margin-bottom: 18px;
     color: var(--white);
 }

 @media (min-width: 768px) {
    .footer-col h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

 .footer-col p {
     color: rgba(255, 255, 255, 0.65);
     line-height: 1.7;
     margin-bottom: 16px;
     font-size: 14px;
 }

 .footer-links {
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.65);
     transition: var(--transition);
     font-size: 14px;
 }

 .footer-links a:hover {
     color: var(--white);
     padding-left: 4px;
 }

 .footer-bottom {
     display: flex;
     flex-direction: column;
     gap: 8px;
     text-align: center;
     padding-top: 24px;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
     font-size: 13px;
     color: rgba(255, 255, 255, 0.45);
 }

 @media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        font-size: 14px;
    }
}

 /* ========== RESPONSIVE DESIGN - Mobile Navigation ========== */
 @media (max-width: 1024px) {
     .floating-elements {
         display: none;
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         position: fixed;
         top: 70px;
         left: 0;
         width: 100%;
         background: var(--white);
         flex-direction: column;
         padding: 24px 20px;
         gap: 16px;
         transform: translateY(-100%);
         opacity: 0;
         visibility: hidden;
         transition: var(--transition);
         border-bottom: 1px solid var(--light-gray);
         box-shadow: var(--shadow-md);
         max-height: calc(100vh - 70px);
         overflow-y: auto;
     }

     .nav-links.active {
         transform: translateY(0);
         opacity: 1;
         visibility: visible;
     }

     .nav-toggle {
         display: flex;
         align-items: center;
         justify-content: center;
         width: 44px;
         height: 44px;
         border-radius: var(--radius-sm);
     }

     .nav-cta {
         margin-left: 0;
         margin-top: 8px;
         width: 100%;
     }
 }

 /* Animation Classes */
 .fade-in {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }
