/* General resets and body */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #fff;
  color: #000;
}

/* Banner */
.banner {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.banner img:first-child {
  width: 100%;
  max-width: 1450px;
  height: auto;
}

#code {
  position: fixed;
  top: 400px;
  right: 20px;
  width: 100px;
  height: 100px;
}

h1{
  position: fixed;
  top: 600px;
  right: 20px;
  width: 100px;
  height: 100px;
  color:brown;
}

/* Info Images Section */
.info-images {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 20px 50px;
  margin-bottom: 80px;
}

.image-block {
  width: 350px;
  text-align: left;
  position: relative;
}


.image-block img {
  width: 100%;
  height: auto;
  border-radius: 10px;
 transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 0.8s ease forwards;
}

.image-block img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.image-block label {
  display: block;
  background-color: #87ceeb;
  color: black;
  text-align: center;
  font-size: 22px;
  padding: 10px;
  margin: 10px 0;
  border-radius: 15px;
}

.line1 {
  color: rgb(0, 0, 0);
  background-color: #87ceeb; /* Blue */
  display: block;
  padding: 2px;
  border-radius: 5px;

}

.line1:hover{
  color: rgb(250, 250, 250);
  background-color: #7b7c7d; /* Blue */
  display: block;
  padding: 2px;
  border-radius: 5px;
}

.image-block pre {
  font-size: 16px;
  line-height: 1.4;
  white-space: pre-wrap;
  background-color: #f7f7f7;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  color: #444;
}

.image-block pre2 {
  font-size: 16px;
  line-height: 1.4;
  background-color: #ffffff;
  padding: 1px;
  color: #444;
}

.image-block pre:hover
{
  background-color:#444;
  color: white;
}

/* Services */
.services {
  text-align: center;
  margin-bottom: 50px;
}

.services h2 {
  font-size: 40px;
  color: black;
  margin-bottom: 30px;
}

.service-items {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service {
  background-color: #eee;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service:hover
{
  background-color:#87ceeb;
}
.service img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
   transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 0.8s ease forwards;
}
.service img:hover{
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service label {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
  color: #333;
}

.service p {
  font-size: 16px;
  color: #555;
}

/* Contact Phone Section */
.contact-phone {
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 50px;
  justify-content: center;
}

.contact-phone img {
  height: 50px;
  width: 50px;
}

.contact-phone h3 {
  font-size: 30px;
  margin: 0;
}

/* Trust Info Section */
.trust-info {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 50px 50px;
  background-color: #f0f0f0;
}

.trust-box {
  background: white;
  border-radius: 10px;
  padding: 20px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 0.8s ease forwards;

}

.trust-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}


.trust-box img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.trust-box h3 {
  font-size: 24px;
  color: #e53935; /* red */
  margin-bottom: 10px;
}

.trust-box p {
  font-size: 16px;
  color: #444;
}

.main-footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  margin-top: 50px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 22%;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-col h9 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col p {
  margin: 5px 0;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
  color: #ffca28;
}

.footer-buttons {
  margin-top: 20px;
}

.footer-btn {
  display: block;
  margin: 8px 0;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.call-btn {
  background-color: #1e88e5;
  color: white;
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
}

.instagram-btn {
  background-color: #e1306c;
  color: white;
}

.facebook-btn {
  background-color: navy;
  color: white;
}

.working-hours h4 {
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #ffca28;
  font-size: 30px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
 
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #bbb;
}

.bottom-action-bar {
  display: none;
}


@media (max-width: 768px) {

  /* ---------------- Banner Section ---------------- */
  .banner {
    margin-bottom: 30px;
  }
  .banner-img{
    width: 768px;
  }
  .banner img:first-child {
    width: 100%;
    height: auto;
  }

  #code,
  h1 {
    display: none;
  }

  /* ---------------- Callback (Header Right) ---------------- */
  .callback h3,
  .callback input[type="text"],
  .callback button {
    display: none;
  }

  #logo {
    max-height: 50px;
    align-self: flex-start;
  }
  

  /* ---------------- Info Section ---------------- */
  .info-images {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 30px;
  }

  .image-block {
    width: 90%;
    padding: 0 10px;
  }

  .image-block pre {
    font-size: 15px;
  }

  /* ---------------- Services Section ---------------- */
  .services h2 {
    font-size: 28px;
  }

  .service-items {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service {
    width: 90%;
    max-width: 400px;
  }

  .service label {
    font-size: 20px;
  }

  .service p {
    font-size: 14px;
  }

  /* ---------------- Contact Phone ---------------- */
  .contact-phone {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 15px;
  }

  .contact-phone h3 {
    font-size: 20px;
  }

  .contact-phone img {
    height: 40px;
    width: 40px;
  }

  /* ---------------- Trust Info Section ---------------- */
  .trust-info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
  }

  .trust-box {
    width: 90%;
    max-width: 350px;
    text-align: center;
  }

  .trust-box h3 {
    font-size: 20px;
  }

  .trust-box p {
    font-size: 14px;
  }

  /* ---------------- Footer ---------------- */
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-col {
    width: 90%;
  }

  .footer-buttons a {
    font-size: 16px;
  }

  .working-hours h4 {
    font-size: 22px;
  }

  .footer-bottom {
    margin-left: 0;
  }
}

@media screen and (max-width: 320px) and (max-height: 568px) {

  /* Hide QR code and h1 */
  #code,
  h1 {
    display: none;
  }

  /* Header */
  .header {
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    gap: 10px;
  }

  #logo {
    max-height: 40px;
    align-self: flex-start;
    margin-top:-13px;
  }

  .callback {
    display: none;
  }

  /* Navbar */
  nav {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 10px;
    padding: 10px;
    margin-left: -1px;
    margin-bottom: -10px;
    margin-top:-10px;
  }

  nav a {
    font-size: 10px;
    padding: 8px 8px;
    margin-left: -5px;
    margin-top:-10px;
    word-spacing:5px;
  
  }
nav a :hover
{
  size:5px;
}

  /* Banner */
  .banner img:first-child {
    width: 100%;
    height: auto;
  }

  /* Info Images */
  .info-images {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 20px;
  }

  .image-block {
    width: 95%;
  }

  .image-block pre {
    font-size: 13px;
    padding: 10px;
  }

  .image-block label {
    font-size: 18px;
    padding: 8px;
  }

  /* Services */
  .services h2 {
    font-size: 22px;
  }

  .service-items {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .service {
    width: 95%;
    padding: 15px;
  }

  .service label {
    font-size: 18px;
  }

  .service p {
    font-size: 13px;
  }

  /* Contact */
  .contact-phone {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 10px;
  }

  .contact-phone img {
    width: 35px;
    height: 35px;
  }

  .contact-phone h3 {
    font-size: 16px;
  }

  /* Trust Info */
  .trust-info {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px;
  }

  .trust-box {
    width: 95%;
    padding: 10px;
  }

  .trust-box h3 {
    font-size: 18px;
  }

  .trust-box p {
    font-size: 13px;
  }

  /* Footer */
  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-col {
    width: 95%;
  }

  .footer-buttons a {
    font-size: 14px;
    padding: 8px;
  }

  .working-hours h4 {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

@media only screen and (max-width: 375px) {
  /* General */
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    gap: 10px;
  }

  #logo {
    max-height: 40px;
    width: auto;
    margin-left: 0;
    margin-top:-10px;
   align-items:flex-start
  }

  .callback {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-left: 0;
  }

  .callback input[type="text"],
  .callback button {
    width: 100%;
    font-size: 16px;
  }

  nav {
    font-size: 10px;
    padding: 5px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
  }

  nav a {
    padding: 5px 4px;
    font-size: 10px;
  }

  /* Banner */
  .banner img:first-child {
    width: 100%;
    height: auto;
    margin-top:10px;
  }

  #code,
  h1 {
    display: none;
  }

  /* Info Images */
  .info-images {
    flex-direction: column;
    padding: 10px;
    gap: 20px;
  }

  .image-block {
    width: 100%;
  }

  /* Services */
  .services h2 {
    font-size: 24px;
  }

  .service-items {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service {
    width: 100%;
    max-width: 90%;
  }

  /* Contact Phone */
  .contact-phone {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px;
  }

  /* Trust Info */
  .trust-info {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }

  .trust-box {
    width: 90%;
  }

  /* Footer */
  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    margin-left: 0;
    padding: 10px;
    font-size: 12px;
  }

  .working-hours h4 {
    font-size: 20px;
  }
}
/* Default: hide it on all screens */
.bottom-action-bar {
  display: none;
}

/* Mobile-only: show it on small screens (max 767px) */
@media (max-width: 767px) {
  .bottom-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #ccc;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 1000;
  }

  .action-link {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .action-icon {
    height: 24px;
    width: 24px;
    margin-bottom: 5px;
  }
}


.custom-block {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  text-align: center;
  margin: 20px auto;
  transition: transform 0.3s ease;
}

.custom-block:hover {
  transform: translateY(-5px);
}

.custom-block img {
  width: 100%;
  border-radius: 8px;
}

.custom-block label {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  display: block;
  color: #333;
}

.info-list p {
  font-size: 14px;
  font-weight: 500;
  margin: 5px 0;
  font-family: 'Segoe UI', sans-serif;
}

