/* style.css */

/* General */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.hero-section {
  background: url('/image/bg-08-free-img.webp') center center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* Company Name */
.company-name {
  font-weight: 700;
  color: #df6308; /* gold highlight */
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4vw, 3rem); /* responsive scaling */
}

/* Search Box */
.search-box {
  max-width: 600px;
  margin: 20px auto;
  display: flex;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.search-box input {
  flex: 1;
  border: none;
  padding: 12px;
}
.search-box button {
  background: #0078d7;
  color: #fff;
  border: none;
  padding: 0 20px;
}

/* Project Cards */
.project-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  transition: transform 0.2s;
}
.project-card:hover {
  transform: translateY(-5px);
}
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.project-info {
  padding: 15px;
}

/* Footer */
.footer {
  background: #f8f9fa;
  padding: 30px 0;
  margin-top: 40px;
}

.btn-success {
  background-color: #28a745;
  border: none;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.btn-success:hover {
  background-color: #218838;
}
/* Floating Buttons */
.float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Call Button */
.call-btn {
  background-color: #28a745; /* green */
  bottom: 90px; /* stack above WhatsApp */
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25D366; /* WhatsApp green */
}
