* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Gallery Container */
.gallery-section-container {
    text-align: center;
    padding: 20px;
    background-color: #d6cdcd;
}

/* Heading */
h1 {
    margin-bottom: 20px;
    font-size: 2em;
    justify-content: center;
    text-align: center;
}

/* Simple Grid Layout */
.gallery-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    padding: 20px;
}

/* Images */
.gallery-section img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}




    /* sidebar starts here..... */
    
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Hero Section */
    .hero-section {
       
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        text-align: center;
        color: white;
    }
    
    /* Overlay Effect */
    .hero-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
    
    /* Text Styling */
    .hero-overlay{
        padding: 25px;
    }
    .overlay {
        position: relative;
        z-index: 1;
       
    }
    
    .overlay h1 {
        font-size: 3rem;
        margin-bottom: 10px;
    }
    
    .overlay p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    /* Menu Button */
    .menu-btn {
        font-size: 18px;
        padding: 10px 20px;
        border: none;
        background: #fcfafa;
        color: rgb(20, 20, 20);
        cursor: pointer;
        border-radius: 95px;
        transition: 0.3s;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    }
        
        
    
    
    .menu-btn:hover {
        background: #b8b2b2;
        
    }
    
    /* Sidebar Menu */
    .sidebar {
        height: 100%;
        width: 0;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #222;
        overflow-x: hidden;
        transition: 0.4s;
        padding-top: 60px;
    }
    
    .sidebar a {
        padding: 15px 25px;
        text-decoration: none;
        font-size: 22px;
        color: white;
        display: block;
        transition: 0.3s;
    }
    
    .sidebar a:hover {
        background: #575151;
    }
    
    .close-btn {
        position: absolute;
        top: 10px;
        right: 25px;
        font-size: 30px;
    }

