:root {
            --color-dslng-blue: #0033A0;
            --color-dslng-light-blue: #0072CE;
            --color-dslng-red: #E4002B;
            --color-dslng-gray: #53565A;
        }

        /* .hero-bg {
    background: url(../images/nw11.jpg) no-repeat 0px 0px;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -ms-background-size: cover;
    min-height: 800px;
} */
.hero-bg {
            background: url('../images/hero.jpg') no-repeat center center;
            background-size: cover;
            -webkit-background-size: cover;
            -moz-background-size: cover;
            -o-background-size: cover;
            min-height: 85vh; 
            position: relative;
            display: flex;
            align-items: center;
        }
.new-bg {
            background: url('../images/bg-new.jpg') no-repeat center center;
           background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
        }
.new-bg-page {
                background: url('../images/hero.jpg') ;

    /* background-image: url('../images/news/1.jpg'); */
    background-repeat: no-repeat;
    background-position: center top; /* gambar berada di bawah */
    background-size: cover; /* gambar menutupi area container */
    min-height: 45vh;
}



        #toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 24px;
    right: 3%;
    overflow: hidden;
    z-index: 999;
    width: 32px;
    height: 38px;
    border: none;
    text-indent: 100%;
    background: url(../images/move-top.png) no-repeat 0px 0px;
}


        /* .new-bg . */
 /* .new-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        } */
        /* Gaya untuk konten hero */
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-button {
            display: inline-block;
            background-color: #3b82f6;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .hero-button:hover {
            background-color: #2563eb;
            transform: translateY(-2px);
        }

        /* .hero-bg {
            background: linear-gradient(135deg, var(--color-dslng-blue), var(--color-dslng-light-blue));
        } */

        .news-card:hover {
            transform: translateY(-5px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .required-info-item {
            border-left: 4px solid var(--color-dslng-red);
            transition: all 0.3s ease;
        }

        .required-info-item:hover {
            background: #f8f9fa;
            transform: translateX(5px);
        }

        /* Sticky Header */
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transform: translateY(0);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .sticky-header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        /* Desktop Navigation */
        .nav-link {
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

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

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

        .language-dropdown {
            position: relative;
        }

        .dropdown-menu {
            transform: translateY(-10px);
            transition: all 0.3s ease;
            position: absolute;
            top: 100%;
            right: 0;
            z-index: 50;
        }


           @media (max-width: 956px) {
            .hero-bg {
                min-height: 30vh;
            }
            .sticky-header {
                z-index: 1001;
            }
        }
    
    
        @media (max-width: 756px) {
            .hero-bg {
                min-height: 25vh;
            }
            .sticky-header {
                z-index: 1001;
            }
        }
    
    
        @media (max-width: 600px) {
            .hero-bg {
                min-height: 15vh;
            }
            .sticky-header {
                z-index: 1001;
            }
        }
        

         .required::after {
        content: " *";
        color: #ef4444;
        font-weight: bold;
    }

    input:focus,
    select:focus,
    textarea:focus {
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }