/*-----------------------------------------------------------------Home Page---------------------------------------------------------------------*/

/*----------------------------------------------------------------Style for Body-----------------------------------------------------------------*/
body {
    margin: 0;
    padding: 0;
    background-color: white;
    overflow-x: hidden;
}

/*----------------------------------------------------------------Style for Header---------------------------------------------------------------*/
header {
    background-image: url('Header-photo.jpg');
    background-color: grey;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: rgb(255, 255, 255);
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: left;
    width: 100vw;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    z-index: 900;
    margin-bottom: 0px;
}
.photo-container {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}
/*-------------------------------Style for Navigation bar-------------------------------------*/
nav {
    position: fixed;
    display: inline-flex;
    width: 100%;
    height: fit-content;
    text-align: right;
    z-index: 999;
    margin: 0px;
    background-color: rgb(1, 0, 51);
}
nav ul {
    list-style-type: none;
    width: 100%;
    background-color: rgb(1, 0, 51);
    margin: 0px;
    padding: 2px; /* Changed from 02px to 2px */
    z-index: 999;
    text-align: right;
}
nav ul li {
    display: inline;
}
nav ul li a {
    display: inline-block;
    padding: 15px;
    height: cover;
    background-color: rgb(1, 0, 51);
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-family: sans-serif;
}
nav ul li a:hover {
    background-color: #555;
    color: white;
}
.login-nav {
    background-color: rgb(102, 201, 240); 
    color: rgb(1, 0, 71);
    font-weight: bold;
}
.login-nav:hover {
    background-color: rgb(0, 116, 8); 
    color: rgb(255, 255, 255);
    font-weight: bold;
}
/*-------------------------------Style for Heading of the Page-------------------------------------*/
.heading-background {
    /*margin-right: 200px;*/
    background-position: center;
    align-items: center;
    margin: 100px;
    background-color: rgba(128, 128, 128, 0.615);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif

}
.paragraph0 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: rgb(0, 0, 144);
}
.paragraph1 {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 80px;
    font-weight: bold;
    color: rgb(255, 255, 255, 1);
}
.paragraph2 {
    opacity: 1;
    margin-bottom: 0px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    font-size: 55px;
    font-weight: bold;
    color: rgb(251, 255, 0);
}
hr {
    border-color: white;
    border-width: 5px;
}
.paragraph3 {
    margin-top: 0px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: left;
    font-size: 45px;
    color: rgb(29, 0, 87);
}

.header-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding-left: 100px;
    padding-right: 100px;
	padding-bottom: 25px;
    gap: 10px;
    align-items: center;
    width: 100%;
}
.date-event {
    position: relative;
    display: inline-flex;
    width: 300px;
    height: 30px;
    align-items: center;
    margin-right: 50px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 22px;
    font-family: sans-serif;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.445);
    color: white;
    border: none;
    border-radius: 20px;
}
.location-event {
    position: relative;
    display: inline-flex;
    width: 300px;
    height: 30px;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 22px;
    font-family: sans-serif;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.445);
    border: none;
    border-radius: 20px;
}
.location-event:hover {
    background-color: rgba(0, 0, 0, 0.725);
}
.brochure-event {
    position: relative;
    display: inline-flex;
    width: 200px;
    height: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: 50px;
    align-items: center;
    font-size: 22px;
    font-family: sans-serif;
    font-weight: bold;
    background-color: rgb(255, 14, 86);
    border: none;
    border-radius: 20px;
}
.brochure-event:hover {
    background-color: rgb(159, 1, 43);
}

.director-photo {
    width: 100%;
    padding-left: 120px;
    padding-right: 120px;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}
.director-photo-container {
    width: 250px;
    height: 100px;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
.director-name {
    width: fit-content;
    height: fit-content;
    text-align: center;
    font-size: 25px;
}
/*-------------------------------------------------------------------Style for Main-------------------------------------------------------------------*/
main {
    width: 100%;
    color: black;
}
.container {
    display: flex; /* Use flexbox */
	background-image: url('tricolor-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
	width: 100%;
	height: 500px;
}
/*-------------------------------Style for Left Box-------------------------------------*/
.leftbox {
    width: 40%;
	height: fit-content;
    text-align: justify;
}
.leftbox-heading {
    margin-top: 30px;
    margin-left: 75px;
    margin-right: 75px;
    margin-bottom: 30px;
	width: 80%;
    font-size: 45px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.leftbox-content {
    margin-top: 30px;
    margin-left: 75px;
    margin-bottom: 30px;
	width: 80%;
    font-size: 15px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.Buttons {
    margin-left: 100px;
    display: inline-block;
}
.Buttons {
    width: 60%;
    height: 40px;
    background-color: rgb(1, 163, 1);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 20px;
    border: none;
    border-radius: 10px;
	color: white;
}
.Buttons:hover {
    background-color: rgb(2, 100, 2);
	color: white;
}

/*-------------------------------Style for Right Box-------------------------------------*/
.rightbox {
	float: right;
    width: 60%;
	height: fit-content;
}

.PSCL-lab {
    background-image: url('PSCL-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: auto;
    padding: 50px;
    color: white;
}
.PSCL-heading {
    font-size: 45px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.slider {
    width: 100%;
    height: 350px;
    padding-left: 50px;
    padding-right: 50px;
    display: grid;
}

.slide-tracker {
    width: calc(650px * 14);
    display: inline-flex;
    animation: scroll 60s linear infinite;
	&:hover {
		animation-play-state: paused;
	}
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 14));
    }
}

.slides {
    display: inline-flex;
    height: 320px;
    width: 650px;
    margin-left: 100px;
    margin-right: 100px;
    perspective: 100px;
}

.PSCL-img{
    width: 100%;
    transition: transform 1s;
}
.PSCL-img:hover {
    transform: translateZ(20px);
}

.PSCL-content {
    font-size: 20px;
    text-align: justify;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.PSCL-site {
    width: 170px;
    height: 35px;
    background-color: white;
    border-radius: 20px;
    color: rgb(4, 1, 47);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
}
.PSCL-site:hover {
    width: 170px;
    height: 35px;
    background-color: rgb(164, 0, 0);
    color: rgb(255, 255, 255);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
}
/*--------------------------------Style for the Sponcer box---------------------------------*/
.sponcer-content{
    background-image: linear-gradient(to right, rgb(73, 1, 151), rgb(0, 0, 117), rgb(0, 77, 0));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%; /* Optionally, you can add some padding to the content */
    padding-bottom: 20px; /* Optionally, you can center the content horizontally */
    font-size: 60px;
    font-family: Arial;
    font-weight: bold;
    color: azure;
}

/*-------------------------------------------------------Style for the Footer Section-----------------------------------------------*/
footer {
    background-size: 100%;
    padding-left: 200px;
    padding-right: 200px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: rgb(1, 0, 51);
    color: white;
}
.contacts {
    font-size: 60px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: left;
}