
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: 1000;
  padding: 20px 10px;
}

.navbar-brand img {
  height: 40px; 
}

.navbar-nav {
  font-size: 18px;
}

.navbar-nav .nav-item {
  margin-left: 20px;
}

.navbar-nav .nav-link {
  color: white;
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  color: #f4c2c2; 
}

#home {
  position: relative;
  height: 100vh;
}

.home-background {
  background: url('background.jpg') no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  text-align: center;
  padding-top: 150px;
  opacity: 0.7;
}

.home-background h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.home-background p {
  font-size: 1.5rem;
}

#profile {
  padding: 50px 0;
  background-color: #f4f4f4;
}

#profile .container {
  text-align: center;
}

#profile .row .col-md-4 {
  padding: 20px;
}

#gallery {
  padding: 50px 0;
  background-color: #fff;
}

.carousel-inner img {
  width: 100%;
  height: auto;
}

#achievements {
  padding: 50px 0;
  background-color: #eee;
}

#testimonials {
  padding: 50px 0;
  background-color: #f4f4f4;
}

.testimonial {
  margin-bottom: 20px;
  font-style: italic;
  text-align: center;
}

#contact {
  padding: 50px 0;
  background-color: #fff;
}

#map {
  height: 300px;
  background-color: #e3e3e3;
}

    #home {
      position: relative;
      height: 100vh; 
      background: url('assets/background.jpeg') no-repeat center center/cover;
      background-size: cover;
      background-position: center;
    }

    .home-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.6); 
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .home-background h1 {
      font-size: 3rem;
      color: #4a148c;
      font-weight: bold;
      text-shadow: 0 0 5px #fff, 0 0 10px #4a148c;
      -webkit-text-stroke: 1px #220a46;
    }

    .home-background p {
      font-size: 1.5rem;
      color: #4a148c;
      font-weight: lighter;
      text-shadow: 0 0 3px #fff, 0 0 5px #4a148c;
      -webkit-text-stroke: 0.5px #220a46; 
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 2;
      background-color: rgba(0, 0, 0, 0.5);
    }

    @media (max-width: 767px) {
      .navbar-toggler {
        display: block; 
        border: 1px solid #4a148c; 
        background-color: transparent; 
      }

      .navbar-toggler img {
        width: 24px; 
        height: 24px;
        display: block;
      }

      .navbar-toggler-icon {
        display: none;
      }

      .navbar-collapse {
        width: 100%;
        text-align: center;
      }

      .navbar-nav {
        width: 100%;
        padding: 0;
      }

      .nav-item {
        margin: 10px 0;
      }

      .nav-link {
        font-size: 1.2rem;
        color: #4a148c;
        font-weight: 500;
      }

      .nav-link:hover {
        color: #220a46;
      }
    }

      html {
      scroll-behavior: smooth;
    }

    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-thumb {
      background-color: #4a148c;
      border-radius: 5px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
