.images {
    background-image: url("images/battery.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
    padding-bottom: 15%;
    padding-top: 10%;
}

.dost {
    font-size: 20px;
    color: #fffdfd;
    margin-left: 100px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.whatsapp-float i {
    margin-top: 15px;
}

.whatsapp-float:hover {
    background-color: #1ebd5a;
    transform: scale(1.1);
}

.button-container {
    margin-left: 40%;
    margin-top: 5%;
    display: inline-flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    border: none;
}

.book-btn {
    background-color: #00b3b3;
    /* teal color */
    color: #fff;
    padding: 15px 25px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.plus-box {
    background-color: #444;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 22px;
    transition: 0.3s ease;
}

.button-container:hover .book-btn {
    background-color: #009999;
}

.button-container:hover .plus-box {
    background-color: #000;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #0a0a0a;
  color: #fff;
}

/* Grid Layout */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 100vh;
}

/* Feature Box Style */
.feature-box {
    margin-top: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  text-align: center;
  transition: all 0.6s ease;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
}

.feature-box:nth-child(odd) {
  background-color: #fff;
  color: #000;
}

.feature-box:nth-child(even) {
  background-color: #00b3b3;
  color: #fff;
}

/* When visible */
.feature-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* Icon and Text Styling */
.feature-box img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* Hover Animation */
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-box:hover img {
  transform: scale(1.2) rotate(8deg);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
  .feature-box {
    padding: 50px 20px;
  }
  .feature-box img {
    width: 60px;
    height: 60px;
  }
}