   /* Reset */
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   /* WhatsApp Button Styling */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 50px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
  position: fixed;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* Tooltip Styling */
.whatsapp-tooltip {
  position: absolute;
  right: 70px; /* Position to the left of the WhatsApp button */
  background-color: #ffffff;
  color: #25D366;
  padding: 5px 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.whatsapp-button:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}



@media (max-width: 480px) {
  .whatsapp-button {
      width: 50px;
      height: 50px;
      left: 15px;
  }

  .whatsapp-icon {
      width: 24px;
      height: 24px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .whatsapp-button {
      width: 55px;
      height: 55px;
  }

  .whatsapp-icon {
      width: 28px;
      height: 28px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .whatsapp-button {
      width: 60px;
      height: 60px;
  }

  .whatsapp-icon {
      width: 30px;
      height: 30px;
  }
}

@media (min-width: 1025px) {
  .whatsapp-button {
      width: 70px;
      height: 70px;
  }

  .whatsapp-icon {
      width: 35px;
      height: 35px;
  }
}







   /* Hero Section */
   .contact-page-hero {
       position: relative;
       background: url('images/Working.webp') center/cover no-repeat;
       height: 70vh;
       display: flex;
       align-items: center;
       justify-content: center;
       color: #fff;
       text-align: center;
   }

   .contact-page-hero-overlay {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: rgba(0, 0, 0, 0.55);
   }

   .contact-page-hero-content {
       position: relative;
       z-index: 1;
       max-width: 700px;
       padding: 0 20px;
   }

   /* Contact Info Section */
   /* .contact-page-info-container {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
       gap: 20px;
       padding: 60px 20px;
   }

   .contact-page-info-card {
       background: #f9f9f9;
       padding: 25px;
       border-radius: 12px;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
       text-align: center;
   }
   .contact-icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}
.contact-icon svg {
  transition: transform 0.3s ease;
}
.contact-page-info-card:hover .contact-icon svg {
  transform: scale(1.1);

} */

/* Contact Info Section */
.contact-page-info-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 60px 20px;
}

/* Card layout: icon left, text right */
.contact-page-info-card {
  display: flex;
  align-items: center;      /* vertical centering */
  gap: 16px;                /* space between icon and text */
  background: #f9f9f9;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  text-align: left;         /* left-align the text */
  transition: transform .18s ease, box-shadow .18s ease;
  border-bottom: 4px solid #00a884;
  border-left: 1px solid #00a884;
}

/* Icon container */
.contact-icon {
  flex: 0 0 48px;           /* fixed icon column */
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a884;           /* sets svg stroke/fill via currentColor */
}

/* svg sizing */
.contact-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

/* Text block */
.contact-text h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0f1720;
}
.contact-text p {
  margin: 6px 0 0;
  color: #55606a;
  font-size: 16px;
  line-height: 1.35;
}

/* Hover / subtle lift */
.contact-page-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Responsive small screens: slightly smaller padding */
@media (max-width: 480px) {
  .contact-page-info-container { padding: 30px 12px; }
  .contact-page-info-card { padding: 12px 14px; gap: 12px; }
  .contact-icon { flex: 0 0 40px; width: 40px; height: 40px; }
  .contact-icon svg { width: 22px; height: 22px; }
}


.form-contact{
  padding: 0px 0px 20px 0px;
  border-bottom: 4px solid #00a884;
  border-left: 1.5px solid #00a884;
  border-radius: 12px;
}



   /* Contact Form Section */
   .contact-page-form {
       padding: 60px 20px;
       background: #fff;
       text-align: center;
   }

   .contact-page-form-container {
       max-width: 700px;
       margin: auto;
   }

   .contact-page-form h2 {
       margin-bottom: 25px;
   }

   .contact-page-form-group {
       margin-bottom: 20px;
   }

   .contact-page-form-group input,
   .contact-page-form-group textarea {
       width: 100%;
       padding: 12px;
       border: 1px solid #ddd;
       border-radius: 8px;
       outline: none;
       font-size: 14px;
   }

   .contact-page-form-group textarea {
       resize: none;
       height: 120px;
   }

   .contact-page-btn {
       display: inline-block;
       background: #00a884;
       color: #fff;
       padding: 12px 25px;
       border: none;
       border-radius: 8px;
       cursor: pointer;
       text-decoration: none;
       font-size: 15px;
       transition: background 0.3s ease;
       margin-top: 10px;
   }

   .contact-page-btn:hover {
       background: #008c6f;
   }

   /* Map Section */
   .contact-page-map {
       padding: 60px 20px;
       background: #f0f4f8;
   }
   .contact-page-map-container{
    height: 65vh;
   }

   .contact-page-map-box {
       height: 300px;
       background: #ddd;
       display: flex;
       align-items: center;
       justify-content: center;
       border-radius: 12px;
       font-size: 16px;
       color: #333;
    height: 65vh;

   }

   /* Support & Sales Section */
   .contact-page-support-sales-container {
       display: flex;
       flex-wrap: wrap;
       gap: 40px;
       padding: 60px 20px;
       background: #ccc;
   }

   .contact-page-support,
   .contact-page-sales {
       flex: 1;
       min-width: 280px;
   }

   .contact-page-support h2,
   .contact-page-sales h2 {
       margin-bottom: 15px;
   }

   .contact-page-support p,
   .contact-page-sales p {
       margin-bottom: 20px;
   }

   /* Closing CTA Section */
   .contact-page-cta {
       position: relative;
       /*background: url('images/20250904_1223_Futuristic\ Business\ Interaction_simple_compose_01k49skyzyfm89g0g4g0pr8qwm.png') center/cover no-repeat;*/
       background: #008c6f;
       padding: 80px 20px;
       text-align: center;
       color: #fff;
   }

   /*.contact-page-cta-overlay {*/
   /*    position: absolute;*/
   /*    top: 0;*/
   /*    left: 0;*/
   /*    right: 0;*/
   /*    bottom: 0;*/
   /*    background: rgba(0, 0, 0, 0.6);*/
   /*}*/

   .contact-page-cta-content {
       position: relative;
       z-index: 1;
       max-width: 700px;
       margin: auto;
   }

   .contact-page-cta h2 {
       margin-bottom: 15px;
   }

   .contact-page-cta p {
       margin-bottom: 20px;
   }

   /* Responsive Media Queries */
   @media only screen and (min-width: 300px) and (max-width: 480px) {
       .contact-page-hero {
           height: 60vh;
       }

       .contact-page-support-sales-container {
           flex-direction: column;
       }
   }

   @media only screen and (min-width: 481px) and (max-width: 768px) {
       .contact-page-support-sales-container {
           flex-direction: column;
       }
   }

   @media only screen and (min-width: 769px) and (max-width: 1024px) {
       .contact-page-info-container {
           grid-template-columns: repeat(2, 1fr);
       }
   }






   /* ===== Footer Styling ===== */
.footer {
  background: #0d1b2a; /* Dark professional background */
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 12px 12px 0px 0px;
   margin: 10px 0px 0px 0px ;
}

.footer__container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer__title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #f5f5f5;
  position: relative;
}

.footer__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #1abc9c;
  margin-top: 8px;
  border-radius: 2px;
}

.footer__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.footer__link {
  display: inline-block;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer__link:hover {
  color: #1abc9c;
  padding-left: 4px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social-link {
  font-size: 24px;
  color: #ccc;
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  color: #1abc9c;
  transform: scale(1.1);
}

.footer__copy {
  text-align: center;
  font-size: 13px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: #aaa;
}

/* ===== Responsive ===== */
@media only screen and (min-width: 300px) and (max-width: 480px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__social {
    justify-content: center;
  }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__social {
    justify-content: center;
  }
}