/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(3px);
        }

        .modal-content {
            position: relative;
            background-color: #fff;
            margin: 15% auto;
            padding: 30px;
            width: 400px;
            max-width: 90%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            animation: modalFadeIn 0.3s;
        }

        @keyframes modalFadeIn {
            from {opacity: 0; transform: translateY(-20px);}
            to {opacity: 1; transform: translateY(0);}
        }

        .close-modal {
            position: absolute;
            right: 15px;
            top: 10px;
            color: #666;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.2s;
        }

        .close-modal:hover {
            color: #333;
        }

.about-section {
    background-color: #f8f9fa; 
    padding: 80px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.about-section p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 15px auto;
    line-height: 1.6;
}

.about-buttons {
    margin-top: 30px;
}

.about-buttons .btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    transition: all 0.3s ease-in-out;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #217dbb;
}

.btn-outline {
    border: 2px solid #3498db;
    color: #3498db;
    background: none;
}

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

        .donate-title {
            color: #2e7d32;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .donate-text {
            margin-bottom: 25px;
            color: #555;
        }

        .eth-address-container {
            background-color: #f5f5f5;
            border: 1px solid #ddd;
            border-radius: 5px;
            padding: 15px;
            margin-bottom: 20px;
            font-family: monospace;
            font-size: 14px;
            word-break: break-all;
        }

        .copy-btn {
            background-color: #2e7d32;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .copy-btn:hover {
            background-color: #1b5e20;
        }

        .copy-btn i {
            margin-right: 8px;
        }

        .copy-success {
            color: #2e7d32;
            font-size: 14px;
            margin-top: 10px;
            display: none;
        }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  a {
    text-decoration: none;
    color: #2e7d32;
  }
  
  ul {
    list-style: none;
  }
  
  .btn {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #1b5e20;
  }
#donate {
    display: none;
    text-align: center;
    margin: 50px auto;
    padding: 30px;
    max-width: 500px;
    background-color: #222;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 255, 204, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* When it's active, fade in and move up */
#donate.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Donate Section Header */
#donate h2 {
    color: #00ffcc;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Donate Text */
#donate p {
    font-size: 16px;
    color: #bbb;
    margin-bottom: 15px;
}

/* ETH Address Styling */
.eth-address {
    font-size: 16px;
    padding: 10px;
    background-color: #333;
    border-radius: 5px;
    display: inline-block;
    word-break: break-word;
    color: #00ffcc;
    font-weight: bold;
}
  
  /* Header */
  header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    color: #2e7d32;
  }
  
  nav ul {
    display: flex;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    font-weight: 600;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/ui/hero-background.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  /* Map Section */
  .map-section {
    padding: 60px 0;
  }
  
  .map-section h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  #pakistan-map {
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .popup-content {
    text-align: center;
  }
  
  .popup-image {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin: 10px 0;
  }
  
  /* Gallery Section */
  .gallery-section {
    padding: 60px 0;
    background: #f9f9f9;
  }
  
  .gallery-section h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .gallery-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .gallery-filter {
    background: none;
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    border-radius: 20px;
    transition: all 0.3s;
  }
  
  .gallery-filter.active,
  .gallery-filter:hover {
    background: #2e7d32;
    color: white;
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
  }
  
  .gallery-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .gallery-card:hover {
    transform: translateY(-10px);
  }
  
  .gallery-image-container {
    height: 200px;
    overflow: hidden;
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .gallery-card:hover .gallery-image {
    transform: scale(1.1);
  }
  
  .gallery-content {
    padding: 20px;
  }
  
  .gallery-content h3 {
    margin-bottom: 10px;
    color: #2e7d32;
  }
  
  .gallery-location {
    display: flex;
    align-items: center;
    color: #666;
    margin-bottom: 10px;
  }
  
  .gallery-location i {
    margin-right: 5px;
    color: #2e7d32;
  }
  
  .gallery-content p {
    margin-bottom: 15px;
  }
  
  /* Reviews Section */
  .reviews-section {
    padding: 60px 0;
  }
  
  .reviews-section h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .reviews-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 30px;
  }
  
  .reviews-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .reviews-form h3 {
    margin-bottom: 20px;
    color: #2e7d32;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
  }
  
  .star-rating {
    display: flex;
  }
  
  .rating-star {
    font-size: 1.5rem;
    color: #ffc107;
    cursor: pointer;
    margin-right: 5px;
  }
  
  .reviews-list-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .reviews-header h3 {
    color: #2e7d32;
  }
  
  .sort-container {
    display: flex;
    align-items: center;
  }
  
  .sort-container label {
    margin-right: 10px;
  }
  
  .sort-container select {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .review-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .review-header h4 {
    margin: 0;
  }
  
  .review-location {
    font-size: 0.9rem;
    color: #666;
  }
  
  .review-date {
    font-size: 0.9rem;
    color: #999;
  }
  
  .review-rating {
    margin-bottom: 10px;
    color: #ffc107;
  }
  
  /* Footer */
  footer {
    background: #2e7d32;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  
  /* Lightbox */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .lightbox-content {
    background: white;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    position: relative;
  }
  
  .lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }
  
  .lightbox-slideshow {
    position: relative;
    height: 400px;
  }
  
  .lightbox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
  }
  
  .lightbox-slide.active {
    display: block;
  }
  
  .lightbox-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .lightbox-controls {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .lightbox-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
  }
  
  .lightbox-info {
    padding: 20px;
  }
  
  .lightbox-info p {
    margin-bottom: 20px;
  }
  
  .lightbox-travel-tips h3 {
    margin-bottom: 10px;
    color: #2e7d32;
  }
  
  .lightbox-travel-tips ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .lightbox-travel-tips li {
    margin-bottom: 5px;
  }
  
  .no-scroll {
    overflow: hidden;
  }
  /* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  a {
    text-decoration: none;
    color: #2e7d32;
  }
  
  ul {
    list-style: none;
  }
  
  .btn {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn:hover {
    background: #1b5e20;
  }
  
  /* Header */
  header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    color: #2e7d32;
  }
  
  nav ul {
    display: flex;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    font-weight: 600;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/ui/hero-background.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  /* Map Section */
  .map-section {
    padding: 60px 0;
  }
  
  .map-section h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  #pakistan-map {
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .popup-content {
    text-align: center;
  }
  
  .popup-image {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin: 10px 0;
  }
  
  /* Gallery Section */
  .gallery-section {
    padding: 60px 0;
    background: #f9f9f9;
  }
  
  .gallery-section h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .gallery-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .gallery-filter {
    background: none;
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    border-radius: 20px;
    transition: all 0.3s;
  }
  
  .gallery-filter.active,
  .gallery-filter:hover {
    background: #2e7d32;
    color: white;
  }
  
  .gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
  }
  
  .gallery-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .gallery-card:hover {
    transform: translateY(-10px);
  }
  
  .gallery-image-container {
    height: 200px;
    overflow: hidden;
  }
  
  .gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  
  .gallery-card:hover .gallery-image {
    transform: scale(1.1);
  }
  
  .gallery-content {
    padding: 20px;
  }
  
  .gallery-content h3 {
    margin-bottom: 10px;
    color: #2e7d32;
  }
  
  .gallery-location {
    display: flex;
    align-items: center;
    color: #666;
    margin-bottom: 10px;
  }
  
  .gallery-location i {
    margin-right: 5px;
    color: #2e7d32;
  }
  
  .gallery-content p {
    margin-bottom: 15px;
  }
  
  /* Reviews Section */
  .reviews-section {
    padding: 60px 0;
  }
  
  .reviews-section h2 {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .reviews-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 30px;
  }
  
  .reviews-form {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .reviews-form h3 {
    margin-bottom: 20px;
    color: #2e7d32;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
  }
  
  .star-rating {
    display: flex;
  }
  
  .rating-star {
    font-size: 1.5rem;
    color: #ffc107;
    cursor: pointer;
    margin-right: 5px;
  }
  
  .reviews-list-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .reviews-header h3 {
    color: #2e7d32;
  }
  
  .sort-container {
    display: flex;
    align-items: center;
  }
  
  .sort-container label {
    margin-right: 10px;
  }
  
  .sort-container select {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  
  .review-card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  
  .review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .review-header h4 {
    margin: 0;
  }
  
  .review-location {
    font-size: 0.9rem;
    color: #666;
  }
  
  .review-date {
    font-size: 0.9rem;
    color: #999;
  }
  
  .review-rating {
    margin-bottom: 10px;
    color: #ffc107;
  }
  
  /* Footer */
  footer {
    background: #2e7d32;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  
  /* Lightbox */
  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .lightbox-content {
    background: white;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    position: relative;
  }
  
  .lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
  }
  
  .lightbox-slideshow {
    position: relative;
    height: 400px;
  }
  
  .lightbox-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
  }
  
  .lightbox-slide.active {
    display: block;
  }
  
  .lightbox-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .lightbox-controls {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .lightbox-controls button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
  }
  
  .lightbox-info {
    padding: 20px;
  }
  
  .lightbox-info p {
    margin-bottom: 20px;
  }
  
  .lightbox-travel-tips h3 {
    margin-bottom: 10px;
    color: #2e7d32;
  }
  
  .lightbox-travel-tips ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .lightbox-travel-tips li {
    margin-bottom: 5px;
  }
  
  .no-scroll {
    overflow: hidden;
  }
