.hero-home{
    background-image:url("../assets/bgHome.png");
}
.home-about,
.home-services,
.home-projects,
.home-career,
.home-contact{

    width:95%;
    max-width:2500px;

    margin:0 auto;

    padding:90px 0;
}

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title h4{

    color:#ff1e1e;

    text-transform:uppercase;

    font-size:18px;

    margin-bottom:10px;
}

.section-title h2{

    font-size:40px;

    margin:0;
}

.about-content{
    display:grid;
    grid-template-columns: 58% 42%;
    gap:70px;
    align-items:center;
}
.about-image{

    flex:1;
}

.about-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
}

.about-text p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    max-width:520px;
}


.about-highlight{
    display:flex;
    justify-content:space-between;
    margin:35px 0;
}

.about-content .btn{
    display:inline-block;
    margin-top:20px;
}

.highlight{

    display:flex;

    flex-direction:column;
    text-align:left;

    align-items:flex-start;
}
.highlight h3{

    font-size:42px;

    color:#ff1e1e;

    margin-bottom:5px;
}
.highlight span{

    color:#666;

    font-size:15px;
}

.service-preview{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-bottom:50px;
}

.service-item{

    background:white;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.service-item:hover{

    transform:translateY(-10px);
}

.service-item img{

    width:60px;

    margin-bottom:20px;
}

.project-preview{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-bottom:50px;
}

.project-item{

    overflow:hidden;

    border-radius:20px;

    background:white;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.project-item img{

    width:100%;

    height:240px;

    object-fit:cover;

    display:block;
}

.home-technology{

    width:95%;
    max-width:3500px;

    margin:0 auto;

    text-align:center;
}

.technology-preview{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:25px;

    margin:60px 0;
}

.technology-item{

    background:#fff;

    border-radius:18px;

    padding:35px 20px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;
}

.technology-item:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.technology-item img{

    width:70px;

    height:70px;

    object-fit:contain;

    margin-bottom:20px;
}

.technology-item h3{

    font-size:18px;

    color:#333;

    margin:0;
}

.career-preview{
    display:grid;
    grid-template-columns:45% 55%;
    gap:70px;
    align-items:center;
}

.career-content{

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.career-image{

    flex:1;
}

.career-image img{
    width:100%;
    height:430px;
    object-fit:cover;
    border-radius:20px;
}

.career-content ul{

    margin:30px 0;

    padding-left:22px;
}

.career-content li{

    margin-bottom:14px;

    line-height:1.8;
}

.contact-preview{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#111;

    color:white;

    padding:60px;

    border-radius:20px;
}

.contact-info{

    width:60%;
}

.contact-action{

    display:flex;

    justify-content:center;

    align-items:center;
}

.home-services .btn-red,
.home-projects .btn-red,
.home-career .btn-red{

    display:table;

    margin:0 auto;
}

/* Responsif untuk Layar Ponsel di index.css */
@media (max-width: 768px) {
    .home-about,
    .home-services,
    .home-projects,
    .home-career,
    .home-contact {
        padding: 40px 0; /* Mengurangi jarak atas-bawah section di HP */
    }

    .section-title h2 {
        font-size: 28px; /* Memperkecil judul section */
    }

    .section-title h4 {
        font-size: 14px;
    }

    /* 1. Bagian About Preview */
    .about-content {
        grid-template-columns: 1fr; /* Diubah jadi 1 kolom ke bawah */
        gap: 30px;
    }

    .about-image img {
        height: 300px; /* Menyesuaikan tinggi gambar di HP */
    }

    .about-highlight {
        flex-direction: column; /* Statistik highlight jadi bertumpuk */
        gap: 20px;
    }

    /* 2. Bagian Service Preview */
    .service-preview {
        grid-template-columns: repeat(2, 1fr); /* Diubah jadi 2 kolom */
        gap: 15px;
    }

    .service-item {
        padding: 20px 15px;
    }

    /* 3. Bagian Project Preview */
    .project-preview {
        grid-template-columns: 1fr; /* Diubah jadi 1 kolom ke bawah */
        gap: 20px;
    }

    /* 4. Bagian Technology Preview */
    .technology-preview {
        grid-template-columns: repeat(2, 1fr); /* Diubah jadi 2 kolom grid */
        gap: 15px;
        margin: 30px 0;
    }

    .technology-item {
        padding: 20px 10px;
    }

    /* 5. Bagian Career Preview */
    .career-preview {
        grid-template-columns: 1fr; /* Diubah jadi 1 kolom */
        gap: 30px;
    }

    .career-image img {
        height: 280px;
    }

    /* 6. Bagian Contact Preview (Banner Bawah) */
    .contact-preview {
        flex-direction: column; /* Konten dan tombol jadi bertumpuk */
        padding: 30px 20px;
        text-align: center;
        gap: 20px;
    }

    .contact-info {
        width: 100%;
    }
}