
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#0f172a;
  color:white;
  overflow-x:hidden;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}
body {
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle at top, #0d0d0d, #000);
  color: #e0e0e0;
}

.container {
  width: 90%;
  margin: auto;
}

/* Header */
.header {
  background: #005f99;
  padding: 15px 0;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .logo {
  font-size: 24px;
  font-weight: bold;
}

.nav {
  float: right;
}

.nav a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}


.menu-btn {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1') center/cover no-repeat;
  color: #fff;
}
.hero h1 {
  font-size: 3rem;
  text-shadow: 0 0 20px #0ff;
}
.hero h2{
  text-shadow: 0 0 20px #0ff;
  display: none;
}
.hero p {
  margin: 1rem 0;
  font-size: 1.6rem;
}
.btn {
  padding: 0.8rem 1.5rem;
  background: #0ff;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  background: #fff;
  color: #0ff;
  box-shadow: 0 0 20px #0ff;
}

/* Carousel */
.carousel {
  display: flex;
  overflow: hidden;
  margin: 2rem auto;
  width: 80%;
}
.logos {
  height: 40px;
}
.rhs{
  margin: -10px 0 -20px 0;
}
.slide {
  min-width: 100%;
  text-align: center;
  font-size: 1.2rem;
  padding: 2rem;
  background: rgba(0,255,255,01);
  border: 1px solid #0ff;
  border-radius: 10px;
}

/* Sections */
section {
  padding: 50px 0;
}

.about {
  background: #4ba1b1;
}

.notice-list {
  list-style: none;
}

.notice-list li {
  margin: 10px 0;
  padding: 10px;
  background: #e5e5e5;
  border-radius: 5px;
}

/* Contact Form */
.contact form {
  display: flex;
  flex-direction: column;
}

.contact input,
.contact textarea {
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Footer */
.footer {
  text-align: center;
  background: #222;
  color: #fff;
  padding: 15px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .nav a { display: none; }
  .menu-btn { display: block; }
}



.hero-content{
  background-color: #00000049;
  padding: 10px;
}