.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Lato";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Cambo";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Lato";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Lato";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* CSS Styles for Personnel Profile - Fixed for Circular Image */
.personnel-profile-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 40px 20px;
}

.personnel-profile-card {
  display: flex;
  max-width: 1000px;
  width: 100%;
  background-color: transparent;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

/* Left side - Info Box */
.personnel-info-box {
  width: 50%;
  background-color: #003E52;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.personnel-name {
  font-size: 32px;
  margin: 0 0 5px 0;
  line-height: 1.2;
  color: white  !important;
}

.personnel-title {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 20px 0;
  opacity: 0.9;
  color: white !important;
}

.personnel-experience p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
  color: white;
}

/* Right side - Image */
.personnel-image-container {
  width: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Simplified approach for circular image */
.personnel-image-wrapper {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f5f5f5;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin: 30px;
}

.personnel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .personnel-profile-card {
    flex-direction: column-reverse;
  }
  
  .personnel-image-container, 
  .personnel-info-box {
    width: 100%;
  }
  
  .personnel-image-wrapper {
    width: 220px;
    height: 220px;
    margin: 30px auto;
  }
}/* End custom CSS */