@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jost:ital,wght@0,100..900;1,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-family: "Inter", sans-serif;
    font-family: "Lora", serif;
    font-family: "Jost", sans-serif;
    font-family: "Poppins", sans-serif;
}
a{
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-color: #157831;
    --seconday-color: #157831;
    --tertiary-color: #fff9f2;
    --main-btn: #cc9743;
}
section{
    scroll-margin-top: 100px;
}
h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

li {
    font-size: 20px;
}

p {
    font-size: 20px;
}

strong {
    font-size: 20px;
}

.all-btn {
    background-color: var(--main-btn);
    color: #fff;
}

.all-btn:hover {
    background-color: var(--main-btn);
}

/* navbar section */

.navbar-container {
    background-color: var(--primary-color);
}

.navbar-collapse {
    flex-grow: 0 !important;
    flex-basis: 100%;
    align-items: center;
}

.navbar-container ul li {
    padding: 0 15px;
}

/* title */

.title-container {
    background-color: var(--primary-color);
}

.bg-color {
    background-color: #f1f1f1;
}

.navbar-toggler {
    background-color: #ffff;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* footer section */

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.footer-menu li {
    list-style-type: none;
}

.footer-menu li a {
    color: #fff;
}

.footer-menu li a:hover {
    color: #000;
    transition: 0.5s;
}

/* mobile views */

@media screen and (max-width: 1000px) {
    .navbar-container ul li {
        padding: 0px;
    }
}

/* faq section */

.faq-container {
    background: var(--seconday-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 30px;
    transition: transform 0.3s ease;
}

.faq.open .faq-question::after {
    content: "-";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq.open .faq-answer {
    max-height: 200px;
}


.border-image{
    width: 90%;
    border-radius: 10px;
    border: 4px solid ridge;
}


.bonus-section {
  background: #157831;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.bonus-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bonus-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #d6e4f0;
}

.bonus-subtitle span {
  font-weight: 600;
  text-decoration: underline;
}

/* BONUS LIST */
.bonus-list {
  display: flex;
  gap: 25px;
}

/* CARD */
.bonus-card {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  color: #000;
  padding: 20px;
  border-radius: 12px;
  gap: 20px;
  text-align: left;
  transition: 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.bonus-card img {
  width: 220px;
  max-width: 100%;
}

/* CONTENT */
.bonus-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.value {
  color: red;
  font-weight: bold;
  margin-bottom: 5px;
}

/* TOTAL */
.total {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .bonus-title {
    font-size: 24px;
  }

  .bonus-card {
    flex-direction: column;
    text-align: center;
  }
  .bonus-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

  .bonus-card img {
    width: 225px;
  }
  #hero-container img{
    max-width: 250px;
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,0,0,0.4);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(0,0,0,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
  }
}

.animated-cta {
  animation: pulseGlow 1.8s infinite;
  transition: 0.3s ease;
}

.animated-cta:hover {
  transform: scale(1.08);
}