.span {
  color: #ff8c00;
}

.image-text-vibration-section {
  background: white;
  padding: 30px 20px;
  max-width: 1200px;
  margin: auto;
}

.itv-title-block {
  text-align: center;
  margin-bottom: 30px;
}

.itv-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.itv-line {
  height: 3px;
  width: 60px;
  background-color: orangered;
  margin: 5px auto;
  border-radius: 2px;
}

.itv-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.itv-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.itv-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0; /* remove default spacing */
}

.itv-text {
  flex: 1 1 45%;
  font-size: 1rem;
  color: black;
  line-height: 1.6;
  padding: 0;
}

.itv-text p {
  margin: 0; /* remove default spacing */
}

@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .itv-container {
    flex-direction: column;
    text-align: center;
    gap: 15px; /* reduced spacing */
  }

  .itv-image,
  .itv-text {
    flex: 1 1 100%;
  }

  .itv-image video {
    height: auto;
    max-height: 250px;
  }

  .itv-text {
    padding: 0 10px;
    text-align: left;
  }

  .itv-image img{
    height:auto;
  }
}

.know-more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #8dc73f;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.know-more-btn:hover {
  background-color: #e07c00;
}

.know-more-btn:active {
  background-color: #d26c00;
  transform: translateY(1px);
}

/* Mobile Styles */
@media (max-width: 768px) {
  .know-more-btn {
    font-size: 1.2rem;
    padding: 12px 25px;
    margin-top: 15px;
  }
}

/*  */

.text-center {
  text-align: center;
}

.color-white {
  color: #fff;
}

.box-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 35px 15px;
  width: 100%;
}

.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 100%;
  max-width: 100%;
}

.flip-box {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 200px;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  backface-visibility: hidden;
}

.flip-box-front {
  transform: rotateY(0deg);
}

.flip-box:hover .flip-box-front {
  transform: rotateY(-180deg);
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateY(180deg);
}

.flip-box:hover .flip-box-back {
  transform: rotateY(0deg);
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 60px;
  z-index: 2;
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
}

.flip-box-header {
  font-size: 20px;
  color: white;
  background-color: #8dc73f;
}

.flip-box p {
  font-size: 20px;
  line-height: 1.5em;
}

.flip-box-img {
  margin-top: 25px;
}

.flip-box-button {
  background-color: #8dc73f;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  margin-top: 25px;
  padding: 5px 10px;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .box-container {
    grid-template-columns: 1fr;
    gap: 5px !important; 
    padding: 10px !important;
  }

  .box-item {
    margin: 0 !important; 
    padding: 0 !important;
  }

  .flip-box {
    min-height: 250px; 
  }

  .flip-box .inner {
    padding: 20px !important; 
  }

  .flip-box-img,
  .flip-box-button {
    margin-top: 10px !important; 
  }
}



/*  */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.map,
.form {
  width: 50%;
  padding: 20px;
}

iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
textarea {
  padding: 10px;
  font-size: 14px;
  width: 100%;
}

.captcha-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.captcha-box {
  background-color: green;
  padding: 8px;
  font-weight: bold;
  font-size: 16px;
  width: 80px;
  text-align: center;
  letter-spacing: 2px;
  user-select: none;
}

input[name="captcha_input"] {
  width: 120px;
}

.form button {
  padding: 10px;
  background-color: #8dc73f;
  color: black;
  border: none;
  cursor: pointer;
}

.form button:hover {
  background-color: rgb(255, 166, 0);
  transition: 2s;
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .map,
  .form {
    width: 100%;
  }
}

/*  */

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

@media (min-width: 768px) {
  .section {
    flex-direction: row;
  }
}

.left-side {
  flex: 1;
  text-align: center;
}

.left-side img {
  width: 100%;
  max-width: 550px;
}

.left-side h2 {
  margin-top: 15px;
  font-size: 24px;
}

.right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-card {
  border: 1px solid #ccc;
  padding: 12px 16px;
  background-color: #8dc73f;
  transition: background-color 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

/*  */

@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');
@import url('https://fonts.googleapis.com/css?family=Raleway:400,800');

.quote-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  flex-direction: row;
}

.snip1139 {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  overflow: hidden;
  min-width: 250px;
  max-width: 350px;
  flex: 1 1 300px;
  color: #333;
  text-align: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.snip1139:hover {
  transform: translateY(-5px);
}

.snip1139 * {
  box-sizing: border-box;
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.snip1139 img {
  max-width: 100px;
  height: 100px;
  border-radius: 50%;
  display: block;
  vertical-align: middle;
}

.snip1139 blockquote {
  position: relative;
  padding: 25px 50px;
  font-size: 0.9em;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6em;
  margin: 0;
}

.snip1139 blockquote::before,
.snip1139 blockquote::after {
  font-family: 'FontAwesome';
  font-style: normal;
  font-size: 50px;
  opacity: 0.3;
  position: absolute;
}

.snip1139 blockquote::before {
  content: "\201C";
  top: 10px;
  left: 15px;
}

.snip1139 blockquote::after {
  content: "\201D";
  right: 15px;
  bottom: 10px;
}

.snip1139 .arrow {
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 0 solid transparent;
  border-right: 25px solid transparent;
  border-top: 25px solid #ffffff;
}

.snip1139 .author {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 5px 25px;
  background-color: #ffffff;
  text-transform: uppercase;
  color: #000;
}

.snip1139 .author h5 {
  margin: 0;
  font-weight: 800;
  opacity: 0.8;
}

.snip1139 .author h5 span {
  font-weight: 400;
  text-transform: none;
  padding-left: 5px;
}

/* Responsive Layout */
/* Responsive Layout */
@media (max-width: 768px) {
  .quote-container {
    flex-direction: column;
    align-items: center;
  }

  .snip1139 {
    max-width: 90%;
    flex: none;
    font-size: 1.05em;
  }

  .snip1139 blockquote {
    padding: 30px 60px;
    font-size: 1em;
  }

  .snip1139 .author {
    padding: 10px 30px;
  }

  .snip1139 blockquote::before {
    font-size: 60px;
    top: 5px;
    left: 10px;
  }

  .snip1139 blockquote::after {
    font-size: 60px;
    bottom: 5px;
    right: 10px;
  }
}

/*  */

.marquee-wrapper {
  --marquee-width: 100vw;
  --marquee-height: 20vh;
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
  font-family: 'Montserrat', sans-serif;
}

.marquee-wrapper .marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  background-color: #fff;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.marquee-wrapper .marquee::before,
.marquee-wrapper .marquee::after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.marquee-wrapper .marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.marquee-wrapper .marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.marquee-wrapper .marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: marquee-scroll var(--marquee-animation-duration) linear infinite;
  padding: 0;
  margin: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}

.marquee-wrapper .marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  white-space: nowrap;
  padding: 0.5rem;
}

.marquee-wrapper .marquee-content li img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .marquee-wrapper {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }

  .marquee-wrapper .marquee::before,
  .marquee-wrapper .marquee::after {
    width: 5rem;
  }
}
 