
    .dervel h4{
        padding:1rem; font-weight:700;
        font-family: "Lora", serif;
    }
    .dervel ul{
        font-family: "Lora", serif;
    }
    
    .environment-section {
      max-width: 1400px;
      margin: 0 31px;
      
    }
    @media (max-width: 768px){
        .environment-section{
            padding:0 10px;
        }
    }

    .section-title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .my-img{
        width: 30%;
    }
    .my-img img{
        width:100%;
    }

    .env-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .env-main {
      flex: 1 1 60%;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .env-main img {
      width: 100%;
      height: auto;
    }

    .env-main h2 {
      font-size: 26px;
      margin: 10px 0 5px;
      font-family: "Lora", serif;
      font-weight: 600;
    }

    .env-main p.author {
      font-size: 14px;
      font-weight: 400;
      font-family: system-ui;
      color: #666;
    }

    .env-sidebar,
    .env-rightbar {
      flex: 1 1 35%;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .env-item {
      border-top: 1px solid #eee;
      padding-top: 10px;
      display: flex;
      gap:1rem;
      justify-content: space-between;
    }

    .env-item h3 {
      font-size: 18px;
      font-family: "Lora", serif;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .env-item p.author {
      font-size: 12px;
      color: #888;
      font-weight: 400;
      text-transform: uppercase;
    }

    .env-rightbar .env-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .env-rightbar .env-item img {
      width: 90px;
      height: 60px;
      object-fit: cover;
    }

    @media (max-width: 1024px) {
      .env-grid {
        flex-direction: column;
      }

      .env-main, .env-sidebar, .env-rightbar {
        flex: 1 1 100%;
      }
    }
     .footer-column {
    flex: 1 1 278px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 1rem;


    transition: transform 0.3s ease;
}

.footer-column li a:hover {
    transform: translateY(-5px);
}

.footer-column h4 {
    font-size: 1.1rem;
    color: #0056d6;
    margin-bottom: 1rem;
}
.footer-column li a{
    border-right: 1px solid red;
    padding-right: 1rem;
    border-bottom: 1px solid red;
    padding-bottom: 0.4rem;
    border-radius: 8px;
}

.footer-column ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 0;
}

.footer-column ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #0056d6;
    transition: width 0.3s;
}

.footer-column ul li a:hover {
    color: #0056d6;
}

.footer-column ul li a:hover::after {
    width: 100%;
}
.hhjut5632{
    height: 55px;
}

@media (max-width: 768px) {
    .footer-column ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .hhjut5632 {
    height: 150px;
}
  .footer-column {
    
    padding: 1rem 0;


    transition: transform 0.3s ease;
}

    .footer-column ul {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .footer-column {
        flex: 1 1 100%;
    }
}
.search-trigger {
  width: 28px;
  height: 28px;
  cursor: pointer;
}

/* ----------  OVERLAY ---------- */
.search-overlay {
  position: fixed;
  inset: 0;
  background: #111;      /* black backdrop */
  display: none;         /* hidden by default */
  align-items: center;
  justify-content: center;
  height: 150px;         /* always 150px height */
  z-index: 9999;
}
.search-overlay.active {
  display: flex;
}

/* ----------  INNER WRAPPER ---------- */
.search-box {
  width: 90%;
  max-width: 1400px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

/* ----------  FORM ---------- */
.search-form {
  flex: 1;
  display: flex;
  height: 52px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.logo img{
        width: 36px;
        height: 36px;
    }

.search-form input {
  flex: 1;
  border: none;
  padding: 0 1rem;
  font-size: 1.1rem;
  outline: none;
}

.adv-btn {
  background: #0066d9;
  color: #fff;
  border: none;
  padding: 0 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s;
}
.adv-btn:hover {
  background: #0052b4;
}

/* ----------  CLOSE (X) ---------- */
.close-btn {
  width: 52px;
  height: 52px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
}
.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 2px;
  background: #fff;
}
.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ----------  HINT ---------- */
.hint {
  position: absolute;
  bottom: 6rem;
  right: 2rem;
  color: #cfcfcf;
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.4px;
}

/* ----------  RESPONSIVE (Preserve layout) ---------- */
@media (max-width: 768px) {
  .search-box {
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }
  .right button {
      padding: 0 1rem;
  }

  .search-form input {
    font-size: 1rem;
    padding: 0 0.75rem;
  }

  .adv-btn {
    padding: 0 1.25rem !important;
    font-size: 0.95rem;
  }

  .close-btn {
    width: 44px;
    height: 44px;
  }

  .close-btn::before,
  .close-btn::after {
    width: 26px;
  }

  .hint {
    font-size: 0.75rem;
    right: 1rem;
    bottom: 0.75rem;
  }
}

@media (max-width: 480px) {
  .search-box {
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }

  .search-form {
    height: 48px;
  }

  .search-form input {
    font-size: 0.95rem;
  }

  .adv-btn {
    padding: 0 1rem !important;
    font-size: 0.9rem;
  }

  .close-btn {
    width: 40px;
    height: 40px;
  }

  .close-btn::before,
  .close-btn::after {
    width: 22px;
  }

  .hint {
    font-size: 0.7rem;
    
  }
}


 /* Subscribe Button */
    .subscribe-btn {
      background: #000;
      color: #fff;
      padding: 12px 24px;
      border: none;
      font-size: 16px;
      cursor: pointer;
      border-radius: 8px;
      transition: background 0.3s;
    }
    .subscribe-btn:hover {
      background: #333;
    }

    /* Overlay */
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1000;
    }
    .overlay.active {
      visibility: visible;
      opacity: 1;
    }

    /* Modal Box */
    .subscribe-popup {
      background: #fff;
      border-radius: 16px;
      padding: 30px 25px;
      width: 90%;
      max-width: 400px;
      position: relative;
      transform: translateY(-30px);
      opacity: 0;
      transition: all 0.4s ease;
    }
    .overlay.active .subscribe-popup {
      transform: translateY(0);
      opacity: 1;
    }

    /* Close Button */
    .close-btns {
      position: absolute;
      top: 14px;
      right: 14px;
      padding: 0.5rem 1rem !important;
      font-size: 22px !important;
      background: blue !important;
      border: none;
      cursor: pointer;
      color: #fff !important;
    }

    /* Title */
    .subscribe-popup h2 {
      font-size: 24px;
      margin-bottom: 12px;
      text-align: center;
    }

    .subscribe-popup p {
      font-size: 15px;
      text-align: center;
      color: #666;
      margin-bottom: 20px;
    }

    /* Form */
    .subscribe-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .subscribe-form input[type="email"] {
      padding: 12px;
      font-size: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
      outline: none;
      transition: border 0.3s;
    }

    .subscribe-form input[type="email"]:focus {
      border-color: #000;
    }

    .subscribe-form button {
      background: #000;
      color: #fff;
      padding: 12px;
      border: none;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .subscribe-form button:hover {
      background: #333;
    }

    @media (max-width: 480px) {
      .subscribe-popup h2 {
        font-size: 20px;
      }
    }
    body.sidebar-open .sidebar {
            left: 0;
        }
             .main-content {
  
   transition: transform 0.3s ease;
}
.finslrtre1{
    margin-bottom: 1rem;
}







