 body {
      background: url('../img/img_assets/bgimg.jpg') no-repeat center center fixed;
      background-size: cover;
      position: relative;
    }

    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(226, 226, 226, 0.288);
      z-index: -1;
    }

    /* Sections */
    .glass-section {
      background-color: rgba(255, 255, 255, 0.6);
      border-radius: 1rem;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      margin-bottom: 2rem;
    }

    .landing-title {
      color: #9c4f96;
      font-weight: bold;
    }

    .about-card {
      background-color: #fff;
      box-shadow: 5px 5px 20px rgba(0, 255, 13, 0.3);
      border-radius: 1rem;
      padding: 2rem;
    }

    .about-btn {
      background-color: #ff69b4;
      color: white;
      font-weight: bold;
      border-radius: 0.5rem;
      padding: 0.5rem 1.2rem;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .about-btn:hover {
      background-color: #ff4081;
    }

    .imgko {
      max-width: 100%;
      height: auto;
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    footer {
      text-align: center;
      background-color: #0088ff;
      color: white;
    }

    /* Navbar Styling */
   /* Navbar Shrinking */
.navbar-custom {
  height: 100px;
  background-color: #0088ff;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-custom .navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-custom.shrink {
  height: 60px;
}

.navbar-custom.shrink .navbar-brand {
  transform: scale(0.9);
}

/* Logo resizing */
.logo-img {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}

.navbar-custom.shrink .logo-img {
  width: 40px;
  height: 40px;
}
/* Make logo hidden on small screens */
.logo-img {
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
}

.navbar-custom.shrink .logo-img {
  width: 40px;
  height: 40px;
}

@media (max-width: 991.98px) {
  .logo-img {
    display: none !important;
  }
  .image-mobile{
    height: 250px;
    width: 200px;
  }
}

/* Navbar colors */
.navbar-blue {
  background-color: #0088ff !important;
}
.navbar-blue .nav-link,
.navbar-blue .navbar-brand span {
  color: #ffffff !important;
}
/* Toggler icon color */
.navbar-toggler-icon {
  filter: brightness(0) invert(1);

}
.text-blue {
  color: #0088ff !important;
  text-shadow: 2px 2px 3px rgb(255, 0, 0);
}
.navbar-blue .navbar-toggler {
  border-color: #fff;
    background-color: #0088ff !important;
}
@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1rem;
    margin-right: auto;
  }
}
    @media (max-width: 640px){
        .toggle-menu {
  width: 100vw;
  text-indent: 30px;
}
    }