    body {
      margin: 0;
      background-color: #fff;
      font-family: 'Poppins', sans-serif;
    }
    
    @font-face {
      font-family: 'Poppins';
      src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
      font-display: swap;
}

body {
  font-family: 'Poppins', sans-serif;
}


    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #f0f0f0;
      padding: 12px 26px;
      border-radius: 999px;
      width: 90%;
      max-width: 900px;
      margin: 20px auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: sticky;
      top: 20px;
      z-index: 999;
    }
    
  .nav:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }

.nav.scrolled {
  padding: 6px 18px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  background-color: rgba(240, 240, 240, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav.scrolled img {
  height: 30px;
}

 .nav img {
    height: 40px;
    transition: transform 0.3s ease;
    display: block;
    transition: height 0.3s ease;
}


    .nav-links {
      display: flex;
      gap: 8px;
    }

    .nav a {
      text-decoration: none;
      color: #333;
      font-size: 16px;
      font-weight: bold;
      padding: 6px 10px;
      transition: color 0.3s ease, font-size 0.3s ease;
    }

    .nav a:hover {
      font-size: 18px;
      color: #000;
    }

    .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
      margin-left: auto;
    }

    .overlay-menu {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      backdrop-filter: blur(12px);
      background: rgba(0, 0, 0, 0.6);
      z-index: 1000;
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .overlay-menu.active {
      display: flex;
      opacity: 1;
      pointer-events: auto;
    }

    .overlay-content {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }

    .overlay-content a {
      color: white;
      font-size: 22px;
      font-weight: bold;
      text-decoration: none;
    }

    .closebutton {
      position: absolute;
      top: 24px;
      right: 32px;
      font-size: 28px;
      color: white;
      cursor: pointer;
    }

.welcome {
  margin: 10px auto 20px auto;
  padding: 350px 25px;
  width: calc(100% - 80px);
  border-radius: 24px;
  color: #ddd;
  background: 
    linear-gradient(
      rgba(0, 0, 0, 0.4), 
      rgba(0, 0, 0, 0.4)
    ),
    linear-gradient(to top right, #ff00f0, #ff0000);
  box-shadow: none;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


    .welcome h1 {
      color: #fff;
      margin: 0 0 12px;
    }

    .welcome p {
      color: #fff;
      margin: 0 0 8px;
    }

    .linksimages {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      margin: 40px auto;
      max-width: 1000px;
    }

    .image {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 45%;
    }

    .image img {
      width: 100%;
      border-radius: 16px;
      box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
    }
    
  .whatisbiruniweb {
    text-align: center;
  }

  .abouttext {
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}
  
    .button {
      padding: 12px 50px;
      background-color: #333;
      color: #fff;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      text-align: center;
      transition: transform 0.3s ease;
    }

   .button:hover { 
      transform: scale(1.03); 
}

    .footer {
      text-align: center;
      padding: 30px 16px;
      margin-top: 60px;
      font-size: 12px;
    }

    .footer-links {
      margin: 8px 0;
    }

    .footer-links a {
      color: #333;
      text-decoration: none;
      margin: 0 6px;
      font-weight: 500;
      transition: color 0.3s ease, font-size 0.3s ease;
    }

 .footer-links a:hover {
    font-size: 18px;
    color: #000;
    
}

    .footer-note, p {
      text-align: center;
      margin: 8px auto;
      max-width: 100%;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .hamburger {
        display: block;
      }
      .linksimages {
        flex-direction: column;
        align-items: center;
      }
      .image {
        width: 90%;
        max-width: 400px;
      }
      .button {
        width: 100%;
      }
    }
    
.embed-container {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  padding: 0 16px;
}

.embed-container iframe {
  width: 100%;
  max-width: 900px;
  height: 85vh;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.messageoftheweek {
  max-width: 900px;
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  color: #222;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  max-height: 80vh;
  line-height: 1.6;
  font-size: 16px;
}

body {
  overscroll-behavior-y: contain;
}

.historylink {
  color: white;
  text-decoration: historylink;
}

.historylink:hover {
  opacity: 0.9;
}

.logoandtext {
  display: flex;
  align-items: center;
  gap: 12px; 
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  transition: font-size 0.3s ease;
}

#cookie-consent-banner {
  display: none; 
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 20px;
  background-color: rgba(34, 34, 34, 0.8);
  color: #fff;
  font-family: sans-serif;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 90%;
  width: 700px;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}



        .cookie-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }
        
        .cookie-banner-text p {
            font-family: 'Poppins';
            margin: 0 0 10px 0;
        }

        .cookie-banner-text a {
            font-family: 'Poppins';
            color: #ffffff;
            text-decoration: underline;
        }
        
        .cookie-banner-buttons {
            display: flex;
            gap: 15px;
            flex-shrink: 0;
        }

        .cookie-banner-buttons button {
            font-family: 'Poppins';
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: bold;
        }

        #cookie-accept-btn {
            background-color: #808080;
            color: white;
        }

        #cookie-reject-btn {
            background-color: #808080;
            color: white;
        }

#cookie-consent-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
