
body {
    font-family: sans-serif;
    line-height: 1.2;
    background-color: #364156;
    box-sizing:border-box;
    position: relative;
    max-width:fit-content;
         margin:0 auto; 
}
 #head_1{
  position: relative;
    
    padding: 50px 20px;
    text-align: center;
    color:azure;
  
  

}

 
h1, h2, h3 {
    font-weight: 600;
  
    justify-items:center;
    text-align:center;    
}



.submenu li a{
  
  color:azure;
}
.submenu li a:hover{
  color:azure;
  font-weight:900;
}

/*grid container*/
.kota_stone_finish {
    position: relative;
    display: grid;
    justify-content:center;
    grid-template-columns:repeat(1,1fr);
    grid-auto-flow: row;
    gap:10px;
    height: auto;
    background-color:rgb(247, 250, 252);
    /*background-image:linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    */
}
/*stone_image class*/
.stone_image{
    position: relative;
    width: 300px;
    height:300px;
    margin-top:10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;  
    
    box-shadow:10px 0px 20px rgba(27, 27, 27, 0.7);
    border-radius:5px;
    padding:0px;

}

.stone_image:hover {
  opacity:1;
}

/*image container class .img_div*/
.img_div{
    position: relative;
    text-align:center;
    width:100%;
    justify-content: center;
    align-content: center; 
}



dl,dd,dt{
    font-weight:100;
    color:black;
    word-spacing:-0.1em;    
}


.stonefinish_heading{
  text-align: center;
}
   

.details{
    color:black;
    position: relative;
    width: fit-content;
    text-align: center;  
     margin: 0 auto;
     word-wrap:break-word;
}
dt{
    font-weight:300;
    /*text-align:left;*/
    text-decoration: underline;
    font-style:italic;
}
/*dd{
    text-align:left;
    
}*/


@media screen and (max-width: 480px){

   


   .img_div{
    margin:0 auto;
    position: relative;
    width:fit-content;

    
    justify-content: center;
   

   }
  
    .stone_image{
        position: relative;
    width:300px;
    height:300px;
    padding:0px 0px;

    }
    
 
    
   
}
h3{
    text-decoration:underline;
    text-align: left;
    font-weight: 600;
    font-size: clamp(20px,4vw,25px);
}
dt,dd{
    font-size: clamp(15px,4vw,20px);
}

@media screen and (min-width:1024px){
    .kota_stone_finish {
        position: relative;
        display: grid;
        justify-content:center;
        grid-template-columns:repeat(2,1fr);
        grid-auto-flow: row;
        gap:10px;
    }

}

/* footer css*/


footer {
    background-color: #d2e0eb; /* Example background color */
    color: black;
    padding: 20px;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive columns */
    gap: 20px; /* Space between grid items */
  }
  .footer-section h3{
    color:black;
    font-size: clamp(20px,4vw,25px);
    margin-bottom: 10px;

  }
  .footer-section {
    padding: 10px;
  }
  
  
  .quick-links ul {
    list-style: none;
    padding: 0;
  }
  
  .quick-links li {
    margin-bottom: 5px;
  }
  
  .quick-links a {
    color:black;
    text-decoration: none;
    font-size:clamp(15px,4vw,20px);
  }
  
  .social-icons a {
    color:black;
    margin-right: 10px; /* Space between icons */
    font-size:clamp(15px,4vw,20px); /* Adjust icon size */
  }
  
  .contact-info p {
    margin-bottom: 5px;
    font-size:clamp(15px,4vw,20px);
    
  }
  
  
  /* Responsive adjustments (example) */
  @media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr; /* Stack columns vertically on smaller screens */
    }
  }
   

  /* zoom in zoom out using model*/
  /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left:0;
  top:50px;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  width:70%;
  max-width: 700px;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation - Zoom in the Modal */
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 50px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 80%;
  }
}
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%; /* ensures perfect circle */
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
