/*--------------------- global-css ---------------------*/
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --primary-yellow-: #ffd700;
  --primary-black-: #000000;
  --text-dark-: #1a1a1a;
  --accent-yellow-hover: #ffe44d;
  --text-gray-: #666666;
  --primary-white-: #ffffff;
  --shadow-soft-: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-strong-: 0 10px 15px rgba(0, 0, 0, 0.1);
}

body {
  line-height: 1.6;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-row {
  display: flex;
}

/*--------------------  hero-section css --------------------*/

/* background elements  */
.background-elements {
  /* position: absolute; */
  width: 100%;
  height: 90%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.brand-title-wrap .brand-title{
  font-weight: 400;
}
.floating-shape {
  position: absolute;
  background: var(--primary-yellow-);
  /* opacity: 0.3; */
  border-radius: 50%;
  animation: 10s ease-in-out 0s infinite normal none running float, 0.6s ease 0s 1 normal forwards running fadeIn;
}

.background-elements .shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation: float 15s infinite ease-in-out, fadeIn 3s ease-out forwards;
}

.background-elements .shape-2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  right: -100px;
  animation: float 20s infinite ease-in-out reverse, fadeIn 3s ease-out forwards;
}

.background-elements .shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
   animation: float 25s infinite ease-in-out, fadeIn 3s ease-out forwards;
}


.hero-sec-wrap {
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #c0c0c0 100%);
  overflow: hidden;
}

.hero-blk-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 30px 0px 30px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.top-banner-wrap {
  background: var(--primary-yellow-);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  transform: translateY(-20px);
  animation: slideDown 0.6s ease forwards;
}

.top-banner-wrap .top-banner {
  font-size: 1rem;
}

.main-content-wrap {
  margin-bottom: 2rem;
}

.brand-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark-);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.3s;
}

.main-title {
  display: block;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark-);
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.6s;
  margin-block: 0;
}

.hero-blk-container .search-container {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 1.2s;
     box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
    transition: transform 0.3s;
  padding: 20px;
  border-radius: 10px;
  background-color:#ffffff;
}

.search-container .search-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark-);
}

.search-container .h-search-description {
  color: var(--text-gray-);
  margin-bottom: 20px;
}

.search-box {
  border-radius: 12px;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.search-input-wrapper input {
  flex: 1;
  border: none;
  background: none;
  padding: 0.75rem;
  font-size: 1rem;
}

.search-btn {
  background: var(--primary-yellow-);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-input-wrapper .search-btn:hover {
  color: var(--primary-black-);
  background: var(--accent-yellow-hover);
  transform: translateY(-2px);
}

.search-helper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.search-box .model-help {
  color: var(--primary-black--) !important;
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.search-box .model-help:hover {
  color: var(--primary-yellow-) !important;
}

.search-box .model-help svg {
  background-color: var(--primary-yellow-);
  border-radius: 50%;
  width: 20px;
    height: 20px;
    padding: 3px
}

/* ryt-col css */
.hero-media {
  position: relative;
  opacity: 0;
  animation: slideIn 0.6s ease forwards 0.9s;
}

.hero-media .image-container {
  /* position: relative; */
  border-radius: 20px;
  overflow: hidden;
}

.hero-media .image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.hero-media .image-container:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-yellow-);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-soft-);
}

.badge-title {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
}

.badge-subtitle {
  display: block;
  font-size: 0.875rem;
}


/* Benefits Section Styles */
.benefits-section {
  margin: 1rem 0;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.9s;
}

.benefits-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.benefit-item {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-dark-);
  white-space: nowrap;
}
.benefit-item strong{
  font-weight: 500;
}

.benefit-divider {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--primary-black-);
  margin: 0 0.5rem;
}

/* Bottom Information Text Styles */
.bottom-info-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px 64px 30px;
  text-align: start;
  margin-top: 20px;
}

.bottom-info-text {
  font-size: 1rem;
  color: var(--primary-black-);
  font-weight: 500;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 1.5s;
}
.hero-sec-wrap .background-elements{
  opacity: 0.4;
}
/*----------------- here custom animation -----------------*/
@keyframes float {
  0%, 100% { transform: translate(0, 0); 
  }

  50% { transform: translate(20px, -20px);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* responsiveness */
@media (max-width: 1200px) {
  .hero-blk-container {
    max-width: 100%;
    padding: 0 20px;
    gap: 2rem;
  }
  .main-title {
    font-size: 3rem;
  }
}

/* responsiveness */
@media (max-width: 1200px) {
  .hero-blk-container {
    max-width: 100%;
    padding: 40px 20px 0px 20px;
    gap: 2rem;
  }
  .bottom-info-container{
    padding-bottom:40px;
  }

  .main-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-blk-container {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero-blk-container {
    max-width: 100%;
      padding: 48px 16px 0px 16px;
    gap: 2rem;
  }
   .bottom-info-container{
    padding-bottom:48px;
  }

  .top-banner-wrap .top-banner {
    font-size: 0.75rem;
  }

  .brand-title-wrap {
    font-size: 1.5rem;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .search-container .search-title {
    font-size: 1.125rem;
  }

  .search-container .h-search-description {
    font-size: 0.85rem;
  }

  .search-input-wrapper {
    gap: 0.75rem;
  }

  .search-box {
    padding: 1rem 0.85rem;
  }

  .search-btn {
    padding: 0.75rem 0.75rem;
    font-size: 0.75rem;
  }

  .image-badge {
    padding: 0.75rem;
  }

  .badge-title {
    font-size: 1rem;
  }
  .benefits-wrapper {
    gap: 1rem;
  }
  
  .benefit-item {
    font-size: 1rem;
  }
  
  .benefit-divider {
    font-size: 1rem;
    margin: 0 0.25rem;
  }
  
  .bottom-info-text {
    font-size: 0.875rem;
  }
}


/* Mobile-first styles (480px and below) */
@media screen and (max-width: 480px) {
  .hero-blk-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
.main-content-wrap {
  margin-bottom: 1rem;
}
.hero-blk-container{
  padding: 30px 16px 10px 16px;
  text-align: center;
}
.bottom-info-container{
        padding-bottom: 30px;
          margin-top: 0px !important;
    }

  .top-banner-wrap {
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
    width: 90%;
    justify-content: center;
  }

  .top-banner-wrap .top-banner {
    font-size: 0.675rem;
  }

  .brand-title-wrap {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    justify-content: center;
  }

  .main-title {
    font-size: 2rem;
    text-align: center;
  }
.bottom-info-container{
  text-align: center;
}

  .search-container .search-title {
    font-size: 1.25rem;
    text-align: center;
  }

  .search-container .h-search-description {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color:#000000;
    margin-bottom: 0.1rem;
  }

  .search-box {
    padding: 1rem;
  }

  .search-input-wrapper {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
  }

  .search-input-wrapper input {
    width: 100%;
    padding: 0.5rem;
    text-align: center;
  }

  .search-btn {
    width: 100%;
    justify-content: center;
    padding: 0.625rem;
  }

  .search-helper {
    justify-content: center;
    flex-wrap: wrap;
  }

  .search-box .model-help {
    font-size: 0.75rem;
  }

  /* Right column adjustments */
  .hero-media {
    order: 1;
  }
.hero-sec-wrap .background-elements{
  opacity: 0.2;
}
.search-container {
     background-color: #FFD60287 !important;
    padding: 16px 10px !important;
    border-radius: 10px !important;
}
.bottom-info-container {
  margin-top: 0px !important;
}
.search-helper{
  padding:0px;
}
.benefits-section .benefits-wrapper span strong{
  font-weight: 600;
}

  .image-container {
    border-radius: 12px;
  }

  .image-badge {
    bottom: 2rem;
    right: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    background-color:#FFD60287 ;
  }

  .badge-title {
    font-size: 1rem;
  }

  .badge-subtitle {
    font-size: 0.75rem;
  }

  .benefits-wrapper {
    gap: 1rem;
    justify-content: center;
  }
  
  .benefit-divider {
    display: none;
  }
  
  .benefit-item {
    font-size: 0.875rem;
    position: relative;
  }
  
  .benefit-item:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -0.5rem;
    color: var(--text-gray-);
    font-weight: 300;
  }
  
  .bottom-info-text {
    font-size: 0.75rem;
    line-height: 1.4;
    font-weight: 400;
  }
}



