/* ============================================
   Google Search Component Styles
   ============================================ */

.search-section {
  padding: 24px 0;
  display: flex;
    margin-top: 65px;
  justify-content: center;
}

.search-section__container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ============================================
   Logo Styling
   ============================================ */

.search-section__logo-wrapper {
  margin-bottom: 16px;
  text-align: center;
}

.search-section__logo {
  height: auto;
  width: 318px;
  display: block;
}

/* Text fallback for logo */
.search-section__logo-text {
  font-family: 'Arial Black', sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.search-section__logo-text .logo-blue {
  color: #38a5dd;
}

.search-section__logo-text .logo-and {
  color: #0d4b75;
}

.search-section__logo-text .logo-badge {
  background-color: #ff007f;
  color: #ffffff;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 12px;
  vertical-align: middle;
}

/* ============================================
   Search Box Container
   ============================================ */

.search-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1.5 solid #333333;
  border-radius: 9999px;
  padding: 0 0 0 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box:focus-within {
  border-color: #ff3b30;
  box-shadow: 0 0 0 3px rgba(255, 59, 48, 0.12);
}

/* Left portion (Icon + Input) */
.search-box__left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.search-box__icon {
  width: 18px;
  height: 18px;
  color: #a0aec0;
  margin-right: 10px;
  flex-shrink: 0;
}

.search-box__input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #2d3748;
  padding: 14px 0;
  font-family: inherit;
}

.search-box__input::placeholder {
  color: #a0aec0;
}

/* Right portion (Powered by Google + Search Button) */
.search-box__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.search-box__powered {
  font-size: 13px;
  color: #a0aec0;
  white-space: nowrap;
}

.search-box__google {
  font-weight: 600;
  color: #718096;
}

.search-box__submit-btn {
  background: linear-gradient(135deg, #ff7b00, #ff0095);
  color: #ffffff;
  border: none;
  outline: none;
  padding: 20px 36px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0 9999px 9999px 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
  height: 100%;
}

.search-box__submit-btn:hover {
  opacity: 0.92;
}

/* ============================================
   Install Banner (Footer)
   ============================================ */

.search-section__install-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.search-section__browser-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.browser-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.search-section__install-text {
  font-size: 13.5px;
  color: #3b4261;
  font-weight: 500;
  text-align: center;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
  .search-box__powered {
    display: none; /* Hide 'Powered by Google' on small screens to save space */
  }
.search-section{
  margin-top: 0;
}
  .search-box__submit-btn {
    padding: 17px 24px;
    font-size: 13px;
  }

  .search-section__install-text {
    font-size: 15px;
}
}