* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  /* background-color: rgb(19, 18, 18); */
  background-color: white;
  font-family: "Lato", Arial, Helvetica, sans-serif;
}

header {
  background-color: #fff;
}

i {
  cursor: pointer;
}

button {
  font-weight: bold;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: "Roboto", sans-serif;
}

.contactUs-headerDiv {
  background-color: rgb(19, 18, 18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  gap: 0.5rem;
  color: white;
}

.contactUs-headerDiv i {
  color: rgb(5, 156, 5);
  margin: 5px;
  font-size: 0.9rem;
}

.header-icons i {
  color: white;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  margin: 8px;
}

.header-icons i:hover {
  color: rgb(5, 156, 5);
}

.logo-and-menu-and-items {
  background-color: #fff;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo-and-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.logo-and-menu .logoDiv {
  flex: 1;
}

.logoDiv {
  overflow: hidden;
  /* background-color: red; */
}

.logoDiv img {
  width: 200px;
  height: 60px;
}

.menu {
  font-size: 1.1rem;
  background-color: rgb(19, 18, 18);
  padding: 5px 10px;
  border-radius: 3px;
  color: white;
  transition: all 0.3s ease;
}

.menu:hover {
  background-color: rgb(5, 156, 5);
}

.menu-list {
  display: flex;
  flex-direction: column;
  background-color: rgb(5, 156, 5);
  border-radius: 4px;
  height: 0;
  overflow: hidden;
  padding: 0;
  transition: all 0.6s linear;
}

.show-menu-list {
  height: 230px;
}

.menu-list a {
  text-decoration: none;
  color: #fff;
  margin: 4px;
  padding: 5px;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.menu-list a:hover {
  background-color: white;
  color: black;
}

/* Slide stuffs */
.intro-slider {
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  position: relative;
  display: none;
}

.slide.displaySlide {
  display: block;
  animation: fade 1s linear;
}

.slide.displaySlide::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.slide img {
  width: 100%;
  object-fit: cover;
  min-height: 350px;
}

.slide-contents {
  position: absolute;
  top: 20px;
  z-index: 80;
  color: #fff;
  margin: 20px;
}

.slide-contents h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 2rem;
}

.slide-contents h1 span {
  color: rgb(5, 156, 5);
}

.slide-contents p {
  font-size: 0.8rem;
  line-height: 1.8;
}

.slide-contents button {
  margin-top: 2rem;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 2.2rem;
}

.apply-btn {
  background-color: rgb(5, 156, 5);
  color: white;
}

.prev,
.nxt {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 1rem;
  height: 30px;
  width: 30px;
  background-color: hsl(0, 0%, 0%, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 100;
  border-radius: 50%;
}

.prev {
  left: 0;
}

.nxt {
  right: 0;
}

@keyframes fade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

.about-college {
  background-color: #fff;
  padding-top: 4rem;
  text-align: center;
}

.about-college img {
  max-height: 300px;
  min-width: 90%;
  border-radius: 5px;
  margin: 2rem 0;
  transition: all 0.5s ease;
}

.about-college img:hover {
  scale: 1.1;
}

.about-college h1 {
  text-align: start;
  font-family: "Roboto", Arial, sans-serif;
  margin-left: 1rem;
  font-size: 2rem;
}

.about-college hr {
  width: 60px;
  background-color: rgb(5, 156, 5);
  border: 2px;
  height: 2px;
  margin: 1.2rem 0 1.2rem 1rem;
}

.about-college p {
  font-family: "Lato", sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: start;
  margin: 0.2rem 0.8rem;
  color: #333;
}

.about-college div {
  text-align: start;
}

.about-college button {
  padding: 1rem 2rem;
  background-color: rgb(5, 156, 5);
  border: none;
  border-radius: 6px;
  color: #fff;
  margin: 2rem 0 2rem 0.8rem;
  font-family: "Lato", sans-serif;
}

.aims {
  background-color: #f2f2f2;
  padding: 4rem 0;
}

.aims span {
  color: rgb(5, 156, 5);
  position: relative;
}

.aims h1 {
  text-align: center;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1.6rem;
}

.aims p {
  font-family: "Lato", sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  margin: 2rem 0.8rem 4rem;
  color: #333;
}

.aims .hr1 {
  width: 100px;
  background-color: #000;
  margin: 4px;
  margin-left: 60px;
  position: absolute;
  top: 100%;
  left: -60px;
  border: 2px;
  height: 2px;
}

.aims .hr2 {
  width: 100px;
  background-color: #000;
  margin-left: 40px;
  position: absolute;
  top: 100%;
  left: -20px;
  border: 2px;
  height: 2px;
}

.aims .card {
  width: 90%;
  overflow: hidden;
  border-radius: 8px;
  background-color: white;
  margin: 0.2rem auto;
  margin-bottom: 3rem;
}

.card .img-div {
  width: 100%;
  overflow: hidden;
  height: 200px;
}

.img-div img {
  height: 100%;
  width: 100%;
  transition: all 0.5s ease;
}

.img-div img:hover {
  scale: 1.2;
}

.card h2 {
  margin: 1rem;
  font-family: "Roboto", Arial, sans-serif;
}

.mode {
  position: relative;
  overflow: hidden;
  color: white;
  padding-bottom: 4rem;
}

.mode .bg {
  filter: blur(12px);
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  right: 0;
  z-index: -1;
}

.logo-card {
  width: 90%;
  overflow: hidden;
  border-radius: 8px;
  margin: 4rem auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: white;
}

.logo-card h1 {
  background-color: rgb(5, 156, 5);
  color: white;
  padding: 1.5rem 2rem;
  font-family: "Roboto", Arial, sans-serif;
  width: 100%;
}

.badge-div {
  padding: 2rem;
  background-color: white;
  overflow: hidden;
  text-align: center;
}

.badge-div img {
  width: 80%;
  height: 80%;
}

.mode .modeH1 {
  color: white;
  font-family: "Roboto", Arial, sans-serif;
  text-align: center;
  font-size: 2rem;
  margin: 1rem auto 2rem;
}

.mode .modeP {
  font-family: "Lato", sans-serif;
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0 0.5rem 3rem;
}

.showOff-one {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-wrap: wrap; */
  flex-direction: column;
  gap: 100px;
}

.showOff-one .progress {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(to right, gray 50%, green 0);
}

.progress h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
  z-index: 1;
}

.progress h2 {
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  text-wrap: nowrap;
}

.showOff-one .progress::before {
  content: "";
  display: block;
  height: 100%;
  margin-left: 50%;
  transform-origin: left;
  border-radius: 0 100% 100% 0/50%;
}

.showOff-one .progress::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background-color: #222;
}

.showOff-one .progress::before {
  background-color: green;
  transform: rotate(calc(((var(--i) - 50) * 0.01turn)));
}

.department {
  background-color: white;
  padding-bottom: 4rem;
}

.department h1 {
  color: rgb(5, 156, 5);
  text-align: center;
  font-size: 2rem;
  margin: 3rem auto 2rem;
}

.department h1 span {
  color: #222;
  position: relative;
}

.department h1 span .hr1 {
  color: #222;
}

.department h1 span .hr2 {
  color: #222;
}

.department h1 span .hr1 {
  width: 100px;
  background-color: #000;
  margin: 4px;
  margin-left: 60px;
  position: absolute;
  top: 100%;
  left: -60px;
  border: 2px;
  height: 2px;
}

.department h1 span .hr2 {
  width: 100px;
  background-color: #000;
  margin-left: 40px;
  position: absolute;
  top: 100%;
  left: -20px;
  border: 2px;
  height: 2px;
}

.department p {
  font-family: "Lato", sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: center;
  margin: 0.2rem 0.8rem;
  color: #333;
  margin-bottom: 3rem;
}

.department-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.department-card .card {
  width: 90%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.25);
}

.card .room-img {
  width: 100%;
  overflow: hidden;
}

.card .room-img img {
  width: 100%;
  height: 300px;
}

.department-card .card h1 {
  font-size: 1.3rem;
  font-family: "Roboto", Arial, sans-serif;
}

.department-card .card p {
  font-family: "Lato", sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: center;
  margin: 0.2rem 0.8rem;
  color: #333;
  margin-bottom: 2rem;
}

/* bTTBtn styles */
.bTTBtn {
  position: fixed;
  bottom: 36px;
  right: 15px;
  width: 30px;
  height: 30px;
  background-color: rgb(5, 156, 5);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--hollywood-gold);
  border-radius: 15px;
  font-weight: bold;
  cursor: pointer;
  display: none;
  transition: all 1s ease-out;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 222, 0, 0.7);
}

.bTTBtn:active {
  width: 38px;
  height: 38px;
  border: 2px solid white;
}

.bTTBtn i {
  font-size: 16px;
}

.bTTBtn i:active {
  font-size: 18px;
  color: white;
}
/* Ends */

.teachers {
  padding-bottom: 3.5rem;
}

.teachers h1 {
  color: rgb(5, 156, 5);
  text-align: center;
  font-size: 2rem;
  margin: 3rem auto 2rem;
}

.teachers h1 span {
  color: #222;
  position: relative;
}

.teachers h1 span .hr1 {
  color: #222;
}

.teachers h1 span .hr2 {
  color: #222;
}

.teachers h1 span .hr1 {
  width: 100px;
  background-color: #000;
  margin: 4px;
  margin-left: 160px;
  position: absolute;
  top: 100%;
  left: -60px;
  border: 2px;
  height: 2px;
}

.teachers h1 span .hr2 {
  width: 100px;
  background-color: #000;
  margin-left: 150px;
  position: absolute;
  top: 100%;
  left: -20px;
  border: 2px;
  height: 2px;
}

.teachers p {
  font-family: "Lato", sans-serif;
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: center;
  margin: 0.2rem 0.8rem;
  color: #333;
  margin-bottom: 3rem;
}

.teacher-card-div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
}

.teacher-card-div .teacher-card {
  width: 90%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.36);
  position: relative;
}

.teacher-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.modal {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background-color: rgba(0, 222, 0, 0.7);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  color: white;
  display: none;
}

.modal h1 {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

.modal p {
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: white;
}

.media-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.media-icons i {
  font-size: 1rem;
}

.showTeacherModal {
  animation: comeIn 0.6s linear;
  display: flex;
}

@keyframes comeIn {
  0% {
    top: 70px;
    bottom: 70px;
    right: 50px;
    left: 50px;
    opacity: 0.3;
  }
  50% {
    top: 30px;
    bottom: 30px;
    right: 20px;
    left: 20px;
    opacity: 0.6;
  }
  100% {
    top: 10px;
    bottom: 10px;
    right: 10px;
    left: 10px;
    opacity: 1;
  }
}

.achievements {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.achievements::before {
  content: "";
  background-color: rgba(0, 222, 0, 0.7);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

.achievements .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -2;
}

.achievements .each-achievement {
  width: 120px;
  text-align: center;
  transition: all 0.6s ease;
}

.achievements .each-achievement:hover {
  scale: 1.2;
}

.each-achievement i {
  font-size: 2.5rem;
}

.each-achievement h1 {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  margin: 0.5rem auto;
}

.contact-info {
  margin: 3rem auto 5rem;
}

.contact-info h1 {
  color: rgb(5, 156, 5);
  text-align: center;
  font-size: 2rem;
  margin: 3rem auto 2rem;
}

.contact-info h1 span {
  color: #222;
  position: relative;
}

.contact-info h1 span .hr1 {
  color: #222;
}

.contact-info h1 span .hr2 {
  color: #222;
}

.contact-info h1 span .hr1 {
  width: 100px;
  background-color: #000;
  margin: 4px;
  margin-left: 60px;
  position: absolute;
  top: 100%;
  left: -70px;
  border: 2px;
  height: 2px;
}

.contact-info h1 span .hr2 {
  width: 100px;
  background-color: #000;
  margin-left: 40px;
  position: absolute;
  top: 100%;
  left: -80px;
  border: 2px;
  height: 2px;
}

footer {
  height: 120px;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  color: white;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
}

footer::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}

footer img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

footer .media-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
}

footer .media-icons .i-dev {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  cursor: pointer;
}

footer .media-icons .i-dev:hover {
  background-color: white;
  color: rgba(5, 168, 5, 0.7);
}

footer .me a {
  text-decoration: none;
  color: rgb(5, 156, 5);
  font-family: "Roboto";
}

@media (min-width: 640px) {
  body {
    display: none;
  }
}
