/* --- RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body, html {
    height: 100%;
    background-color: #000;
    overflow: hidden; /* Scroll na thay e mate */
}

/* --- MAIN CONTAINER --- */
.hero-container {
    height: 100vh;
    width: 100%;
    /* Wallpaper image */
    background: url('LEPTOP WALLPAPER.jpg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: flex-end;   /* Vertically bottom side push karse */
}

/* --- DARK OVERLAY --- */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Background ne dark karva jethi text uplay */
    z-index: 1;
}

/* --- CONTENT AREA (BOTTOM SET) --- */
.bottom-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    /* Niche thi ekdam thodi jagya jethi circle ni niche aave */
    margin-bottom: 40px; 
    padding: 0 20px;
    width: 100%;
}

h1 {
    font-size: 2.5rem; /* Desktop size */
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

p {
    font-size: 1.2rem; /* Desktop size */
    font-weight: 400;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

/* --- MOBILE VIEW (SPECIAL SETTINGS) --- */
@media (max-width: 768px) {
    .bottom-content {
        /* Mobile ma thodu vadhare niche push karva mate */
        margin-bottom: 30px; 
    }
    
    h1 {
        /* Mobile ma text nana ane properly wrap thay e mate */
        font-size: 1.6rem; 
        margin-bottom: 5px;
    }
    
    p {
        font-size: 0.95rem;
        padding: 0 10px; /* Side thi padding jethi screen ne touch na thay */
    }
}

/* Extra small devices mate (Very small phones) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem;
    }
    .bottom-content {
        margin-bottom: 25px;
    }
}