
.centered-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centered-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1%;
}

.container {
    padding: 20px;
  
  }
  
  .content {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .photo {
    flex: 1;
    padding-right: 20px;
  }
    
  .about {
    flex: 2;
    text-align: left;
  }

  .about .about_p{
    padding: 0 20px;
  }

  .testimonial {
    text-align: center;
    background-color: rgb(202, 202, 202);
  }
  .testimonial h2{
    color: rgb(0, 0, 104);
  
  }
  .comment {
    margin: 20px;
  }
  .photo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  
  .photo-container img {
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.6s, opacity 0.6s;
  }
  
  .photo-container img:hover {
    transform: scale(1.2); /* Adjust this value as needed for the desired zoom effect */
    opacity: 0.7;
  }

  
  
  .comment .fontcolour {
    color: black;
  }
  .comment .client-name {
    color: black;
  }
  .comment img {
    border-radius: 50%;
    max-width: 100px;
  }
  
  .client-name {
    font-weight: bold;
    margin-top: 5px;
  }
  
  .footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
  }
  
  .logo {
    max-width: 100px; 
    display: block;
    margin: 0 auto;
  }
  

#icon {
  font-size: 1.5rem;
  background-color: rgb(243, 243, 243);
  border: none;
  border-radius: 12px;
}
body {
  color: black;
  background-color: rgb(241, 241, 241);
  text-align: center;
  justify-content: center;
}
.dark-theme {
  color: white;
  background-color: rgb(0, 0, 0);
}

.text-bg {
  padding: 5%;
  min-height: 500px;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.card-img-overlay {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(Img/IMG_01141_co.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.card-img-overlay .card-title {
  color: rgb(255, 255, 255);
  text-shadow: #333;
  font-size: 35px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.card-img-overlay .card-text {
  color: rgb(255, 255, 255);
  font-size: 25px;
  position: relative;
}

/* .centered-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  text-decoration: none;
}

.centered-button .btn-outline-warning {
  font-size: 24px;
  padding: 12px 24px;
  color: #000000;
  outline: none;
  text-decoration: none;
} */
.centered-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.centered-button .btn.btn-outline-warning {
  font-size: 16px; /* Adjust the font size as needed */
  padding: 6px 12px; /* Adjust the padding as needed */
  color: #eeff00;
  outline: none;
  text-decoration: none;
}
.centered-button .btn.btn-outline-warning:hover{
  color: #000000;
}


.services-best{
  justify-content: center;
  align-items: center;
  display: flex;
  color: rgb(0, 0, 104);
}

.card-img{
  font-size: 18px;
}

.card-text{
  font-size: 18px;
}

/* Style the Image Used to Trigger the Modal */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 1s;
  /* Remove unnecessary flex properties and set the display to block */
  display: block;
  margin: auto;
}

#myImg:hover {
  opacity: 0.7;
}

/* The Modal (background) 
.modal {
  display: none;  
  position: fixed;   
  z-index: 1;  
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
*/
/* Modal Content (Image) 
.modal-content {
  margin: auto;
  display: block; /* Change display to block 
  max-width: 700px;
  width: 80%;
}
*/
/* Caption of Modal Image (Image Text) - Same Width as the Image 
#caption {
  margin: auto;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
*/

/* The Modal (background) */
.modal {
  display: flex;
  justify-content: center; /* Center the modal horizontally */
  align-items: center; /* Center the modal vertically */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content (Image) */
.modal-content {
  max-width: 700px;
  max-height: 80vh; /* Limit the height to 80% of the viewport height */
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#caption {
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  max-width: 700px;
  width: 80%;
}



/* Add Animation - Zoom in the Modal */
.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 1s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

/* The Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  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: 100%;
  }
}

/* About Information */
#about {
  text-align: center;
  color: #000000;
  padding: 75px;
}

#about .about_p{
  padding: 10px;
  /* color: rgb(0, 0, 0) */
  /* border-radius: 10px; */
  /* border: 2px solid red; */
}

#about h2 {
  font-size: 30px;
  color: #010379;
}

#about .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#about p {
  margin: 50px 10px;
  font-size: 16px;
  flex: 1;
}

#about img {
  width: 550px; /* Adjust the size of the small photo as needed */
  transition: transform 0.3s ease-in-out;
}

/* Image zoom on hover */
#about img:hover {
  transform: scale(1.1);
  cursor: pointer;
}


/* Image zoom on hover */
#about img:hover {
  transform: scale(1.1);
  cursor: pointer;
}


/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  #about .content {
    flex-direction: column;
  }

  #about img {
    width: 100%; /* Adjust the size of the small photo for mobile devices */
  }
}


/* Mobile Styles */
@media (max-width: 767px) {
  .card-img-overlay .card-title {
    font-size: 16px; /* Reduce font size for smaller screens */
  }

  .card-img-overlay .card-text {
    font-size: 10px; /* Reduce font size for smaller screens */
  }

  .centered-button {
    text-align: center; /* Center the button on smaller screens */
  }

  .btn .btn-outline-warning {
    font-size: 10px; /* Reduce font size for smaller screens */
    padding: 8px 10px; /* Adjust padding for smaller screens */
    text-decoration: none;
    color: hsl(0, 0%, 0%)
  }
}

.centered-button .btn-outline-danger .check123{
  color: #000000;
  outline-style: none;
  text-decoration: none;
}

/* CSS styles for the photo collection */
.photocollection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px; /* Add margin around the photo collection */
}

.img1 {
  flex: 1 1 250px; /* Adjust the width of each image container */
}

.img1 img {
  width: 100%; /* Ensure the images take up the entire container */
  border: 2px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.img1 img:hover {
  transform: scale(1.1);
}
/* CSS styles for the photo collection */
.photocollection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px; /* Add margin around the photo collection */
}

.img1 {
  flex: 1 1 250px; /* Adjust the width of each image container */
}

.img1 img {
  width: 100%; /* Ensure the images take up the entire container */
  border: 2px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  cursor: pointer; /* Add a pointer cursor to indicate the image is clickable */
}

/* CSS for the modal */
#modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Black semi-transparent background */
  z-index: 9999;
  padding: 20px;
}

#modal-img {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
}

.close-btn {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.contact-box-container {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
  position: relative;
  background-image: url('Img/american-shrimp-fried-rice-served-with-chili-fish-sauce-thai-food.jpg');
  background-size: cover;
  background-position: center;
}

.contact-box-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: url('Img/american-shrimp-fried-rice-served-with-chili-fish-sauce-thai-food.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(100px); /* Adjust the blur intensity as needed */
}

.contact-box {
  margin-left: 5%;
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.9); /* Set the background color with some transparency */
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 20px;
  width: 400px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
} 

form {
  display: flex;
  flex-direction: column;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

label {
  font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: vertical;
}

.submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

input[type="submit"] {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#msg{
  color: #008111;
  margin-top: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #cccccc;
}

.map h1{
  align-items: center;
  display: inline;
  justify-content: center;
}
.maptext{
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}




.near {
  text-align: center;
  flex-basis: 100%;
  margin-bottom: 20px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.kothmaledamimg {
  display: flex;
  justify-content: center;
  gap: 10px; /* Add some space between images */
  flex-wrap: wrap; /* Allow images to wrap to new lines on smaller screens */
}

.kothmaledamimg img {
  border-radius: 50%;
  width: 250px;
  height: 250px;
  transition: transform 0.3s;
}

.kothmaledamimg img:hover {
  transform: scale(1.1); /* Applying the hover effect by scaling the image */
}

/* Media query for screens with a maximum width of 768px (typical for mobile devices) */
@media screen and (max-width: 768px) {
  .container1 {
      flex-direction: column;
      align-items: center;
  }

  .kothmaledamimg {
      flex-direction: row;
      margin-left: 0;
      justify-content: center; /* Revert to centering images horizontally on mobile */
  }

  .kothmaledamimg img {
      margin: 5px; /* Add some space between images on mobile */
  }

  .kothmaledamimg img:hover {
      transform: none; /* Remove the hover effect on mobile */
  }
}


.nearbyitems{
  display: flex;
  align-items: center;
  justify-content: center;
}



.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
} 

/* .fade-out {
  opacity: 0.5;
  transition: opacity 0.25s ease;
  color: rgb(255, 234, 234);
  border: 2px solid rgb(0, 0, 0);
  background-image: linear-gradient(to right, rgb(190, 190, 190) 0%, transparent 100%);
  box-shadow: 1px 1px 2px black;
} */



/* Apply the fade-out transition effect */
.page-content.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

/* Add your desired styles for the centered button */
.centered-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

/* Apply the fade-out transition effect to the button */
.centered-button.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

/* Styles for the video container */
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styles for the about container */
.about-container {
  margin-left: 100px; 
  margin-right: 100px; /* Adjust this value to set the right margin */
}

