/* Efek gradient pada brand */
.text-gradient {
    background: linear-gradient(45deg, #33ff00, #1ff01c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Efek hover pada navbar links */
.nav-hover {
    position: relative;
    transition: color 0.3s ease-in-out;
}

.nav-hover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: #14ec38;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

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

.nav-hover:hover {
    color: #62e91e !important;
}

/* Animasi dropdown */
.animate-dropdown {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsif - Navbar lebih rapi di mobile */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
    }

    .nav-hover::after {
        display: none;
    }

    .nav-hover:hover {
        color: #4ff02e !important;
    }
}

/* Efek hover pada gambar */
.img-hover {
    transition: transform 0.3s ease-in-out;
}

.img-hover:hover {
    transform: scale(1.05);
}

/* Card yang lebih halus */
.card {
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Efek tombol lebih keren */
.btn-primary {
    background: linear-gradient(to right, #1aeb3a, #07d24e);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, #56b607, #0ac026);
    transform: scale(1.05);
}


/*TENTANG KAMI About*/

  /* Ukuran & Gaya Title */
  .about-title {
    font-size: 1.75rem;
    font-weight: bold;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Gaya untuk Foto */
.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: auto;
}

.about-img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Efek Hover pada Card */
.card {
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/* Gaya untuk Social Icons */
.social-icons a {
    font-size: 1rem;
    padding: 8px 12px;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.social-icons a:hover {
    background-color: #28a745;
    color: white;
    transform: scale(1.1);
}

/* Responsif */
@media (max-width: 768px) {
    .about-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-img {
        max-width: 280px;
    }
}