body {
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f5f7;
    color: #333;
}
.container {
    max-width: 400px;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.3s ease;
}
.container:hover {
    transform: scale(1.02);
}
.header {
    padding: 20px;
background: rgb(125,0,214);
background: linear-gradient(90deg, rgba(3,14,97,1) 4%, rgba(0,5,45,1) 73%, rgba(11,0,85,1) 100%);
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.header h1 {
    margin: 0;
    font-size: 2px;
    font-weight: 700;
}
.header p {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: 300;
}
.address {
    font-size: 14px;
    margin-top: 10px;
    color: #ddd;
}

/*
.scrollable-images {
    position: relative;
    width: calc(100% - 1cm);
    margin: 0.5cm auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.image-slider {
    display: flex;
    animation: scroll 5s linear infinite;
}
.image-slider img {
    width: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.image-slider img:hover {
    transform: scale(1.05);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200%); }
} */

.slider-container {
    max-width: 100%;
    margin: 10px auto;
    overflow: hidden auto;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    animation: scrollSlider 15s linear infinite;
}

.slide {
    min-width: 2%;
    margin: 10px;
    text-align: center;
    flex-shrink: 0;
}

.slide img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.1);
}

@keyframes scrollSlider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.icons {
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
    background-color: #f9fafb;
    border-top: 1px solid #eee;
}
.icons div {
    text-align: center;
    transition: transform 0.3s ease;
}
.icons div:hover {
    transform: scale(1.1);
}
.icons div img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #2575fc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.icons div p {
    margin: 8px 0 0;
    font-size: 14px;
    font-weight: 500;
}
.iframe-container {
    
    padding: 10px;
    background-color: #eef4f9;
    border-top: 1px solid #ddd;
}
.iframe-container iframe {
  
    
   width: 100%;
   height: 700px;
    border: 10px solid #9e2dff;
   border-radius: 1px;
}

/*
.floating-button {
    position: fixed;
    bottom: 50px;
    right: 20px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
} */

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-button img {
    width: 50%;
    height: 50%;
    object-fit: cover;
     
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}



 #neonShadow{             
  margin:2px;
  padding:5px 10px;
  border:none;
  border-radius:50px;
  background-color:white;
/*animation: glow 5s infinite ;*/
  color:#337ab7;
  opacity:0.8;
  border:2px solid #e0e0e0;
  font-weight:bold;
  font-size:14px;
/*  position:absolute;
  left:10px;
  top:60px;*/

}

#install-button {
    position: fixed;
    bottom: 10px;
    right: 20px; /* Positioned at the right side */
    /* Removed conflicting left property */
  background: linear-gradient(90deg, rgba(3,14,97,1) 4%, rgba(0,5,45,1) 73%, rgba(11,0,85,1) 100%);
    color: white;
    padding: 35px 55px;
    font-size: 14px;
    border: none;
    border-radius: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease; /* Simplified transition */
    z-index: 1000;
}

#install-button:hover {
    background: #1d63c6; /* Changed to solid color on hover */
    transform: scale(1.05);
}



.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent backdrop */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.modal-buttons {
  margin-top: 16px;
}

.modal-buttons button {
  padding: 8px 24px;
  margin: 0 8px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

#confirmInstall {
  background: #2196F3;
  color: white;
}

#cancelInstall {
  background: #f44336;
  color: white;
}

.modal-content {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s, transform 0.3s;
}

.modal.show .modal-content {
  opacity: 1;
  transform: translateY(0);
}