body {
  margin: 0;
  font-family: Arial;
  background: white;
}

/* HERO */
.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 50px;
}

.hero-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

/* IMAGE */
.hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 25px;
  transition: opacity 0.5s ease;
}

/* TEXT */
.hero-text h2 {
  font-size: 55px;
  color: #0B2559;
  line-height: 1.3;
}

/* BUTTON */
.hero-text a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #8DC63F;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  text-transform: uppercase;
}

/* DOTS */
.dots {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 10px;
}

.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.dots button.active {
  background: #0B2559;
  transform: scale(1.2);
}

/* FLOATING ACTION BUTTONS */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

/* COMMON BUTTON STYLE */
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s ease;
  white-space: nowrap;
}

/* CALL BUTTON */
.float-btn.call {
  background: #1d4ed8;
}

/* WHATSAPP BUTTON */
.float-btn.whatsapp {
  background: #25D366;
}

/* HOVER EFFECT */
.float-btn:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}

/* ICON SIZE */
.float-btn i {
  font-size: 16px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .floating-actions {
    right: 10px;
    bottom: 20px;
  }

  .float-btn {
    font-size: 11px;
    padding: 10px 14px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h2 {
    font-size: 26px;
  }

  .float-buttons {
    position: static;
    transform: none;
    margin-top: 20px;
    align-items: center;
  }
}