* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
}

.header img {
    height: 80px;
    object-fit: contain;
}

.header-center img.logo {
    height: 100px;
}

/* Navbar */
.navbar {
    background-color: #005baa;
    padding: 10px 0;
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #003f7d;
}

/* Banner */
* {
  box-sizing: border-box;
  margin: 0;
	padding: 0;}
 {
  font-family: Arial, sans-serif;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.slider {
  width: 2000px;
  height: 800px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.slides {
  width: 400%;
  height: 100%;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 100%;
  transition: 0.7s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Manual Navigation */
.navigation-manual {
  position: absolute;
  width: 100%;
  bottom: 10px;
  display: flex;
  justify-content: center;
}

.manual-btn {
  border: 2px solid white;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
  transition: background 0.3s;
}

.manual-btn:hover {
  background: white;
}

/* Slider Logic */
#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -100%;
}

#radio3:checked ~ .first {
  margin-left: -200%;
}

#radio4:checked ~ .first {
  margin-left: -300%;
}

/* Reasons Section */
.reasons {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.reasons h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #005baa;
}

.reasons h2 span {
    color: #d70000;
}

.reasons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.reason {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 200px;
    font-size: 16px;
    font-weight: bold;
    color: #005baa;
}

.register-button {
    display: inline-block;
    background-color: #d70000;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.register-button:hover {
    background-color: #a80000;
}

/* Training Systems Section */
.training-systems {
    padding: 40px 20px;
    text-align: center;
}

.training-systems h2 {
font-size: 28px;
    color: #005baa;
    margin-bottom: 20px;
}

.training-menu {
    margin-bottom: 20px;
}

.menu-button {
    background-color: #005baa;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-button:hover {
    background-color: #003f7d;
}

.training-description p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
}

/* Majors Section */
.majors {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.majors h2 {
    font-size: 28px;
    color: #005baa;
    margin-bottom: 20px;
}

.majors-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.major {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.major h3 {
    color: #d70000;
    margin-bottom: 10px;
}

.major ul {
    list-style: none;
}

.major li {
text-align: left;
    margin-bottom: 8px;
}

.new {
    color: #d70000;
    font-weight: bold;
    margin-left: 5px;
}

/* Admission Section */
.admission {
    padding: 40px 20px;
    text-align: center;
}

.admission h2 {
    font-size: 28px;
    color: #005baa;
    margin-bottom: 20px;
}

.admission ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 20px;
}

.admission li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Scholarship Section */
.scholarship {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.scholarship h2 {
    font-size: 28px;
    color: #005baa;
    margin-bottom: 10px;
}

.scholarship h3 {
    color: #d70000;
    margin-bottom: 20px;
}

.scholarship-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;

}

.scholarship-column {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: left;
}

.scholarship-column h4 {
    margin-bottom: 10px;
    color: #005baa;
}

.scholarship-column ul {
    list-style: disc inside;
}

.scholarship p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Testimonial Section */
.testimonial {
    padding: 40px 20px;
    text-align: center;
}

.testimonial h2 {
    font-size: 28px;
    color: #005baa;
    margin-bottom: 20px;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-content img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial-content strong {
    color: #d70000;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
}

.header img {
    height: 80px;
    object-fit: contain;
}

.header-center img.logo {
    height: 100px;
}

/* Navbar */
.navbar {
    background-color: #005baa;
    padding: 10px 0;
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #003f7d;
}

/* Banner */
* {
  box-sizing: border-box;
  margin: 0;
	padding: 0;}
 {
  font-family: Arial, sans-serif;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.slider {
  width: 2000px;
  height: 800px;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.slides {
  width: 400%;
  height: 100%;
  display: flex;
}

.slides input {
  display: none;
}

.slide {
  width: 100%;
  transition: 0.7s;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Manual Navigation */
.navigation-manual {
  position: absolute;
  width: 100%;
  bottom: 10px;
  display: flex;
  justify-content: center;
}

.manual-btn {
  border: 2px solid white;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
  transition: background 0.3s;
}

.manual-btn:hover {
  background: white;
}

/* Slider Logic */
#radio1:checked ~ .first {
  margin-left: 0;
}

#radio2:checked ~ .first {
  margin-left: -100%;
}

#radio3:checked ~ .first {
  margin-left: -200%;
}

#radio4:checked ~ .first {
  margin-left: -300%;
}

/* Reasons Section */
.reasons {
    padding: 40px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.reasons h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #005baa;
}

.reasons h2 span {
    color: #d70000;
}

.reasons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.reason {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 200px;
    font-size: 16px;
    font-weight: bold;
    color: #005baa;
}

.register-button {
    display: inline-block;
    background-color: #d70000;
    color: white;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.register-button:hover {
    background-color: #a80000;
}

/* Training Systems Section */
.training-systems {
    padding: 40px 20px;
    text-align: center;
}

.training-systems h2 {
font-size: 28px;
    color: #005baa;
    margin-bottom: 20px;
}

.training-menu {
    margin-bottom: 20px;
}

.menu-button {
    background-color: #005baa;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-button:hover {
    background-color: #003f7d;
}

.training-description p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
}

/* Majors Section */
.majors {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.majors h2 {
    font-size: 28px;
    color: #005baa;
    margin-bottom: 20px;
}

.majors-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.major {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.major h3 {
    color: #d70000;
    margin-bottom: 10px;
}

.major ul {
    list-style: none;
}

.major li {
text-align: left;
    margin-bottom: 8px;
}

.new {
    color: #d70000;
    font-weight: bold;
    margin-left: 5px;
}

/* Admission Section */
.admission {
    padding: 40px 20px;
    text-align: center;
}

.admission h2 {
    font-size: 28px;
    color: #005baa;
    margin-bottom: 20px;
}

.admission ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 20px;
}

.admission li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Scholarship Section */
.scholarship {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.scholarship h2 {
    font-size: 28px;
    color: #005baa;
    margin-bottom: 10px;
}

.scholarship h3 {
    color: #d70000;
    margin-bottom: 20px;
}

.scholarship-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;

}

.scholarship-column {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: left;
}

.scholarship-column h4 {
    margin-bottom: 10px;
    color: #005baa;
}

.scholarship-column ul {
    list-style: disc inside;
}

.scholarship p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Testimonial Section */
.testimonial {
    padding: 40px 20px;
    text-align: center;
}

.testimonial h2 {
    font-size: 28px;
    color: #005baa;
    margin-bottom: 20px;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-content img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial-content strong {
    color: #d70000;
}
