* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    background-color: #1e1f1c;
    color: #fff;
    overflow-x: hidden;
}

/* Hidden SEO H1 */
.seo-h1 {
    position: absolute;
    left: -9999px;
}

/* HEADER */
.header1 {
    width: 100%;
    background-color: #cf6d3c;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 6px 10px;
    flex-wrap: wrap;
}

.mail, .location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mail p, .location p {
    font-size: 14px;
}

.icons {
    display: flex;
    gap: 12px;
}

.icons i {
    font-size: 18px;
    cursor: pointer;
}

/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SLIDE TEXT */
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

/* =====================
   RESPONSIVE
===================== */

/* Tablets */
@media (max-width: 1024px) {
    .slider {
        height: 70vh;
    }

    .slide-text {
        font-size: 4rem;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .header1 {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .mail p, .location p {
        font-size: 12px;
    }

    .slider {
        height: 280px;
    }

    /* 🔥 COMING SOON FIX */
    .slide-text {
        font-size: 1.2rem;     /* chota font */
        white-space: nowrap;   /* ek hi line */
        width: auto;
        padding: 6px 12px;
        text-align: center;
    }
}
