:root {
    --primary: #3b3f8c;
    --soft: #f4f5ff;
    --dark: #1f2251;
    --highsoft: #dbdeff;
    --egg-yellow: #ffd700;
    --egg-orange: #ffa500;
    --feed-green: #4caf50;
    --feed-blue: #2196f3;
    --feed-orange: #ff9800;
    --feed-purple: #9c27b0;
    --feed-brown: #795548;
    --feed-cyan: #00bcd4;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--soft);
    color: var(--dark);
}

/* Hero Banner */
.hero-banner {
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    border-radius: 0 0 50px 50px;
}

.banner-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    border-radius: 0 0 50px 50px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Overlay hitam dengan opacity 50% */
    z-index: 2;
    border-radius: 0 0 50px 50px;
}

/* Untuk memastikan teks berada di atas overlay */
.position-relative.z-index-3 {
    position: relative;
    z-index: 3;
}

.hero-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-banner p {
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 10px 18px 10px 20px;
    background: #fff;
    color: #000;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;

    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
}

.btn-explore .icon {
    width: 28px;
    height: 28px;

    background: var(--primary);
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-explore:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-explore:hover .icon {
    transform: translateX(4px);
}

.trust-badge {
    background-color: white;
    padding: 15px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
    color: var(--primary);
}

.trust-badge i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: var(--soft);
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary);
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: "\201C";
    font-size: 4rem;
    color: var(--highsoft);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    color: var(--primary);
    font-size: 1.2rem;
    overflow: hidden;
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.client-role {
    color: var(--primary);
    font-size: 0.9rem;
}

.industry-tag {
    background-color: var(--soft);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
}

.industries-section {
    padding: 60px 0;
    background-color: var(--soft);
}

.industry-icon {
    background-color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.industry-title {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.video-section {
    background-color: var(--soft);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--highsoft);
    border-radius: 50%;
    z-index: 0;
}

.video-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background-color: var(--highsoft);
    border-radius: 50%;
    z-index: 0;
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-image-container {
    position: relative;
    z-index: 2;
}

.video-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.video-img:hover {
    transform: translateY(-10px);
}

.section-title {
    color: var(--dark);
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-description {
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-accent {
    background-color: #ff9900;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #e68a00;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 80px 0;
        min-height: 400px;
    }

    .trust-badge {
        padding: 10px 5px;
        font-size: 10px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-img {
        margin-top: 40px;
    }
}
