:root {
    --primary-color: #0ea5e9;
    /* <-- Warna Utama (contoh saat ini: Biru Medis) */
    --secondary-color: #1976d2;
    --accent-color: #e3f2fd;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-color: #f1f5f9;
    /* Warna latar belakang halaman belakang */
    --bg-card: #ffffff;
    /* Warna latar belakang kertas artikel */
    --border-color: #e2e8f0;
    --primary-dark:blue;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.7;
    padding: 20px;
}

/* Container Artikel Utama */
.blog-container {
    max-width: 800px;
    margin: 30px auto;
    background-color: var(--bg-card);
    /* Padding 0 di atas agar gambar header menempel ke tepi atas */
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    /* Memastikan sudut gambar ikut melengkung */
}

/* Styles untuk Placeholder Gambar Header */
.blog-header-image-placeholder {
    width: 100%;
    height: 350px;
    /* Tinggi area gambar */
    background-color: #cbd5e1;
    /* Warna abu-abu placeholder */
    background-image: linear-gradient(45deg, #cbd5e1 25%, #dce4eb 25%, #dce4eb 50%, #cbd5e1 50%, #cbd5e1 75%, #dce4eb 75%, #dce4eb 100%);
    background-size: 56.57px 56.57px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
}

/* Wrapper untuk konten teks agar memiliki jarak dari tepi */
.blog-content-wrapper {
    padding: 40px;
}

/* Header Blog (Judul & Meta) */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 30px;
}

.blog-header h1 {
    color: #0f172a;
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 800;
}

.meta-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    background-color: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    display: inline-flex;
    /* Agar lebar menyesuaikan konten */
}

.meta-info span {
    display: flex;
    align-items: center;
}

.meta-info span::before {
    content: "�";
    margin-right: 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
}

.meta-info span:first-child::before {
    display: none;
}

/* Tipografi Konten */
h2 {
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin: 40px 0 20px 0;
    /* Gaya H2: Garis di samping kiri */
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}



h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin: 30px 0 12px 0;
    font-weight: 700;
}

p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

/* List Styling */
ul {
    margin: 15px 0 25px 25px;
    list-style-type: none;
}

ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

/* Menggunakan ikon centang sebagai bullet point */
ul li::before {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* Call to Action (CTA) Box */
.cta-box {
    /* Membuat background sedikit transparan berdasarkan warna utama */
    background: linear-gradient(to right bottom, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.15));
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 12px;
    padding: 35px;
    margin: 50px 0;
    text-align: center;
}

/* Override style H2 di dalam CTA box agar tidak ada garis samping */
.cta-box h2 {
    border-left: none;
    margin-top: 0;
    padding-left: 0;
    color: var(--primary-dark);
}

.cta-box ul {
    text-align: left;
    display: inline-block;
    /* Agar list berada di tengah */
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 30px 20px 50px;
    border-radius: 8px;
}

/* Tombol CTA */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.2), 0 2px 4px -1px rgba(14, 165, 233, 0.1);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.3), 0 4px 6px -2px rgba(14, 165, 233, 0.1);
}

/* Footer Notes */
.blog-footer {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px dashed var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

/* Responsive Design untuk Mobile */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .blog-container {
        margin: 10px auto;
    }

    .blog-content-wrapper {
        padding: 25px 20px;
    }

    .blog-header-image-placeholder {
        height: 200px;
        /* Gambar lebih pendek di mobile */
        font-size: 0.9rem;
        background-size: 30px 30px;
    }

    .blog-header h1 {
        font-size: 1.75rem;
    }

    .meta-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .meta-info span::before {
        display: none;
        /* Hapus bullet pemisah di mobile */
    }

    .cta-box {
        padding: 25px 20px;
    }

    .cta-box ul {
        padding: 15px 20px 15px 40px;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        /* Tombol penuh di mobile */
    }

    .nav-container {

        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 100%;

    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.mt-4 {
    margin-top: 2rem;
}

/* Typography */
.section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #093170;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.logo h2 span {
    color: #4caf50;
}

/* Tanda + Hijau Medis */
.logo p {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links li a {
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--white) 100%);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Cards (Tentang & Fitur) */
.card,
.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.card:hover,
.feature-item:hover {
    transform: translateY(-5px);
}

.card h3,
.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Pricing Principles */
.pricing-principles {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.principle {
    background: var(--accent-color);
    padding: 20px;
    border-radius: 8px;
    min-width: 200px;
}

/* Contact & Demo Form */
.contact-details {
    margin: 20px 0;
}

.contact-details p {
    margin-bottom: 10px;
}

.login-box {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.demo-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-form h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 0;
    font-size: 0.9rem;
}



/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Simplified for mobile */
    .hero-content h1 {
        font-size: 2rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* =========================================
   ANIMASI & EFEK TRANSISI
   ========================================= */

/* Animasi untuk elemen saat halaman pertama kali dimuat (Hero Section) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content p {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    /* Delay 0.2s */
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    /* Delay 0.4s */
}

.badges {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    /* Delay 0.6s */
}

/* Efek Pulse (Denyut) untuk tombol Call-to-Action utama */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 71, 161, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(13, 71, 161, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 71, 161, 0);
    }
}

a.btn-primary[href="#demo"] {
    animation: pulse 2s infinite;
}

a.btn-primary[href="#demo"]:hover {
    animation: none;
    /* Hentikan denyut saat di-hover */
    transform: scale(1.05);
}

/* Kelas Utilitas untuk Animasi Scroll (Dikontrol oleh JavaScript) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Transisi tambahan untuk Card saat di-hover */
.card,
.feature-item,
.demo-form {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


/* =========================================
   BLOG & ARTIKEL
   ========================================= */

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    /* Memastikan gambar tidak keluar dari sudut membulat */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /* Agar gambar tidak proporsinya tidak rusak */
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
    /* Efek zoom halus pada gambar saat card di-hover */
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Mendorong tombol 'read more' ke bawah jika teks pendek */
}

.blog-date {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.blog-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
    /* Panah bergerak sedikit ke kanan */
}


/* =========================================
   HALAMAN ARTIKEL (Detail Blog)
   ========================================= */

.article-page {
    background-color: var(--bg-light);
}

.article-container {
    max-width: 800px;
    /* Lebar dibatasi agar teks nyaman dibaca */
    background: var(--white);
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.back-link {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.back-link:hover {
    transform: translateX(-5px);
    color: var(--primary-color);
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-header .badge {
    display: inline-block;
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 15px;
}

.article-meta {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.article-cover {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-body {
    font-size: 1.1rem;
    /* Ukuran font lebih besar sedikit untuk membaca */
    line-height: 1.8;
    color: #444;
}

.article-body h2 {
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-size: 1.8rem;
    line-height: 1.4;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body blockquote {
    border-left: 5px solid var(--secondary-color);
    background: var(--accent-color);
    padding: 20px 25px;
    margin: 35px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.article-footer hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 40px 0;
}

.cta-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* Responsive untuk layar kecil (Mobile) */
@media (max-width: 768px) {
    .article-container {
        padding: 20px;
    }

    .article-header h1 {
        font-size: 2rem;
    }
}


/* CSS Styles for the Blog Article */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f4f7f6;
    margin: 0;
    padding: 20px;
}

.blog-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

h1 {
    color: #2c3e50;
    font-size: 2.4em;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    color: #0056b3;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 8px;
    margin-top: 35px;
}

h3 {
    color: #2980b9;
    margin-top: 25px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul,
ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
}

.meta-info {
    text-align: center;
    font-size: 0.9em;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-style: italic;
}

.cta-section {
    background-color: #eaf4fa;
    border-left: 5px solid #0056b3;
    padding: 20px;
    margin-top: 40px;
    border-radius: 0 8px 8px 0;
}

.cta-section h3 {
    margin-top: 0;
    color: #0056b3;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th,
td {
    border: 1px solid #dddddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f8f9fa;
    color: #2c3e50;
}



ul {
    list-style-type: none;
    padding: 0;
}

/* Styling dasar link di dalam li */
li a {
    text-decoration: none;
    /* Menghilangkan garis bawah */
    color: #333;
    /* Mengubah warna teks */
    padding: 10px;
    /* Memberi ruang di sekitar link */
    display: block;
    /* Membuat seluruh area link bisa diklik */
}

/* Efek saat kursor di atas link (hover) */
li a:hover {
    border-radius: 8px;
    color: rgb(1, 1, 94);
    background-color: #e2e9fd;
}


.flex_top {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kotak-saja30 {

    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.2);
    background-color: #fffdfd;
    color: #000000;
    border-style: solid;
    transition: 0.3s;
    border-radius: 6px;
    margin-top: 6px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 6px;
    padding: 10px;
}

.kotak-saja30:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.kotak-saja32 {

    border-width: 1px;
    border-right: 4px solid blue;
    border-bottom: 4px solid blue;
    border-color: rgba(0, 0, 0, 0.3);
    background-color: #fffdfd;
    color: #000000;
    border-style: solid;
    transition: 0.3s;
    border-radius: 8px;
    margin-top: 11px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 11px;
    padding: 10px;
}

.kotak-saja32:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

/* Tipografi Konten */
.tanda {
    display: block;
    border-width: 1px;
    border-style: solid;
    border-color: #B3B3B3 #dcddde #dcddde #B3B3B3;
    background-image: linear-gradient(135deg, #ffffff 0%, #bdbdbd 100%);
    background-repeat: no-repeat;
    background-position: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 10px 0 5px 0;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;

    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}


.maker {
    content: "✅ ";
    /* Use any symbol or emoji */
    color: green;
    /* Color the marker itself */
    font-size: 1.2em;
    /* Adjust the size */
}


/* --- HERO SECTION --- */
#hero {
    background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 168, 204, 0.8)), url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 70px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-weight: 300;
    margin-top: 15px;
    font-style: italic;
}


.flex {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.kotak-saja30 {

    border-width: 1px;
    border-color: rgba(0, 0, 0, 0.2);
    background-color: #fffdfd;
    color: #000000;
    border-style: solid;
    transition: 0.3s;
    border-radius: 6px;
    margin-top: 6px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 6px;
    padding: 10px;
}

.fade_in_out {
    animation: flickerAnimation 1s ease reverse forwards infinite;

}

@keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes flickerAnimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



.kotak-saja32 {

    border-width: 1px;
    border-right: 4px solid blue;
    border-bottom: 4px solid blue;
    border-color: rgba(0, 0, 0, 0.3);
    background-color: #fffdfd;
    color: #000000;
    border-style: solid;
    transition: 0.3s;
    border-radius: 8px;
    margin-top: 11px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 11px;
    padding: 10px;
}

.kotak-saja32:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}



.gradient-box {
  background: linear-gradient(#ffffff, #a9deff);
}
