.phone-button {
    background-color: darkblue; /* Bootstrap color (darkblue) */
    padding: 3px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .phone-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .phone-button img {
    width: 50px;
    height: 60px;
    object-fit: cover;
  }

  /* Mesh-style image background (you can customize images below) */
  /* Container that holds everything */
  .mesh-wrapper {
    position: relative;
    width: 100%;
    height: 500px; /* You can change this height */
    border: 2px solid #ccc;
    overflow: hidden;
  }

  /* Scrollable image mesh */
  .image-mesh-bg {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 150px;
    gap: 5px;
    height: 100%;
    overflow-y: scroll;
    padding: 10px;
  }

  .image-mesh-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
  }

  /* Button fixed inside scrollable div */
  .quote-button-inside {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffc107;
    border: none;
    color: #000;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: auto;
  }

  .quote-button-inside:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }
  
   .whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: background-color 0.3s;
  }

  .whatsapp-button:hover {
    background-color: #1ebe5b;
  }
   .contact-section {
    padding: 40px 20px;
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
  }

  .contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-size: 28px;
  }

  .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    color: #333;
  }

  .contact-item i {
    color: #25D366; /* WhatsApp green tone */
    font-size: 20px;
  }

  .contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
  }

  .contact-item a:hover {
    color: #25D366;
  }

  @media (max-width: 480px) {
    .contact-section {
      padding: 20px 10px;
    }

    .contact-item {
      font-size: 16px;
    }
  }
  
 /* styles for qoute page */
   
	
	
	/* WhatsApp green tone */