/* Base */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
  color: #333;
  height: 100%;
  padding:0;
}

/* Hero Section */
.hero {
  background: #001830;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
margin:0 auto;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta-buttons .btn {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}

.btn.primary {
  background: #ffcc00;
  color: #000;
}

.btn.secondary {
  background: #fff;
  color: #003366;
}

/* Services Section */
.services,
.about,
.contact {
  padding: 40px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: bold;
}

/* About Section */
.about p {
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form */
.contact {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.contact p {
  margin: 5px 0;
  color: #555;
  font-size: 1rem;
}

.contact .phone,
.contact .email {
  font-weight: bold;
  color: #222;
}

.contact form {
  max-width: 500px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: 0.2s border ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px rgba(255, 204, 0, 0.4);
}

.contact button {
  padding: 15px;
  border: none;
  background-color: #ffcc00;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact button:hover {
  background-color: #e6b800;
}
/* Footer */
footer {
  background: #222;
  color: #ccc;
  padding: 20px;
  text-align: center;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.close {
  color: #333;
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ffcc00;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.15));
  
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding: 0 20px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  padding: 15px;
  text-align: center;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.service-card p {
  font-weight: bold;
  font-size: 1rem;
  margin: 0;
}
.hero-top {
  display: flex;
  justify-content: center;
  padding: 10px 0px;
  margin-bottom: 0;
}
.logo {
  height: 120px;
  margin-bottom: 0;
  display: block;
}s
.hero-content h1{
  margin-top: 0;
}
.contact-footer{
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.95rem;
  text-align: center;
  position: relative;
  color: #b4b5c7; font-size: 0.95rem;
  line-height: 1.6;
  background-color: hsl(0, 0%, 81%);
  bottom: 0;
  padding: 40px 20px;
}
.contact-footer p {
  margin: 5px 0;
}