/* 
   01. Global Reset & Base
   02. Navigation
   03. Hero Section
   04. Section Headings & Utilities
   05. Trust Strip
   06. About Section (Homepage)
   07. Vision Section (Homepage)
   08. Services Section (Homepage)
   09. Framework Section (Homepage)
   10. How We Work Section
   11. Why Choose Us Section
   12. Market Differentiation (Comparison Table)
   13. Testimonials Section
   14. What You Get With Ozilution
   15. CTA Section (Homepage)
   16. Footer
   17. Floating Contact Buttons
   18. Scroll Reveal Animations
   19. About Page
   20. Contact Page
   21. Services Page
 */


/* =============================================================================
   01. GLOBAL RESET & BASE
============================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: white;
    color: #24345F;
    overflow-x: hidden;
    min-height: 100%;
}

p {
    text-align: justify;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 60px 30px;
}


/* =============================================================================
   02. NAVIGATION
============================================================================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 84px;
    background: white;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 27px rgba(0, 0, 0, 0.04);
    padding: 0 60px;
}

.logo img {
    height: 64px;
    width: auto;
    max-width: 100%;
}

.nav-wrapper {
    display: flex;
    position: relative;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
    overflow: visible;
}

.nav-links {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 10px 0;
}

.nav-links a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: #1a1a1a;
    padding: 8px 0;
}

.nav-links a.active {
    color: #4057E3;
    font-weight: 600;
}

.nav-links a:hover {
    color: #4057E3;
}

.nav-btn {
    background: #FF8500;
    color: white;
    padding: 16px 32px;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 160px;
    text-align: center;
    user-select: none;
    pointer-events: auto;
}

a.nav-btn {
    text-decoration: none;
    color: white;
    text-transform: none;
    font-weight: 500;
    border: none;
    display: inline-block;
    line-height: normal;
}

.nav-btn:hover {
    background: #e67800;
}

.nav-btn:hover {
    color: white !important;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    margin-left: 20px;
}

@media (max-width: 1024px) {
    .navbar { padding: 0 30px; }
    .nav-wrapper { padding: 0; gap: 40px; }
    .nav-links { gap: 28px; }
    .nav-links a { font-size: 16px; }
    .nav-btn { padding: 10px 18px; }
}

@media (max-width: 768px) {
    .navbar { height: 72px; padding: 0 20px; }
    .logo img { height: 36px; }
    .nav-wrapper { gap: 20px; }
    .menu-toggle { display: block; }

    .nav-btn {
        margin-left: auto;
        padding: 10px 16px;
        font-size: 14px;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(36, 52, 95, 1);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 10px 20px 20px;
        display: none;
        z-index: 9999;
    }

    .nav-links a {
        color: white;
        width: 100%;
        text-align: center;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 15px;
    }

    .nav-links .nav-btn {
    margin-top: 16px;
    width: 100%;
    background: #FF8500;
    color: white;
    text-align: center;
    border-radius: 8px;
    font-size: 17px;
    display: block;
    box-sizing: border-box;
}

    .nav-links.active { display: flex; }
}

@media (max-width: 480px) {
    .navbar { height: 72px; padding: 0 20px; }
    .logo img { height: 36px; }
    .nav-wrapper { gap: 20px; }
    .nav-btn { padding: 10px 16px; font-size: 14px; }
}


/* =============================================================================
   03. HERO SECTION
============================================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    margin-top: 0;
}

/* Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active { opacity: 1; }

/* Text */
.hero-text { display: none; }

.hero-text.active {
    display: block;
    animation: slideUp 0.8s ease forwards;
}

.hero-content {
    position: relative;
    top: 0;
    max-width: 800px;
    color: white;
    padding-left: 100px;
    padding-top: 84px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Animated elements */
.hero-content h1,
.hero-content p,
.hero-buttons {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease forwards;
}

.hero-content p { animation-delay: 0.3s; }
.hero-buttons { animation-delay: 0.6s; }

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Shared button styles */
.btn-primary,
.btn-outline {
    padding: 18px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 20px;
    min-width: 240px;
    text-align: center;
    display: inline-block;
}

.btn-outline i {
    font-size: 28px;
    margin-right: 10px;
    vertical-align: middle;
}

.btn-primary {
    background: #FF8500;
    color: white;
    font-weight: 500;
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

.btn-primary:hover { background: #e67800; }

.btn-outline:hover {
    background: white;
    color: #24345F;
}

/* Navigation arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
}

.hero-prev,
.hero-next {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1024px) {
    .hero { padding: 0 40px; }
    .hero-content { max-width: 620px; padding-left: 60px; padding-top: 84px; }
    .hero h1 { font-size: 38px; }
    .hero p { font-size: 18px; }
    .btn-primary, .btn-outline { padding: 16px 28px; font-size: 17px; min-width: 200px; }
}

@media (max-width: 768px) {
    .hero { padding: 0; align-items: center; }
    .hero-content { max-width: 100%; padding: 84px 24px 0; }
    .hero h1 { font-size: 30px; line-height: 1.25; }
    .hero p { font-size: 15px; line-height: 1.6; margin-bottom: 30px; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 14px; }
    .btn-primary, .btn-outline { font-size: 15px; padding: 14px 24px; min-width: unset; width: 100%; }
}

@media (max-width: 480px) {
    .hero-content { padding: 84px 16px 0; }
    .hero h1 { font-size: 26px; line-height: 1.3; }
    .hero p { font-size: 14px; line-height: 1.5; margin-bottom: 24px; }
    .btn-primary, .btn-outline { font-size: 14px; padding: 13px 20px; }
}


/* =============================================================================
   04. SECTION HEADINGS & UTILITIES
============================================================================= */

/* --- Left-aligned underline --- */
.about-content h2,
.vision-left h2,
.framework-content h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    white-space: normal;
}

.about-content h2::after,
.vision-left h2::after,
.framework-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 3px;
    background: #FF8500;
    border-radius: 2px;
}

/* --- Center-aligned underline --- */
.services-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.services-header h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: #FF8500;
    border-radius: 2px;
}

/* --- Utility: .section-title --- */
.section-title {
    position: relative;
    display: block;
    white-space: normal;
    width: 100%;
    padding-bottom: 14px;
    font-size: 40px;
    color: #24345F;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 3px;
    background: #FF8500;
    border-radius: 2px;
}

.section-title.center {
    text-align: center;
    display: block;
    margin: 0 auto 50px;
    max-width: 900px;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* --- Utility: service number badge --- */
.service-number {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FF8500;
    background: rgba(255, 133, 0, 0.15);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    width: fit-content;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .section-title { font-size: 30px; }
}


/* =============================================================================
   05. TRUST STRIP
============================================================================= */

.trust-strip {
    padding: 60px 30px;
    background-image: url("images/trust-strip.png");
    background-size: cover;
    background-position: center;
}

.trust-wrapper {
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.trust-card {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 24px;
    border-radius: 6px;
    color: white;
}

.trust-icon {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.trust-icon i {
    font-size: 26px;
    color: white;
}

.trust-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.trust-card p {
    font-size: 16px;
    opacity: 0.9;
    white-space: normal;
}

.trust-card:hover {
    background: white;
    color: #24345F;
    border: 1px solid white;
    cursor: pointer;
}

.trust-card:hover .trust-icon { border: 1px solid #24345F; }
.trust-card:hover .trust-icon i { color: #24345F; }

@media (max-width: 1024px) {
    .trust-strip { padding: 60px 40px; }
    .trust-wrapper { gap: 18px; }
    .trust-card { padding: 20px; }
    .trust-card h3 { font-size: 18px; }
    .trust-card p { font-size: 14px; }
}

@media (max-width: 768px) {
    .trust-strip { padding: 60px 20px; }
    .trust-wrapper { flex-wrap: wrap; gap: 16px; }
    .trust-card { flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 480px) {
    .trust-wrapper { flex-direction: column; }
    .trust-card { flex: 100%; }
    .trust-icon { width: 50px; height: 50px; }
    .trust-icon i { font-size: 22px; }
    .trust-card h3 { font-size: 18px; }
    .trust-card p { font-size: 14px; }
}


/* =============================================================================
   06. ABOUT SECTION (HOMEPAGE)
============================================================================= */

.about { background: white; }

.about-container {
    display: flex;
    align-items: center;
    gap: 80px;
    margin: auto;
}

.about-image { flex: 1; position: relative; }

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -40px;
    background: white;
    padding: 18px 24px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 370px;
}

.about-badge h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #24345F;
}

.about-badge p {
    font-size: 15px;
    line-height: 1.5;
    font-style: italic;
}

.about-content { flex: 1; }

.about-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #24345F;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: #555;
}

.about-btn {
    display: inline-block;
    background: #4057E3;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid transparent;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: white;
    color: #4057E3;
    border-color: #4057E3;
}

@media (max-width: 1024px) {
    .about-container { gap: 50px; }
    .about-image img { height: 480px; }
    .about-content h2 { font-size: 34px; }
    .about-content p { font-size: 15px; }
    .about-badge { right: -20px; width: 320px; }
}

@media (max-width: 768px) {
    .about-container { flex-direction: column; gap: 40px; }
    .about-image img { height: 420px; }
    .about-badge { position: relative; bottom: auto; right: auto; margin-top: 20px; width: 100%; }
    .about-content h2 { font-size: 32px; }
    .about-content p { font-size: 15px; }
}

@media (max-width: 480px) {
    .about-image img { height: 360px; }
    .about-content h2 { font-size: 28px; }
    .about-content p { font-size: 14px; line-height: 1.5; }
    .about-btn { padding: 12px 22px; font-size: 14px; }
}


/* =============================================================================
   07. VISION SECTION (HOMEPAGE)
============================================================================= */

.vision { padding: 0; }

.vision-wrapper {
    display: flex;
    min-height: 400px;
}

.vision-left {
    flex: 0 0 65%;
    background-image: url("images/vision-bg.png");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 80px;
}

.vision-left h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

.vision-sub {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 40px;
}

.vision-cards {
    display: flex;
    gap: 30px;
    max-width: 800px;
}

.vision-card {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 20px;
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
}

.vision-card h3 { font-size: 22px; margin-bottom: 16px; }

.vision-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.vision-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-icon i { font-size: 18px; color: white; }

.vision-card:hover {
    background: white;
    color: #24345F;
    border-color: white;
    cursor: pointer;
}

.vision-card:hover p { opacity: 1; color: #555; }
.vision-card:hover .vision-icon { border-color: #24345F; }
.vision-card:hover .vision-icon i { color: #24345F; }

.vision-image {
    flex: 0 0 35%;
    overflow: hidden;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vision-image:hover img { transform: scale(1.08); }

@media (max-width: 1024px) {
    .vision-left { padding: 80px 50px; }
    .vision-left h2 { font-size: 38px; }
    .vision-sub { font-size: 16px; }
    .vision-cards { gap: 20px; }
    .vision-card h3 { font-size: 20px; }
    .vision-card p { font-size: 15px; }
}

@media (max-width: 768px) {
    .vision-wrapper { flex-direction: column; }
    .vision-left { flex: 100%; padding: 80px 30px; }
    .vision-image { flex: 100%; height: 320px; }
    .vision-cards { flex-direction: column; gap: 20px; }
    .vision-left h2 { font-size: 32px; }
    .vision-sub { font-size: 15px; }
}

@media (max-width: 480px) {
    .vision-left { padding: 70px 20px; }
    .vision-left h2 { font-size: 28px; }
    .vision-sub { font-size: 14px; line-height: 1.5; }
    .vision-card { padding: 18px; }
    .vision-card h3 { font-size: 18px; }
    .vision-card p { font-size: 14px; }
    .vision-icon { width: 36px; height: 36px; top: 18px; right: 18px; }
    .vision-icon i { font-size: 16px; }
    .vision-image { height: 260px; }
}


/* =============================================================================
   08. SERVICES SECTION (HOMEPAGE)
============================================================================= */

.services { background: #F7F8FC; }

.services-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 80px;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #24345F;
}

.services-header p {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 28px;
}

.service-card {
    background: white;
    border: 1px solid #E6E8F0;
    padding: 24px;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.service-card i {
    font-size: 26px;
    color: #FF8500;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    flex: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.service-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    align-self: flex-end;
    color: #FF8500;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 8px 14px;
    border: 1.5px solid #FF8500;
    transition: all 0.25s ease;
}

.service-link i { display: none; }

.service-link:hover {
    background: #FF8500;
    color: white;
}

@media (max-width: 1024px) {
    .services-header { margin-bottom: 60px; }
    .services-header h2 { font-size: 34px; }
    .services-header p { font-size: 18px; }
    .services-grid { gap: 22px; }
    .service-card { padding: 28px; }
    .service-card h3 { font-size: 20px; }
    .service-card p { font-size: 15px; }
}

@media (max-width: 768px) {
    .services { padding: 60px 20px; }
    .services-header { margin-bottom: 50px; }
    .services-header h2 { font-size: 30px; }
    .services-header p { font-size: 16px; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .service-card { padding: 26px; }
}

@media (max-width: 480px) {
    .services-header h2 { font-size: 26px; }
    .services-header p { font-size: 15px; line-height: 1.5; }
    .service-card { padding: 22px; }
    .service-card h3 { font-size: 18px; }
    .service-card p { font-size: 14px; }
}


/* =============================================================================
   09. FRAMEWORK SECTION (HOMEPAGE)
============================================================================= */

.framework { background: white; }

.framework-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.framework-image { flex: 1; }

.framework-image img {
    width: 100%;
    max-height: 650px;
    object-fit: contain;
}

.framework-content {
    max-width: 620px;
    flex: 1;
}

.framework-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.framework-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

.framework-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.framework-btn-primary,
.framework-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 310px;
    height: 54px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.framework-btn-primary {
    background: #4057E3;
    color: white;
}

.framework-btn-outline {
    border: 1px solid #4057E3;
    color: #4057E3;
}

.framework-btn-primary:hover { background: #3246c5; }

.framework-btn-outline:hover {
    background: #4057E3;
    color: white;
}

@media (max-width: 1024px) {
    .framework-wrapper { gap: 40px; }
    .framework-content h2 { font-size: 34px; }
    .framework-content p { font-size: 16px; }
    .framework-image img { max-height: 520px; }
}

@media (max-width: 768px) {
    .framework-wrapper { flex-direction: column; gap: 40px; }
    .framework-image { width: 100%; }
    .framework-image img { max-height: 420px; }
    .framework-content { max-width: 100%; }
    .framework-content h2 { font-size: 30px; text-align: center; }
    .framework-content h2::after { left: 50%; transform: translateX(-50%); }
    .framework-content p { font-size: 15px; text-align: center; }
    .framework-buttons { flex-direction: column; align-items: stretch; gap: 14px; }
    .framework-btn-primary, .framework-btn-outline { width: 100%; height: auto; min-height: 54px; }
}

@media (max-width: 480px) {
    .framework-content h2 { font-size: 26px; }
    .framework-content p { font-size: 14px; line-height: 1.6; }
    .framework-image img { max-height: 340px; }
    .framework-btn-primary, .framework-btn-outline { width: 100%; height: auto; min-height: 54px; }
}


/* =============================================================================
   10. HOW WE WORK SECTION
============================================================================= */

.how-work {
    padding: 60px 0;
    background: #F7F8FC;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-image: url("images/how-we-work.png");
    background-size: cover;
    background-position: center;
}

.work-card {
    position: relative;
    height: 420px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.35s ease;
}

.work-card:last-child { border-right: none; }

.work-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: 0.35s ease;
    z-index: 1;
}

.work-content {
    position: absolute;
    bottom: -16px;
    left: 40px;
    right: 40px;
    color: white;
    z-index: 2;
    transition: 0.35s ease;
}

.step {
    font-size: 24px;
    opacity: 0.9;
    display: block;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.work-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.work-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(25px);
    transition: 0.35s ease;
}

/* Active state (JS-toggled) */
.work-card.active::before { background: rgba(0, 0, 0, 0.45); }
.work-card.active .work-content { transform: translateY(-30px); }
.work-card.active p { opacity: 1; transform: translateY(0); }
.work-card.active .step { color: #FF8500; }

@media (max-width: 1024px) {
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .work-card { height: 360px; }
    .work-content { left: 30px; right: 30px; }
    .work-content h3 { font-size: 24px; }
    .step { font-size: 22px; }
    .work-card:nth-child(1), .work-card:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    .work-card:nth-child(2), .work-card:nth-child(4) { border-right: none; }
}

@media (max-width: 768px) {
    .work-grid { grid-template-columns: repeat(2, 1fr); }
    .work-card { height: 300px; border-right: 1px solid rgba(255, 255, 255, 0.3); }
    .work-card:nth-child(2), .work-card:nth-child(4) { border-right: none; }
    .work-card:nth-child(1), .work-card:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    .work-content { left: 24px; right: 24px; bottom: -10px; }
    .work-content h3 { font-size: 22px; }
    .work-content p { font-size: 14px; }
}

@media (max-width: 480px) {
    .work-grid { grid-template-columns: 1fr; }
    .work-card { height: 260px; border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
    .work-content { left: 20px; right: 20px; }
    .step { font-size: 20px; }
    .work-content h3 { font-size: 20px; }
}


/* =============================================================================
   11. WHY CHOOSE US SECTION
============================================================================= */

.why-choose .services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.why-choose .services-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #24345F;
}

.why-choose .services-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    background: white;
    padding: 28px;
    border-radius: 6px;
    border-top: 4px solid #FF8500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.why-card i {
    font-size: 36px;
    color: #FF8500;
    margin-bottom: 16px;
    display: block;
}

.why-line {
    width: 60px;
    height: 1px;
    background: #ddd;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #24345F;
    line-height: 1.3;
}

.why-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card { padding: 32px; }
    .why-card i { font-size: 32px; }
    .why-card h3 { font-size: 18px; }
    .why-card p { font-size: 14px; }
}

@media (max-width: 768px) {
    .why-choose { padding: 60px 20px; }
    .why-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-card { padding: 28px; }
    .why-choose .services-header h2 { font-size: 32px; }
    .why-choose .services-header p { font-size: 16px; }
}

@media (max-width: 480px) {
    .why-choose .services-header h2 { font-size: 28px; }
    .why-choose .services-header p { font-size: 15px; }
    .why-card { padding: 24px; }
    .why-card i { font-size: 28px; }
    .why-card h3 { font-size: 17px; }
    .why-card p { font-size: 14px; }
}


/* =============================================================================
   12. MARKET DIFFERENTIATION (COMPARISON TABLE)
============================================================================= */

.market-differentiation { background: #F7F7F7; }

.comparison-box-wrapper { overflow-x: auto; }

.comparison-box {
    width: 100%;
    border-collapse: collapse;
    margin: 30px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 1200px;
}

.comparison-box th {
    padding: 24px 30px;
    font-size: 20px;
    font-weight: 600;
    width: 50%;
}

.comparison-box th i { margin-right: 8px; }

.comparison-box th.comparison-left {
    background: #e3e3e3;
    color: #2e2e2e;
    border-right: 1px solid #e6e6e6;
}

.comparison-box th.comparison-right {
    background: #24345F;
    color: white;
}

.comparison-box td.comparison-left {
    background: white;
    padding: 14px 30px;
    font-size: 17px;
    color: #666;
    border-right: 1px solid #e6e6e6;
    line-height: 1.4;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-box td.comparison-right {
    background: #EEF1FB;
    padding: 14px 30px;
    font-size: 17px;
    color: #24345F;
    font-weight: 500;
    line-height: 1.4;
    border-bottom: 1px solid #e0e6f5;
}

.comparison-box td.comparison-right span {
    color: #FF8500;
    font-weight: 700;
    margin-right: 8px;
}

.bullet {
    color: #F0A854;
    margin-right: 10px;
    font-size: 16px;
    vertical-align: middle;
}

@media (max-width: 1024px) {
    .comparison-box { margin-top: 50px; }
    .comparison-box th { font-size: 18px; padding: 20px 24px; }
    .comparison-box td.comparison-left,
    .comparison-box td.comparison-right { font-size: 15px; padding: 16px 24px; }
}

@media (max-width: 768px) {
    .market-differentiation { padding: 60px 10px; }
    .comparison-box { min-width: 500px; }
    .comparison-box th { font-size: 14px; padding: 16px 14px; }
    .comparison-box td.comparison-left,
    .comparison-box td.comparison-right { font-size: 13px; padding: 12px 14px; }
}

@media (max-width: 480px) {
    .comparison-box th { font-size: 15px; padding: 16px; }
    .comparison-box td.comparison-left,
    .comparison-box td.comparison-right { font-size: 13px; padding: 12px 16px; }
}


/* =============================================================================
   13. TESTIMONIALS SECTION
============================================================================= */

.testimonials {
    background: #f2f2f2;
    padding: 60px 20px;
}

.testimonial-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 60px;
}

.testimonial-container {
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
    padding: 10px 0;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    padding: 30px;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.client-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-top h4 {
    font-size: 18px;
    color: #24345F;
    font-weight: 600;
}

.testimonial-top span {
    font-size: 14px;
    color: #FF8500;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.dot {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    background: #FF8500;
}

@media (max-width: 1024px) {
    .testimonial-card { min-width: calc(50% - 15px); flex: 0 0 calc(50% - 15px); }
    .testimonial-text { font-size: 15px; }
}

@media (max-width: 768px) {
    .testimonial-wrapper { gap: 10px; }
    .testimonial-container { gap: 20px; }
    .testimonial-card { min-width: 100%; flex: 0 0 100%; }
    .testimonial-top h4 { font-size: 16px; }
    .testimonial-text { font-size: 14px; }
}

@media (max-width: 480px) {
    .client-img { width: 44px; height: 44px; }
    .testimonial-card { padding: 24px; }
    .testimonial-text { font-size: 14px; line-height: 1.6; }
}


/* =============================================================================
   14. WHAT YOU GET WITH OZILUTION
============================================================================= */

.business-trust { background: white; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.trust-card-new {
    background: #F7F7F7;
    border: 1px solid #E6E8F0;
    border-radius: 10px;
    padding: 35px 30px 30px 45px;
    position: relative;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.trust-icon-circle {
    position: absolute;
    top: -28px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #24345F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.trust-icon-circle i {
    color: white;
    font-size: 26px;
}

.trust-card-new h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-card-new p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.trust-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
    .business-trust { padding: 60px 20px; }
    .trust-grid { grid-template-columns: 1fr; gap: 22px; margin-top: 50px; }
}


/* =============================================================================
   15. CTA SECTION (HOMEPAGE)
============================================================================= */

.cta { padding: 60px 30px; }

.cta-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.cta-bg {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.cta-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 900px;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.3;
}

.cta-content p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 900px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-btn-primary,
.cta-btn-outline {
    padding: 16px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
}

.cta-btn-primary {
    background: #FF8500;
    color: white;
    font-weight: 500;
}

.cta-btn-outline {
    border: 1px solid white;
    color: white;
}

.cta-btn-primary:hover { background: #e67800; }

.cta-btn-outline:hover {
    background: white;
    color: #24345F;
}

@media (max-width: 1024px) {
    .cta-bg { height: 380px; }
    .cta-content { max-width: 700px; }
    .cta-content h2 { font-size: 24px; white-space: normal; }
    .cta-content p { font-size: 16px; }
    .cta-btn-primary, .cta-btn-outline { padding: 14px 28px; font-size: 16px; }
}

@media (max-width: 768px) {
    .cta { padding: 60px 20px; }
    .cta-box { display: flex; align-items: center; justify-content: center; min-height: 520px; }
    .cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
    .cta-content { position: relative; top: auto; left: auto; transform: none; max-width: 90%; padding: 60px 20px; z-index: 2; }
    .cta-content h2 { font-size: 22px; line-height: 1.4; white-space: normal; }
    .cta-content p { font-size: 15px; }
    .cta-buttons { flex-direction: column; align-items: center; gap: 14px; }
    .cta-btn-primary, .cta-btn-outline { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
    .cta-box { min-height: 560px; }
    .cta-content h2 { font-size: 20px; }
    .cta-content p { font-size: 14px; line-height: 1.5; }
    .cta-btn-primary, .cta-btn-outline { padding: 14px 22px; font-size: 15px; }
}


/* =============================================================================
   16. FOOTER
============================================================================= */

.footer {
    background: #24345F;
    color: white;
    padding: 60px 80px 40px;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.5fr 1.4fr 1.6fr;
    gap: 40px;
    column-gap: 60px;
}

.footer-logo {
    height: 46px;
    width: auto;
    max-width: 100%;
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.7;
    color: #d6d9e3;
    font-size: 16px;
    max-width: 320px;
}

.footer-map {
    border-radius: 10px;
    overflow: hidden;
    height: 290px;
    min-width: 0;
    width: 100%;
}

.footer h3 {
    font-size: 18px;
    margin-bottom: 18px;
    font-weight: 600;
    white-space: normal;
}

.footer-links ul { list-style: none; }

.footer-links li {
    margin-bottom: 10px;
    color: #d6d9e3;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-links a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    white-space: nowrap;
}

.footer-links a:hover { color: #F0A854; }
.footer-links li:not(:has(a)):hover { color: #F0A854; cursor: pointer; }

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #d6d9e3;
}

.footer-contact p i { min-width: 18px; margin-top: 5px; }
.footer-contact i { margin-right: 10px; }
.footer-contact p:hover, .footer-contact a:hover { color: #F0A854; cursor: pointer; }

.footer-mail {
    color: #d6d9e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-mail:hover { color: #F0A854; }

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    padding-left: 38px;
}

.social-icons a { color: white; font-size: 22px; }

/* Footer nav bar */
.footer-nav {
    display: flex;
    gap: 36px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 30px;
}

.footer-nav a {
    color: #d6d9e3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav a:hover { color: #F0A854; }

/* Footer bottom bar */
.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #d6d9e3;
    font-size: 14px;
    flex-wrap: nowrap;
    gap: 20px;
}

.footer-policy { display: flex; gap: 30px; }
.footer-policy a { color: #d6d9e3; text-decoration: none; }
.footer-policy a:hover { color: white; }

@media (max-width: 1024px) {
    .footer { padding: 60px 40px 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
    .footer-about p { max-width: 100%; }
    .footer-map { grid-column: 1 / -1; height: 240px; }
}

@media (max-width: 768px) {
    .footer { padding: 60px 20px 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-map { grid-column: 1 / -1; height: 220px; }
    .footer h3 { font-size: 16px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-policy { gap: 20px; }
    .footer-nav { gap: 20px; }
    .footer-nav a { font-size: 13px; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-links a { font-size: 15px; }
    .footer-contact p { font-size: 14px; }
    .social-icons a { font-size: 20px; }
}


/* =============================================================================
   17. FLOATING CONTACT BUTTONS
============================================================================= */

.floating-contact {
    position: fixed;
    right: 25px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.float-btn.call { background: #4057E3; }
.float-btn.whatsapp { background: #25D366; }

.float-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.float-btn i { line-height: 1; }

@media (max-width: 1024px) {
    .floating-contact { right: 18px; bottom: 25px; }
    .float-btn { width: 52px; height: 52px; font-size: 18px; }
}

@media (max-width: 768px) {
    .floating-contact { right: 14px; bottom: 20px; gap: 12px; }
    .float-btn { width: 48px; height: 48px; font-size: 17px; }
}

@media (max-width: 480px) {
    .float-btn { width: 44px; height: 44px; font-size: 16px; }
}


/* =============================================================================
   18. SCROLL REVEAL ANIMATIONS
============================================================================= */

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-zoom {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-zoom.visible { opacity: 1; transform: scale(1); }

.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease;
}

.reveal-fade.visible { opacity: 1; }

.reveal-flip {
    opacity: 0;
    transform: perspective(600px) rotateX(20deg) translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-flip.visible {
    opacity: 1;
    transform: perspective(600px) rotateX(0deg) translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Staggered children */
.stagger-reveal > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-reveal.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(7) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }
.stagger-reveal.visible > *:nth-child(8) { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }


/* =============================================================================
   19. ABOUT PAGE
============================================================================= */

/* Hero */
.about-hero {
    position: relative;
    min-height: 80vh;
    background-image: url("images/about-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
}

.about-eyebrow {
    letter-spacing: 2px;
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 600;
    max-width: 900px;
}

@media (max-width: 1024px) { .about-hero h1 { font-size: 48px; } }
@media (max-width: 768px) { .about-hero { min-height: 70vh; } .about-hero h1 { font-size: 36px; } .about-eyebrow { font-size: 12px; } }
@media (max-width: 480px) { .about-hero h1 { font-size: 28px; } }

/* Content section */
.about-page-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-page-left { flex: 1; }

.about-page-left p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-page-right { flex: 1; }

.about-page-right img {
    width: 100%;
    border-radius: 12px;
}

@media (max-width: 1024px) { .about-page-container { gap: 40px; } }
@media (max-width: 768px) { .about-page-container { flex-direction: column; } }

/* Approach section */
.approach-section {
    padding: 60px 30px;
    background: #F7F7F7;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.approach-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    min-height: 240px;
    transition: all 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.approach-icon {
    color: #FF8500;
    font-size: 22px;
    margin-bottom: 20px;
}

.approach-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 600;
    color: #EAEBEF;
}

.approach-card h3 {
    font-size: 22px;
    color: #24345F;
    margin-bottom: 14px;
    line-height: 1.35;
    max-width: 220px;
}

.approach-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

@media (max-width: 1024px) { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .approach-grid { grid-template-columns: 1fr; } }

/* What sets us apart */
.apart-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 50px;
}

.apart-image { flex: 1; max-height: 520px; }

.apart-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 16px;
}

.apart-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.apart-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.apart-icon {
    width: 56px;
    height: 56px;
    background: #24345F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.apart-icon i { font-size: 20px; }
.apart-item h3 { font-size: 22px; color: #24345F; margin-bottom: 6px; }
.apart-item p { font-size: 16px; color: #666; line-height: 1.6; }

@media (max-width: 1024px) { .apart-wrapper { gap: 40px; } }
@media (max-width: 768px) { .apart-wrapper { flex-direction: column; } }

/* Work with section */
.work-with-section {
    background: #24345F;
    color: white;
    padding: 60px 30px;
}

.work-with-section .section-title { color: white; }

.work-with-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.work-with-card {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 30px 24px;
    text-align: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.work-with-card:hover { background: white; border-color: white; }
.work-with-card:hover .work-with-icon { border: 1px solid #24345F; }
.work-with-card:hover .work-with-icon i { color: #24345F; }
.work-with-card:hover h3 { color: #24345F; }

.work-with-icon {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-with-icon i { font-size: 22px; color: white; }
.work-with-card h3 { font-size: 20px; font-weight: 500; color: white; white-space: nowrap; }

@media (max-width: 1024px) {
    .work-with-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .work-with-card { padding: 28px 20px; }
    .work-with-card h3 { font-size: 18px; white-space: normal; }
}

@media (max-width: 768px) {
    .work-with-section { padding: 60px 20px; }
    .work-with-grid { grid-template-columns: 1fr; gap: 18px; }
    .work-with-card { padding: 26px 20px; }
    .work-with-icon { width: 54px; height: 54px; }
    .work-with-icon i { font-size: 20px; }
    .work-with-card h3 { font-size: 17px; }
}

@media (max-width: 480px) {
    .work-with-section { padding: 50px 16px; }
    .work-with-card { padding: 22px 18px; }
    .work-with-icon { width: 50px; height: 50px; }
    .work-with-icon i { font-size: 18px; }
    .work-with-card h3 { font-size: 16px; line-height: 1.4; }
}

/* Vision & Mission */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vm-card {
    background: #E9EBF2;
    padding: 30px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    background: #d8dbe8;
}

.vm-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vm-icon i { color: #4057E3; font-size: 22px; }
.vm-card h3 { font-size: 24px; color: #24345F; margin-bottom: 12px; }
.vm-card p { font-size: 16px; color: #555; line-height: 1.7; margin-bottom: 12px; }

@media (max-width: 768px) { .vision-mission-grid { grid-template-columns: 1fr; } }

/* Founder's Message */
.founder-message-section {
    padding: 60px 30px;
    background: #24345F;
}

.founder-message-card {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-image {
    flex: 0 0 360px;
    height: 390px;
    border-radius: 16px;
    overflow: hidden;
    margin-left: -90px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.founder-content {
    flex: 1;
    position: relative;
    color: white;
}

.founder-quote-icon {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 20px;
}

.founder-quote-right {
    display: block;
    text-align: right;
    margin-bottom: 0;
    margin-top: 20px;
}

.founder-quote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    color: white;
    text-align: left;
}

.founder-name-block {
    margin-top: 80px;
}

.founder-name-block h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.founder-name-block span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .founder-message-card { gap: 40px; }
    .founder-image { flex: 0 0 260px; height: 320px; }
    .founder-quote { font-size: 18px; }
}

@media (max-width: 768px) {
    .founder-message-section { padding: 60px 20px; }
    .founder-message-card { flex-direction: column; gap: 30px; }
    .founder-image { flex: unset; width: 100%; max-width: 320px; height: 320px; margin: 0 auto; }
    .founder-quote { font-size: 16px; }
}

@media (max-width: 480px) {
    .founder-image { max-width: 100%; height: 280px; }
    .founder-quote { font-size: 15px; line-height: 1.7; }
    .founder-quote-icon { font-size: 28px; }
}

/* Our Team */
.our-team-section {
    padding: 60px 0;
    background: white;
}

.our-team-section .container {
    padding: 0 30px;
}

.team-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 14px;
    margin-top: 50px;
    align-items: stretch;
}

.team-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.team-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 12px;
}
.team-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.team-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.team-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.team-card:nth-child(5) { grid-column: 3; grid-row: 2; }

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.team-card:hover img { transform: scale(1.05); }

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    color: white;
}

.team-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
}

.team-info span {
    font-size: 15px;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 320px 240px 240px;
        gap: 14px;
    }
    .team-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; border-radius: 12px; height: 320px; }
    .team-card:nth-child(2) { grid-column: 1; grid-row: 2; }
    .team-card:nth-child(3) { grid-column: 2; grid-row: 2; }
    .team-card:nth-child(4) { grid-column: 1; grid-row: 3; }
    .team-card:nth-child(5) { grid-column: 2; grid-row: 3; }
}

@media (max-width: 768px) {
    .our-team-section { padding: 60px 20px; }
    .team-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 240px 240px;
        gap: 12px;
    }
    .team-card:nth-child(1) { grid-column: 1 / 3; grid-row: 1; height: 260px; }
    .team-card:nth-child(2) { grid-column: 1; grid-row: 2; }
    .team-card:nth-child(3) { grid-column: 2; grid-row: 2; }
    .team-card:nth-child(4) { grid-column: 1; grid-row: 3; }
    .team-card:nth-child(5) { grid-column: 2; grid-row: 3; }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 260px);
        gap: 12px;
    }
    .team-card:nth-child(1),
    .team-card:nth-child(2),
    .team-card:nth-child(3),
    .team-card:nth-child(4),
    .team-card:nth-child(5) { grid-column: 1; grid-row: auto; }
}

/* Impact section */
.impact-section {
    padding: 60px 30px;
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.impact-card {
    background: #505D7F;
    padding: 30px 30px 55px;
    border-radius: 10px;
    color: white;
    position: relative;
    min-height: 200px;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #3d4a66;
}

.impact-card h3 {
    font-size: 19px;
    margin-bottom: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.impact-card p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
    text-align: justify;
}

.impact-icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #EFF1FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon i { color: #24345F; font-size: 18px; }

@media (max-width: 1024px) { .impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .impact-grid { grid-template-columns: 1fr; } }

/* About CTA banner */
.cta-banner {
    position: relative;
    background-image: url("images/about-cta.png");
    background-size: cover;
    background-position: center;
    padding: 60px 30px;
    color: white;
    margin-bottom: 80px;
    background-color: white;
}

.cta-banner-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-left { flex: 1; }
.cta-left h2 { font-size: 34px; margin-bottom: 12px; text-align: left; }
.cta-left p { font-size: 18px; opacity: 0.9; text-align: left; }

.cta-buttons { display: flex; gap: 20px; align-items: center; flex-shrink: 0; }

.cta-banner-btn-primary,
.cta-banner-btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    font-size: 16px;
    color: white;
}

.cta-banner-btn-primary { background: #4057E3; }
.cta-banner-btn-secondary { background: #FF8500; }
.cta-banner-btn-primary:hover { background: #3246c5; }
.cta-banner-btn-secondary:hover { background: #e67800; }

@media (max-width: 1024px) {
    .cta-banner { padding: 60px 40px; }
    .cta-banner-content { gap: 40px; }
    .cta-left h2 { font-size: 28px; }
    .cta-left p { font-size: 16px; }
    .cta-banner-btn-primary, .cta-banner-btn-secondary { padding: 14px 24px; font-size: 15px; }
}

@media (max-width: 768px) {
    .cta-banner { padding: 60px 20px; margin-bottom: 60px; }
    .cta-banner-content { flex-direction: column; gap: 30px; align-items: flex-start; }
    .cta-left h2 { font-size: 24px; }
    .cta-left p { font-size: 15px; }
    .cta-buttons { width: 100%; flex-direction: column; gap: 14px; }
    .cta-banner-btn-primary, .cta-banner-btn-secondary { width: 100%; text-align: center; padding: 14px 20px; font-size: 15px; }
}

@media (max-width: 480px) {
    .cta-banner { padding: 50px 16px; margin-bottom: 60px; }
    .cta-left h2 { font-size: 22px; line-height: 1.3; }
    .cta-left p { font-size: 14px; line-height: 1.6; }
    .cta-banner-btn-primary, .cta-banner-btn-secondary { font-size: 14px; padding: 13px 18px; }
}


/* =============================================================================
   20. CONTACT PAGE
============================================================================= */

/* Hero */
.contact-hero {
    position: relative;
    min-height: 80vh;
    background-image: url("images/contact-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 30px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.contact-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
}

.contact-hero h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    max-width: 900px;
}

@media (max-width: 1024px) { .contact-hero h1 { font-size: 38px; } }
@media (max-width: 768px) { .contact-hero { min-height: 70vh; } .contact-hero h1 { font-size: 30px; } .contact-eyebrow { font-size: 11px; } }
@media (max-width: 480px) { .contact-hero h1 { font-size: 26px; } }

/* Get in touch strip */
.get-in-touch-section {
    padding: 60px;
    background: white;
    text-align: center;
}

.git-title {
    font-size: 32px;
    font-weight: 700;
    color: #24345F;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

.git-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #FF8500;
    border-radius: 2px;
}

.git-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.git-card {
    padding: 30px 28px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ebedff;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.git-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.git-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.git-icon i { font-size: 22px; color: #4057E3; }
.git-card h4 { font-size: 24px; font-weight: 600; color: #24345F; margin-bottom: 10px; }
.git-card p { font-size: 17px; color: #888; margin: 0 0 10px; text-align: center; }

.git-card a {
    font-size: 18px;
    color: #555;
    text-decoration: none;
    margin-top: 4px;
    font-weight: 500;
    line-height: 1.7;
}

.git-card span {
    font-size: 17px;
    color: #555;
    margin-top: 4px;
    font-weight: 500;
    line-height: 1.6;
}

.git-card a:hover { color: #4057E3; }

@media (max-width: 1024px) { .get-in-touch-section { padding: 60px 40px; } .git-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .get-in-touch-section { padding: 60px 20px; } .git-cards { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .git-cards { grid-template-columns: 1fr; } }

/* Contact form & info */
.contact-main-section {
    padding: 60px;
    background: #F7F8FC;
}

.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-main-form,
.contact-main-info {
    padding: 50px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.contact-main-form h2,
.contact-main-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #24345F;
    margin-bottom: 28px;
}

.contact-main-form .form-group { margin-bottom: 16px; }

.contact-main-form .form-group input,
.contact-main-form .form-group textarea,
.contact-main-form .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E6E8F0;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: white;
    outline: none;
    transition: border 0.3s ease;
    appearance: none;
}

.contact-main-form .form-group input:focus,
.contact-main-form .form-group textarea:focus,
.contact-main-form .form-group select:focus { border-color: #4057E3; }

.contact-main-form .form-group textarea { resize: none; }

.contact-submit-btn {
    background: #4057E3;
    color: white;
    padding: 14px 36px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-top: 4px;
}

.contact-submit-btn:hover { background: #3246c5; }

.form-note {
    font-size: 12px;
    color: #999;
    margin-top: 14px;
    text-align: center;
    font-style: italic;
}

.form-note i { margin-right: 6px; color: #4057E3; }

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-info-list li i {
    color: #4057E3;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
}

.contact-info-list li a { color: #555; text-decoration: none; }
.contact-info-list li a:hover { color: #4057E3; }

.contact-main-info {
    display: flex;
    flex-direction: column;
}

.contact-main-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #E6E8F0;
}

@media (max-width: 1024px) {
    .contact-main-section { padding: 60px 40px; }
    .contact-main-form, .contact-main-info { padding: 40px; }
}

@media (max-width: 768px) {
    .contact-main-section { padding: 40px 20px; }
    .contact-main-wrapper { grid-template-columns: 1fr; }
    .contact-main-form { padding: 30px 24px; }
    .contact-main-info { padding: 30px 24px; border: none; }
}

@media (max-width: 480px) {
    .contact-main-form, .contact-main-info { padding: 24px 18px; }
    .contact-main-form h2, .contact-main-info h2 { font-size: 20px; }
}

/* Contact CTA banner */
.contact-cta-banner {
    background-image: url("images/contact-cta.jpg");
    background-size: cover;
    background-position: center;
    padding: 60px 80px;
    text-align: center;
    margin-bottom: 80px;
}

.contact-cta-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.contact-cta-buttons {
    display: flex;
    gap: 17px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-buttons a i {
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.cta-btn-blue,
.cta-btn-orange {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s ease;
    color: white;
}

.cta-btn-blue { background: #4057E3; }
.cta-btn-orange { background: #FF8500; }
.cta-btn-blue:hover { background: #3246c5; }
.cta-btn-orange:hover { background: #e67800; }

@media (max-width: 768px) {
    .contact-cta-banner { padding: 60px 20px; }
    .contact-cta-content h2 { font-size: 24px; }
    .contact-cta-buttons { flex-direction: column; align-items: center; }
    .cta-btn-blue, .cta-btn-orange { width: 100%; max-width: 320px; text-align: center; }
}

@media (max-width: 480px) { .contact-cta-content h2 { font-size: 20px; } }


/* =============================================================================
   21. SERVICES PAGE
============================================================================= */

/* Hero */
.services-hero {
    position: relative;
    min-height: 80vh;
    background-image: url("images/service-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 30px;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.services-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
}

.services-hero h1 {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    max-width: 900px;
}

@media (max-width: 1024px) { .services-hero h1 { font-size: 38px; } }
@media (max-width: 768px) { .services-hero { min-height: 70vh; } .services-hero h1 { font-size: 30px; } .services-eyebrow { font-size: 11px; } }
@media (max-width: 480px) { .services-hero h1 { font-size: 26px; } }

/* Shared service section layout */
.service-section { padding: 60px 30px; }

.service-section-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.service-section-image {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
}

.service-section-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    display: block;
}

.service-section-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-section-content p {
    font-size: 16px;
    color: #24345F;
    line-height: 1.8;
    margin-top: 16px;
}

@media (max-width: 1024px) { .service-section { padding: 60px 40px; } .service-section-container { gap: 50px; } }

@media (max-width: 768px) {
    .service-section { padding: 60px 30px; }
    .service-section-container { flex-direction: column; gap: 30px; }
    .service-section-image { flex: unset; width: 100%; }
    .service-section-image img { height: 260px; }
    .service-section-content { flex: unset; }
}

/* Organisational Systems */
.org-section { background-color: #24345F; }
.org-title { color: white; }
.org-section .title-underline { background-color: #FF8500; }
.org-content p { color: rgba(255, 255, 255, 0.88); }

.org-image-grid {
    flex: 0 0 46%;
    display: flex;
    gap: 12px;
    align-self: center;
    overflow: hidden;
    max-height: 480px;
}

.org-img-big {
    width: 55%;
    height: 480px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.org-img-stack {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.org-img-stack img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

@media (max-width: 768px) {
    .org-image-grid { flex: unset; width: 100%; height: auto; flex-direction: column; }
    .org-img-big { width: 100%; height: 260px; }
    .org-img-stack { width: 100%; flex-direction: column; }
    .org-img-stack img { width: 100%; height: 260px; min-height: unset; }
}

/* Operations Management */
.ops-section { background-color: #F7F8FC; }

.ops-box {
    background: white;
    border-radius: 16px;
    border: 1px solid #E6E8F0;
    padding: 40px;
    display: flex;
    align-items: stretch;
    gap: 60px;
}

.ops-box .service-section-image img { border-radius: 10px; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
    .ops-box { flex-direction: column; gap: 30px; padding: 24px; }
    .ops-box .service-section-image { width: 100%; }
    .ops-box .service-section-image img { height: 260px; border-radius: 10px; }
}

/* Finance & Taxation */
.finance-section {
    background-color: #F7F8FC;
    text-align: center;
}

.finance-section .section-title { margin-bottom: 30px; }

.center-underline {
    width: 120px;
    height: 3px;
    background: #FF8500;
    border-radius: 2px;
    margin: 0 auto 50px;
}

.finance-grid {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.finance-box {
    flex: 1;
    background: white;
    border-radius: 12px;
    border: 1px solid #E6E8F0;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.finance-box p {
    font-size: 16px;
    color: #24345F;
    line-height: 1.8;
    margin-bottom: 20px;
}

.finance-box p:last-child { margin-bottom: 0; }

.finance-image { flex: 0 0 34%; align-self: stretch; }

.finance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
}

@media (max-width: 1024px) { .finance-grid { gap: 16px; } .finance-box { padding: 30px 20px; } }
@media (max-width: 768px) { .finance-grid { flex-direction: column; } .finance-image { flex: unset; height: 280px; } .finance-image img { height: 280px; } }

/* ERP & Digital Process Enablement */
.erp-section { background: white; text-align: center; }

.erp-image { margin-top: 30px; }

.erp-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.erp-content { margin-top: 40px; text-align: left; }

.erp-content p {
    font-size: 16px;
    color: #24345F;
    line-height: 1.8;
    margin-bottom: 20px;
}

.erp-content p:last-child { margin-bottom: 0; }

@media (max-width: 768px) { .erp-image img { height: 260px; } }

/* Management Training */
.mgmt-section { background: #F7F8FC; padding: 60px 30px; }

.mgmt-wrapper {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}

.mgmt-cards-wrapper {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.mgmt-card-image {
    flex: 0 0 40%;
}

.mgmt-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.mgmt-card-content {
    flex: 0 0 58%;
    background: #E9EBF2;
    padding: 40px;
    border-radius: 16px;
}

.mgmt-card-content p {
    font-size: 16px;
    color: #24345F;
    line-height: 1.8;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .mgmt-cards-wrapper { flex-direction: column; }
    .mgmt-card-image { flex: unset; height: 280px; }
    .mgmt-card-content { padding: 30px 24px; }
}

/* Human Resource Management */
.hr-section { background-color: #24345F; }
.hr-section .service-section-image img { height: 400px; }
.hr-title { color: white; }
.hr-section .title-underline { background-color: #FF8500; }
.hr-content p { color: rgba(255, 255, 255, 0.88); }

/* Approach to Business Structuring */
.approach-biz-section { background: white; }

.approach-biz-images {
    flex: 0 0 38%;
    position: relative;
    align-self: stretch;
    min-height: 400px;
}

.approach-biz-img-back {
    width: 75%;
    height: calc(100% - 30px);
    background-color: #24345F;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.approach-biz-img-front {
    width: 75%;
    height: calc(100% - 30px);
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    position: absolute;
    top: 30px;
    left: 5%;
    display: block;
    border: 4px solid white;
}

@media (max-width: 768px) {
    .approach-biz-images { flex: unset; min-height: 420px; width: 100%; margin-bottom: 30px; }
    .approach-biz-img-back, .approach-biz-img-front { width: 85%; height: 320px; object-fit: cover; }
    .approach-biz-img-front { left: 10%; top: 40px; }
}

