
*{
margin:0px;
padding:0px;
box-sizing:border-box;
}

html,body{
font-family:Robot, sans-serif, arial;
font-size:16px;
color:red;
}

.container{
width:1300px;
margin:0px auto;
}

.main-section{
width:100%;
float:left;
padding:70px 0px 70px 0px;
}

.heading{
font-size:28px;
font-weight:500;
border-bottom:1px solid #46b7cl;
margin-bottom:20px;
color:#46b7c1;
}

.header{
background:#46b7c1;
padding:6px;
}

.header b{
background:#fff;
color:red;
padding:10px;
font-size:20px;
}

.header marquee{
font-size:20px;
color:#fff;
width:80%;
}



.slider img{
width:100%;
}

.event{
width:32%;
margin-right:1%;
float:left;
background-color:#fff;
padding:10px;
}

.event .heading{
border-bottom:1px solid #46b7c1;
padding:5px;
color:#fff;
background:#46b7c1;
text-align:center;
}

.event ul li{
margin-bottom:20px;
width:100%
float:left;
list-style:none;
}

.event-date{

background-color:#46b7c1;
float:left;
text-align:center;
font-size:14px;
color:#fff;
padding:8px 12px;
margin-right:10px;
}



.award p{
width:100%;
float:left;
font-size:16px;
}

.award img{
width:100%;
}

.award b{
min-width:115px;
float:left;
margin-bottom:20px;
}

.award h3{
font-size:23px;
margin-bottom:20px;
text-align:center;
}


.toppers{
width:30.5%;
float:left;
margin-right:2.5%;
margin-top:5px;
}

.toppers-text{
background:#46b7c1;
padding:20px;
line-height:30px;
border-radius:10px;
font-size:18px;
text-align:center;
}

.toppers-detail{
float:left;
margin-top:10px;
}

.toppers-img{
float:left;
}


.toppers-img img{
border-radius:30%;
}

.toppers-name{
margin-left:10px;
float:left;
}

.toppers-name h5{
font-size:18px;
margin-top:8px;
}

.gallery img{
width:24%;
}

.footer{
background-color:#46b7c1;
padding:20px 0px;
width:100%;
float:left;
}

.footer-logo{
width:25%;
}

.footer-sect{
width:100%;
float:left;
text-align:center;
margin-top:20px;
}

.footer-sect a{
color:#fff;
margin-left:10px;
text-decoration:none;
}









<style>
/* ==========================
   GLOBAL STYLES
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
}
.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

/* ==========================
   NAVIGATION BAR (Slim)
========================== */
nav {
  background: #003366;
  text-align: center;
  padding: 6px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #ffcc00;
  transition: width 0.3s;
}
nav a:hover::after {
  width: 100%;
}
nav a:hover {
  color: #ffcc00;
}

nav a.btn {
  background: #ffcc00;
  color: #003366;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
nav a.btn:hover {
  background: white;
  color: #003366;
}

/* ==========================
   SLIDER
========================== */
.slider-container {
  position: relative;
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: 10px;
  margin: 8px auto;
}
.slide {
  display: none;
  width: 100%;
  height: 400px;
  position: relative;
}
.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.text-overlay {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 15px 25px;
  border-radius: 8px;
  text-align: center;
}
.text-overlay h2 {
  color: #ffcc00;
  font-size: 28px;
  margin-bottom: 5px;
}
.text-overlay p {
  font-size: 16px;
}
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 12px 18px;
  color: white;
  font-weight: bold;
  font-size: 22px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.3s;
  z-index: 10;
}
.next { right: 0; }
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}
.active, .dot:hover {
  background-color: #ffcc00;
}

/* ==========================
   ADMISSION SLIDER (New Students)
========================== */
.admission-slider {
  overflow: hidden;
  background-color: #e3f2fd;
  padding: 15px 0;
  border-radius: 10px;
  position: relative;
}
.admission-track {
  display: flex;
  gap: 20px;
  animation: slide-left 25s linear infinite;
}
.admission-slider:hover .admission-track {
  animation-play-state: paused;
}
.admission-card {
  background: white;
  border-radius: 10px;
  padding: 10px;
  min-width: 160px;
  text-align: center;
  color: #004aad;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}
.admission-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.admission-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}
.admission-card h6 {
  margin: 5px 0 2px 0;
  font-size: 14px;
}
.admission-card p {
  font-size: 12px;
  margin: 0;
}
@keyframes slide-left {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ==========================
   SECTIONS (General)
========================== */
.main-section {
  padding: 40px 0;
}
.heading {
  text-align: center;
  color: #003366;
  font-weight: 700;
  margin-bottom: 15px;
}
.event {
  flex: 1;
  margin: 10px;
}
.event ul {
  list-style: none;
}

/* ==========================
   FOOTER
========================== */
.footer {
  background: #003366;
  color: white;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
.footer-sect {
  flex: 1 1 250px;
  padding: 10px;
}
.footer-sect a {
  color: white;
  display: block;
  margin: 5px 0;
  font-size: 14px;
  text-decoration: none;
}
.footer-sect img {
  margin: 5px;
  border-radius: 6px;
}

/* ==========================
   RESPONSIVE DESIGN
========================== */
@media (max-width: 992px) {
  nav a {
    margin: 0 8px;
    font-size: 13px;
  }
  .text-overlay h2 { font-size: 22px; }
  .text-overlay p { font-size: 14px; }
}

@media (max-width: 768px) {
  .logo {
    width: 100%;
    height: auto;
  }
  .slide, .slide img {
    height: 250px;
  }
  .text-overlay {
    bottom: 25px;
    padding: 10px 15px;
  }
  .text-overlay h2 {
    font-size: 18px;
  }
  .text-overlay p {
    font-size: 13px;
  }
  .admission-card {
    min-width: 120px;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
  nav {
    padding: 8px 4px;
  }
  nav a {
    display: inline-block;
    margin: 4px 6px;
  }
}

@media (max-width: 480px) {
  .text-overlay h2 {
    font-size: 16px;
  }
  .text-overlay p {
    font-size: 12px;
  }
  .admission-card {
    min-width: 100px;
    padding: 8px;
  }
  .admission-card img {
    height: 100px;
  }
  .footer-sect a {
    font-size: 13px;
  }
}
</style>


