:root {
    --main-dark: #121212;
    --main-blue: #007bff;
    --main-grey-light: #9f9f9f;
    --main-blue-dark: #0067f4;
    --main-grey: #6c6c6c;
    --main-red: #dc3545;
    --main-light-grey: #f4f6f7;
    --main-dark-blue: #2b354f;
    --main-cyan: #17a2b8;
    --main-white: #ffffff;
    --main-light-blue: #3a6fb0;
    --main-black: #000000;
    --main-green: #28a745;
    --bg-transparent: rgba(0, 0, 0, 0);
}

/* Nav */

.navbar-custom {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.logo {
    height: 40px;
}

.nav-link {
    color: #333 !important;
    margin: 0 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-contact {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 25px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-contact:hover {
    background: var(--primary-color);
    color: white;
}

.hero-section {
    min-height: 85vh;
    padding: 120px 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.95),
            rgba(255, 255, 255, 0.95));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.company-name {
    color: var(--primary-color);
}

.hero-subtitle {
    color: #666;
    margin: 20px 0;
}

.illustration {
    max-width: 100%;
    height: auto;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* End */

/* Life Section */
.life-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.company-name {
    color: var(--primary-color);
}

.feature-card {
    position: relative;
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: 0;
}

.feature-card:hover::before {
    transform: translateX(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    /* Mengatur posisi relative untuk ikon */
    z-index: 1;
    /* Pastikan ikon berada di atas gradient */
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    /* Mengatur posisi relative untuk judul */
    z-index: 1;
    /* Pastikan judul berada di atas gradient */
}

.feature-text {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    /* Mengatur posisi relative untuk teks */
    z-index: 1;
    /* Pastikan teks berada di atas gradient */
}

.description-text {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.icon-custom {
    width: 50px;
    height: 50px;
    display: block;
    margin-bottom: 20px;
}

/* End */

/* Visi */
/* Section Styling */
.our-vision-section {
    padding: 3rem 1.5rem;
    background-color: var(--main-white);
}

/* Title Styling */
.vision-title {
    font-size: 34px;
    font-weight: bold;
    color: var(--main-blue);
    /* Primary color (blue) */
    margin-bottom: 0.5rem;
    position: relative;
}

/* Underline effect */
.vision-title::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--main-blue);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.2s ease;
}

/* Hover Effect for Underline */
.vision-title:hover::after {
    width: 100px;
}

/* Text Styling */
.vision-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Fade-in effect for text when it comes into view */
[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* End */

/* Stast */
.stats-section {
    background: var(--main-black);
    padding: 2rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%);
    background-size: 60px 60px;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

.stat-item {
    text-align: center;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-number.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.stat-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.stat-item:hover .stat-label::after {
    width: 50px;
}

.process-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    color: var(--main-blue);
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title span {
    color: var(--main-blue);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--main-blue-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.section-title:hover span::after {
    transform: scaleX(1);
}

.process-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.process-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

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

.process-card:hover::before {
    transform: translateX(0);
}

.process-icon {
    color: var(--main-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /* transition: transform 0.3s ease; */
}

/* .process-card:hover .process-icon {
    transform: scale(1.2) rotate(360deg);
} */

.process-number {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 4rem;
    color: var(--main-white);
    font-weight: bold;
    z-index: 0;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.process-card:hover .process-number {
    transform: scale(1.2);
    opacity: 0.8;
}

.process-content {
    position: relative;
    z-index: 1;
}

.process-content h4 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.process-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--main-blue);
    transition: width 0.3s ease;
}

.process-card:hover .process-content h4::after {
    width: 50px;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }

    .process-card {
        margin-bottom: 1rem;
    }
}

/* Pulse Animation for Icons */
/* @keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.pulse {
    animation: pulse 2s infinite;
} */

/* Floating Animation for Cards */
/* @keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
} */

/* End */