#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
#loader-container {
  text-align: center;
}
#loader-text {
  color: white;
  font-size: 3rem;
  font-family: Arial, sans-serif;
  display: flex;
  gap: 0.2rem;
  justify-content: center;
}
#loader-text span {
  opacity: 0;
  transform: translateX(-20px);
  animation: fade-in 0.5s ease forwards;
}
#loader-text span:nth-child(1) {
  animation-delay: 0.1s;
}
#loader-text span:nth-child(2) {
  animation-delay: 0.3s;
}
#loader-text span:nth-child(3) {
  animation-delay: 0.5s;
}
#loader-text span:nth-child(4) {
  animation-delay: 0.7s;
}
#loader-text span:nth-child(5) {
  animation-delay: 0.9s;
}
@keyframes fade-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#fade-text {
  color: white;
  opacity: 0;
  margin-top: 10px;
  font-size: 1.2rem;
  animation: text-fade 2s ease 1.5s forwards;
}
@keyframes text-fade {
  to {
    opacity: 1;
  }
}
#loader-text.move-up {
  animation: move-up 1s ease forwards;
  letter-spacing: 0.2rem;
  /* Initial letter spacing */
}
@keyframes move-up {
  to {
    transform: translateY(-100vh);
    letter-spacing: 30rem;
    /* Increasing the gap between the letters */
  }
}
#content {
  display: none;
  height: 100%;
}

/* 2 */
/* Styling the list item */
.menu-item #talkToUsButton {
  background: #c27629;
  color: white;
  /* padding: 10px 20px; */
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
/* Hide the form initially */
.contact-form {
  display: none;
  position: absolute;
  top: 50px;
  right: 50px;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  width: 310px;
  height: 390px;
  z-index: 1000;
  text-align: left;
  border-radius: 7px;
}
.contact-form h3 {
  font-size: 20px;
  margin: 0 auto;
}
@keyframes blink {
  0% {
    opacity: 1;
    color: #888;
  }
  50% {
    opacity: 0.5;
    color: #ff0000;
  }
  100% {
    opacity: 1;
    color: #888;
  }
}
/* Additional form styling */
.hover-select {
  display: block;
  width: 100%;
  padding: 5px;
  border-radius: 5px;
  /* margin: 5px 0; */
  /* padding: 5px; */
  box-sizing: border-box;
}
#hover-input {
  padding: 0px;
  margin: 0;
}
button {
  background-color: #c27629;
  color: white;
  padding: 15px 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  border-radius: 5px;
  margin-top: 10px;
  font-size: 12px;
}
button:hover {
  background-color: #a65a1e;
}
/* Tablet View */
@media (min-width: 601px) and (max-width: 1024px) {
  .contact-form {
    width: 80%;
    max-width: 450px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    overflow-y: auto;
    max-height: 90vh;
    border-radius: 10px;
  }
  .contact-form h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 20px;
  }
  .contact-form label {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form select {
    width: 100%;
    font-size: 15px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  .contact-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background-color: #c27629;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .contact-form button[type="submit"]:hover {
    background-color: #a65a1e;
  }
}
/* Mobile View */
@media (max-width: 600px) {
  .contact-form {
    width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    overflow-y: auto;
    max-height: 90vh;
    border-radius: 8px;
  }
  .contact-form h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 15px;
  }
  .contact-form label {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form select {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }
  .contact-form button[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    background-color: #c27629;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .contact-form button[type="submit"]:hover {
    background-color: #a65a1e;
  }
}

/* 3 */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.heroslider {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 100%;
}
.heroslide {
  flex-shrink: 0;
  width: 100%;
  height: 80vh; /* Default height */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Responsive styling */
@media (max-width: 768px) {
  .slider-container {
    height: 60vh; /* Adjust height for smaller screens */
  }
  .heroslide {
    height: 60vh; /* Adjust height of each slide for smaller screens */
  }
}
@media (max-width: 500px) {
  .slider-container {
    height: 50vh; /* Adjust height for very small devices */
  }
  .heroslide {
    height: 50vh; /* Adjust height of each slide for very small devices */
  }
}

/* 4 */
/* Ensure that the image takes the full width and height of the container */
.full-width-image {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust this for a taller image */
  overflow: hidden;
}
.full-width-image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures the full image is visible */
}
/* Remove padding for container and row */
.container,
.row-fluid {
  padding-left: 0;
  padding-right: 0;
}
/* Adjusting the content below the image */
.content-section {
  padding: 30px 10px;
  background-color: #f8f9fa; /* Light background for better readability */
  /* border-top: 0px solid #ddd; */
}
.title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}
.subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
}
.content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* 5 */

.custom-slider-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background-color: #fff;
  /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); */
  border-radius: 12px;
}
.custom-slider-heading {
  font-size: 32px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.custom-slider-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  font-style: italic;
  line-height: 1.6;
}
/* Slider Container */
.custom-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
  padding: 5px;
}
/* Slider Track */
.custom-slider-track {
  display: flex;
  gap: 15px;
  animation: custom-slide-animation 20s linear infinite;
}
/* Individual Slides */
.custom-slider-slide {
  flex: 0 0 25%; /* Each slide takes 25% of the width by default */
  transition: transform 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
/* Styling for Images */
.custom-slider-slide img {
  width: 100%; /* Full width of the container */
  height: 300px; /* Fixed height for all images */
  object-fit: cover; /* Ensure the image covers the container and maintains its aspect ratio */
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.3s ease, opacity 0.4s ease;
}
/* Hover Effects */
.custom-slider-slide:hover img {
  transform: scale(1.1);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}
/* Animation for Scrolling Effect */
@keyframes custom-slide-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .custom-slider-slide {
    flex: 0 0 50%; /* Show 2 slides on medium screens */
  }
}
@media (max-width: 768px) {
  .custom-slider-slide {
    flex: 0 0 100%; /* Show 1 slide on small screens */
  }
  .custom-slider-track {
    animation-duration: 10s;
  }
}
@media (max-width: 480px) {
  .custom-slider-section {
    padding: 30px 15px; /* Adjust padding on very small screens */
  }
  .custom-slider-heading {
    font-size: 28px; /* Smaller heading */
  }
  .custom-slider-description {
    font-size: 16px; /* Smaller description */
  }
  .custom-slider-track {
    animation-duration: 5s;
  }
}
/* Additional Styling */
.custom-slider-wrapper {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

/* 6 */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}
.why-us-section {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
}
.why-us-section h2 {
  font-size: 2em;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.why-us-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}
.why-us-item {
  display: flex;
  align-items: start;
  gap: 10px;
}
.why-us-item span {
  font-size: 1.5em;
  color: #ff6f61;
}
.why-us-item div {
  font-size: 0.95em;
  line-height: 1.5;
  color: #555;
}
.why-us-item h3 {
  font-size: 1.1em;
  font-weight: 600;
  margin: 0 0 5px;
  color: #333;
}
.why-us-item p {
  margin: 0;
}
@media (max-width: 768px) {
  .why-us-content {
    grid-template-columns: 1fr;
  }
}

/* 7 */

.prague-services-wrapper img {
  transition: filter 0.3s ease, transform 0.3s ease; /* Smooth transition for hover effect */
  filter: grayscale(100%); /* Make images grayscale initially */
  transform: scale(1); /* Initial scale */
}
.prague-services-wrapper img:hover {
  filter: grayscale(0%); /* Remove grayscale to show color */
  transform: scale(1.1); /* Slightly enlarge the image */
}

/* 8 */

/* Heading Styles */
.heading-container {
  text-align: center;
  margin-bottom: 40px;
  animation: fadeIn 1.5s ease-in-out;
}
.section-heading {
  margin-top: 40px;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.heading-description {
  font-size: 18px;
  color: #777;
  margin-top: 10px;
  font-style: italic;
}
/* Video Container Layout */
.video-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 15px;
}
/* Video Item Styling */
.video-item {
  width: 48%;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.video-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.video {
  width: 100%;
  height: auto;
  max-height: 400px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.video:hover {
  transform: scale(1.05);
}
/* Download Button Styling */
.download-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}
.download-button:hover {
  background-color: #0056b3;
  transform: translateY(-5px);
}
/* Animation for Fade-in Effect */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Responsive Styling */
@media (max-width: 1024px) {
  .video-container {
    flex-direction: column;
    align-items: center;
  }
  .video-item {
    width: 90%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .video-item {
    width: 95%;
  }
  .download-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}
/* 9 */
* {
  margin: 0;
  padding: 0;
}
.body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 20vh;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.latest {
  animation: blink 1s infinite;
}
.container1x {
  position: relative;
  width: 1160px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transform-style: preserve-3d;
  perspective: 500px;
  margin: auto;
  margin-top: -50px;
  margin-bottom: 10px;
}
.container1x .box1x {
  position: relative;
  width: 275px;
  height: 275px;
  background: #000;
  transition: 0.5s;
  transform-style: preserve-3d;
  overflow: hidden;
  margin-right: 15px;
  margin-top: 45px;
}
.container1x:hover .box1x {
  transform: rotateY(25deg);
}
.container1x .box1x:hover ~ .box1x {
  transform: rotateY(-25deg);
}
.container1x .box1x:hover {
  transform: rotateY(0deg) scale(1.25);
  z-index: 1;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
}
.container1x .box1x .imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.container1x .box1x .imgBx:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(233, 180, 180), #000);
  z-index: 1;
  opacity: 0;
  transition: 0.5s;
  mix-blend-mode: multiply;
}
.container1x .box1x:hover .imgBx:before {
  opacity: 1;
}
.container1x .box1x .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container1x .box1x .content1x {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  padding: 20px;
  align-items: flex-end;
  box-sizing: border-box;
}
.container1x .box1x .content1x h2 {
  color: #fff;
  transition: 0.5s;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 20px;
  transform: translateY(200px);
  transition-delay: 0.3s;
}
.container1x .box1x:hover .content1x h2 {
  transform: translateY(0px);
}
.container1x .box1x .content1x p {
  color: #fff;
  transition: 0.5s;
  font-size: 14px;
  transform: translateY(200px);
  transition-delay: 0.4s;
  line-height: 20px;
}
.container1x .box1x:hover .content1x p {
  transform: translateY(0px);
}

/* 10 */

body-1 {
  font-family: "Arial", sans-serif;
  background: #f8f8f8;
  padding: 20px;
  display: flex;
  justify-content: center;
}
.main-content {
  width: 100%;
  max-width: 600px;
  transition: filter 0.3s ease;
}
.main-content.blurred {
  filter: blur(8px);
}
.projects-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
  max-height: 100%;
  padding: 10px;
}
.project-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-item img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.project-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0; /* Ensure no space between children */
}
.project-info h2 {
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove padding */
  font-size: 1.2rem;
  color: #fff;
  line-height: 1; /* Reduce any additional line height */
}
.project-info p {
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove padding */
  margin-bottom: 0; /* Remove any bottom margin */
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.2; /* Adjust line height if necessary */
  font-style: italic;
}
.project-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.project-item:hover img {
  transform: scale(1.05);
}
/* Popup Modal */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 40px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.popup-overlay.active {
  display: flex;
  opacity: 1;
}
.popup-content {
  width: 90%;
  max-width: 800px;
  height: 80%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transform: translateY(-50px);
  animation: popupAnim 0.5s ease-out forwards;
}
@keyframes popupAnim {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
}
.popup-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.popup-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
.popup-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
}
.popup-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px;
  cursor: pointer;
  border-radius: 10%;
  z-index: 10;
}
.popup-arrow.left {
  left: 15px;
}
.popup-arrow.right {
  right: 15px;
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 36px;
  color: black;
  cursor: pointer;
  z-index: 10;
}
.btn-see-more-projects {
  width: 100%;
  max-width: 250px;
  padding: 12px 20px;
  background-color: #4caf50;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 20px auto;
  display: block;
}
.btn-see-more-projects:hover {
  background-color: #45a049;
  transform: scale(1.05);
}
.btn-see-more-projects:active {
  background-color: #388e3c;
  transform: scale(1);
}
/* Responsive Design */
@media (max-width: 600px) {
  .btn-see-more-projects {
    max-width: 100%;
    padding: 12px;
  }
}