/* Custom Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4; /* Neutral background color */
  position: relative;
  
  overflow: auto; /* Prevent both vertical and horizontal scrolling */
}

/* Header Section */
.header {
  display: flex;
  justify-content: space-between;
  padding: 2px;
  background-color: #007bff;
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  box-sizing: border-box;
}

.header .logo {
  font-size: 24px;
}
.header .subtitle{
  font-size: 16px;
}
.header .user-icon {
  font-size: 30px;
  cursor: pointer;
}

.pa_name{
  display: flex;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
  position: relative;
  width: 100%;
  margin-top: 100px; /* To offset the header */
  color: #007bff;
  font-weight: 600;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  
}


/* Hero Section (Full Screen) */
.hero-section {
  display: flex;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically */
  position: relative;
  width: 100%;
  margin-top: 5px; /* To offset the header */
  padding: 40px;
}



/* Search Bar Section (Updated) */
.search-bar-section {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  width: 60%;
  z-index: 8; /* Ensure it appears above the background */
  background: none; /* Remove background color */
  box-shadow: none; /* Remove shadow */
  border-radius: 0; /* Remove border radius */
  padding: 0; /* Remove padding */
}

/* Search Bar */
.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.search-bar input {
  border: 1px solid #ccc; /* Add subtle border for the search input */
  outline: none;
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border-radius: 20px; /* Slight border-radius for the input field */
  margin-right: 15px; /* Add space between the input and the icons */
  width: 90%;
}

/* Search Icons (Search & Voice Search) */
.search-icons {
  display: flex;
  align-items: center;
  gap: 15px; /* Optional: Adds gap between the icons themselves */
}

.search-icons i {
  color: white;
  font-size: 20px;
  cursor: pointer;
  background-color: #3b3b3b;
  padding: 10px;
  border-radius: 50%;
}

/* Modal Styling */
.modal-content {
  padding: 20px;
}

/* For responsive design */
@media (max-width: 768px) {
  .hero-section {
    background-position: center center; /* Ensure it remains centered */
    
  }

  .hero-content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-content .box {
    width: 100%; /* Make both image and video take full width in mobile */
    margin-bottom: 20px; /* Add some space between image and video */
  }

  .search-bar-section {
    width: 90%;
  }
}


/* Hero Section */
/* .hero-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #ffffff; 
  box-sizing: border-box;
} */

/* Content Wrapper */
.content-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap; /* Ensures wrapping on smaller screens */
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  width: 100%;
}

/* Image Section */
.hero-image {
  width: 48%;
  height: 400px; /* Fixed height */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  /* overflow: hidden; */
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* Video Section */
.hero-video {
  width: 48%;
  height: 400px; /* Fixed height */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  /* overflow: hidden; */
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.autocomplete-container {
  position: relative;
   width: 90%;
}
.autocomplete-suggestions {
  position: absolute;
  bottom: 100%; /* Position the suggestions above the input field */
  background-color: #fff;
  /* border: 1px solid #ccc; */
  border-radius: 4px;
  max-height: 150px;
  overflow-y: auto;
  z-index: 1000;
  width: 100%; /* Match the input width */
}
.autocomplete-suggestions div {
  padding: 8px;
  cursor: pointer;
}
.autocomplete-suggestions div:hover {
  background-color: #f0f0f0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column; /* Stack vertically */
  }

  .hero-image, .hero-video {
    width: 100%; /* Full width on smaller screens */
    margin-bottom: 20px;
  }
  .header .logo {
    font-size: 16px;
  }
  .header .subtitle{
    font-size: 14px;
  }
}