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

    body {
      background: url('https://images.unsplash.com/photo-1505761671935-60b3a7427bad?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
      font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, sans-serif;
      line-height: 1.6;
      color: var(--text-primary);
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }
    .navbar{
      background: rgb(62, 60, 60);
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow:  0 2px 10px rgba(0, 0, 0, 0.1);
      position: relative;
    }
     .logo-section {
                display: flex;
                align-items: center;
                gap: 12px;
                flex: 0 0 auto;
            }

            .logo {
                width: 40px;
                height: 40px;
                background: white;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: bold;
                color: #2c3e50;
                font-size: 18px;
            }

            .brand-name {
                color: white;
                font-size: 24px;
                font-weight: 600;
                letter-spacing: -0.5px;
            }

            /* Navigation Links - Centered */
            .nav-links {
              flex: 1;
                display: flex;
                gap: 40px;
                list-style: none;
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }

            .nav-links a {
                color: white;
                text-decoration: none;
                font-size: 16px;
                font-weight: 500;
                padding: 8px 16px;
                border-radius: 6px;
                transition: all 0.3s ease;
            }

            .nav-links a:hover {
                background: rgba(255, 255, 255, 0.1);
                transform: translateY(-1px);
            }

            .nav-links a.active {
                background: rgba(255, 255, 255, 0.15);
                font-weight: 600;
            }

            /* Search Section */
            .search-container-1 {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: right;
                width: 350px;
                flex: 0 0 auto;
                margin-left: auto; 
            }

            .search-input-1 {
                width: 100%;
                padding: 12px 150px 12px 15px; /* Extra padding on right for buttons */
                border: none;
                border-radius: 25px;
                font-size: 14px;
                outline: none;
                background: white;
                color:  #4f7c61;
                margin-right: -18px;
                /* margin-width: 120px; */
                
            }
              .search-input::placeholder {
                color: #4f7c61;                    
                                     
              }

            .search-buttons-1 {
                position: absolute;
                right: 5px;
                display: flex;
                gap: 5px;
            }

            .search-btn-1, .clear-btn-1 {
                padding: 8px 15px;
                border: none;
                border-radius: 20px;
                font-size: 12px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s;
            }

            .search-btn-1 {
                background:  #4f7c61;
                color: white;
            }

            .search-btn-1:hover {
                background:  #4f7c61;
            }

            .clear-btn-1 {
                background:  #4f7c61;
                color: white;
            }

            .clear-btn-1:hover {
                background:  #4f7c61;
            }

    /* Hero Section */
    .hero {
          background: rgba(0, 0, 0, 0.6);
      height: 100vh;
      width: 100%;
      position: relative;
      display: flex;
      align-items: center;
      padding: 0 5%;
      color: #ffff;
    }

    /* Social Icons */
    .social-icons {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .social-icons a {
      color: white;
      font-size: 20px;
      text-decoration: none;
      transition: 0.3s;
    }

    .social-icons a:hover {
      color: #1da1f2; /* Hover effect */
    }

    /* Hero Content */
    .hero-content {
      max-width: 600px;
    }

    .hero-content h1 {
      font-size: 60px;
      font-weight: 800;
      line-height: 1.2;
    }

    .hero-content p {
      margin: 20px 0;
      font-size: 16px;
      line-height: 1.6;
      max-width: 500px;
    }

    .btn {
      background-color: teal;
      border: none;
      padding: 12px 30px;
      color: white;
      font-size: 16px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn:hover {
      background-color: #00796b;
    }

    /* Only Added Styles for Search Results - Minimal Integration */
    .search-results {
      display: none;
      background: rgba(0, 0, 0, 0.8);
      min-height: 60vh;
      padding: 40px 5%;
      color: white;
    }

    .search-results.active {
      display: block;
    }

    .results-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .results-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
      padding-bottom: 20px;
      border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }

    .results-title {
      font-size: 32px;
      color: white;
      margin: 0;
      font-weight: 800;
    }

    .results-count {
      background: #4f7c61;
      color: white;
      padding: 8px 20px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 14px;
    }

    .no-results {
      text-align: center;
      color: rgba(255, 255, 255, 0.8);
      font-size: 18px;
      padding: 60px 20px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      backdrop-filter: blur(10px);
    }

    .result-item {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 25px;
      margin-bottom: 20px;
      border-left: 4px solid #4f7c61;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
    }

    .result-item:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    .result-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 15px;
    }

    .result-name {
      font-size: 24px;
      font-weight: 600;
      color: white;
      margin: 0;
    }

    .result-type {
      background: #4f7c61;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .result-description {
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
      margin-bottom: 10px;
      font-size: 16px;
    }

    .result-country {
      color: #4f7c61;
      font-weight: 600;
      font-size: 14px;
    }

    .loading {
      text-align: center;
      padding: 60px 20px;
      color: white;
      font-size: 20px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      backdrop-filter: blur(10px);
    }

    .error {
      background: rgba(255, 0, 0, 0.2);
      color: #ff6b6b;
      padding: 20px;
      border-radius: 10px;
      border-left: 4px solid #ff6b6b;
      margin-bottom: 20px;
      backdrop-filter: blur(10px);
    }

    /* Enhanced Result Item Styles with Images */
.result-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 0;
  margin-bottom: 25px;
  border-left: 4px solid #4f7c61;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  gap: 20px;
  min-height: 200px;
}

.result-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.result-image-container {
  position: relative;
  width: 300px;
  min-height: 200px;
  flex-shrink: 0;
}

.result-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px 0 0 15px;
}

.result-type-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #4f7c61;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.result-content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.result-name {
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin: 0;
  flex: 1;
}

.result-rating {
  background: rgba(255, 215, 0, 0.2);
  color: #FFD700;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 15px;
}

.result-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 16px;
  flex: 1;
}

.result-country {
  color: #4f7c61;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.result-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.explore-btn, .bookmark-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.explore-btn {
  background: #4f7c61;
  color: white;
  flex: 1;
}

.explore-btn:hover {
  background: #3d6249;
  transform: translateY(-2px);
}

.bookmark-btn {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px 15px;
}

.bookmark-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .result-item {
    flex-direction: column;
    min-height: auto;
  }

  .result-image-container {
    width: 100%;
    height: 200px;
  }

  .result-image {
    border-radius: 15px 15px 0 0;
  }

  .result-content {
    padding: 20px;
  }

  .result-header {
    flex-direction: column;
    gap: 10px;
  }

  .result-rating {
    margin-left: 0;
    align-self: flex-start;
  }

  .result-actions {
    flex-direction: column;
  }
}