*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    color: #aaaaaa;
}

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: #4d4d4db0;
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    line-height: 1;
}

.logo{
    position: relative;
    font-size: 25px;
    color: #F6FAF7;
    text-decoration: none;
    font-weight: 600;
}

.logo img {
    height: 32px;   /* sesuaikan ukuran logo */
    width: auto;
    /* display: block; */
    vertical-align: middle;
    margin-right: 10px;
}

.logo::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #F26722;
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

.navbar a{
    font-size: 18px;
    color: #F6FAF7;
    text-decoration: none;
    font-weight: 500;
    margin-left: 25px;
}

.navbar a:hover,
.navbar a.active{
    color: #F26722;
}

.home{
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: url("/assets/img/cover.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

.home-content{
    max-width: 600px;
}

.home-content h1{
    font-size: 56px;
    font-weight: 900;
    color: #F6FAF7;
}


.home-content p{
    position: relative;
    font-size: 16px;
    color: #F6FAF7;
    margin-top: 15px;
}

.home-content p::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #F26722;
    animation: showRight 1s ease forwards;
    animation-delay: .4s;
}

/* KEYFRAMES ANIMATION */
@keyframes showRight{
    100%{
        width: 0;
    }
}

.about{
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: #F6FAF7;
}

.about-content{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px; /* jarak antara gambar dan teks */
    max-width: 1200px;
    margin: 0 auto;
}

.about-img img{
    width: 550px;
}

.about-text {
    max-width: 600px;
    color: #000000;
    align-items: center;
}

.about-text p{
    margin-bottom: 30px;
}

.about-content .btn-box{
    width: 135px;
    height: 40px;
    border-radius: 24px;
}

.about-content .btn-box:hover{
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.btn-box a{
    display: inline-flex;
    width: 135px;
    height: 100%;
    background: #034956;
    border-radius: 24px;
    font-size: 16px;
    color: #F6FAF7;
    font-weight: 600;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    box-shadow: #000000;
}

.product{
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: url("/assets/img/product-bg.jpg") no-repeat;
    background-size: cover;
    background-position: center;
}

/* test */

/* Container to center content and add padding */
.container {
    max-width: 1200px;
    /* margin: 0 auto; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

/* Styling for the left content area (text) */
.left-content {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.left-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: #F6FAF7;
}

.left-content h2 span {
    color: #ff5722;
}

.left-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
}

/* Navigation arrows styling */
.navigation-arrows {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.arrow {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Styling for the product cards container */
.product-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    /* flex: 2; */
    width: fit-content;
    max-height: 400px;
}

/* Individual product card styling */
.product-card {
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    padding: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    /* flex: 1 1 200px; */
    /* min-width: 200px; */
    /* min-width: 250px; */
    width: 180px;
    display: flex; /* Jadikan flexbox untuk centering konten */
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.product-card img {
    justify-content: space-between;
    max-width: 180px;
    max-height: 180px;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 10px 0 0 0;
    color: #F26722;
}

.product-card h3 span{
    color: #000;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .left-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .navigation-arrows {
        justify-content: center;
    }

    .left-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .best-product-section {
        padding: 40px 15px;
    }

    .left-content h2 {
        font-size: 2rem;
    }

    .product-cards {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        max-width: 90%;
    }
}

.services{
    height: 240vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5%;
    background: #F6FAF7;
    justify-content: center;
    gap: 40px;
}

.services .heading{
    align-items: center;
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: #000000;
    padding: 0 20px;
}

.services .heading span{
    color: #F26722;
}

.services-container{
    justify-content: space-between;
    display: flex;
    gap: 70px;
}

.serv-card{
    height: 500px;
    width: 500px;
    border-radius: 16px;
    box-shadow: 8px 8px 20px grey;
}

.serv-card img{
    height: 500px;
    width: 500px;
    border-radius: 18px;
}

.services-desc{
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    gap: 14px;
}

.services-desc h2{
    color: #F26722;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.2;
}

.services-desc h3{
    color: #000000;
    font-weight: 600;
    font-size: 20px;
}

.services-desc p{
    color: #000000;
    font-size: 16px;
}

.clients{
    height: 70vh;
    background-color: #F6FAF7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.clients h2{
    color: #333;
    font-weight: 800;
    font-size: 40px;
}

.clients h2 span{
    color: #F26722;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 60px 0;
  background: #F6FAF7;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #F6FAF7);
}

.logos:hover .logos-slide {
  animation-play-state: paused;
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  max-height: 50px;
  margin: 0 20px;
}

.footer {
    background-color: #034956; /* Warna latar belakang yang mirip */
    color: #fff;
    padding: 30px 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 320px;
}

.footer-brand {
    flex: 1;
    min-width: 200px;
}

.footer-brand h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.footer-brand p {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #F26722;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    min-width: 250px;
    text-align: right;
    padding: 10px;
}

.contact-item {
    display: flex;
    flex-direction: column;
}

.contact-item h4 {
    font-size: 1rem;
    color: #ff5722; /* Warna oranye */
    margin: 0 0 5px 0;
    align-self: start;
}

.contact-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #fff;
    align-self: start;
}

.location {
    flex-direction: row;
    align-items: center;
    background-color: #fff;
    color: #000;
    padding: 10px 10px;
    margin-bottom: 10px;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    align-self: flex-end; /* Posisikan di kanan atas */
    width: 450px;
    text-align: left;
    max-lines: 1;
}

.location i {
    color: #ff5722;
    margin-right: 10px;
    font-size: 1.2rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-left: auto; /* Posisikan ke kanan */
}

.footer-social a {
    color: #ff5722;
    font-size: 2rem;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

/* Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-brand, .footer-contact {
        text-align: center;
    }

    .location {
        align-self: center;
        text-align: center;
        margin-left: 0;
    }

    .footer-social {
        margin-left: 0;
    }
}