﻿body {
    background-color: black;
    background-image: url('BGDark.png');
    background-attachment: fixed;
    color: white; 
    font-family: 'Times New Roman', serif;
    margin: 0;
    padding: 0; 
    overflow-y: scroll;
}

p {
    max-width: 70%;
    margin: 20px auto;
    letter-spacing: 1px;
    font-size: 20px;
    line-height: 1.7;
    text-align: justify;
}


h1 {
    max-width: 70%;
    margin: 20px auto;
    letter-spacing: 1px;
    font-size: 55px;
    font-family: 'Ink Free';
    line-height: 1.7;
    text-align: center;
}

h2 {
    max-width: 70%;
    margin: 20px auto;
    letter-spacing: 1px;
    font-size: 40px;
    font-family: 'Times New Roman';
    line-height: 1.7;
    text-align: center;
}

.intro-para {
    display: block;
    max-width: 70%;
    margin: 20px auto;
    letter-spacing: 1px;
    font-size: 30px;
    line-height: 1.7;
    text-align: center;
}

.header_img {
    max-width: 70%; 
    height: auto;
    display: block; 
    margin: 0 auto; 
}

.banner_img {
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}


.split-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px; /* Adjust spacing as needed */
}

.text-side {
    width: 50%; /* Adjust the width of the text side */
}

    .text-side .styleLeft {
        margin: 10px, 10px, 10px, 10px;
    }

    /* Add styles for paragraphs with class "style2" */
    .text-side .styleRight {
        margin: auto -10px;
    }

    .text-side .styleFeature {
        margin: 10px, 10px, 10px, 10px;
        font-size: 45px;
        text-align: center;
    }

.image-side {
    width: 50%; /* Adjust the width of the image side */
}

.feat_img {
    max-width: 50%;
    height: auto;
    display: block;
}

.para_img_right {
    max-width: 70%;
    height: auto;
    display: block;
}

.para_img_left {
    max-width: 70%;
    height: auto;
    display: block;
    margin: auto auto auto 160px;
}

a{
    display: inline-block;
    text-align: center;
    color: aqua;
}



.image-link {
    display: flex;
    justify-content: center;
    /*
        width: 600px;
        height:187.5px;
        padding: 100px;
    */
    align-items: center;
}

.aspect-ratio-container {
    position: relative;
    width: 60%; /* Set the desired width of the container */
    padding-top: 20%; /* This maintains a 1:1 aspect ratio (height:width) */
}

.centered-element {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .centered-element img {
        max-width: 100%;
        max-height: 100%;
    }

.hidden {
    display: none;
}

.image-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
}

.image-container {
    overflow: hidden;
    margin: 10px;
    width: 15%;
    transition: all 0.3s ease-out;
}
    .image-container img {
        width: 100%;
        height: auto;
        object-fit: contain; /* Adjust based on your preference */
    }
    .image-container:hover {
        transform: scale(1.2);
        z-index: 1;
    }

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Darken background color */
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
}


nav {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    width: 100%;
    top: 0;
    transition: top 0.3s;
    z-index: 2;
}

#navbar.sticky {
    top: 0;
}

    nav a {
        float: left; 
        display: block; 
        color: white;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        text-align: center; 
        padding: 14px 30px; 
        text-decoration: none;
    }

        nav a:hover {
            background-color: #ddd;
            color: black;
        }
