body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
}

.header {
    position: relative;
    width: 100%;
    height: 50vh;
    background-image: url('header.jpg'); /* Replace with your header image */
    background-size: cover;
    background-position: center;
}

.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
}

.content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 25vh;
    position: relative;
    top: -25vh;
    margin-bottom: -30vh;
    background: linear-gradient(180deg, transparent, white 25vh);
}

.content img {
    height: 40vh;
    width: auto;
    margin: 5vh 20px;
}

.text {
    max-width: 400px;
    text-align: justify;
}
.text h2{
    text-align: center;
}
.text h4{
    text-align: right;
}
q{
    font-style: italic;
}

.gallery {
    padding: 50px;
}

.gallery h1{
	padding: 10px
}

.slider {
    display: flex;
    justify-content: center;
    gap: 2vw;
}

.slider img {
    width: 30vw;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.slider img:hover {
    transform: scale(1.1);
}


/* Footer Styling*/
.footer{
    background: black;
    color: white;
    margin-top: 70px;
    padding: 50px;
}
.footer a{
    color: white;
    text-decoration: none;
    font-size: small;
    display: inline-block;
    border-bottom: 1px solid #aaa;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    width: 80%;
	max-width: 1400px;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}