body{
background:#fcfcfc;
}

        .header-btn {
            background: #0066cc;
            color: #fff!important;
            padding: 10px 22px !important;
            border-radius: 20px;
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
            transition: all 0.3s ease !important;
        }
        .header-btn::after {
            display:none;        
        }

        .header-btn:hover {
               background: linear-gradient(135deg, #0078e8, #004fb3);
               transform: translateY(-3px);
               box-shadow: 0 10px 24px rgba(0, 102, 204, 0.40);
        }
        .header-btn:hover::before {
            left: 150%;
        }
         .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1280px;
            margin: auto;
            padding: 10px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.25rem;
            font-weight: 800;
            color: #b2cb0e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-decoration: none;
        }

        .logo-icon {
            width: 60px;
            height: 32px;
            background: #0066cc;
            color: #fff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 15px;
            align-items: center;
        }

        .nav-links a {
            display: block;
            text-decoration: none;
            color: #2b3a4a;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            font-weight: 800;
            font-size: 0.95rem;
            position: relative;
            padding: 4px 0;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background-color: #0066cc;
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:hover {
            color: #0066cc;
        }

        .nav-links a:hover::after {
            width: 100%;
        }
/* Mobile Menu Toggle Button */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #0b2545;
            border-radius: 3px;
            transition: 0.3s;
        }
/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {

    /* =========================
       MENU TOGGLE / HAMBURGER
       ========================= */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 35px;
        height: 28px;
        padding: 0;
        border: none;
        background: transparent;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 35px;
        height: 5px;
        background: #050505;
        border-radius: 5px;
        transition: 0.3s ease;
    }


    /* =========================
       MENU TERSEMBUNYI
       ========================= */
    .nav-links {
        display: none;
        position: absolute;
        top: 14%;
        right:02px;
        width: 220px;
        padding: 15px 0;
        margin: 0;
        background: #ffffff;
        flex-direction:column;
        gap: 0;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
        border-radius: 10px;
        z-index: 1000;
        list-style: none;
    }


    /* =========================
       MENU MUNCUL
       ========================= */
    .nav-links.active {
        display: flex;
    }


    /* =========================
       LINK MENU
       ========================= */
    .nav-links a {
        display: block;
        padding: 14px 25px;
        color: #004fb3;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }


    /* =========================
       HOVER MENU
       ========================= */
    .nav-links a:hover {
        background: linear-gradient(135deg)
        color(srgb-linear red green blue)
        padding-left: 25px;
    }


    /* =========================
       HERO
       ========================= */
    .hero-content h1 {
        font-size: 2rem;
    }


    /* =========================
       FORM
       ========================= */

}
/* --- HERO SLIDESHOW --- */
        .slider-container {
            position: relative;
            max-width: 100%;
            height: 75vh;
            overflow: hidden;
            background: #f5eded;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition:;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(11, 37, 69, 0.75);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 850px;
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: #e0e1dd;
        }
         /* --- SERVICES SECTION --- */
        .services-section {
            background-color: #0b2545;
            color: #fff;
            padding: 70px 20px;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
        }

        .service-card h3 {
            margin-bottom: 12px;
            font-size: 1.25rem;
            color: #8da9c4;
        }
		
/* --- GALLERY / Distributor --- */
        .gallery-section-dis {
            padding: 70px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        .section-tag {
            display: inline-block;
            background: #ffffff;
            color: #0b2545;
            padding: 100px 18px;
            border-radius: 10px;
            font-size: 0.85rem;
            margin-bottom: 15px;
            font-weight: 700;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 10px;
            margin-top: 10px;
            text-wrap: calc(8px);
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            height: 100px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-item .overlay {
            position: absolute;
            text-wrap: calc();
            bottom: 0;
            background: rgba(11, 37, 69, 0.7);
            color: #fff;
            width: 100%;
            padding: 8px;
            font-size: 2rem;
            font-weight: 600;
            font-family: Arial;
        }
		
        /* --- GALLERY / PORTFOLIO --- */
        .gallery-section {
            padding: 70px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        .section-tag {
            display: inline-block;
            color: #0b2545;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 1.85rem;
            margin-bottom: 15px;
            font-weight: 700;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        }
        


        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
            padding: 6px 18px;
            text-wrap: calc(08px);
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            height: 320px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-item .overlay {
            text-wrap: calc();
            text-align: center;
            position: absolute;
            bottom: 0;
            background: rgba(11, 37, 69, 0.7);
            color: #fff;
            width: 90%;
            height: auto;
            padding: 20px;
            font-size: 0.95rem;
            font-weight: 300;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        /* --- CALL TO ACTION --- */
        .cta-section {
            background: linear-gradient(rgba(11, 37, 69, 0.85), rgba(11, 37, 69, 0.85)), 
                        url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: #fff;
            text-align: center;
            justify-content: center;
            padding: 80px 20px;
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        .cta-btn {
            display: inline-block;
            margin-top: 25px;
            padding: 14px 36px;
            background: #fff;
            color: #0b2545;
            font-weight: bold;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: #e0e1dd;
            transform: scale(1.05);
        }

        /* --- BRANDS / PARTNERS --- */
        .partners-section {
            padding: 60px 20px;
            text-align: center;
            background: hsl(0, 0%, 100%);
            font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
        }

        .brand-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            max-width: 1000px;
            margin: 30px auto 0;
        }

        .brand-logos div {
            font-weight: 800;
            font-size: 1.25rem;
            color: #666;
            letter-spacing: 1px;
        }

        /* --- CONTACT & MAPS FOOTER --- */
        .contact-section {
            background: #0b2545;
            color: #fff;
            padding: 70px 20px 40px;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .contact-info p {
            color: #a0aec0;
            margin-bottom: 0.95px;
        }

        .contact-details {
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group-row {
            display: flex;
            gap: 15px;
        }

        .form-group-row input {
            width: 100%;
        }

        .contact-form input, 
        .contact-form textarea {
            width: 93.4%;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            outline: none;
            background: #134074;
            color: #fff;
            font-size: 0.95rem;
        }

        .contact-form input::placeholder, 
        .contact-form textarea::placeholder {
            color: #a0aec0;
            width: 100%;
        }

        .contact-form button {
            padding: 14px;
            background: #0066cc;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .contact-form button:hover {
            background: #004fb3;
        }


        /* MAPS CONTAINER */
        .map-section {
            text-align: center;
            align-items: center;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }

        .map-section iframe {
            width: 100%;
            height: 250px;
            border: 0;
            display: flex;
            text-align: center;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a0aec0;
            font-size: 0.85rem;
        }
        .copy{
            text-align: center;
            font-family:Arial, Helvetica, sans-serif;

        }
   /*button click*/     
   .container {
    display:flex;
    position:fixed;
    top: 30%;
    z-index: 9999;
    /* Arah elemen */
    flex-direction:column;

    /* Posisi horizontal */
    justify-content: center;

    /* Po   sisi vertikal */
    align-items: center;

    /* Jarak antar elemen */
    gap: 08px
}

.box1 {
    width: 70px;
    height: 70px;
    background-color:rgb(68, 237, 6);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}
.box1::after {
            display:none;        
        }

        .box1:hover {
               background: linear-gradient(135deg, #49e800, #85ff55);
               transform: translateY(-3px);
               box-shadow: 0 10px 24px rgb(0, 68, 85);
        }
        .box1:hover::before {
            left: 150%;}
.box2 {
    width: 70px;
    height: 70px;
    background-color:rgb(6, 137, 237);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}
.box2::after {
            display:none;        
        }

        .box2:hover {
               background: linear-gradient(135deg, #0059e8, #0c00b2);
               transform: translateY(-3px);
               box-shadow: 0 10px 24px rgb(0, 68, 85);
        }
        .box2:hover::before {
            left: 150%;}
.box3 {
    width: 70px;
    height: 70px;
    background-color:rgb(237, 129, 6);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
}
.box3::after {
            display:none;        
        }

        .box3:hover {
               background: linear-gradient(135deg, #e87c00, #b23500);
               transform: translateY(-3px);
               box-shadow: 0 10px 24px rgb(0, 68, 85);
        }
        .box3:hover::before {
            left: 150%;}
.brand-logos{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 5px;
    row-gap: 5px;
    flex-wrap: wrap;
    justify-content:left;
    align-items:normal;
     /* Arah elemen */
    flex-direction:row;

    /* Posisi horizontal */
    justify-content: center;

    /* Posisi vertikal */
    align-items: center;

    /* Jarak antar elemen */
    gap: 30px;
}
/*mobile*/
@media (max-width: 900px) {
.brand-logos{
    display:flex;
    grid-template-columns: repeat(0, 1fr);
    column-gap: 5px;
    row-gap: 5px;
    flex-wrap: wrap;
    justify-content:left;
    align-items:normal;
     /* Arah elemen */
    flex-direction:column;

    /* Posisi horizontal */
    justify-content: center;

    /* Posisi vertikal */
    align-items: center;

    /* Jarak antar elemen */
    gap: 30px;
}
 /* --- CONTACT & MAPS FOOTER --- */
        .contact-section {
            background: #0b2545;
            color: #fff;
            padding: 70px 20px 40px;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .contact-info p {
            color: #a0aec0;
            margin-bottom: 0.95px;
        }

        .contact-details {
            line-height: 1.8;
            font-size: 0.95rem;
        }

        .contact-form form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group-row {
            display: flex;
            gap: 15px;
        }

        .form-group-row input {
            width: 100%;
        }

        .contact-form input, 
        .contact-form textarea {
            width: 93.4%;
            padding: 14px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            outline: none;
            background: #134074;
            color: #fff;
            font-size: 0.95rem;
        }

        .contact-form input::placeholder, 
        .contact-form textarea::placeholder {
            color: #a0aec0;
            width: 100%;
        }

        .contact-form button {
            padding: 14px;
            background: #0066cc;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .contact-form button:hover {
            background: #004fb3;
        }


        /* MAPS CONTAINER */
        .map-section {
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }

        .map-section iframe {
            width: 100%;
            height: 350px;
            border: 0;
            display: block;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a0aec0;
            font-size: 0.4rem;
        }

            