/* hero ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.1rem;
  color: #8c8c8c;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  position: relative;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  padding-left: 2rem; /* extra space on the left for the dot */
  background-color: #ed815a;
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn.primary:hover {
  background-color: #e3683f;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(227, 104, 63, 0.4);
}

/* Dot Inside Left */
.btn.primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 1rem; /* adjust according to padding */
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #d7f60c;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(221, 255, 71, 0.7);
  animation: pulse 1.5s infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(246, 4, 48, 0.7);
  }
  70% {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 0 8px rgba(255, 71, 87, 0);
  }
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
  }
}

.btn.secondary {
  background-color: white;
  color: #ed815a;
  border: 2px solid #ed815a;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.secondary:hover {
  background-color: #ffe8e1;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 12px rgba(237, 129, 90, 0.3);
}


.btn.tertiary {
  background-color: #ffe3a3;
  color: #573b00;
  border: 2px solid #f8d46d;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.tertiary:hover {
  background-color: #fbe4a0;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 12px rgba(251, 228, 160, 0.4);
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }
}






/* ================ Enquiry form ================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
/* end Enquiry form  */

.btn-enquiry {
padding: 12px 24px;
background: linear-gradient(-45deg, #ff6a00, #ff0080,rgb(157, 94, 32), #92fe9d);
background-size: 400% 400%;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
margin: 30px;
font-weight: 600;
transition: all 0.3s ease;
animation: gradientShift 6s ease infinite, pulseGlow 2s infinite;
box-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
}

@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
0%   { box-shadow: 0 0 5px rgba(255, 106, 0, 0.5); }
50%  { box-shadow: 0 0 20px rgba(255, 106, 0, 1); }
100% { box-shadow: 0 0 5px rgba(255, 106, 0, 0.5); }
}

.btn-enquiry:hover {
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.modal {
display: none;
position: fixed;
z-index: 999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
justify-content: center;
align-items: center;
animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
from { opacity: 0; }
to   { opacity: 1; }
}

.modal-content {
background: linear-gradient(to right, #fceabb, #f8b500);
padding: 35px;
border-radius: 25px;
width: 90%;
max-width: 500px;
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
animation: slideUp 0.5s ease;
}

@keyframes slideUp {
from { transform: translateY(50px); opacity: 0; }
to   { transform: translateY(0); opacity: 1; }
}

.modal-content h2 {
margin-bottom: 25px;
text-align: center;
color: #2c3e50;
font-size: 26px;
}

.modal-content input,
.modal-content textarea {
width: 100%;
padding: 14px;
margin: 10px 0;
border: none;
border-radius: 12px;
background: #fff;
font-size: 15px;
box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
transition: box-shadow 0.3s ease;
}

.modal-content input:focus,
.modal-content textarea:focus {
box-shadow: 0 0 5px rgba(255, 105, 135, 0.5);
outline: none;
}

.modal-content button {
padding: 12px 20px;
margin-top: 10px;
background: linear-gradient(to right, #ff416c, #ff4b2b);
color: white;
border: none;
border-radius: 25px;
cursor: pointer;
font-weight: 600;
transition: all 0.3s ease;
}

.modal-content button:hover {
background: linear-gradient(to right, #ff4b2b, #ff416c);
transform: scale(1.05);
}

.modal-content button.cancel-btn {
background: #555;
margin-left: 10px;
}

.modal-content button.cancel-btn:hover {
background: #333;
}

#responseMessage {
text-align: center;
color: green;
margin-top: 15px;
font-weight: bold;
}

@media(max-width: 600px) {
    .modal-content {
        width: 95%;
    }
}

/* =====================
Modal Background Layer
===================== */
    #enquiryModal {
        display: none;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1050;
    }




