.elementor-21359 .elementor-element.elementor-element-3517bdc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-21359 .elementor-element.elementor-element-2d0a4c6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-21359 .elementor-element.elementor-element-15e26fa{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b0dfaaa */.contact-us-section {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-video-bg {
  flex: 1 1 50%;
  position: relative;
  min-height: 300px;
}

.contact-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.contact-content {
  flex: 1 1 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-box {
  max-width: 550px;
  animation: fadeInUp 1s ease;
  color: #1f2937;
}

.contact-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #4c1d95;
}

.contact-box p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #111827;
}

.contact-details p {
  font-size: 16px;
  margin: 6px 0;
}

.contact-details a {
  color: #4c1d95;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #1e40af;
  text-decoration: underline;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-us-section {
    flex-direction: column;
  }
  .contact-content,
  .contact-video-bg {
    flex: 1 1 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-802066d *//* Section Base */
.our-team-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #f3f4f6, #fff);
  text-align: center;
}

.our-team-section h2 {
  font-size: 38px;
  color: #1e3a8a;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Grid Layout */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Card Base */
.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  width: 280px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  border-top: 5px solid transparent;
}

/* Hover Effect with Color Change */
.team-card:nth-child(1):hover {
  transform: translateY(-10px);
  border-top-color: #ec4899; /* pink-red */
  background: #fff0f5;
}

.team-card:nth-child(2):hover {
  transform: translateY(-10px);
  border-top-color: #10b981; /* green */
  background: #f0fff4;
}

.team-card:nth-child(3):hover {
  transform: translateY(-10px);
  border-top-color: #8b5cf6; /* purple */
  background: #f5f3ff;
}

/* Image Styling */
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 1px solid #e5e7eb;
}

/* Info Text */
.team-info {
  padding: 22px;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.team-info p {
  font-size: 15px;
  color: #6b7280;
  font-style: italic;
  margin: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5f97e26 */.map-section {
  padding: 40px 20px;
  background: #f3f4f6;
  text-align: center;
}

.map-section h3 {
  font-size: 28px;
  margin-bottom: 18px;
  color: #4c1d95;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-caption {
  margin-top: 12px;
  font-size: 16px;
  color: #1f2937;
  line-height: 1.5;
}

.map-caption p {
  margin: 4px 0;
}

@media (max-width: 768px) {
  .map-section {
    padding: 30px 10px;
  }
  .map-section h3 {
    font-size: 24px;
  }
}/* End custom CSS */