.equipmentContainer {
  background: #fffcf954;
  padding: 20px;
  border: 1px solid #ff8d2136;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.equipmentContainer:hover {
  transform: translateY(-6px);
  border-color: #f38720;
  box-shadow: 0 6px 20px rgba(243, 135, 32, 0.2);
  background: #fffaf5;
}

.equipmentContainer:hover .equipmentIcon img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* education theater section */

.edu-theatre {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f6fe 0%, #ffffff 100%);
}

.edu-theatre__header {
  text-align: center;
  margin-bottom: 60px;
}

.edu-theatre__tag {
  display: inline-block;
  color: #ff8d21;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding: 8px 20px;
  background: rgba(255, 141, 33, 0.1);
  border-radius: 30px;
}

.edu-theatre__title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.edu-theatre__title--highlight {
  color: #ff8d21;
}

.edu-theatre__subtitle {
  font-size: 20px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.edu-theatre__main-section {
  margin-bottom: 60px;
}

.edu-theatre__image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #f0f6fe, #e0ebf9);
  /* aspect-ratio: 16/10; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu-theatre__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
}

.edu-theatre__image-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  opacity: 0.5;
}

.edu-theatre__image-text {
  font-size: 18px;
  font-weight: 500;
}

.edu-theatre__image-wrapper::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 141, 33, 0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%) rotate(45deg);
  }

  50% {
    transform: translateX(100%) rotate(45deg);
  }
}

.edu-theatre__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.edu-theatre__content-title {
  font-size: 32px;
  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 700;
}

.edu-theatre__content-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}

.edu-theatre__features {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* .edu-theatre__features-header {
  margin-bottom: 50px;
} */

.edu-theatre__features-title {
  /* font-size: 36px; */
  font-size: 20px;
  color: #1a1a1a;
  padding: 35px 0;
  font-weight: 700;
  text-align: center;
}

.edu-theatre__features-subtitle {
  font-size: 16px;
  color: #666;
  /* max-width: 700px; */
  margin: 0 auto;
  text-align: justify;
}

.edu-theatre__card {
  background: #f0f6fe;
  padding: 35px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  margin-bottom: 30px;
}

.edu-theatre__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 141, 33, 0.2);
  border-color: #ff8d21;
}

.edu-theatre__card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff8d21, #ffa64d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

.edu-theatre__card-title {
  font-size: 20px;
  color: #1a1a1a;
  margin-bottom: 0;
  font-weight: 600;
}

.edu-theatre__card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* end education theater section */
.clientContainer {
  position: relative;
  border: 1px solid #c0c5cb;
  display: flex;
  justify-content: center;
  height: 230px;
}

.clientContainer img {
  object-fit: contain;
  height: 100%;
  width: 100%;
  padding: 10px;
}

/* embibe section */
.embibe-section {
  padding: 80px 0;
  background: var(--primary-white);
  position: relative;
  overflow: hidden;
}

.embibe-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange) 0%, #ff6b00 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-title .highlight {
  color: var(--primary-orange);
  position: relative;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.reliance-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b00 100%);
  color: var(--primary-white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 141, 33, 0.3);
}

.embibe-card {
  background: var(--primary-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

.embibe-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 141, 33, 0.15);
}

.embibe-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 3px solid var(--primary-orange);
}

.brochure-card {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--primary-white) 100%);
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.brochure-card:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 20px 60px rgba(255, 141, 33, 0.15);
}

.brochure-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(255, 141, 33, 0.3);
}

.brochure-icon i {
  font-size: 3rem;
  color: var(--primary-white);
}

.brochure-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.brochure-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b00 100%);
  color: var(--primary-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 141, 33, 0.3);
}

.download-btn:hover {
  background: linear-gradient(135deg, #ff6b00 0%, #e66000 100%);
  color: var(--primary-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 141, 33, 0.4);
}

.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-orange);
  color: var(--primary-white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.decorative-element {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.05;
  z-index: 0;
}

.decorative-element-1 {
  background: var(--primary-orange);
  top: -100px;
  left: -100px;
}

.decorative-element-2 {
  background: var(--primary-orange);
  bottom: -100px;
  right: -100px;
}

/* end embibe section */

/* .theaterImg3DTheater img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
} */
.paddingEduText {
  padding: 0 20px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .embibe-section {
    padding: 50px 0;
  }

  .brochure-card {
    padding: 40px 20px;
    margin-top: 30px;
  }

  .brochure-icon {
    width: 100px;
    height: 100px;
  }

  .brochure-icon i {
    font-size: 2.5rem;
  }
  .edu-theatre__title {
    font-size: 36px;
  }

  .edu-theatre {
    padding: 60px 0;
  }

  .edu-theatre__features {
    padding: 35px 25px;
  }

  .edu-theatre__main-section {
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .edu-theatre__image-wrapper {
    aspect-ratio: 16/10;
  }
}
