* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color:transparent !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
}
input,
select,
textarea,
button {
    -webkit-tap-highlight-color: transparent !important;
    /* Prevent text selection as well */
    -webkit-user-select: none !important;
    user-select: none !important;
}


/* Header Styles */
header {
  background: #000;
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #4ade80;
}


/* Services Section */
.services {
  padding: 5rem 2rem;
  background: #e5efe5;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.service-item {
  text-align: center;
}

.service-icon {
  background: #4ade80;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  padding: 1.5rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: white;
}

.service-item h3 {
  font-size: 1.2rem;
  color: #333;
}

/* Quote Section */
.quote {
  padding: 5rem 2rem;
  background: #e5efe5;
}

blockquote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 2rem;
  color: #333;
}

blockquote footer {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #666;
}

/* Slideshow Styles */
.slideshow {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-bottom: -5rem;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
}
.text-in-circle {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-size: 24px;
  z-index: 10;
}

.text-in-circle h3 {
  margin: 0px;
  padding: 0px;
}
.slide.active {
  opacity: 1;
}
.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.circle-text {
    width: 300px;
    height: 300px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12px;
    position: relative;
    margin-left: 20%;
}
.circle-text h3 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.submit-btn {
  background: #4ade80;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}

.submit-btn:hover {
  background: #22c55e;
}

.service-item {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: transform 0.2s;
}

.service-item:hover {
  transform: translateY(-5px);
}

.size-img {
  height: 150%;
}

.circle-container {
  position: relative;
  text-align: center;
  margin: 20px auto;
}

.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #007BFF;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.circle p {
  margin: 5px 0;
  font-size: 14px;
  font-weight: bold;
}

.call-us-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}
.call-us-btn:hover {
    background-color: #218838;
}
.text_between{
  position: absolute;
  top: 90%;
  left: 45%;
  font-size: 2rem;
  color: #333;
}




/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close-modal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  background: none;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.form-group select {
  background-color: white;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Service Fields Styling */
.service-fields {
  display: none; /* Hidden by default */
  border-top: 1px solid #eee;
  padding-top: 1rem;
  margin-top: 1rem;
}

/* Submit Button */
.submit-btn {
  background: #4CAF50;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background: #45a049;
}

/* Form Validation Styles */
.form-group input:required:invalid,
.form-group select:required:invalid,
.form-group textarea:required:invalid {
  border-color: #4CAF50;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

/* Modal Title */
#modalTitle {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}

/* Scrollbar Styling */
.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: #666;
}
.visiting-charges{
  background-color: #e9ecef;
  padding: 10px;
  border-radius: 5px;
  margin-top: 15px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Form styling */
.form-group {
    margin-bottom: 1rem;
}
.services p {
  font-size: 18px;
  font-weight: bold;
  color: #666;
  margin-bottom: 20px;
  text-align: center;
}

.services p.text_between {
  font-size: 26px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-media-links {
  margin-right: 20px;
}

.social-media-links h3 {
  margin-bottom: 10px;
}

.social-media-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.social-media-links li {
  margin-right: 20px;
}

.social-media-links a {
  color: white;
  font-size: 24px;
  transition: color 0.2s ease;
}

.social-media-links a:hover {
  color: #ccc;
}

.copyright-info {
  margin-left: 20px;
}

.copyright-info p {
  margin-bottom: 0;
}

.social-media-links ul li a {
  color: white; /* Change the color to your desired color */
  font-size: 24px; /* Change the font size to your desired size */
  margin: 10px; /* Add some margin to space out the links */
}

.social-media-links ul li a:hover {
  color: #4ade80; /* Change the hover color to your desired color */
}
.social-media-links {
  position: relative; /* Change the position to your desired position */
  top: 10px; /* Change the top margin to your desired margin */
  left: 10px; /* Change the left margin to your desired margin */
}
.social-media-links {
  z-index: 1000; /* Change the z-index value to a higher value */
}
.no-scroll {
  overflow: hidden;
}
.no-scroll footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-list {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  blockquote {
    font-size: 1.5rem;
  }
  .modal-content {
    width: 95%;
    margin: 1rem;
    padding: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-size: 16px; /* Prevents zoom on mobile */
}

#modalTitle {
    font-size: 1.25rem;
}
.slideshow {
  height: 300px;
}

.modal-content {
  width: 95%;
  padding: 1.5rem;
}
.text_between{
  position: absolute;
  top: 38%;
  left: 40%;
  font-size: 1rem;
  color: #333;
}
.footer-container {
  flex-direction: column;
  align-items: center;
}

.social-media-links {
  margin-right: 0;
  margin-bottom: 20px;
}

.copyright-info {
  margin-left: 0;
}
.no-scroll {
  overflow: hidden;
}
}
@media (max-width: 360px) {
  /* General Adjustments */
  body {
    font-size: 14px; /* Reduce font size for better readability */
  }

  /* Header Adjustments */
  header {
    padding: 0.5rem 0; /* Reduce padding */
  }

  .header-container {
    padding: 0 1rem; /* Reduce padding */
  }

  .logo {
    font-size: 1.2rem; /* Reduce logo size */
  }

  .nav-list {
    gap: 1rem; /* Reduce gap between navigation items */
  }

  .nav-link {
    font-size: 0.9rem; /* Reduce font size for navigation links */
  }

  /* Services Section Adjustments */
  .services {
    padding: 5rem 1rem; /* Reduce padding */
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjust grid columns */
    gap: 1rem; /* Reduce gap between grid items */
  }

  .service-icon {
    width: 80px; /* Reduce icon size */
    height: 80px;
    padding: 1rem; /* Adjust padding */
  }

  .service-item h3 {
    font-size: 1rem; /* Reduce heading size */
  }

  /* Quote Section Adjustments */
  .quote {
    padding: 3rem 1rem; /* Reduce padding */
  }

  blockquote {
    font-size: 1.2rem; /* Reduce font size */
  }

  blockquote footer {
    font-size: 1rem; /* Reduce footer font size */
  }

  /* Slideshow Adjustments */
  .slideshow {
    height: 200px; /* Reduce slideshow height */
  }

  .text-in-circle {
    width: 200px; /* Reduce circle size */
    height: 200px;
    font-size: 18px; /* Reduce font size */
  }

  .circle-text {
    width: 145px;
    height: 145px;
    margin-left: 10%;
    position: absolute;
    top: 21%;
    right: 15%;
}

  .circle-text h3 {
    font-size: 11px; /* Reduce font size */
  }

  /* Modal Adjustments */
  .modal-content {
    width: 95%; /* Adjust modal width */
    padding: 1rem; /* Reduce padding */
  }

  .close-modal {
    font-size: 1.2rem; /* Reduce close button size */
  }

  .submit-btn {
    padding: 0.5rem 1rem; /* Adjust button padding */
    font-size: 0.9rem; /* Reduce font size */
  }

  /* Circle Container Adjustments */
  .circle {
    position: absolute;
    top: 50%;
    width: 120px; /* Reduce circle size */
    height: 120px;
  }

  .circle p {
    font-size: 12px; /* Reduce font size */
  }

  .call-us-btn {
    padding: 6px 9px;
    font-size: 6px;
    position: absolute;
    top: 57%;
}

  /* Text Between Adjustments */
  .text_between {
    top: 26%;
    left: 32%;
    font-size: 1.2rem;
}
.service-item{
outline:none;
}

}
@media (max-width: 480px) {
  /* General Adjustments */
  body {
    font-size: 14px; /* Reduce font size for better readability */
  }

  /* Header Adjustments */
  header {
    padding: 0.5rem 0; /* Reduce padding */
  }

  .header-container {
    padding: 0 1rem; /* Reduce padding */
  }

  .logo {
    font-size: 1.2rem; /* Reduce logo size */
  }

  .nav-list {
    gap: 1rem; /* Reduce gap between navigation items */
  }

  .nav-link {
    font-size: 0.9rem; /* Reduce font size for navigation links */
  }

  /* Services Section Adjustments */
  .services {
    padding: 5rem 1rem; /* Reduce padding */
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjust grid columns */
    gap: 1rem; /* Reduce gap between grid items */
  }

  .service-icon {
    width: 80px; /* Reduce icon size */
    height: 80px;
    padding: 1rem; /* Adjust padding */
  }

  .service-item h3 {
    font-size: 1rem; /* Reduce heading size */
  }

  /* Quote Section Adjustments */
  .quote {
    padding: 3rem 1rem; /* Reduce padding */
  }

  blockquote {
    font-size: 1.2rem; /* Reduce font size */
  }

  blockquote footer {
    font-size: 1rem; /* Reduce footer font size */
  }

  /* Slideshow Adjustments */
  .slideshow {
    height: 200px; /* Reduce slideshow height */
  }

  .text-in-circle {
    width: 200px; /* Reduce circle size */
    height: 200px;
    font-size: 18px; /* Reduce font size */
  }

  .circle-text {
    width: 145px;
    height: 145px;
    margin-left: 10%;
    position: absolute;
    top: 21%;
    right: 15%;
}

  .circle-text h3 {
    font-size: 11px; /* Reduce font size */
  }

  /* Modal Adjustments */
  .modal-content {
    width: 95%; /* Adjust modal width */
    padding: 1rem; /* Reduce padding */
  }

  .close-modal {
    font-size: 1.2rem; /* Reduce close button size */
  }

  .submit-btn {
    padding: 0.5rem 1rem; /* Adjust button padding */
    font-size: 0.9rem; /* Reduce font size */
  }

  /* Circle Container Adjustments */
  .circle {
    position: absolute;
    top: 50%;
    width: 120px; /* Reduce circle size */
    height: 120px;
  }

  .circle p {
    font-size: 12px; /* Reduce font size */
  }

  .call-us-btn {
    padding: 6px 9px;
    font-size: 6px;
    position: absolute;
    top: 57%;
}

  /* Text Between Adjustments */
  .text_between {
    top: 25%;
    left: 31%;
    font-size: 8px;
}
.services>p{
  padding: 2px;
  font-size: 14px;
}
.text_between{
  padding-bottom: 2px;
  
}
.social-media-links{
  font-size: 15px;
}
.footer-container {
  padding: 10px;
}

.social-media-links ul {
  flex-direction: column;
}

.social-media-links li {
  margin-right: 0;
  margin-bottom: 10px;
}

.social-media-links a {
  font-size: 18px;
}

.copyright-info p {
  font-size: 14px;
}
}

.credits a{
   color: white;
}