/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography and Base */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

html {
  scroll-behavior: smooth;
}

/* Layout Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
header {
  background-color: #737373; /* dark gray from logo */
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color:#f3ebeb;

  text-decoration: none;
  font-weight: bold;
}
nav a.active {
  color: #F7941E;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('../images/hero.jpg') center / cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  color: white;
  max-width: 700px;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}


.btn {
  background-color: #F7941E; /* main orange */
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #F26522; /* slightly darker orange */
}

/* About */
.about {
  padding: 60px 20px;
  background-color: #fff;
}

.about h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #737373;
}

.about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about img {
  max-width: 180px;
  margin-bottom: 20px;
}


/* Services */
.services {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.services h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 40px;
  color: #737373;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  margin-bottom: 5px;
 
}


.service-card h3 {
  color: #F7941E;
}

/* Footer */
footer {
  background-color: #737373;
  color: white;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9em;
}

footer strong {
  color: #F7941E;
}
/* Appointment Form */
.appointment-form {
  padding: 60px 20px;
  background-color: #fff;
}

.appointment-form h2 {
  color: #737373;
  margin-bottom: 20px;
}

.appointment-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.appointment-form label {
  font-weight: bold;
  color: #333;
}

.appointment-form input,
.appointment-form select {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.appointment-form button {
  align-self: start;
  padding: 12px 24px;
  background-color: #F7941E;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.appointment-form button:hover {
  background-color: #F26522;
}
/* Animation Setup */
.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.zenit-gray {
  color: #737373;
}

.zenit-orange_white_border {
  color: #F7941E;
  /*-webkit-text-stroke: 0.8px rgb(7, 7, 7); /* white border */
  /*text-stroke: 0.5px white;  fallback for future browsers */
}
.zenit-orange{
    color: #F7941E;
   /* -webkit-text-stroke: 0.3px rgb(7, 7, 7); */
    font-weight: bold;

}

/* ============================= */
/* 📱 Responsive Design: Mobile */
/* ============================= */
@media (max-width: 768px) {

  .nav-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  nav li {
    width: 100%;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #737373;
    color: white;
    border-bottom: 1px solid #F7941E;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1em;
  }

  .service-grid {
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .appointment-form form {
    width: 100%;
  }

  .appointment-form button {
    width: 100%;
  }

  .logo {
    height: 40px;
  }

  footer {
    font-size: 0.85em;
    padding: 30px 10px;
  }
}
/* ============================= */
/* 📱 Responsive Design: Mobile */
/* ============================= */
@media (max-width: 768px) {

  .nav-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  nav li {
    width: 100%;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #737373;
    color: white;
    border-bottom: 1px solid #F7941E;
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 1em;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1em;
  }

  .service-grid {
    flex-direction: column;
    gap: 20px;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .appointment-form form {
    width: 100%;
  }

  .appointment-form button {
    width: 100%;
  }

  .logo {
    height: 40px;
  }

  footer {
    font-size: 0.85em;
    padding: 30px 10px;
  }
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
      align-self: center;
    display: block;
    margin-top: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #737373;
  }

  .nav-links.show {
    display: flex;
  }
}
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
}

.whatsapp-button img {
  width: 100%;
  height: auto;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}



