* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  font-family: "Montserrat", sans-serif;
  background: #fff;
  color: #333;
}

.wrap {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background: #2b7a78;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.sidebar .brand {
  text-align: center;
  margin-bottom: 30px;
}

.sidebar .brand img {
  width: 100px;
  border-radius: 8px;
}

.sidebar .menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar .menu .item {
  text-decoration: none;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  transition: background 0.3s;
}

.sidebar .menu .item:hover,
.sidebar .menu .item.active {
  background: #3aafa9;
}

.sidebar .note {
  margin-top: auto;
  font-size: 12px;
  opacity: 0.8;
}

/* Content */
.content {
  flex: 1;
  padding: 30px;
  background-color: #fff ;
}

.content h1 {
  margin-bottom: 20px;
}

/* Grid & Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

/* .container
{
  max-width: 1500px;
  margin: auto;
  padding: 20px;
} */

.card:hover {
  transform: translateY(-5px);
}

.card .thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .body {
  padding: 15px;
}

.card .body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card .body p {
  font-size: 14px;
  margin-bottom: 10px;
}

.card .body .date {
  font-size: 12px;
  color: #777;
}



ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: white;
  text-align: center;
}
li {
  display: flex;
  align-items: center;

  gap: 10px;
}
a:hover {
  color: green;
}
.main-wrap {
  width: 1500px;
  max-width: 100%;
  margin: auto;
  height: 100vh;
  display: flex;
  overflow: hidden; /* Qo'shildi */
}

.main-left {
  width: 15%;
  background-color: #16a34a;
  display: flex;
  flex-direction: column;
  padding: 15px;
  position: sticky; /* Qo'shildi */
  top: 0; /* Qo'shildi */
  height: 100vh; /* Qo'shildi */
  overflow-y: hidden; /* Scrollni yashirish uchun o'zgartirildi */
}
.main-left-list {
  margin-top: 100px;
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 200px;
}
.quote {
  font-size: 10px;
  text-align: center;
  background-color: white;
  padding: 15px;
  border-radius: 20px;
  position: relative;
  bottom: 100px;
}
.main-right {
  width: 85%;
  height: 100vh; /* Qo'shildi */
  overflow-y: auto; /* Qo'shildi */
  padding-right: 10px; /* Qo'shildi */
}
.img-wrap {
  max-width: 100%;
  width: 208px;
  height: 61px;
}
.img-wrap img {
  width: 100%;
}
.asosiy {
  padding: 5px;
  background-color: #4fd17d;
  width: 160px;
  border-radius: 10px;
  transition: 1s all ease;
}
.asosiy:hover {
  background-color: #97e4b2;
  transform: scale(1.1);
}