/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 07 2025 | 14:40:23 */
/* ✅ SEDO Custom Homepage Styling */

body {
  background-color: #fef8ec !important;
}
/* Body Font */
body {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

/* Logo fix for teal header */
.site-header .logo img {
  background: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  box-shadow: 0 0 4px rgba(0,0,0,0.15);
}

/* Team Section Styling */
.team-member {
  text-align: center;
  margin-bottom: 30px;
}
.team-member img {
  border-radius: 50%;
  max-width: 140px;
  margin: 0 auto 10px;
}
.team-member h4 {
  font-size: 18px;
  color: #088442;
  margin-bottom: 5px;
}
.team-member p {
  font-size: 14px;
  color: #555;
}

/* Video Playlist Section */
.video-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.video-featured {
  flex: 1 1 65%;
}
.video-featured iframe {
  width: 100%;
  height: 340px;
  border-radius: 6px;
}
.video-playlist {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
}
.video-playlist img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
.video-playlist img:hover {
  opacity: 0.85;
}

/* Button Styling */
.vc_general.vc_btn3 {
  background-color: #088442;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: 0.3s ease;
}
.vc_general.vc_btn3:hover {
  background-color: #066b33;
  transform: scale(1.02);
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
  }
  .video-featured iframe {
    height: 240px;
  }
  .team-member img {
    max-width: 100px;
  }
}
