/* Reset styles */
@import url(../font/Gilroy-Black.ttf);
@import url(../font/Gilroy-BlackItalic.ttf);
@import url(../font/Gilroy-Bold.ttf);
@import url(../font/Gilroy-BoldItalic.ttf);
@import url(../font/Gilroy-ExtraBold.ttf);
@import url(../font/Gilroy-ExtraBoldItalic.ttf);
@import url(../font/Gilroy-Heavy.ttf);
@import url(../font/Gilroy-HeavyItalic.ttf);
@import url(../font/Gilroy-Light.ttf);
@import url(../font/Gilroy-LightItalic.ttf);
@import url(../font/Gilroy-Medium.ttf);
@import url(../font/Gilroy-MediumItalic.ttf);
@import url(../font/Gilroy-SemiBold.ttf);

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

/* Global styles */
body {
  font-family: Gilroy-Bold, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  width: 100vw;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

/* Header styles */
header {
  position: sticky;
  top: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 60px 10px 60px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  width: 100vw;
}

.logo img {
  height: 50px;
  align-items: center;
}

nav ul {
  display: flex;
}
nav a:hover {
  color: #fea942;
}

nav li {
  margin-left: 20px;
}

nav a {
  padding: 10px;
}

/* Banner styles */
#banner {
  position: relative;
}

#banner img {
  width: 100%;
  height: auto;
}

.banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.banner-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.banner-text p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #fff;
}

/* Main styles */
main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px;
  height: 100%;
}

section {
  margin-bottom: 80px;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

section p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
  font-family: Gilroy-semibold, sans-serif;
  font-size: 20px;
}

section ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: gilroy-semibold;
  color: #000;
}

/* Footer styles */
footer {
  background-color: #282c38;
  text-align: center;
  padding: 20px;
  margin-top: 0px;
  color: #fff;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fea942;
  color: #fff;
  border-radius: 10px;
  transition: background-color 0.3s;
  font-family: gilroy-bold;
  font-size: 20px;
  border: none;
}

.btn:hover {
  background-color: #ec2227;
  border: none;
}
.courses {
  background-color: #fff;
  padding: 50px 0;
  text-align: center;
}

.course-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.course {
  max-width: 300px;
  margin: 20px;
  text-align: center;
}

.course img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.course h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.abc {
  color: #000;
  /*  font-weight: 100;*/
}
.course p {
  font-size: 1.2em;
  color: #555;
}

.about {
  background-color: #f5f5f5;
  padding: 40px 60px;
  margin: 0px;
  text-align: center;
}

.contact {
  background-color: #fff;
  padding: 0px 0;
  text-align: center;
}

.admissions {
  background-color: #f5f5f5;
  padding: 50px 0;
}
#admissions {
  text-align: center;
}

.intro {
  background-color: #fff;
  padding: 50px 0;
  margin: 80px;
  text-align: center;
}

.gallery {
  background-color: #fff;
  padding: 10px 0;
  margin: 80px;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover:after {
  opacity: 1;
}

.gallery-item:after {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: bold;
  color: #fff;
}

.menu {
  width: 30px;
  display: none;
}

/* Media query for screens smaller than 768px */
@media screen and (max-width: 768px) {
  h1 {
    font-size: 14px;
  }

  section h2 {
    font-size: 28px;
  }

  .banner-text h1 {
    font-size: 20px;
  }
  .banner-text p {
    padding: 0px;
    margin: 0 0 10px;
    font-size: 14px;
  }
  header {
    width: 100vw;
  }
  body {
    width: 100vw;
  }

  section {
    margin-bottom: 40px;
  }

  .intro {
    background-color: #fff;
    padding: 0px 0;
    margin: 80px;
  }

  .addd {
    background-color: #f5f5f5;
    padding: 0px 20px;
  }
  .btn {
    display: inline-block;
    padding: 5px 10px;
    background-color: #fea942;
    color: #fff;
    border-radius: 8px;
    transition: background-color 0.3s;
    font-family: gilroy-bold;
    font-size: 16px;
    border: none;
  }

  nav {
    display: none;
  }
  .menu {
    display: block;
  }
}

.mySlides {
  display: none;
}
img {
  vertical-align: middle;
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

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

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

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}
.right-drawer {
  position: fixed;
  right: 50;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  top: 70px;
  z-index: 1111;
  display: none;
}
