
    @font-face {
      font-family: 'Rajdhani';
      src: url('../fonts/Rajdhani-Variable.ttf') format('truetype');
      font-style: normal;
    }
    
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Rajdhani';
}

.offer-strip {
  width: 100%;
  background: rgb(88 144 47);
  color: #ffffff;
  text-align: center;
  padding: 10px 15px;
  font-size: 1rem;
  font-weight: 500;
}

.offer-strip span {
  font-weight: 700;
  color: #ffd966;
}

.offer-strip strong {
  font-weight: 700;
  text-transform: uppercase;
}

/* LOGO STRIP */
.logo-strip {
     width: 100%;
    height: 12vh;
    padding: 0.65rem 1rem 0rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-strip img {
  max-width: 18vw;
  max-height: 8vh;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  background-image: url("../../assets/images/img1.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem;
      width: 100vw;
      display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.2rem;
    margin: 1.5rem 0rem;
}

.hero-content img {
  width: 45vw;
  margin-bottom: 2rem;
}

/* BUTTON */
.hero-btn {
  display: inline-block;
  padding: 0.8em 2em;
  font-size: 1.15rem;
  background: #58902f;
  color: #fff;
  text-decoration: none;
  border-radius: 0.6em;
  transition: transform 0.3s ease;
  cursor:pointer;
}

.hero-btn:hover {
  transform: scale(1.05);
}

    footer {
      background-color: #000;
      padding: 15px 10px;
      text-align: center;
    }

    footer a {
      text-decoration: none;
      color: #fff;
      font-size: 20px;
    }
    

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    
     .offer-strip {
    padding: 8px 10px;
  }
    
    .logo-strip {
    height: auto;
    }
    
  .logo-strip img {
            max-width: 100vw;
  }

  .hero-content img {
            width: 100vw;
  }
  
  .hero-content {
  padding: 1rem;
  height: 100%;
}

.hero-btn {
    font-size: 1.4rem;
}
}