/* Reset and Base Styles */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent !important;
            background-color: transparent !important;
        }

        /* Navbar Styles */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: transparent;
            box-shadow: none;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        nav.scrolled {
            background: white; /* atau gradient */
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        /* Navbar setelah scroll */
        .navbar.scrolled {
            background: #ffffff; /* warna putih */
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* Teks default saat transparan */
        .navbar a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        /* Teks berubah jadi gelap setelah scroll */
        .navbar.scrolled a {
            color: #000000;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
            background: linear-gradient(135deg, #0A4BC9, #5B88E0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .navbar.scrolled .logo {
            color: #2c3e50;
            text-shadow: none;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
        }

        .nav-menu li a {
            text-decoration: none;
            color: #ffffff;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            transition: all 0.3s ease;
            padding: 0.5rem 0;
            /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); */
        }

        .navbar.scrolled .nav-menu li a {
            color: #2c3e50;
            text-shadow: none;
        }

        .nav-menu li a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #0A4BC9, #5B88E0);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-menu li a:hover::before,
        .nav-menu li a.active::before {
            width: 100%;
        }

        .nav-menu li a:hover {
            color: #0A4BC9;
            transform: translateY(-2px);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .hamburger span {
            background: #2c3e50;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 1.5rem 2rem;
            }

            .navbar.scrolled {
                padding: 1rem 2rem;
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(15px);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(255, 255, 255, 0.05);
                padding: 2rem 0;
                gap: 1.5rem;
            }

            .nav-menu li a {
                color: #2c3e50;
                text-shadow: none;
            }

            .nav-menu.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }
        }

        /* Styling dropdown */
.nav-menu li {
    position: relative;
}

/* Dropdown vertical tapi lebar */
.dropdown-content {
    position: absolute;
    top: 120%;
    left: 0;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 300px; /* atur lebar lebih besar agar teks muat ke samping */
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1.5;        /* biar jarak baris lebih lega */
    white-space: normal;     /* teks panjang turun ke baris berikutnya */
    transition: all 0.3s ease;
    border-radius: 6px;
}

.dropdown-content li a:hover {
    background: linear-gradient(90deg, #0A4BC9, #5B88E0);
    color: #ffffff;
    transform: translateX(4px);
}

/* Efek muncul smooth */
.dropdown:hover .dropdown-content {
    color: #ffffff;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #0A4BC9, #5B88E0);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 3rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, #0A4BC9, #5B88E0);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h3 {
    color: #0A4BC9;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Overlay gradasi di atas gambar */
.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.6; /* transparansi overlay */
}

/* Styling untuk gambar */
.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}


/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #0A4BC9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #0A4BC9, #5B88E0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #0A4BC9, #5B88E0);
    padding: 4rem 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #0A4BC9;
    margin-bottom: 1rem;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: #0A4BC9;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    color: #999;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
        }

        .hero-carousel {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            opacity: 0;
            transform: translateX(100%);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            background-size: cover;
            background-position: center;
        }

        .carousel-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .carousel-slide.prev {
            transform: translateX(-100%);
        }

        .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(240, 248, 255, 0.08) 50%, rgba(220, 235, 255, 0.04) 100%);
            backdrop-filter: blur(0.5px);
        }

        /* Slide backgrounds with bright industrial themes */
        .slide-1 {
            background-image: 
                url('img/foto1.jpeg');
        }

        .slide-2 {
            background-image: 
                url('img/foto2.jpeg');
        }

        .slide-3 {
            background-image: 
                url('img/foto3.jpeg');
        }

        .slide-4 {
            background-image: 
                url('img/foto4.jpeg');
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #1a1a1a;
            max-width: 700px;
            padding: 0 5rem;
            animation: slideInLeft 1.2s ease-out;
        }

        .hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, #0A4BC9, #5B88E0);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        .hero-content h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: #ffffff; /* warna putih */
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* shadow hitam transparan */
            position: relative;

        }

        .hero-content h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #0A4BC9, #5B88E0);
            border-radius: 2px;
        }

        .hero-content p {
            font-size: 1.3rem;
            line-height: 1.7;
            margin-bottom: 3rem;
            color: #4a5568;
            font-weight: 400;
            max-width: 600px;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1.2rem 2.5rem;
            background: linear-gradient(135deg, #0A4BC9, #5B88E0);
            color: white;
            text-decoration: none;
            border-radius: 60px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
        }

        .cta-button-secondary {
            background: transparent;
            color: #2c3e50;
            border: 2px solid #2c3e50;
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
        }

        .cta-button-secondary:hover {
            background: #2c3e50;
            color: white;
            box-shadow: 0 10px 25px rgba(44, 62, 80, 0.4);
        }

        /* Decorative elements */
        .hero-decorative {
            position: absolute;
            right: 5rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1;
        }

        .stats-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            min-width: 280px;
            margin-bottom: 1.5rem;
        }

        .stats-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #0A4BC9;
            margin-bottom: 0.5rem;
        }

        .stats-label {
            font-size: 1rem;
            color: #4a5568;
            font-weight: 500;
        }

        /* Navigation */
        .carousel-nav {
            position: absolute;
            bottom: 3rem;
            left: 5rem;
            display: flex;
            gap: 1rem;
            z-index: 10;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(44, 62, 80, 0.3);
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }

        .nav-dot.active {
            background: #0A4BC9;
            transform: scale(1.3);
        }

        .nav-dot:hover {
            background: rgba(44, 62, 80, 0.6);
            transform: scale(1.1);
        }

        /* Arrow Navigation */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 107, 53, 0.2);
            color: #0A4BC9;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .carousel-arrow:hover {
            background: #0A4BC9;
            color: white;
            border-color: #0A4BC9;
            transform: translateY(-50%) scale(1.05);
        }

        .arrow-prev {
            left: 2rem;
        }

        .arrow-next {
            right: 2rem;
        }

        /* Progress bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #0A4BC9, #5B88E0);
            z-index: 10;
            border-radius: 2px 2px 0 0;
            animation: progress 5s linear infinite;
        }

        /* Animations */
        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-100px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        @keyframes progress {
            0% {
                width: 0%;
            }
            100% {
                width: 100%;
            }
        }

        /* Floating elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-shape {
            position: absolute;
            background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 20%;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 70%;
            right: 10%;
            animation-delay: 3s;
        }

        .floating-shape:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 30%;
            right: 5%;
            animation-delay: 6s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.7;
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
                opacity: 0.3;
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-decorative {
                display: none;
            }
            
            .hero-content {
                max-width: 100%;
                padding: 0 3rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
                margin-bottom: 2rem;
            }
            
            .hero-content {
                padding: 0 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .carousel-nav {
                left: 2rem;
                bottom: 2rem;
            }
            
            .carousel-arrow {
                width: 60px;
                height: 60px;
                font-size: 1.2rem;
            }
            
            .arrow-prev {
                left: 1rem;
            }
            
            .arrow-next {
                right: 1rem;
            }
        }

    .vision-mission {
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .vision-mission::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            color: black;
        }

        .section-title h2 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 4px 20px rgba(253, 0, 0, 1);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out forwards;
        }

        .section-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s ease-out 0.3s forwards;
        }

        .vision-mission-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 100px;
            align-items: center;
        }

        .vm-section {
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease-out forwards;
            position: relative;
        }

        .vm-section:nth-child(2) {
            transform: translateX(50px);
            animation: slideInRight 1s ease-out forwards;
            animation-delay: 0.5s;
        }

        .vm-section:nth-child(1) {
            animation-delay: 0.3s;
        }

        .vm-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .vm-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin-right: 20px;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            animation: pulse 3s infinite;
        }

        .vm-section h3 {
            font-size: 2.5rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
        }

        .vm-section p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            line-height: 2;
            text-align: justify;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .vm-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #ff6b35, #f7931e);
            margin: 25px 0;
            border-radius: 2px;
        }

        /* Core Values Section */
        .core-values {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 120px 0;
            position: relative;
        }

        .core-values::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagons" patternUnits="userSpaceOnUse" width="50" height="43.4"><polygon fill="none" stroke="rgba(46,82,152,0.08)" stroke-width="1" points="24,0 49,14.5 49,29 24,43.5 -1,29 -1,14.5"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagons)"/></svg>');
        }

        .core-values .section-title {
            color: #2e5298;
            margin-bottom: 100px;
        }

        .core-values .section-title h2 {
            text-shadow: none;
            color: #0054f0ff;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .value-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(46, 82, 152, 0.1);
            transform: translateY(30px);
            opacity: 0;
            animation: slideUp 1s ease-out forwards;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .value-card:nth-child(1) { animation-delay: 0.1s; }
        .value-card:nth-child(2) { animation-delay: 0.2s; }
        .value-card:nth-child(3) { animation-delay: 0.3s; }
        .value-card:nth-child(4) { animation-delay: 0.4s; }
        .value-card:nth-child(5) { animation-delay: 0.5s; }
        .value-card:nth-child(6) { animation-delay: 0.6s; }

        .value-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 35px 70px rgba(46, 82, 152, 0.2);
        }

        .value-image {
            width: 100%;
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .value-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: linear-gradient(135deg, rgba(30, 60, 114, 0.8), rgba(46, 82, 152, 0.6)); */
            transition: all 0.3s ease;
        }

        .value-card:hover .value-image::before {
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.6), rgba(46, 82, 152, 0.4));
        }

        /* Different background images for each card */
        .value-card:nth-child(1) .value-image {
            background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .value-card:nth-child(2) .value-image {
            background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .value-card:nth-child(3) .value-image {
            background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .value-card:nth-child(4) .value-image {
            background-image: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .value-card:nth-child(6) .value-image {
            background-image: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
        }

        .value-content {
            padding: 35px;
        }

        .value-card h4 {
            font-size: 1.5rem;
            margin-bottom: 18px;
            color: #1e3c72;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .value-card p {
            color: #64748b;
            font-size: 1.05rem;
            line-height: 1.8;
            text-align: justify;
        }

        .value-overlay-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            color: white;
            text-shadow: 0 4px 20px rgba(0,0,0,0.5);
            z-index: 2;
            transition: all 0.3s ease;
        }

        .value-card:hover .value-overlay-icon {
            transform: translate(-50%, -50%) scale(1.2);
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6); }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .vision-mission-content {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }

            .vm-section {
                transform: translateY(30px);
                animation: fadeInUp 1s ease-out forwards;
            }

            .vm-section:nth-child(2) {
                transform: translateY(30px);
                animation: fadeInUp 1s ease-out forwards;
            }

            .values-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.5rem;
                letter-spacing: 2px;
            }

            .vm-section h3 {
                font-size: 2rem;
            }

            .vm-section p {
                font-size: 1.1rem;
                line-height: 1.8;
            }

            .vision-mission, .core-values {
                padding: 80px 0;
            }

            .value-image {
                height: 180px;
            }

            .value-content {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .section-title h2 {
                font-size: 2rem;
                letter-spacing: 1px;
            }

            .vm-section h3 {
                font-size: 1.6rem;
            }

            .vm-header {
                flex-direction: column;
                text-align: center;
            }

            .vm-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .vision-mission-content {
                gap: 40px;
            }
        }

    .timeline-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #f8f9fa;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 60px;
        }
        
        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, #e0e6ed, #c7d2fe, #e0e6ed);
            transform: translateX(-50%);
            z-index: 1;
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 80px;
            display: flex;
            align-items: center;
        }
        
        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }
        
        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .timeline-content {
            flex: 1;
            max-width: 45%;
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 60px;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 60px;
        }
        
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 0;
            height: 0;
            border: 15px solid transparent;
            transform: translateY(-50%);
        }
        
        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -30px;
            border-left-color: white;
        }
        
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -30px;
            border-right-color: white;
        }
        
        .timeline-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 3;
            overflow: hidden;
            border: 5px solid white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        
        .timeline-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .timeline-image .icon {
            font-size: 3rem;
            color: white;
        }
        
        .milestone-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .milestone-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        
        .milestone-description {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .milestone-details {
            margin-top: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
            border-left: 4px solid #667eea;
        }
        
        .milestone-details h4 {
            color: #495057;
            margin-bottom: 8px;
            font-size: 1rem;
        }
        
        .milestone-details p {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        @media (max-width: 768px) {
            .timeline-line {
                left: 30px;
            }
            
            .timeline-item {
                flex-direction: row !important;
                margin-bottom: 60px;
            }
            
            .timeline-content {
                max-width: none;
                margin: 0 0 0 60px !important;
            }
            
            .timeline-content::before {
                left: -30px !important;
                right: auto !important;
                border-right-color: white !important;
                border-left-color: transparent !important;
            }
            
            .timeline-image {
                position: absolute;
                left: 0;
                width: 60px;
                height: 60px;
                border: 3px solid white;
            }
            
            .timeline-image .icon {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        .start-process {
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23667eea"/><text x="50" y="55" text-anchor="middle" fill="white" font-size="40" font-weight="bold">🚀</text></svg>') center/cover;
        }
        
        .hiring-process {
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23764ba2"/><text x="50" y="55" text-anchor="middle" fill="white" font-size="40" font-weight="bold">👥</text></svg>') center/cover;
        }
        
        .business-plan {
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23667eea"/><text x="50" y="55" text-anchor="middle" fill="white" font-size="40" font-weight="bold">📊</text></svg>') center/cover;
        }
        
        .calculating {
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23764ba2"/><text x="50" y="55" text-anchor="middle" fill="white" font-size="40" font-weight="bold">💡</text></svg>') center/cover;
        }
        
        .process-phase {
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23667eea"/><text x="50" y="55" text-anchor="middle" fill="white" font-size="40" font-weight="bold">⚙️</text></svg>') center/cover;
        }

        .team-section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #ffffff;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 16px;
            position: relative;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .team-member {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
            padding: 40px 30px;
            border: 1px solid #f8f9fa;
        }
        
        .team-member:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
        
        .member-photo {
        width: 100px;
        height: 100px;
        background-image: url("profile.jpg");
        background-size: cover;   /* supaya gambar memenuhi kotak */
        background-position: center; /* biar gambar ketengah */
        border-radius: 50%; /* kalau mau jadi lingkaran */
        }

        
        .member-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .member-role {
            font-size: 1rem;
            color: #3498db;
            font-weight: 500;
            margin-bottom: 16px;
        }
        
        .member-description {
            font-size: 0.95rem;
            color: #7f8c8d;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .member-social {
            display: flex;
            justify-content: center;
            gap: 12px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #7f8c8d;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #3498db;
            color: white;
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
            .team-section {
                padding: 60px 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .team-grid {
                gap: 30px;
            }
            
            .team-member {
                padding: 30px 20px;
            }
        }

        .sustainability-section {
            padding: 80px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 25px;
        }

        .section-description {
            font-size: 16px;
            text-align: justify;
            margin-bottom: 50px;
            color: #333;
            line-height: 1.8;
            max-width: 100%;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
        }

        .card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .card-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .card-content {
            padding: 0;
        }

        .blue-section {
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
            color: white;
            padding: 25px;
        }

        .card-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .card-description {
            font-size: 14px;
            line-height: 1.6;
        }

        .card:nth-child(3) {
            grid-row: span 2;
        }

        .card:nth-child(3) .card-image {
            height: 100%;
            min-height: 400px;
        }

        .blue-bar {
            height: 50px;
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
            margin-top: -25px;
            position: relative;
            z-index: 0;
        }

        @media (max-width: 1024px) {
            .sustainability-section {
                padding: 60px 40px;
            }

            .section-title {
                font-size: 36px;
            }

            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .card:nth-child(3) {
                grid-row: span 1;
            }

            .card:nth-child(3) .card-image {
                height: 220px;
                min-height: 220px;
            }
        }

        @media (max-width: 768px) {
            .sustainability-section {
                padding: 40px 25px;
            }

            .section-title {
                font-size: 28px;
            }

            .section-description {
                font-size: 14px;
            }

            .cards-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .card:nth-child(3) {
                grid-row: span 1;
            }

            .card:nth-child(3) .card-image {
                height: 220px;
                min-height: 220px;
            }

            .blue-bar {
                margin-top: -20px;
            }
        }

        .about-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .left-panel {
            background-color: #f5f5f5;
            padding: 60px 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .right-panel {
            background: white;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .main-title {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .mission-text {
            font-size: 16px;
            text-align: justify;
            margin-bottom: 50px;
            color: #333;
            line-height: 1.8;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .feature-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .feature-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .feature-content {
            padding: 20px;
        }

        .feature-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .feature-description {
            font-size: 14px;
            font-style: italic;
            color: #555;
            line-height: 1.6;
            text-align: justify;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            max-width: 600px;
        }

        .hero-image {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }

        @media (max-width: 1024px) {
            .about-section {
                grid-template-columns: 1fr;
            }

            .left-panel {
                padding: 40px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .main-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .left-panel {
                padding: 30px 20px;
            }

            .main-title {
                font-size: 28px;
            }

            .mission-text {
                font-size: 14px;
            }

            .right-panel {
                padding: 30px 20px;
            }
        }

        .about-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .left-panel {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .blue-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 1;
        }

        .image-container {
            position: relative;
            z-index: 2;
            width: 90%;
            max-width: 600px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .stat-card {
            background: #0D47A1;
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            color: white;
            border-radius: 12px 0 0 12px;
        }

        .stat-number {
            font-size: 64px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .stat-description {
            font-size: 15px;
            line-height: 1.8;
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }

        .right-panel {
            background-color: white;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .main-title {
            font-size: 38px;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .intro-text {
            font-size: 15px;
            text-align: justify;
            margin-bottom: 40px;
            color: white;
            line-height: 1.8;
        }

        .goals-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .goal-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .goal-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
        }

        .goal-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .goal-content {
            flex: 1;
        }

        .goal-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 8px;
            color: white;
        }

        .goal-description {
            font-size: 14px;
            color: white;
            line-height: 1.7;
            text-align: justify;
        }

        @media (max-width: 1024px) {
            .about-section {
                grid-template-columns: 1fr;
            }

            .left-panel {
                min-height: 60vh;
            }

            .right-panel {
                padding: 50px 40px;
            }

            .main-title {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .right-panel {
                padding: 40px 25px;
            }

            .main-title {
                font-size: 26px;
            }

            .intro-text {
                font-size: 14px;
            }

            .image-container {
                grid-template-columns: 1fr;
                width: 95%;
            }

            .stat-card {
                border-radius: 12px 12px 0 0;
            }

            .main-image {
                border-radius: 0 0 12px 12px;
                min-height: 300px;
            }

            .goal-icon {
                width: 50px;
                height: 50px;
            }

            .goal-icon svg {
                width: 24px;
                height: 24px;
            }
        }

        .process-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .left-panel {
            background-color: #f8f8f8;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .section-title {
            font-size: 44px;
            font-weight: bold;
            margin-bottom: 30px;
            line-height: 1.2;
            color: #1a1a1a;
        }

        .section-description {
            font-size: 16px;
            text-align: justify;
            margin-bottom: 60px;
            color: #333;
            line-height: 1.8;
        }

        .visual-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .progress-wrapper {
            position: relative;
            flex-shrink: 0;
        }

        .progress-circle {
            width: 200px;
            height: 200px;
            position: relative;
        }

        .circle-svg {
            transform: rotate(-90deg);
        }

        .circle-bg {
            fill: none;
            stroke: #e0e0e0;
            stroke-width: 20;
        }

        .circle-progress {
            fill: none;
            stroke: #1976D2;
            stroke-width: 20;
            stroke-dasharray: 534;
            stroke-dashoffset: 80;
            stroke-linecap: round;
        }

        .circle-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 42px;
            font-weight: bold;
            color: #1976D2;
        }

        .checkmark-badge {
            position: absolute;
            top: -5px;
            right: 10px;
            width: 45px;
            height: 45px;
            background: #FF9800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 8px rgba(255, 152, 0, 0.4);
        }

        .checkmark-badge::after {
            content: '✓';
            color: white;
            font-size: 26px;
            font-weight: bold;
        }

        .progress-label {
            text-align: center;
            margin-top: 15px;
            font-size: 16px;
            font-weight: 600;
            color: #666;
        }

        .illustration-container {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .right-panel {
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
            padding: 120px 50px 60px 50px;
            color: white;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .hero-image {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.5);
            border: 4px solid white;
        }

        .process-list {
            margin-top: 10px;
            padding-right: 10px;
        }

        .process-item {
            margin-bottom: 22px;
        }

        .process-header {
            font-size: 15px;
            font-weight: bold;
            margin-bottom: 5px;
            color: #fff;
        }

        .process-content {
            font-size: 13.5px;
            line-height: 1.7;
            opacity: 0.95;
        }

        .process-content strong {
            font-weight: 600;
        }

        .italic-label {
            font-style: italic;
            opacity: 0.9;
        }

        @media (max-width: 1024px) {
            .process-section {
                grid-template-columns: 1fr;
            }

            .left-panel {
                padding: 60px 40px;
            }

            .right-panel {
                padding: 240px 40px 60px 40px;
            }

            .section-title {
                font-size: 38px;
            }

            .visual-container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .left-panel {
                padding: 40px 25px;
            }

            .right-panel {
                padding: 220px 25px 50px 25px;
            }

            .section-title {
                font-size: 30px;
            }

            .section-description {
                font-size: 15px;
                margin-bottom: 40px;
            }

            .hero-image {
                width: 260px;
                height: 170px;
                top: -40px;
            }

            .progress-circle {
                width: 170px;
                height: 170px;
            }

            .circle-center {
                font-size: 36px;
            }

            .process-list {
                margin-top: 160px;
            }
        }

        .legality-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .legality-section {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        .legality-section .left-panel {
            background: white;
            padding: 80px 60px;
            color: black;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .legality-section .section-title {
            font-size: 44px;
            font-weight: bold;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .legality-section .badges-container {
            display: flex;
            gap: 15px;
            margin-bottom: 50px;
        }

        .legality-section .badge {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }

        .legality-section .badge-1 {
            background-color: #424242;
            color: #FDB813;
        }

        .legality-section .badge-2 {
            background-color: white;
            color: #FF9800;
        }

        .legality-section .badge-3 {
            background-color: #424242;
            color: #FDB813;
        }

        .legality-section .description-text {
            font-size: 16px;
            text-align: justify;
            line-height: 1.9;
            opacity: 0.95;
        }

        .legality-section .right-panel {
            background-color: #f5f5f5;
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
        }

        .legality-section .hero-image {
            width: 100%;
            max-width: 400px;
            height: 280px;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
            margin-bottom: 40px;
        }

        .legality-section .legality-content {
            margin-top: 20px;
        }

        .legality-section .legality-title {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: white;
        }

        .legality-section .legality-list {
            list-style: none;
        }

        .legality-section .legality-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            font-size: 14.5px;
            line-height: 1.7;
            color: white;
        }

        .legality-section .checkmark {
            color: #4CAF50;
            font-weight: bold;
            font-size: 18px;
            margin-right: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .legality-section .item-text {
            flex: 1;
        }

        .legality-section .item-text strong {
            font-weight: 600;
            color: white;
        }

        @media (max-width: 1024px) {
            .legality-section {
                grid-template-columns: 1fr;
            }

            .legality-section .left-panel,
            .legality-section .right-panel {
                padding: 60px 40px;
            }

            .legality-section .section-title {
                font-size: 38px;
            }

            .legality-section .hero-image {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .legality-section .left-panel,
            .legality-section .right-panel {
                padding: 40px 25px;
            }

            .legality-section .section-title {
                font-size: 30px;
                margin-bottom: 30px;
            }

            .legality-section .badges-container {
                margin-bottom: 35px;
            }

            .legality-section .badge {
                width: 55px;
                height: 55px;
                font-size: 16px;
            }

            .legality-section .description-text {
                font-size: 15px;
            }

            .legality-section .hero-image {
                height: 240px;
                margin-bottom: 30px;
            }

            .legality-section .legality-item {
                font-size: 14px;
            }
        }

         .shareholder-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .shareholder-section {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: #f5f5f5 !important;
        }

        .shareholder-section .top-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
            padding: 80px 60px;
            border-radius: 0 0 50% 0;
            position: relative;
            overflow: hidden;
        }

        .shareholder-section .left-content {
            color: white;
            display: flex;
            align-items: center;
        }

        .shareholder-section .main-title {
            font-size: 48px;
            font-weight: bold;
            line-height: 1.2;
        }

        .shareholder-section .right-content {
            display: flex;
            align-items: center;
            padding-left: 40px;
        }

        .shareholder-section .description-box {
            background-color: #f5f5f5;
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        }

        .shareholder-section .description-text {
            font-size: 15px;
            text-align: justify;
            line-height: 1.8;
            color: #333;
        }

        .shareholder-section .commitment-section {
            background-color: white;
            padding: 40px 60px;
            margin: -50px 60px 0 60px;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            position: relative;
            z-index: 2;
        }

        .shareholder-section .commitment-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .shareholder-section .commitment-intro {
            font-size: 15px;
            margin-bottom: 25px;
            color: #333;
            line-height: 1.7;
        }

        .shareholder-section .commitment-list {
            list-style: none;
        }

        .shareholder-section .commitment-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            font-size: 15px;
            color: #333;
        }

        .shareholder-section .checkmark {
            color: #4CAF50;
            font-weight: bold;
            font-size: 18px;
            margin-right: 12px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .shareholder-section .trucks-image {
            width: 100%;
            max-width: 1280px;
            margin: 40px auto 0 auto;
            display: block;
            border-radius: 12px 12px 0 0;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        }

        @media (max-width: 1024px) {
            .shareholder-section .top-content {
                grid-template-columns: 1fr;
                padding: 60px 40px;
                border-radius: 0 0 30% 0;
            }

            .shareholder-section .main-title {
                font-size: 40px;
                margin-bottom: 30px;
            }

            .shareholder-section .right-content {
                padding-left: 0;
                margin-top: 30px;
            }

            .shareholder-section .commitment-section {
                margin: -50px 40px 0 40px;
                padding: 35px 30px;
            }
        }

        @media (max-width: 768px) {
            .shareholder-section .top-content {
                padding: 40px 25px;
                border-radius: 0 0 20% 0;
            }

            .shareholder-section .main-title {
                font-size: 32px;
            }

            .shareholder-section .description-box {
                padding: 25px;
            }

            .shareholder-section .description-text {
                font-size: 14px;
            }

            .shareholder-section .commitment-section {
                margin: -40px 25px 0 25px;
                padding: 30px 20px;
            }

            .shareholder-section .commitment-title {
                font-size: 18px;
            }

            .shareholder-section .commitment-intro,
            .shareholder-section .commitment-item {
                font-size: 14px;
            }
        }

        .products-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .products-section {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: #f5f5f5;
            padding-bottom: 60px;
        }

        .products-section .hero-section {
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
            padding: 80px 60px;
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            border-radius: 0 0 0 150px;
            overflow: visible;
        }

        .products-section .hero-content {
            color: white;
            position: relative;
            z-index: 2;
        }

        .products-section .hero-title {
            font-size: 48px;
            font-weight: bold;
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .products-section .hero-description {
            font-size: 15px;
            line-height: 1.8;
            opacity: 0.95;
            color: white;
        }

        .products-section .hero-images {
            display: flex;
            gap: 20px;
            justify-content: flex-end;
            position: relative;
            z-index: 2;
        }

        .products-section .circle-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 8px solid white;
            object-fit: cover;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }

        .products-section .products-list {
            max-width: 1200px;
            margin: -80px auto 0 auto;
            padding: 0 60px;
            position: relative;
            z-index: 3;
        }

        .products-section .product-item {
            background: white;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 40px;
            align-items: center;
        }

        .products-section .product-image-container {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            border: 6px solid #f5f5f5;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .products-section .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .products-section .product-content {
            flex: 1;
        }

        .products-section .product-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 12px;
            color: #1a1a1a;
        }

        .products-section .product-description {
            font-size: 15px;
            line-height: 1.7;
            color: #333;
            margin-bottom: 15px;
        }

        .products-section .product-details {
            font-size: 14px;
            line-height: 1.7;
            color: #555;
        }

        @media (max-width: 1024px) {
            .products-section .hero-section {
                grid-template-columns: 1fr;
                padding: 60px 40px;
                border-radius: 0 0 0 100px;
                gap: 40px;
            }

            .products-section .hero-title {
                font-size: 40px;
            }

            .products-section .hero-images {
                justify-content: center;
            }

            .products-section .circle-image {
                width: 150px;
                height: 150px;
            }

            .products-section .products-list {
                padding: 0 40px;
                margin-top: -60px;
            }

            .products-section .product-item {
                grid-template-columns: 1fr;
                text-align: center;
                justify-items: center;
                gap: 30px;
                padding: 35px;
            }

            .products-section .product-image-container {
                width: 180px;
                height: 180px;
            }
        }

        @media (max-width: 768px) {
            .products-section .hero-section {
                padding: 40px 25px;
                border-radius: 0 0 0 60px;
            }

            .products-section .hero-title {
                font-size: 32px;
            }

            .products-section .hero-description {
                font-size: 14px;
            }

            .products-section .hero-images {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .products-section .circle-image {
                width: 140px;
                height: 140px;
            }

            .products-section .products-list {
                padding: 0 25px;
                margin-top: -50px;
            }

            .products-section .product-item {
                padding: 30px 20px;
                margin-bottom: 25px;
            }

            .products-section .product-image-container {
                width: 160px;
                height: 160px;
            }

            .products-section .product-title {
                font-size: 18px;
            }

            .products-section .product-description,
            .products-section .product-details {
                font-size: 14px;
            }
        }

        .portfolio-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .portfolio-section {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: #f5f5f5;
            padding: 60px 0;
        }

        .portfolio-section .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .portfolio-section .header-content {
            background: white;
            padding: 50px;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .portfolio-section .header-title {
            font-size: 42px;
            font-weight: bold;
            margin-bottom: 25px;
            line-height: 1.2;
            color: #1a1a1a;
        }

        .portfolio-section .header-description {
            font-size: 15px;
            text-align: justify;
            line-height: 1.8;
            color: #333;
        }

        .portfolio-section .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(2, 300px);
            gap: 20px;
            position: relative;
        }

        .portfolio-section .gallery-item {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            position: relative;
        }

        .portfolio-section .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-section .gallery-item:hover img {
            transform: scale(1.05);
        }

        .portfolio-section .item-1 {
            grid-column: 1 / 6;
            grid-row: 1 / 2;
        }

        .portfolio-section .item-2 {
            grid-column: 6 / 13;
            grid-row: 1 / 2;
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
        }

        .portfolio-section .item-3 {
            grid-column: 1 / 5;
            grid-row: 2 / 3;
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
        }

        .portfolio-section .item-4 {
            grid-column: 5 / 9;
            grid-row: 2 / 3;
        }

        .portfolio-section .item-5 {
            grid-column: 9 / 13;
            grid-row: 2 / 3;
        }

        .portfolio-section .blue-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 71, 161, 0.3) 0%, rgba(25, 118, 210, 0.3) 100%);
        }

        @media (max-width: 1024px) {
            .portfolio-section .content-wrapper {
                padding: 0 40px;
            }

            .portfolio-section .header-content {
                padding: 40px;
            }

            .portfolio-section .header-title {
                font-size: 36px;
            }

            .portfolio-section .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(3, 250px);
            }

            .portfolio-section .item-1 {
                grid-column: 1 / 2;
                grid-row: 1 / 2;
            }

            .portfolio-section .item-2 {
                grid-column: 2 / 3;
                grid-row: 1 / 2;
            }

            .portfolio-section .item-3 {
                grid-column: 1 / 2;
                grid-row: 2 / 3;
            }

            .portfolio-section .item-4 {
                grid-column: 2 / 3;
                grid-row: 2 / 3;
            }

            .portfolio-section .item-5 {
                grid-column: 1 / 3;
                grid-row: 3 / 4;
            }
        }

        @media (max-width: 768px) {
            .portfolio-section {
                padding: 40px 0;
            }

            .portfolio-section .content-wrapper {
                padding: 0 25px;
            }

            .portfolio-section .header-content {
                padding: 30px 25px;
            }

            .portfolio-section .header-title {
                font-size: 28px;
                margin-bottom: 20px;
            }

            .portfolio-section .header-description {
                font-size: 14px;
            }

            .portfolio-section .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(5, 220px);
                gap: 15px;
            }

            .portfolio-section .item-1,
            .portfolio-section .item-2,
            .portfolio-section .item-3,
            .portfolio-section .item-4,
            .portfolio-section .item-5 {
                grid-column: 1 / 2;
            }

            .portfolio-section .item-1 {
                grid-row: 1 / 2;
            }

            .portfolio-section .item-2 {
                grid-row: 2 / 3;
            }

            .portfolio-section .item-3 {
                grid-row: 3 / 4;
            }

            .portfolio-section .item-4 {
                grid-row: 4 / 5;
            }

            .portfolio-section .item-5 {
                grid-row: 5 / 6;
            }
        }

         .distribution-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .distribution-section {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: #f5f5f5;
            padding: 60px 0;
        }

        .distribution-section .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .distribution-section .images-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 20px;
        }

        .distribution-section .image-card {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            position: relative;
        }

        .distribution-section .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .distribution-section .image-card:hover img {
            transform: scale(1.05);
        }

        .distribution-section .image-1 {
            grid-column: 1 / 2;
            grid-row: 1 / 2;
            height: 250px;
        }

        .distribution-section .image-2 {
            grid-column: 2 / 3;
            grid-row: 1 / 3;
            height: 520px;
        }

        .distribution-section .image-3 {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
            height: 250px;
        }

        .distribution-section .content-area {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .distribution-section .content-box {
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
            padding: 40px;
            border-radius: 16px;
            color: white;
            box-shadow: 0 4px 16px rgba(13, 71, 161, 0.3);
        }

        .distribution-section .content-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .distribution-section .content-text {
            font-size: 14.5px;
            line-height: 1.8;
            text-align: justify;
            opacity: 0.95;
        }

        .distribution-section .content-box.secondary {
            background: white;
            color: #333;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .distribution-section .content-box.secondary .content-title {
            display: none;
        }

        @media (max-width: 1024px) {
            .distribution-section .content-wrapper {
                grid-template-columns: 1fr;
                padding: 0 40px;
                gap: 40px;
            }

            .distribution-section .images-grid {
                order: 2;
            }

            .distribution-section .content-area {
                order: 1;
            }

            .distribution-section .image-2 {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .distribution-section {
                padding: 40px 0;
            }

            .distribution-section .content-wrapper {
                padding: 0 25px;
                gap: 30px;
            }

            .distribution-section .images-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
                gap: 15px;
            }

            .distribution-section .image-1,
            .distribution-section .image-2,
            .distribution-section .image-3 {
                grid-column: 1 / 2;
                height: 220px;
            }

            .distribution-section .image-1 {
                grid-row: 1 / 2;
            }

            .distribution-section .image-2 {
                grid-row: 2 / 3;
            }

            .distribution-section .image-3 {
                grid-row: 3 / 4;
            }

            .distribution-section .content-box {
                padding: 30px 25px;
            }

            .distribution-section .content-title {
                font-size: 26px;
                margin-bottom: 15px;
            }

            .distribution-section .content-text {
                font-size: 14px;
            }
        }

       .contact-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .contact-section {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            position: relative;
            overflow: hidden;
        }

        .contact-section .hero-area {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            min-height: 600px;
        }

        .contact-section .hero-image {
            position: relative;
            overflow: hidden;
        }

        .contact-section .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .contact-section .hero-content {
            background: white;
            padding: 80px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-section .hero-title {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 25px;
            color: #1a1a1a;
        }

        .contact-section .hero-subtitle {
            font-size: 16px;
            line-height: 1.7;
            color: #333;
            margin-bottom: 30px;
        }

        .contact-section .hero-description {
            font-size: 15px;
            line-height: 1.7;
            color: #555;
        }

        .contact-section .contact-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            padding: 0 60px;
            margin-top: -80px;
            position: relative;
            z-index: 10;
        }

        .contact-section .contact-card {
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
            padding: 35px 30px;
            border-radius: 12px;
            color: white;
            box-shadow: 0 8px 24px rgba(13, 71, 161, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .contact-section .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 32px rgba(13, 71, 161, 0.5);
        }

        .contact-section .card-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .contact-section .card-icon svg {
            width: 26px;
            height: 26px;
            fill: white;
        }

        .contact-section .card-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .contact-section .card-content {
            font-size: 14px;
            line-height: 1.7;
            opacity: 0.95;
        }

        .contact-section .card-content a {
            color: white;
            text-decoration: none;
            display: block;
            margin-top: 5px;
        }

        .contact-section .card-content a:hover {
            text-decoration: underline;
        }

        .contact-section .orange-bar {
            height: 200px;
            background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
            margin-top: 60px;
        }

        @media (max-width: 1024px) {
            .contact-section .hero-area {
                grid-template-columns: 1fr;
            }

            .contact-section .hero-content {
                padding: 60px 40px;
            }

            .contact-section .hero-title {
                font-size: 40px;
            }

            .contact-section .contact-cards {
                grid-template-columns: 1fr;
                padding: 0 40px;
                margin-top: -60px;
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .contact-section .hero-content {
                padding: 40px 25px;
            }

            .contact-section .hero-title {
                font-size: 32px;
                margin-bottom: 20px;
            }

            .contact-section .hero-subtitle,
            .contact-section .hero-description {
                font-size: 14px;
            }

            .contact-section .contact-cards {
                padding: 0 25px;
                margin-top: -50px;
            }

            .contact-section .contact-card {
                padding: 30px 25px;
            }

            .contact-section .card-title {
                font-size: 18px;
            }

            .contact-section .orange-bar {
                height: 150px;
                margin-top: 40px;
            }
        }

                .strength-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .strength-section {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: #f5f5f5;
            padding: 60px 0;
        }

        .strength-section .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 60px;
            position: relative;
        }

        .strength-section .header-title {
            font-size: 42px;
            font-weight: bold;
            line-height: 1.2;
            color: #1a1a1a;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .strength-section .main-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: start;
        }

        .strength-section .image-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .strength-section .main-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .strength-section .content-boxes {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .strength-section .description-box {
            background: white;
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        }

        .strength-section .description-text {
            font-size: 15px;
            line-height: 1.8;
            color: #333;
            text-align: justify;
        }

        .strength-section .strengths-box {
            background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
            padding: 35px;
            border-radius: 16px;
            color: white;
            box-shadow: 0 8px 24px rgba(13, 71, 161, 0.4);
        }

        .strength-section .strengths-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .strength-section .strength-item {
            display: flex;
            align-items: center;
            font-size: 15px;
            line-height: 1.6;
        }

        .strength-section .checkmark {
            margin-right: 12px;
            font-size: 18px;
            flex-shrink: 0;
        }

        @media (max-width: 1024px) {
            .strength-section .content-wrapper {
                padding: 0 40px;
            }

            .strength-section .header-title {
                font-size: 36px;
            }

            .strength-section .main-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .strength-section .main-image {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .strength-section {
                padding: 40px 0;
            }

            .strength-section .content-wrapper {
                padding: 0 25px;
            }

            .strength-section .header-title {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .strength-section .main-image {
                height: 300px;
            }

            .strength-section .description-box,
            .strength-section .strengths-box {
                padding: 25px;
            }

            .strength-section .description-text,
            .strength-section .strength-item {
                font-size: 14px;
            }
        }