      @import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');

      :root {
          --primary: #30c77c;
          --light: #F3F4F5;
          --dark: #282F34;
      }

      body {
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
          font-family: "Bree Serif", serif;
      }

      .text-primary {
          color: var(--primary) !important;
      }

      .bg-primary {
          background-color: var(--primary) !important;
      }

      .btn {
          font-weight: 500;
          transition: .5s;
      }

      .btn-primary {
          background-color: var(--primary);
          border-color: var(--primary);
      }

      .btn-primary:hover {
          background-color: #28a866;
          border-color: #28a866;
      }

      /* Navbar */
      .navbar.sticky-top {
          top: -100px;
          transition: .5s;
      }

      .navbar .navbar-brand {
          display: flex;
          align-items: center;
      }

      .navbar .navbar-brand .logo-1 {
          height: 60px;
          width: auto;
          max-height: 60px;
          object-fit: contain;
          transition: transform 0.3s ease;
      }

      .navbar .navbar-brand .logo-2 {
          height: 90px;
          width: auto;
          max-height: 90px;
          object-fit: contain;
          transition: transform 0.3s ease;
      }

      .logo-1:hover,
      .logo-2:hover {
          transform: scale(1.1);
      }

      @media (max-width: 991.98px) {
          .navbar .navbar-brand .logo-1 {
              height: 45px;
              max-height: 45px;
          }

          .navbar .navbar-brand .logo-2 {
              height: 65px;
              max-height: 65px;
          }
      }

      @media (max-width: 767.98px) {
          .navbar .navbar-brand .logo-1 {
              height: 35px;
              max-height: 35px;
          }

          .navbar .navbar-brand .logo-2 {
              height: 50px;
              max-height: 50px;
          }
      }

      @media (max-width: 575.98px) {
          .navbar .navbar-brand .logo-1 {
              height: 30px;
              max-height: 30px;
          }

          .navbar .navbar-brand .logo-2 {
              height: 45px;
              max-height: 45px;
          }

          .navbar .navbar-brand {
              flex-wrap: wrap;
          }
      }

      .navbar .navbar-nav .nav-link {
          margin-right: 30px;
          padding: 25px 0;
          color: var(--dark);
          font-size: 15px;
          font-weight: 500;
          text-transform: uppercase;
          outline: none;
          transition: color 0.3s ease;
      }

      .navbar .navbar-nav .nav-link:hover,
      .navbar .navbar-nav .nav-link.active {
          color: var(--primary);
      }

      @media (max-width: 991.98px) {
          .navbar .navbar-nav .nav-link {
              margin-right: 0;
              padding: 10px 0;
          }

          .navbar .navbar-nav {
              border-top: 1px solid #EEEEEE;
          }

          .navbar.sticky-top {
              position: relative;
              top: 0;
          }
      }

      /* Header */
      .header-bg {
          background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(/img/pakhal-img/7.jpg) center center no-repeat;
          background-size: cover;
      }

      .breadcrumb-item+.breadcrumb-item::before {
          color: var(--light);
      }

      /* Gallery Items */
      .gallery-item {
          position: relative;
          overflow: hidden;
          border-radius: 10px;
          cursor: pointer;
          transition: all 0.3s ease;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .gallery-item:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 30px rgba(48, 199, 124, 0.3);
      }

      .gallery-item img {
          width: 100%;
          height: 300px;
          object-fit: cover;
          transition: transform 0.5s ease;
      }

      .gallery-item:hover img {
          transform: scale(1.1);
      }

      .gallery-overlay {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(48, 199, 124, 0.8);
          display: flex;
          align-items: center;
          justify-content: center;
          opacity: 0;
          transition: opacity 0.3s ease;
      }

      .gallery-item:hover .gallery-overlay {
          opacity: 1;
      }

      .gallery-overlay i {
          color: white;
          font-size: 3rem;
      }

      /* Lightbox */
      .lightbox-overlay {
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.95);
          z-index: 9999;
          display: none;
          align-items: center;
          justify-content: center;
          animation: fadeIn 0.3s ease;
      }

      .lightbox-overlay.active {
          display: flex;
      }

      .lightbox-content {
          position: relative;
          max-width: 90%;
          max-height: 90%;
          animation: zoomIn 0.4s ease;
      }

      .lightbox-content img {
          max-width: 100%;
          max-height: 90vh;
          object-fit: contain;
          border-radius: 8px;
      }

      .lightbox-close {
          position: absolute;
          top: -50px;
          right: 0;
          background: var(--primary);
          color: white;
          border: none;
          width: 45px;
          height: 45px;
          border-radius: 50%;
          font-size: 24px;
          cursor: pointer;
          transition: all 0.3s ease;
          z-index: 10000;
      }

      .lightbox-close:hover {
          background: #28a866;
          transform: rotate(90deg);
      }

      .lightbox-prev,
      .lightbox-next {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: var(--primary);
          color: white;
          border: none;
          width: 50px;
          height: 50px;
          border-radius: 50%;
          font-size: 20px;
          cursor: pointer;
          transition: all 0.3s ease;
          z-index: 10000;
      }

      .lightbox-prev {
          left: 20px;
      }

      .lightbox-next {
          right: 20px;
      }

      .lightbox-prev:hover,
      .lightbox-next:hover {
          background: #28a866;
          transform: translateY(-50%) scale(1.1);
      }

      .lightbox-counter {
          position: absolute;
          bottom: -50px;
          left: 50%;
          transform: translateX(-50%);
          color: white;
          font-size: 18px;
          background: rgba(0, 0, 0, 0.7);
          padding: 8px 20px;
          border-radius: 20px;
      }

      @keyframes fadeIn {
          from {
              opacity: 0;
          }

          to {
              opacity: 1;
          }
      }

      @keyframes zoomIn {
          from {
              transform: scale(0.5);
              opacity: 0;
          }

          to {
              transform: scale(1);
              opacity: 1;
          }
      }

      /* Footer */
      .footer {
          background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(./img/footer.jpg) center center no-repeat;
          background-size: cover;
          background-color: var(--dark);
      }

      .footer .btn.btn-social {
          margin-right: 5px;
          width: 35px;
          height: 35px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--light);
          border: 1px solid #FFFFFF;
          transition: .3s;
      }

      .footer .btn.btn-social:hover {
          color: #FFFFFF;
          background-color: var(--primary);
          border-color: var(--primary);
      }

      .footer .btn.btn-link {
          display: block;
          margin-bottom: 5px;
          padding: 0;
          text-align: left;
          color: #FFFFFF;
          font-size: 15px;
          font-weight: normal;
          text-transform: capitalize;
          transition: .3s;
      }

      .footer .btn.btn-link::before {
          position: relative;
          content: "\f105";
          font-family: "Font Awesome 5 Free";
          font-weight: 900;
          margin-right: 10px;
      }

      .footer .btn.btn-link:hover {
          color: var(--primary);
          letter-spacing: 1px;
          box-shadow: none;
      }

      .footer .copyright {
          padding: 25px 0;
          font-size: 15px;
          border-top: 1px solid rgba(256, 256, 256, .1);
      }

      .footer .copyright a {
          color: var(--light);
      }

      .footer .copyright a:hover {
          color: var(--primary);
      }

      /* Responsive */
      @media (max-width: 768px) {
          .header-bg h1 {
              font-size: 2rem;
          }

          .gallery-item img {
              height: 250px;
          }

          .lightbox-prev,
          .lightbox-next {
              width: 40px;
              height: 40px;
              font-size: 16px;
          }

          .lightbox-prev {
              left: 10px;
          }

          .lightbox-next {
              right: 10px;
          }

          .lightbox-close {
              top: 10px;
              right: 10px;
          }
      }