* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
scroll-margin-top: 110px;

}

.background {
    position: fixed;
    inset: 0;
    background: url("kepek/hatter.jpg") center / cover no-repeat;
    filter: blur(6px);
    z-index: -1;
}

.header {
    position: sticky;
    top: 0;
    z-index: 10;

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

    padding: 15px 50px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
}

.logo {
    height: 80px;
}

.home-image {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.home-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

#home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.menu a {
    color: white;
    text-decoration: none;
    margin-left: 35px;
    font-weight: 600;
    position: relative;
}

.menu a.active::after,
.menu a:hover::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
}

.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.section {
    min-height: 100vh;
    padding: 150px 50px;
    color: white;
    background: rgba(0,0,0,0.45);
}
.section > h1,
.section > h2 {
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: 600;
}
.services-list {
    margin-top: 20px;
    list-style: none;
}

.services-list li {
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap; 
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.contact-left p {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-right {
    flex: 1;
}

.contact-right img {
    width: 100%;
    max-height: 400px; 
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
}
#contact {
    min-height: 70vh;
    padding: 110px 50px;
}

.social-links img {
    width: 48px;
    height: 48px;
    opacity: 0.85;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.2);
    opacity: 1;
}

@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-left h2 {
        text-align: center;
    }

    .social-links {
        gap: 20px;
    }
}

.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 14px;
}


@media (max-width: 768px) {
    .menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        display: none;
    }

    .menu a {
        margin: 20px;
    }

    .menu.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }
}
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    padding: 25px;
    border-radius: 14px;
    text-align: center;
    color: #ffffff;

    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3,
.service-card p {
    color: #ffffff;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    opacity: 0.95;
}

@media (max-width: 900px) {
    .about-content {
        flex-direction: column;
        padding: 40px 25px;
        gap: 40px;
    }

    .about-text h2 {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
        gap: 50px;
    }

    .contact-left h2 {
        text-align: center;
    }
}
#home {
    margin-top: -110px; 
    padding-top: 150px; 
}

@media (max-width: 900px) {
    .services-cards {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    .services-text {
        font-size: 16px;
        padding-top: 40px; 
    }

    .services-image {
        margin-top: 40px;
    }

    .services-image img {
        max-width: 100%;
    }
}
.services-description {
    max-width: 1000px;
    margin: 30px auto 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0.95;
}
@media (max-width: 768px) {
    .services-description {
        font-size: 16px;
        margin-top: 60px;
        padding: 0 10px;
    }
}
.services-brands-title {
    margin-top: 50px;
    margin-bottom: 35px;
    text-align: center;
    font-size: 26px;
    font-weight: 500;
    opacity: 0.95;
}

.services-brands {
    max-width: 900px; 
    margin: 0 auto;
}

.services-brands img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}
@media (max-width: 768px) {
    .services-brands-title {
        font-size: 22px;
        margin-top: 60px;
    }
}
