
body {
      font-family: 'Montserrat Bold', sans-serif;

    margin: 0;
    padding: 0;
    background-color: #ffffff;
  overflow-x: hidden;
  height: 100%;
  }
main {
  
      background-color: white;

    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
   /*background-image: url('../img/Visual\ identity\ \ Dealify-01_page-0004.jpg');*/
}
*:not(.navbar):not(.navbar *):not(.offer-bar):not(.offer-bar *) {
    box-sizing: border-box;
}
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}
.hero {
    text-align: center;
    padding: 50px 20px;
    
}
.hero img {
    max-width: 100%;
    height: 60px; /* Reduced from 100px */
}

.hero h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #979492; /* grey */
    font-style: bold;
    font-family: 'Poppins', sans-serif;
  	display: none;


}
.hero p {
    color: #0cc4e9; /* light blue */
    font-style: bold;
    font-family: 'Poppins', sans-serif;

}
.section {
  padding: 40px 20px;
  flex: 1 1 calc(33% - 20px);
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #979492;
  margin-bottom: 12px;
  transition: background-color 0.3s ease, transform 0.2s ease; /* 🔥 smooth animation */
}

.section:hover {
  background-color: #8d8a87; /* 🔁 slightly darker grey */
  transform: translateY(-4px); /* 👆 gentle lift */
}

.section h2 {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #0cc4e9;
    font-style: bold;
    font-family: 'Poppins', sans-serif;

}
.section p {
    margin-bottom: 20px;
    font-size: 1em;
    color: white;
    font-family: 'Poppins', sans-serif;

}
.why-choose {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}


.why-choose .card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease, transform 0.3s ease;
  min-height: 160px;         /* ✅ Uniform height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.why-choose .card:hover {
  background-color: #f0f0f0;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(12, 196, 233, 0.15);
}

.why-choose .card h3 {
  color: #0cc4e9;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-choose .card p {
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  flex-grow: 1;
}


.join-us {
    text-align: center;
    background: #e9ecef;
    padding: 50px 20px;
  
}
.join-us a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #0cc4e9;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.join-us a:hover {
  background: #0aa8c7;
  transform: translateY(-2px);
}
