
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}


.new-hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: url(/assets/img/New-Product/hero-bg.png) top center no-repeat;
  background-size: cover;
}
.new-hero img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.new-hero h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 40px;
  color: #bb9a2d;
  padding-bottom: 20px;
}
.new-hero h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: rgb(28, 37, 117);
  padding-bottom: 10px;
   text-align: justify;
}
.new-hero p {
  margin: 5px 0 30px 0;
  font-size: 17px;
  font-weight: 400;
 text-align: justify;
}

.new-btn-start {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}

.new-btn-start i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
  
}

.new-btn-start:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.new-btn-start:hover i {
  transform: translateX(5px);
}


.new-animated {
  animation: new-up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .new-hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .new-hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes new-up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.image-section {
  padding: 40px 15px;
}

.image-custom {
  width: 100%;
  max-width: 800px; /* keeps them from being too wide on big screens */
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.image-custom:hover {
  transform: scale(1.05);
}
@media (max-width: 480px) {
  .new-hero h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .new-hero p {
    font-size: 14px;
    line-height: 20px;
  }

  .image-custom {
    max-width: 100%;
  }
}
/* Optional: tweak for smaller screens */
@media (max-width: 768px) {
  .image-custom {
    max-width: 95%;
  }
}

@media (max-width: 992px) {
  .new-hero {
    text-align: center;
    padding: 60px 15px;
  }

  .new-hero h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .new-hero p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .new-btn-start {
    padding: 10px 28px;
    font-size: 14px;
  }
}
