.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide h3 {
  font-size: 16px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.swiper.mySwiper .swiper-slide img {
  border: 2px solid #ccc;
  width: 90%;
}

.swiper.mySwiper .swiper-slide {
  cursor: pointer;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}
.swiper-button-next,
.swiper-button-prev {
  visibility: hidden;
  opacity: 0;
}

.mySwiper2:hover .swiper-button-next,
.mySwiper2:hover .swiper-button-prev {
  visibility: visible;
  opacity: 1;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: black;
  font-size: 22px;
}
.swiper-wrapper .swiper-slide {
  height: auto;
  flex-direction: column;
  gap: 10px;
}
.swiper-button-next,
.swiper-button-prev {
  color: transparent;
}
.main-loader {
  width: 48px;
  height: 48px;
  border: 5px solid #000;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  overflow: hidden;
}
.main-loader-container {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  overflow: hidden;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form-main {
  max-width: 1200px;
  display: flex;
  display: -webkit-flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  margin: 30px 0;
}
.image-wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  max-width: 50%;
  width: 100%;
}
.image-box {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 20px 30px;
  width: 250px;
  text-align: center;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.image-box h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 22px;
  font-weight: 600;
}
.image-box img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Responsive Form Styles */
.form-inner {
  max-width: 50%;
  width: 100%;
}
#excelForm {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  font-family: Arial, sans-serif;
  margin-left: 0;
}
#excelForm label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}
#excelForm input,
#excelForm select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  box-sizing: border-box;
}
#excelForm button {
  background-color: #0073aa;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
#excelResult {
  max-width: 1200px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
  overflow-x: auto;
}
#excelResult table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 20px;
  font-size: 12px;
  min-width: 700px;
}
#excelResult th,
#excelResult td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
}
#excelResult th {
  background-color: #f2f2f2;
}
@media (max-width: 900px) {
  #excelResult table {
    min-width: 600px;
    font-size: 11px;
  }
  #excelForm {
    padding: 18px;
  }
}
@media (max-width: 600px) {
  #excelForm {
    max-width: 100%;
    padding: 20px 25px;
    border-radius: 6px;
  }
  #excelForm h3 {
    font-size: 18px;
  }
  #excelForm label {
    font-size: 14px;
  }
  #excelForm input,
  #excelForm select {
    font-size: 14px;
    padding: 8px;
  }
  #excelForm button {
    font-size: 12px;
    padding: 8px 14px;
  }
  #excelResult {
    margin: 20px auto;
  }
  #excelResult table {
    min-width: 400px;
    font-size: 10px;
  }
}
@media (max-width: 400px) {
  #excelForm h2 {
    font-size: 15px;
  }
  #excelForm label {
    font-size: 12px;
  }
  #excelForm input,
  #excelForm select {
    font-size: 12px;
    padding: 6px;
  }
  #excelForm button {
    font-size: 12px;
    padding: 6px 10px;
  }
  #excelResult table {
    min-width: 300px;
    font-size: 9px;
  }
}
/* Make table horizontally scrollable on small screens */
#excelResult {
  overflow-x: auto;
}

.image-slider-container {
  display: none;
  width: 100%;
  flex-direction: column;
  width: 50%;
  max-width: 50%;
}
.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
@media (max-width: 1023px) {
  .form-main {
    flex-direction: column;
  }
  .image-wrapper {
    max-width: 100%;
  }
  .image-box {
    width: 100%;
  }
  .form-inner,
  .image-slider-container {
    max-width: 100%;
  }
  #excelForm {
    margin: auto;
  }
}


.form-group {
    margin-bottom: 20px;   
}

.form-title {
    text-align: center; margin-bottom: 25px; font-size: 24px; color: #333;
}

.form-group label {
    display: block; margin-bottom: 6px; font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%; padding: 10px; border-radius: 6px; border: 1px solid #ccc;
}

.form-actions {
    text-align: center;
} 

.form-actions button {
    background-color: #0073aa; color: white; padding: 10px 20px; font-size: 16px; border: none; border-radius: 6px; cursor: pointer;
}

.site-main.post-1624 .entry-title {
	display: none;
}
