@font-face {
  font-family: 'MyCustomFont';
  src: url('../../FontAwesome.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Text */
body {
  font-family: 'MyCustomFont', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  overflow-x: hidden;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #111;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.menu-btn {
  font-size: 28px;
  cursor: pointer;
}

/* Side Menu */
#sideMenu {
  position: fixed;
  top: 0;
  right: -250px;  /* ✅ Set this to hide it off-screen on the right */
  width: 250px;
  height: 100%;
  background-color: #222;
  overflow-x: hidden;
  transition: right 0.3s;  /* ✅ Animate right property */
  padding-top: 60px;
  z-index: 999;
}

#sideMenu a {
  display: block;
  color: white;
  padding: 16px 24px;
  text-decoration: none;
  transition: background 0.2s;
}

#sideMenu a:hover {
  background-color: #444;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px; 
  font-size: 36px;
  cursor: pointer;
  color: white;
}
#header a {
  text-decoration: none;
  color: white;
}

/* Hero Section */
.hero-section {
  height: 400px;
  background: url('../../images/bd.png') no-repeat center top;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  text-align: center;
}

.hero-text {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 90%;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-text span {
  
  font-weight: bold;
}

.hero-text h1 {
  font-size: 36px;
  margin-top: 10px;
}

/* Main Content */
.main-content {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.main-content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.main-content p {
  font-size: 18px;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Button */
.content-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.content-button:hover {
  background-color: #218838;
}
