:root {
    --gold: #c7921e;
    --dark: #111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}




/* ================= INFO SECTION ================= */

.info {
  height: 220px;
  margin: 0 10px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* background */
.info-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* dark overlay */
.info-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* content */
.info-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.info-content h1 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* underline */
.underline {
  width: 120px;
  height: 5px;
  background: var(--gold);
  border-radius: 20px;
  margin: 14px auto 0;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .info {
    height: 200px;
  }

  .info-content h1 {
    font-size: 24px;
  }

  .underline {
    width: 100px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .info {
    height: 180px;
    margin: 0 6px;
    border-radius: 12px;
  }

  .info-content h1 {
    font-size: 22px;
  }

  .underline {
    height: 4px;
    width: 90px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .info {
    height: 160px;
  }

  .info-content h1 {
    font-size: 20px;
  }

  .underline {
    width: 80px;
  }
}







  /* ================= SERVICES SECTION ================= */

  .offers-section {
    background: #f2f3f3;
    padding: 30px 40px;
  }
  
  .offers-container {
    max-width: 1200px;
    margin: auto;
  }
  
  /* GRID */
  .offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  /* CARD */
  .offer-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    border: 2px solid transparent;
    text-align: center; /* ✅ ADD THIS */
  }  
  
  /* HOVER EFFECT (IMPORTANT PART) */
  .offer-card:hover {
    border-color: #f1c232;
    box-shadow:
      0 0 0 8px rgba(241,194,50,0.25),
      0 14px 30px rgba(0,0,0,0.15);
    transform: translateY(-6px);
  }
  
  .offer-card h3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
  }
  
  .offer-card p {
    margin-top: 12px;
    color: #555;
    line-height: 1.6;
  }
  
  /* ICONS */
  .offer-icons {
    display: flex;
    align-items: center;
    justify-content: center; 
  }
  
  .offer-icons img {
    width: 48px;
  }
  
  .offer-icons .circle {
    width: 40px;
    height: 40px;
    border: 2px solid #c58a16;
    border-radius: 50%;
  }
  
  
  /* RESPONSIVE */
  @media (max-width: 992px) {
    .offers-grid {
      grid-template-columns: 1fr;
    }
  }




