    :root {
        --primary: #773667;
        --secondary: #1a2f50;
        --accent: #ff6b6b;
        --light: #f8f9fa;
        --dark: #121826;
        --gray: #6c757d;
        --light-gray: #e9ecef;
    }

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

    a {
        text-decoration: none;
    }

    body {
        font-family: 'Inter', sans-serif !important;
        color: #333;
        line-height: 1.6;
        overflow-x: hidden;
        background: #fff;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        color: var(--secondary);
    }

    /* Header */
    /* .header-top {
        background: var(--secondary);
        color: white;
        padding: 8px 0;
        font-size: 14px;
    }

    .header-top a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s;
    }

    .header-top a:hover {
        color: white;
    }

    .social-icons a {
        margin-left: 15px;
        font-size: 15px;
    }

    .main-header {
        background: white;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .logo {
        height: 50px;
        transition: all 0.3s;
    }

    .nav-link {
        color: var(--secondary) !important;
        font-weight: 500;
        padding: 10px 18px !important;
        font-size: 15px;
        position: relative;
        transition: color 0.3s;
    }

    .nav-link:hover {
        color: var(--primary) !important;
    } */

    /* .nav-link.active {
        color: var(--primary) !important;
    } */

    /* .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px 3px 0 0;
        } */

    .about_img {
        padding: 10px;
        height: 484px;
        width: 100%;
        object-fit: cover;
    }

    .btn-primary-custom {
        background: linear-gradient(135deg, var(--primary), #5a2a4d);
        color: white;
        border: none;
        padding: 10px 25px;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s;
    }

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(119, 54, 103, 0.25);
        color: white;
    }

    .btn-outline-custom {
        border: 2px solid var(--primary);
        color: var(--primary);
        background: transparent;
        padding: 8px 22px;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s;
    }

    .btn-outline-custom:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
    }

    /* Hero Banner */
    /* .hero-banner {
        position: relative;
        height: 600px;
        overflow: hidden;
    } */

    .hero-slide {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .hero-slide.active {
        opacity: 1;
    }

    .hero-controls {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .hero-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s;
    }

    .hero-dot.active {
        background: white;
        transform: scale(1.2);
    }

    /* Sections */
    .section {
        padding: 54px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        position: relative;
        /* display: inline-block; */
    }

    .brand-carousel img {
        width: 100%;
        height: 100px;
        object-fit: contain;
        /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding: 10px;
        margin: 10px 0px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(to right, var(--primary), var(--accent));
        border-radius: 2px;
    }

    .section-subtitle {
        color: var(--gray);
        font-size: 1.1rem;
        margin-bottom: 3rem;
        max-width: 700px;
    }

    .section-title.center {
        text-align: center;
    }

    .section-title.center::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .bg-light-section {
        background-color: #f8fafc;
    }

    /* Cards */
    .feature-card {
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.4s;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: rgba(119, 54, 103, 0.1);
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(119, 54, 103, 0.1), rgba(26, 47, 80, 0.1));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        font-size: 28px;
        color: var(--primary);
    }

    .service-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

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

    /* Counter */
    .counter-section {
        /* background: linear-gradient(135deg, var(--secondary), #0f1f38); */
        background: radial-gradient(circle at top left, #2b1247, #000) !important;
        color: white;
        padding: 54px 0;
        position: relative;
        overflow: hidden;
    }

    .counter-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

    .counter-item {
        text-align: center;
        padding: 20px;
    }

    .counter-number {
        font-size: 36px;
        font-weight: 800;
        color: white;
        margin-bottom: 10px;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .counter-text {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    /* About Section */
    .about-content {
        padding-right: 40px;
    }

    .about-badge {
        display: inline-block;
        background: rgba(119, 54, 103, 0.1);
        color: var(--primary);
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    /* Jobs Section */
    .job-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        border-left: 4px solid var(--primary);
        height: 100%;
    }

    .job-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .job-tag {
        background: rgba(119, 54, 103, 0.1);
        color: var(--primary);
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
        margin-right: 8px;
        margin-bottom: 8px;
        display: inline-block;
    }

    /* Placement Cards */
    .placement-card {
        text-align: center;
        transition: all 0.3s;
    }

    .placement-img {
        width: 120px !important;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 20px;
        border: 4px solid white;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    /* Contact Section */

    .contact_bg {
        position: relative;
        overflow: hidden;
    }

    .contact_bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23773667' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        z-index: 0;
    }

    .contact_bg>* {
        position: relative;
        z-index: 1;
    }

    /* Cards */
    .theme-card {
        background: #ffffff;
        padding: 32px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
        height: 100%;
    }

    .theme-card-dark {
        background: linear-gradient(135deg, var(--secondary), #0f1f38);
        color: #ffffff;
    }

    /* Inputs */
    .theme-input {
        border-radius: 8px;
        padding: 12px 15px;
        font-size: 15px;
        border: 1px solid #dee2e6;
        transition: all 0.3s;
    }

    .theme-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(119, 54, 103, 0.15);
    }

    /* Contact Info */
    .contact-info-item {
        display: flex;
        gap: 14px;
        margin-bottom: 18px;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.9);
    }

    .contact-info-item i {
        font-size: 18px;
        color: var(--accent);
        margin-top: 4px;
    }

    .theme-card-dark a {
        color: #ffffff;
        text-decoration: none;
    }

    /* Social Icons */
    .social-icons-minimal a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
        margin-right: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .social-icons-minimal a:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }

    /* Map */
    .contact-map iframe {
        width: 100%;
        height: 220px;
        border: 0;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    /* Footer */
    /* .main-footer {
        background: var(--dark);
        color: rgba(255, 255, 255, 0.7);
        padding: 60px 0 30px;
    } */

    .main-footer {
    /* background: var(--dark); */
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
    background: linear-gradient(135deg, rgba(26, 47, 80, 0.95), rgba(119, 54, 103, 0.95)), url(https://komplytek.com/assets/image/footer-bg-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-position: center center;
}

.footer_logo{
    border-radius: 10px;
    height: 83px;
    padding: 11px;
    background: #fff;
    /* width: 100%; */
    object-fit: contain;
}

    /* Footer Solutions Scroll */
.main-footer .links_long {
    max-height: 320px;              /* adjust if needed */
    overflow-y: auto;
    padding-right: 6px;
}

/* Scrollbar – WebKit (Chrome, Edge, Safari) */
.main-footer .links_long::-webkit-scrollbar {
    width: 6px;
}

.main-footer .links_long::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.main-footer .links_long::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.main-footer .links_long::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Firefox */
.main-footer .links_long {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.08);
}

    .footer-title {
        color: white;
        font-size: 18px;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--primary);
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        display: block;
        margin-bottom: 12px;
        transition: all 0.3s;
    }

    .footer-links a:hover {
        color: white;
        padding-left: 5px;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        margin-right: 10px;
        transition: all 0.3s;
    }

    .footer-social a:hover {
        background: var(--primary);
        transform: translateY(-3px);
    }

    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
        margin-top: 40px;
        text-align: center;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
    }

    /* Animations */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s, transform 0.6s;
    }

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

    /* Responsive */
    @media (max-width: 992px) {
        .section-title {
            font-size: 2rem;
        }

        /* .hero-banner {
            height: 500px;
        } */

        .counter-number {
            font-size: 2.8rem;
        }

        .about-content {
            padding-right: 0;
            margin-bottom: 40px;
        }
    }

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

        .hero-banner {
            height: 400px;
        }

        .counter-number {
            font-size: 2.5rem;
        }

        .feature-card,
        .service-card,
        .job-card {
            padding: 20px;
        }

        .contact-form {
            padding: 30px 20px;
        }
    }

    @media (max-width: 576px) {
        .section-title {
            font-size: 1.8rem;
        }

        /* .hero-banner {
            height: 350px;
        } */

        .counter-number {
            font-size: 2.2rem;
        }
    }