* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Times New Roman", Times, serif;
  overflow-x: hidden;
}

/* Overlay background */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* Popup box */
.popup-box {
  background: #fff;
  padding: 20px;
  width: 500px;
  max-width: 90%;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-align: center;
  height: auto;
}

.popup-box img {
  width: 90%;
  border-radius: 10px;
}

/* Close button */
.popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 40px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}

.popup-box button {
  padding: 10px 20px;
  background: #005aa9;
  color: white;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin: 5px auto 10px auto;
  font-size: 1rem;
}

.popup-box p {
  font-size: 1.2rem;
  margin-top: 20px;
}

.popup-close:hover {
  color: red;
}

#home {
  position: relative;
  height: 540px;
  width: 100%;
  background-color: #f1f1f1;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
  padding: 10px 80px;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.808);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
}

nav img {
  height: 150px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  transition: all 1s ease;
}

.nav-links li {
  list-style: none;
  border: none;
  padding: 5px;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.nav-links li::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #005aa9;
  position: absolute;
  left: 0;
  bottom: -100%;
  border-radius: 25px;
}

.nav-links li:hover::before {
  bottom: 0;
  border-radius: 0;
  transition: 0.8s;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  position: relative;
}

.nav-links li a:hover {
  color: white;
}

.nav-links i {
  display: none;
}

.hamburger {
  cursor: pointer;
  font-size: 1.8rem;
  color: #005aa9;
  display: none;
}

.social-tab {
  position: fixed; /* makes it sticky */
  top: 50%; /* move to middle */
  right: 0; /* stick to right */
  transform: translateY(-50%); /* exact vertical centering */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  border: 2px solid #005aa9;
  padding: 10px;
  border-radius: 10px 0 0 10px;
}

.social-tab a {
  text-decoration: none;
  color: white;
  background: #333;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 20px;
  transition: 0.3s;
}

.social-tab a:hover {
  transform: scale(1.2);
}

/* Brand colors */
.social-tab .instagram {
  background: #e1306c;
}
.social-tab .facebook {
  background: #1877f2;
}
.social-tab .youtube {
  background: #ff0000;
}
.social-tab .whatsapp {
  background: #25d366;
}

#home .swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  position: relative;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.swiper-slide h2 {
  position: absolute;
  font-size: 3.4vw;
  color: black;
  z-index: 999;
  bottom: 5%;
  right: 10%;
  background: white;
  border-radius: 10px;
  padding: 5px;
}

.education {
  position: absolute;
  font-size: 3.4vw;
  color: black;
  z-index: 999;
  bottom: 5%;
  right: 30%;
  border-radius: 10px;
  padding: 5px;
  font-size: 2.2vw;
  background: white;
}

.gita {
  position: absolute;
  color: black;
  z-index: 999;
  bottom: 5%;
  right: 10%;
  font-size: 2.2vw;
  background: white;
  border-radius: 10px;
  padding: 5px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  border: 2px solid white;
}

.line {
  background: #005aa9;
  padding: 5px;
  color: white;
  display: flex;
  white-space: nowrap;
  gap: 120px;
}

.line-content {
  animation: style 10s infinite linear;
}

@keyframes style {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-200%);
  }
}

/* .news-section {
  position: relative;
  padding: 0 80px;
}

.news-section h1 {
  text-align: center;
  margin-top: 150px;
  margin-bottom: 20px;
  font-size: 3.4rem;
}

.news-section-details {
  display: block;
  margin-top: 30px;
}

.news-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.news-section img {
  width: 400px;
  height: 340px;
  border: 1px solid #005aa9;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}



.news-section p {
  text-align: center;
  font-size: 1.3rem;
  border: 7px solid #005aa9;
  padding: 40px 5px;
  border-radius: 10px;
  height: auto;
}

.news-section span {
  color: #005aa9;
}

.swiper .mySwiper2 {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.mySwiper2 .swiper-slide {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 1px solid #005aa9;
  border-radius: 10px;
  margin-bottom: 50px;
}

.mySwiper2 .swiper-slide img,
.mySwiper2 .swiper-slide video {
  width: 400px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin-bottom: 15px;
}
*/

/* ===== News Section ===== */
.news-section {
  width: 100%;
  padding: 60px 5%;
  background: #f8f9fc;
}

.news-section h1 {
  text-align: center;
  margin-top: 150px;
  margin-bottom: 20px;
  font-size: 3.4rem;
}

.news-section video {
  width: 450px;
  height: 450px;
  border: 1px solid #005aa9;
  margin-bottom: 10px;
  border-radius: 10px;
}

/* ===== Swiper Container ===== */
.mySwiper2 {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 50px;
}

/* ===== Swiper Slides ===== */
.mySwiper2 .swiper-slide {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.mySwiper2 .swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ===== Slide Image ===== */
.mySwiper2 .swiper-slide img {
  width: 50%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* ===== Slide Text ===== */
.mySwiper2 .swiper-slide p {
  padding: 20px 22px;
  font-size: 1.5vw;
  line-height: 1.3;
  color: #334155;
  text-align: justify;
}

/* ===== Pagination ===== */
.swiper-pagination-2 {
  bottom: -5px !important;
}

.swiper-pagination-2 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-2 .swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 10px;
  background: #2563eb;
}

.page2 {
  position: relative;
  padding: 0 80px;
}

.page2 h1 {
  text-align: center;
  margin-top: 30px;
  font-size: 3.4rem;
}

.paragraph-section {
  display: flex;
  margin-top: 30px;
  width: 100%;
}

.paragraph-section p {
  padding: 30px;
  border-radius: 10px;
  font-size: 26px;
  text-align: center;
  border: 6px solid #005aa9;
  margin: 20px;
  width: 50%;
}

.paragraph-section1 {
  width: 100%;
  display: flex;
  justify-content: end;
}

.paragraph-section1 p {
  padding: 30px;
  border-radius: 10px;
  font-size: 26px;
  text-align: center;
  border: 6px solid #005aa9;
  margin: 20px;
  width: 50%;
}

.special {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.special-content:nth-child(2) {
  background: orangered;
}

.special-content:nth-child(4) {
  background: orangered;
}

.special-content:nth-child(6) {
  background: orangered;
}

.special-content {
  border: 3px solid black;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #005aa9;
  color: white;
  text-align: center;
  font-size: 1.4rem;
}

.page3 {
  position: relative;
  padding: 0 80px;
}

.page3 h1 {
  text-align: center;
  margin-top: 50px;
  font-size: 3.4rem;
  position: relative;
}

.boxes {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  background: #005aa9;
  border-radius: 25px;
  margin-top: 50px;
}

.box-content {
  flex-grow: 1;
  flex-basis: 300px;
  border: 1px solid white;
  padding: 5px;
  border-radius: 10px;
  text-align: center;
  margin: 10px;
}

.box-content img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.box-content-details {
  padding: 10px;
  background: white;
  color: black;
  border-radius: 0 0 8px 8px;
}

.box-content-details h4 {
  font-size: 1.5rem;
  background: #ffd434;
  border-radius: 4px;
  margin-bottom: 10px;
}

.box-content-details p {
  font-size: 1.1rem;
}

.page4 {
  position: relative;
  padding: 0 80px;
}

.page4 h1 {
  font-size: 3.4rem;
  text-align: center;
  margin-top: 50px;
}

.achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin: 50px auto;
  border-radius: 10px;
}

.achievements-content {
  flex-grow: 1;
  flex-basis: 260px;
  border: 1px solid #005aa9;
  padding: 10px;
  border-radius: 8px;
}

.achievements-content img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border: 1px solid #005aa9;
  border-radius: 10px;
}

.achievements-content p {
  text-align: center;
  margin-top: 10px;
  font-size: 1.1rem;
}

.another-div {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 5px auto;
  border-radius: 10px;
}

.another-div p {
  padding: 10px;
  font-size: 22px;
}

.another-div img {
  height: 650px;
}

.page5 {
  position: relative;
  padding: 0 80px;
}

.page5 h2 {
  font-size: 4.4rem;
  text-align: center;
  margin-top: 50px;
}

.event {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  border-radius: 10px;
}

.event-content {
  flex-grow: 1;
  flex-basis: 300px;
  padding: 5px;
  border-radius: 10px;
  margin: 25px;
}

.event-content img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.event-content video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.event-content {
  border: 1px solid #005aa9;
  padding: 10px;
  border-radius: 8px;
}

.event-content h1 {
  font-size: 1.3rem;
  background: #005aa9;
  color: white;
  text-align: center;
  margin: 20px auto;
}

.event-content p {
  font-size: 1rem;
  text-align: center;
  margin-top: 15px;
}

.page6 {
  position: relative;
  padding: 0 80px;
  border-bottom: 5px solid #005aa9;
}

.page6 h1 {
  font-size: 3.4rem;
  text-align: center;
  margin-top: 90px;
}

.activites-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  margin: 40px auto;
}

.activites-container h1 {
  width: 100%;
  text-align: center;
  font-size: 3.4rem;
  margin-bottom: 30px;
}

.activites {
  flex-basis: 350px;
  border: 1px solid #005aa9;
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s ease;
}

.activites:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 90, 169, 0.2);
}

.activites video {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 15px;
}

.activites h3 {
  text-align: center;
  color: #005aa9;
  font-size: 1.2rem;
  padding: 10px;
  background: #f1f1f1;
  border-radius: 5px;
}
.content h4 {
  text-align: left;
  margin-bottom: 30px;
  font-size: 1.4rem;
  color: #005aa9;
}

.content {
  gap: 70px;
  margin-top: 40px;
  justify-content: center;
}

.content span {
  color: #005aa9;
  font-size: 1.2rem;
  font-weight: 500;
}

.content h3 {
  text-align: center;
  margin-top: 30px;
}

.content h2 {
  text-align: center;
  margin-bottom: 30px;
}

.content p {
  text-align: center;
  font-size: 1.2rem;
  line-height: 2;
  font-weight: 500;
}

.page7 {
  position: relative;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page7 h1 {
  font-size: 3.4rem;
  text-align: center;
  margin-top: 50px;
}

form {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px;
  border: 2px solid #005aa9;
  border-radius: 10px;
  background: white;
}

form input {
  padding: 10px;
  width: 390px;
  border: none;
  border: 1px solid #005aa9;
}

form input:focus {
  outline: 1px solid #005aa9;
}

form textarea {
  padding: 10px;
  width: 390px;
  border: 1px solid #005aa9;
}

form textarea:focus {
  outline: 1px solid #005aa9;
}

form button {
  padding: 10px;
  width: 50%;
  background: #005aa9;
  color: white;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin: 20px auto 0px auto;
  font-size: 1rem;
}

footer {
  position: relative;
  background: #005aa9;
  margin-top: 40px;
}

.main-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 20px 80px;
}

.list {
  display: block;
}

.list h4 {
  color: #005aa9;
  font-size: 1.2rem;
  background: #ffd434;
  padding: 10px;
  border-radius: 10px;
}

.list ul {
  list-style: none;
}

.list ul li {
  margin: 10px;
  color: white;
  font-size: 20px;
}

.list ul li:nth-child(1) {
  color: #f1f1f1cb;
}

.list ul li:nth-child(4) {
  color: #f1f1f1cb;
}

.list ul li:nth-child(7) {
  color: #f1f1f1cb;
}

#list-type ul li:nth-child(3) {
  margin: 30px;
}

#list-type ul li:nth-child(6) {
  margin: 30px;
}

.list ul li a {
  text-decoration: none;
  color: white;
  font-size: 20px;
}

.social {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  margin-top: 20px;
}

.social a i {
  font-size: 1.5rem;
  cursor: pointer;
  background: #f1f1f1cb;
  padding: 10px;
  border-radius: 10px;
}

.social a:nth-child(1) {
  color: #ee2a7b;
}

.social a:nth-child(2) {
  color: #1877f2;
}

.social a:nth-child(3) {
  color: #ff0000;
}

.list iframe {
  border-radius: 10px;
  margin-top: 20px;
  width: 100%;
  height: 220px;
}

.copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #f1f1f1b7;
  padding: 20px 80px;
  width: 100%;
  border-top: 1px solid #fff;
}

.copyright a {
  text-decoration: none;
  color: #f1f1f1b7;
}

.container {
  position: relative;
  padding: 0 80px;
}

.container h1 {
  text-align: center;
  font-size: 2.4rem;
  margin-top: 50px;
}

.process-content {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9ce34;
  border-radius: 10px;
  margin-top: 50px;
}

.process {
  width: 60%;
}

.process ol {
  margin: 30px;
  font-size: 1.4rem;
}

.form {
  margin-bottom: 30px;
}

.process ol li {
  list-style-type: upper-roman;
}

.process ul {
  margin: 40px;
  font-size: 1.2rem;
}

.process ul li {
  list-style: lower-alpha;
}

.main-container {
  position: relative;
  padding: 0px 80px;
}

.main-container h1 {
  margin-top: 50px;
  font-size: 2.4rem;
}

.video-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px 0;
  margin: 30px 0;
}

.video-section video {
  width: 500px;
  height: 330px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 90, 169, 0.2);
  border: 2px solid #005aa9;
  transition: transform 0.3s ease;
}

.video-section img {
  width: 320px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 90, 169, 0.2);
  border: 2px solid #005aa9;
  transition: transform 0.3s ease;
}

.video-section video:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 90, 169, 0.3);
}

@media (max-width: 600px) {
  .video-section video {
    width: 100%;
    height: 250px;
  }

  .popup-box {
    height: auto;
  }
}

.unique {
  border: 2px solid #005aa9;
  margin-top: 40px;
  border-radius: 10px;
}

.unique h3 {
  font-size: 2.4rem;
  margin-top: 20px;
  text-align: center;
}

.display {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

.unique-content {
  flex-grow: 1;
  flex-basis: 300px;
  padding: 5px;
  border-radius: 10px;
  margin: 25px;
  border: 1px solid white;
  background: #005aa9;
  color: white;
  padding: 20px;
}

.unique-content h6 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: #f9ce34;
  border-radius: 10px;
  color: black;
}

.unique-content p {
  font-size: 1.2rem;
}

.gallery-section {
  position: relative;
  padding: 0 80px;
}

.gallery-section h1 {
  text-align: center;
  font-size: 4.4rem;
  margin-top: 50px;
}

.images {
  border: 1px solid #005aa9;
  padding: 10px;
  border-radius: 10px;
  margin-top: 30px;
}

.images h4 {
  font-size: 2.3rem;
}

.images-part {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}

.images-section {
  flex-grow: 1;
  flex-basis: 250px;
}

.images-section img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border: 1px solid #005aa9;
  border-radius: 10px;
}

.images-section video {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border: 1px solid #005aa9;
  border-radius: 10px;
}

.about-container {
  padding: 0 80px;
}

.about-title {
  text-align: center;
  font-size: 4.4rem;
  margin-top: 40px;
}

.about-container p {
  margin-top: 30px;
  line-height: 2;
  text-align: center;
  font-size: 1.3rem;
  background: #005aa9;
  padding: 40px 20px;
  border-radius: 10px;
  color: #f1f1f1;
}

.about-container span {
  color: #f9ce34;
  font-weight: 700;
}

.class {
  padding: 0 80px;
}

.main-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  gap: 30px;
}

.section {
  flex-basis: 300px;
  flex-grow: 1;
  border: 1px solid #005aa9;
  border-radius: 10px;
  padding: 20px;
}

.section img {
  width: 100%;
  border-radius: 10px;
}

.section h1 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}

.form-section {
  padding: 40px 80px;
}

.form-section h4 {
  text-align: center;
  font-size: 2.3rem;
}

.admit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  border-radius: 10px;
  background: white;
}

.main-div {
  width: 100%;
  height: 100%;
}

.map-iframe {
  border: 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .mySwiper2 .swiper-slide img video {
    height: 400px;
  }

  .news-section video {
    height: 400px;
  }
}

@media (max-width: 1001px) {
  .nav-links {
    display: block;
    position: absolute;
    right: -100%;
    top: 0;
    padding: 50px 20px;
    background: #005aa9;
    height: 100vh;
    width: 100vw;
    border-radius: 80%;
    margin: 0;
  }

  .nav-links li {
    display: block;
    margin: 20px;
    border-radius: 0;
    border-bottom: 1px solid white;
  }

  .nav-links li a {
    color: white;
    font-size: 1.5rem;
    display: flex;
    width: 100%;
  }

  .nav-links i {
    display: block;
    font-size: 1.8rem;
    color: white;
    position: absolute;
    top: 30px;
    right: 50px;
    cursor: pointer;
  }

  .hamburger {
    display: block;
  }

  .news-section video {
    width: 400px;
    height: 200px;
    border: 1px solid #005aa9;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .news-section {
    padding: 40px 20px;
  }

  .news-section h1 {
    font-size: 28px;
  }

  .mySwiper2 .swiper-slide img {
    height: 300px;
  }

  .mySwiper2 .swiper-slide p {
    font-size: 14px;
    padding: 16px;
  }
}

@media (max-width: 700px) {
  .news-section {
    position: relative;
    padding: 0 10px;
  }

  .news-section h1 {
    text-align: center;
    margin-top: 150px;
    font-size: 3.4rem;
  }

  .news-section-details {
    display: block;
    margin-top: 30px;
  }

  .news-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
  }

  .news-section img {
    width: 400px;
    height: 300px;
    border: 1px solid #005aa9;
    margin-bottom: 10px;
  }

  .news-section video {
    width: 400px;
    height: 200px;
    border: 1px solid #005aa9;
    margin-bottom: 10px;
  }

  .news-section p {
    text-align: center;
    font-size: 1.3rem;
    border: 7px solid #005aa9;
    padding: 40px 5px;
    border-radius: 10px;
  }

  .news-section span {
    color: #005aa9;
  }

  .mySwiper2 .swiper-slide img,
  .mySwiper2 .swiper-slide video {
    width: 300px;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
  }
}

@media (max-width: 537px) {
  nav {
    padding: 10px 20px;
  }

  .page2 {
    padding: 10px 20px;
  }

  .page3 {
    padding: 10px 20px;
  }

  .page4 {
    padding: 10px 20px;
  }

  .page6 {
    padding: 10px 20px;
  }

  .page7 {
    padding: 10px 20px;
  }

  .about-container {
    padding: 0 20px;
  }

  .class {
    padding: 0 20px;
  }

  .about-title {
    font-size: 3.4rem;
  }

  .about-container p {
    font-size: 1rem;
  }

  .content p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
  }

  .paragraph-section p {
    width: 100%;
  }

  .paragraph-section1 p {
    width: 100%;
  }

  .boxes {
    padding: 10px;
  }

  .copyright {
    padding: 20px 20px;
  }

  .main-container {
    padding: 0 20px;
  }

  .main-container h1 {
    font-size: 2.3rem;
    text-align: center;
  }

  .container {
    padding: 0 30px;
  }

  .process {
    width: 90%;
  }

  .form-section {
    padding: 40px 20px;
  }

  .form-section h4 {
    font-size: 1.8rem;
  }

  .main-container h1 {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 10px;
  }

  .unique h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    text-align: center;
  }

  .paragraph-section p {
    padding: 10px;
  }

  .paragraph-section1 p {
    padding: 10px;
  }

  .page3 h1 {
    text-align: center;
    margin-top: 0px;
    font-size: 2rem;
  }

  .gallery-section {
    position: relative;
    padding: 0 20px;
  }

  .main-footer {
    padding: 20px 20px;
  }

  .content p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 100;
  }

  .content span {
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 100;
  }

  .page7 h1 {
    font-size: 2rem;
  }

  .page5 h2 {
    margin-top: 30px;
  }

  .gallery-section h1 {
    font-size: 2.5rem;
    margin-top: 10px;
  }

  .event {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    border-radius: 10px;
  }

  .page5 {
    padding: 0px 10px;
  }

  .achievements-content {
    flex-grow: 1;
    flex-basis: 180px;
    border: 1px solid #005aa9;
    padding: 10px;
    border-radius: 8px;
  }

  .achievements-content img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border: 1px solid #005aa9;
    border-radius: 10px;
  }

  .mySwiper2 .swiper-slide {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    border: none;
    border-radius: 10px;
  }

  .mySwiper2 .swiper-slide img,
  .mySwiper2 .swiper-slide video {
    width: 300px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 20px auto;
    border-radius: 10px;
  }
}

@media (max-width: 500px) {
  form {
    padding: 20px;
  }

  nav img {
    height: 100px;
    cursor: pointer;
  }

  form input {
    padding: 10px;
    width: 300px;
    border: none;
    border-bottom: 1px solid #005aa9;
  }

  form textarea {
    padding: 10px;
    width: 300px;
    border: 1px solid #005aa9;
  }

  .page2 h1 {
    text-align: center;
    margin-top: 0px;
    font-size: 2.5rem;
  }

  .page3 h1 {
    text-align: center;
    margin-top: 10px;
    font-size: 2.5rem;
  }

  .page4 h1 {
    text-align: center;
    margin-top: 30px;
    font-size: 2.5rem;
  }

  .page5 h2 {
    text-align: center;
    margin-top: 10px;
    font-size: 2.5rem;
  }

  .page6 h1 {
    text-align: center;
    margin-top: 0px;
    font-size: 2.5rem;
  }

  .about-title {
    text-align: center;
    font-size: 2.5rem;
    margin-top: 10px;
  }

  .page7 h1 {
    text-align: center;
    margin-top: 10px;
    font-size: 2.5rem;
  }

  .special {
    padding: 20px;
  }

  .special-content {
    height: 100px;
    width: 100px;
    font-size: 0.9rem;
  }

  .content h4 {
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 1.1rem;
  }

  .content p {
    text-align: left;
    font-weight: 100;
  }

  .news-section {
    position: relative;
    padding: 0 20px;
  }

  .news-section h1 {
    text-align: center;
    margin-top: 130px;
    font-size: 2.5rem;
  }

  .news-section-details {
    display: block;
    margin-top: 30px;
  }

  .news-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
  }

  .news-section img {
    width: 300px;
    height: 300px;
    border: 1px solid #005aa9;
    margin-bottom: 10px;
  }

  .news-section video {
    width: 300px;
    height: 200px;
    border: 1px solid #005aa9;
    margin-bottom: 10px;
  }

  .news-section p {
    text-align: center;
    font-size: 1rem;
    border: none;
    padding: 10px 5px;
    border-radius: 10px;
  }

  .news-section span {
    color: #005aa9;
  }

  .paragraph-section {
    margin: 0;
  }

  .paragraph-section p {
    border: 1px solid #005aa9;
    font-size: 1rem;
  }

  .paragraph-section1 p {
    border: 1px solid #005aa9;
    font-size: 1rem;
  }

  .boxes {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    background: #005aa9;
    border-radius: 25px;
    margin-top: 20px;
  }

  .box-content {
    flex-grow: 1;
    flex-basis: 200px;
    border: 1px solid white;
    padding: 5px;
    border-radius: 10px;
    text-align: center;
    margin: 10px;
  }

  .box-content img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }

  .box-content-details h4 {
    font-size: 1.1rem;
    background: #ffd434;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .box-content-details p {
    font-size: 0.9rem;
  }

  .achievements-content p {
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
  }

  .unique-content {
    padding: 10px;
    margin: 10px;
  }

  .unique-content h6 {
    font-size: 1.2rem;
  }

  .process ol,
  ul,
  li {
    margin: 10px;
    font-size: 1rem;
  }

  #home .swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  #home {
    position: relative;
    height: 250px;
    width: 100%;
    background-color: #f1f1f1;
  }
}

@media (max-width: 480px) {
  .mySwiper2 .swiper-slide img {
    height: 380px;
    width: 100%;
  }
}

@media (max-width: 340px) {
  form {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border: 2px solid #005aa9;
    border-radius: 10px;
    background: white;
  }

  form input {
    padding: 10px;
    width: 250px;
    border: none;
    border-bottom: 1px solid #005aa9;
  }
}
