* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

/* Popup background */
    .popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

   /* Show popup */
    .popup.show {
      display: flex;
    }

    /* Popup box */
    .popup-content {
      background: white;
      padding: 15px;
      border-radius: 10px;
      position: relative;
      animation: zoomIn 0.3s ease;
    }

    /* Image size */
    .popup-content img {
      width: 100%;
      max-width: 400px;
      height: auto;
      display: block;
    }

    /* Close button */
    .close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 36px;
  cursor: pointer;
  font-weight: bold;
  color: black;
}
    /* Animation */
    @keyframes zoomIn {
      from {
        transform: scale(0.7);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Optional: mobile friendly */
     @media (max-width: 768px) {
      .popup-content img {
        max-width: 90%;
      }
    }

a {
    color: white;
    font-family: Garamond;
}
a:visited {
    color:white;
}
a:hover {
    color: #6F86FF;
}

h1{
    text-decoration: underline;
}

body {
    /* background-color: #623e2a; */
    background: linear-gradient(135deg, #1565c0, #00897b, #6a1b9a);
    /* transition:all 1s ease-in; */
}

/* body:hover{
    background-color: beige;
}

body:hover nav {
    background-color: beige;
} */

.off-screen-menu {
    background-color:black;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    text-align: center;
    font-size: 3rem;
    transition: .3s ease;
}
.off-screen-menu.active {
    right: 0;
    z-index: 3000;
}

nav {
    padding: 1rem;
    display: flex;
    background: linear-gradient(135deg, #1565c0, #00897b, #6a1b9a);
    /* transition: background-color 1s ease-in; */
}

img{
    height: 80px;
}

.ham-menu {
    height: 50px;
    width: 40px;
    margin-left: auto;
    position: relative;
}
.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: white;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
    z-index: 3000;
}
.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active span {
    background-color: white;
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

h1{
    font-size: 50px;
    text-align: center;
}

#schoolcampus{
    height: 500px;
    padding-left: 70px;
}



.page-content{
    transition: transform 0.3s ease;
}

.page-content.shift {
    transform: translateX(-330px);
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding-top: 30px;
  z-index: 1;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.container2 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.profile {
    height: 400px;
    border-radius: 10px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#Rg{
    font-size: 50px;
}

#para{
    font-size: 25px;
    text-align: center;
}


footer{
    text-align: center;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
}

small{
font-size: 25px;
font-family: Garamond;
}

#insta{
    color: black;
}

#facebook{
    color: black;
}