@import url('https://fonts.googleapis.com/css2?family=Share+Tech&display=swap');
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #e8e9eb;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  padding-top: 80px;
  overflow-y: auto;
  border-right: 1px solid goldenrod;
  transition: transform 0.3s ease;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  text-decoration: none;
  cursor: pointer;
}
.sidebar-item img {
  width: 28px;
  height: 28px;
}
.sidebar-item span {
  color: black;
  font-size: 14px;
  font-family: "Share Tech", sans-serif;
  font-size: 20px;
}
h2.section-title {
  font-family: "Bungee", system-ui, sans-serif;
}
.sidebar-toggle {
  display: none;
  position: fixed;
  top: 15px;
  left: 20px;
  font-size: 26px;
  cursor: pointer;
  z-index: 1100;
}
.sidebar-toggle img.toggle-img {
  width: 45px;
  height: 33px;
  margin-left: -5px;
  cursor: pointer;
  padding: 0;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 57.5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 1200;
  gap: 5px;
  border-bottom: 1px solid goldenrod;

}
.center-box {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.logo {
  height: 100px;
  margin-left: auto;
  
}
.logo img{
  color: goldenrod;
}
.social {
  margin-left: auto;
  
}
.social img {
  margin-top: 9px;
  height: 45px;
  width: 45px;
  
}
.social a:hover img {
  transform: scale(1.1);
}
@font-face {
  font-family: "Bungee";
  src: url("Fonts/Bungee-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Share+Tech&display=swap');
.scroll-box {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px;
  scroll-snap-type: x mandatory;
}
.card {
  flex: 0 0 280px;
  height: 520px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
}
.card span {
  position: absolute;
  bottom: 22px;
  left: 18px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  z-index: 1;
}
.img1 { background-image: url("Images/imgc1.jpg"); }
.img2 { background-image: url("Images/imgc2.jpg"); }
.img3 { background-image: url("Images/imgc3.jpg"); }
.img4 { background-image: url("Images/imgc4.jpg"); }
.img5 { background-image: url("Images/imgc5.jpg"); }
.card:hover span {
  text-decoration: underline;
  text-decoration-color: white;
}
.extra-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.extra-menu.show {
  max-height: 300px;
  opacity: 1;
}

.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin: 10px 0;
}

.toggle-btn img {
  width: 46px;
  transition: transform 0.3s ease;
  margin-left: 70px;
}

.toggle-btn.active img {
  transform: rotate(180deg);
}
.section-title {
  color: goldenrod;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  margin-bottom: 20px;
}
.list-container {
  width: 60%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.rect-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  color: #fff;
  border-radius: 8px;
  border-bottom: 2px solid grey;
  height: 150px;
  text-decoration: none;
  cursor: pointer;
}
.rect-box img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
}
.text h3 {
  margin: 0;
  color: black;
  font-family: "Share Tech";
}
.text p {
  margin: 5px 0 0;
  font-size: 14px;
  font-family: "Share Tech";
  opacity: 0.8;
  color: black;
}
.rect-box:hover .text h3,
.rect-box:hover .text p {
  color: goldenrod;
  text-decoration: underline;
}
.full-text {
  display: none;
}
a{
  text-decoration: none;
}
.source-box {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  font-family: Arial, sans-serif;
}
.blog-container {
  max-width: 800px;
  margin-top: 20px;
  padding: 15px;
  background-color: white;
}

@media (min-width: 771px) {
  .blog-container {
    margin-top: 50px;
    margin-left: 200px;
  }
}

.blog-title {
  font-size: 40px;
  margin-bottom: 10px;
  font-family: "Share Tech";
}

.blog-subtitle {
  font-size: 35px;
  margin-top: 25px;
  font-family: "Share Tech", sans-serif;
}

.blog-paragraph {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 20px;
  font-family: "Share Tech", sans-serif;
}

.blog-image {
  width: 100%;
  border-radius: 10px;
  margin: 15px 0;
}

.blog-list {
  padding-left: 20px;
  font-family: "Share Tech", sans-serif;
}

.blog-list li {
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .sidebar {
    transform: translateX(-100%);
  }
  .sidebar.active {
    transform: translateX(0);
    width: 200px;
  }
  .sidebar-toggle {
    display: block;
  }
  .list-container {
    width: 80%;
    padding: 15px;
  }
  .toggle-btn img {
  margin-left: 70px;
}
}
@media (min-width: 771px) {
  .header {
    height: 65px;
  }
  .toggle-btn img {
  margin-left: 50px;
}
  .scroll-box {
    margin-left: 159px;
  }
  .list-container {
    margin-left: 200px;
  }
  .short-text {
    display: none;
  }
  .full-text {
    display: block;
  }
  .logo {
    margin-left: 42.5%;
    height: 100px;
  }
  .social img{
    height: 50px;
    width: auto;
  }
  .rect-box img {
  width: 250px;
  height: 150px;
}
}