body {
	flex-direction: column; /* Mobile default */
	margin: 0;
	font-family: 'Garamond', serif;
	background-color: #ffffe6;
	align-items: center;
	background: url('bgolac1.png');/* back ground of the website*/
	background-size:cover;

	}

.top-banner {
	width: 100%;
	height: 150px;
	background: linear-gradient( /* to make the banner blur colors */
	to right,
	#ffffe6 0%,
	#ffd966 20%,
	#ffffe6 40%,
	#ffd966 60%,
	#002366 80%
	);
	clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);/* to make the banner a pointy */
	margin: 0;
	}

.bottom-banner {
	width: 100%;
	height: 100px;
	background: linear-gradient(to right, #ffd966 0%, #ffffe6 50%, #002366 100%);/* to make the banner blur colors */
	clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
	margin-top: 2rem;  /* ensures space between image/program section and the banner */
	}


.banner-table {
	width: 90%;
	height: 50px;
	background: linear-gradient(
	to right,
	#ffd966 20%,
	#ffd966 60%,
	#002366 80%
	);
	clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
	  
	display: flex;
	justify-content: center; /* Center the links horizontally */
	align-items: center;     /* Center them vertically */
	gap: 10px;               /* Optional: spacing between links */
	font-size: 20px;
	}
 /*-------------------------------------------------------------*/
 /* Make the page link highlight when it is active */
.banner-table a.active {
	background-color: #ffcc00;
	color: #002366;
	overflow: visible;/* allow the banner table to visible */
	}
 /*-------------------------------------------------------------*/

.logo { /* logo size */
	height: 150px;
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: block;
	}

.header { /* olac text setting inside the banner top  */
	font-size: 20px;
	color: #0047ab;
	display: flex;
	align-items: center;
	padding: 20px 40px;
	}

.main {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 40px;
	
	  
	}

.banner-table a {
text-decoration: none;
color: #ffffff; /* white text */
font-weight: bold;
padding: 8px 12px;
background-color: #004080; /* dark blue background */
border-radius: 5px;
transition: 0.3s;
margin-right: 10px;
overflow: visible;/* allow the banner table to visible */
}

.banner-table a:hover {
	background-color: #0066cc;
	color: #ffcc00; /* gold text on hover */
	overflow: visible;/* allow the banner table to visible */
	}

.left {
	  flex: 1;
	  min-width: 300px;
	}

.left{ /* back ground for welcom olac body*/
	align-content: center;
	width: 100%;
	height: 625px;
	background-color: #fff6d5;
	padding-top: 40px;

	}

.left span {/* welcome text size */
	font-size: 60px;
	color: #ffd966;
	font-weight: bold;
	}

.left h1 {
	font-size: 100px;
	color: #002366;
	margin: 0;
	font-weight: bold;
	line-height: 1.2;
	}

.right {/* to make the slideshow align on the right side  */
	flex: 1;
	min-width: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	}

/* Slideshow Styles */
.slideshow {
	width: 100%;
	max-width: 2048px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 10px;
	background-color: #f0f0f0;
	position: relative;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	}

.slideshow img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 1s ease-in-out;
	max-width: 2048px;
	max-height: 1536px;
	}

/* Fade animation */
.fade-in {
	animation: fadeEffect 1s ease-in-out;
	}
/*------------------------------------*/

/* Fade animation changing page */
body {
	opacity: 1;
	transition: opacity 0.5s ease;
	}

body.fade-out {
	opacity: 0;
	}
/*-----------------------------------  */

/*Admission.html css design */
.form {
  max-width: 700px;
  margin: 2rem auto;
  padding: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #ccc;
}

* {
  box-sizing: border-box; /* to make not overflow*/
}


    h2 {
      text-align: center;
      color: #002366;
    }

    label {
      display: block;
      margin-top: 15px;
      font-weight: bold;
    }

    input, select, textarea {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-family: 'Garamond', serif;
      font-size: 16px;
    }

    button {
      margin-top: 20px;
      padding: 10px 20px;
      background-color: #004080;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 16px;
      cursor: pointer;
    }

    button:hover {
      background-color: #0066cc;
    }

    input[type="file"] {
      padding: 3px;
    }

    input[type="checkbox"] {
      width: auto;
      margin-right: 10px;
    }

/*---------------Admission---------------------*/

.old_student{/* another form for new student and tranfer student*/
	margin: 20px;
	font-style:garamond;
	text-decoration:none;
	color:black;
	
}
.old_student:hover {
	color: blue;
	text-decoration: underline;

}
/*------------------------------------------------------------*/













@keyframes fadeEffect {
from { opacity: 0; }
to { opacity: 1; }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .main {
	flex-direction: column;
	padding: 20px;
	}

.left h1 {
	font-size: 36px;
	}

.left span {
	font-size: 32px;
	}

.slideshow {
	max-width: 100%;
	aspect-ratio: 4 / 3;
	}

.slideshow img {
	object-fit: contain;
	}
	}
