 html, body {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: sans-serif;
      background: #ffffff;
    }

    /* section container */


    /* Intro Container */
    .intro-container {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      background: #ffffff;
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* Logo Animation: Fade + Zoom */
    .logo-wrapper img {
      opacity: 0;
      transform: scale(0.6);
      animation: fadeZoomIn 2s ease forwards;
    }

    @keyframes fadeZoomIn {
      0% {
        opacity: 0;
        transform: scale(0.6);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Swipe up animation */
    .logo-wrapper.swipe-up img {
      animation: swipeUp 2s ease forwards;
    }

    @keyframes swipeUp {
      0% {
        transform: translateY(0) scale(1);
        opacity: 1;
      }
      100% {
        transform: translateY(-100vh) scale(1.1);
        opacity: 0;
      }
    }

    /* Navbar */
    .navbar {
      position: fixed;
      top: -100px;
      left: 0;
      width: 100%;
      /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
      z-index: 100;
      padding: 20px 0;
      transition: top 1s ease, padding 0.3s ease, background-color 0.3s ease;
      background-color: rgba(255, 255, 255, 0.209);
      backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
    }

    .navbar.visible {
      top: 0;
    }

    /* Navbar shrink effect */
    .navbar.shrink {
      padding: 10px 0;
      background-color: #ffffff; /* Solid white background when shrinking */
    }

    .navbar-content {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .navbar.shrink .navbar-content {
      justify-content: space-between;
    }

    .navbar img {
      height: 50px;
      transition: height 0.3s ease;
    }

    .navbar.shrink img {
      height: 40px;
    }

    .navbar nav {
      transition: all 0.3s ease;
    }

    .navbar nav ul {
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .navbar nav ul li{
        list-style: none;
    }

    .navbar-logo {
      margin: 0 auto;
      transition: margin 0.3s ease;
    }

    .navbar.shrink .navbar-logo {
      margin: 0;
    }

    /* Main Content */
    .main-content {
      opacity: 0.7;
      transition: opacity 1s ease;
      /* padding: 120px 20px 40px; */
      /* text-align: center; */
    }

    .main-content.visible {
      opacity: 1;
    }


    /* banner */
    .banner-container{
        height: 70vh;
    }
    .carousel-item img{
        height: 70vh;
        object-fit: cover;
    }

    /* section container */
    .section-height{
        margin: 90px 0;
    }

    /* card container */
    .hover-container {
    position: relative;
    overflow: hidden;
  }

  .hover-container img {
    display: block;
    width: 100%;
  }

  .hover-text {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0); /* Initially transparent */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .hover-container:hover .hover-text {
    background-color: rgba(0, 0, 0, 0.7); /* Black with opacity */
    opacity: 1;
  }

  .offcanvas{
    height: 100vh;
  }

  .offcanvas-body ul li a:hover{
    background-color: #f7f7f7;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  }

  @media (max-width:770px) {
    .navbar nav ul {
      display: block;
    }
  }
  

  /* interior text design */
  