body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
}

/* ===== HERO SECTION ===== */
/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}
.hero-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5); /* Black with 50% opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Make sure text is above overlay */
}
/* Logo in top-left */
.hero-slider .logo {
    position: absolute;
    top: 20px;  /* adjust spacing from top */
    left: 20px; /* adjust spacing from left */
    z-index: 10; /* make sure it's above slides */
}

.hero-slider .logo img {
    width: 120px; /* adjust size as needed */
    height: auto;
}

.slides {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Hero Text on top */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    width: 80%;
    margin: 0 auto;
    font-size: 1.2rem;
}

.hero {
    height: 70vh;
    background: url('assets/imgs/header1.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    color: #fff;
    text-align: center;
    max-width: 700px;
    position: relative;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

/* ===== SERVICES GRID ===== */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 25px;
    padding: 40px;
}

.service-card {
    background: #fafafa;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-card .icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: .7;
}

.service-card .text h3 {
    margin: 0;
    font-size: 18px;
}

.service-card .text p {
    margin: 4px 0 10px;
    color: #666;
    font-size: 14px;
}

.service-card .text a {
    color: #c68b49;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
}

/* ===== GALLERY ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    padding: 40px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* ===== FOOTER ===== */
footer {
    background: #3a3a3a;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    flex-wrap: wrap;
}

footer h2 {
    margin: 0 0 10px;
}

.store-buttons img {
    width: 140px;
    margin-right: 10px;
}

.social-icons span {
    background: #555;
    padding: 10px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 18px;
}

copyright {
    text-align: center;
    padding: 20px;
    background: #2d2d2d;
    color: white;
    font-size: 14px;
}
