/* Holistic Excellence Specific Styles */

.intro-section {
  background: #ffffff;
}

.head {
  font-family: "Source Sans 3", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #B84110;
}

@media (max-width: 575.98px) {
  .head {
    font-size: 28px;
  }
}

.excellence-section {
  position: relative;
  overflow: hidden;
}

.excellence-section.cream-bg {
  background: #FFF4EA;
}

.excellence-content {
  position: relative;
  padding: 40px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
  overflow: visible;
  display: flex;
  align-items: center;
  min-height: 280px;
}

.excellence-section.cream-bg .excellence-content {
  background: #FFF4EA;
}

.excellence-image {
  position: absolute;
  width: 380px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.left-section .excellence-image {
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
}

.right-section .excellence-image {
  left: -140px;
  top: 50%;
  transform: translateY(-50%);
}

.excellence-text-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 991.98px) {
  .excellence-content {
    padding: 30px;
    min-height: 240px;
  }
  
  .excellence-image {
    width: 320px;
    height: 180px;
  }
  
  .left-section .excellence-image {
    right: -80px;
  }
  
  .right-section .excellence-image {
    left: -80px;
  }
}

@media (max-width: 767.98px) {
  .excellence-content {
    padding: 25px;
    flex-direction: column;
    min-height: auto;
  }
  
  .excellence-image {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 180px;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(0) !important;
    margin: 0 auto 20px;
  }
}

@media (max-width: 575.98px) {
  .excellence-content {
    padding: 20px;
  }
  
  .excellence-image {
    height: 160px;
  }
}

.section-number {
  font-family: "Source Sans 3", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #B84110;
  margin-bottom: 15px;
  line-height: 1;
}

@media (max-width: 575.98px) {
  .section-number {
    font-size: 40px;
  }
}

.section-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #034B9F;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.section-text {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #262626;
  line-height: 1.7;
  margin-bottom: 15px;
}

@media (max-width: 575.98px) {
  .section-text {
    font-size: 16px;
  }
}

.section-text:last-child {
  margin-bottom: 0;
}

/* Left Section Styling */
.left-section .excellence-content {
  padding-right: 260px;
  border-left: 5px solid #034B9F;
}

/* Right Section Styling */
.right-section .excellence-content {
  padding-left: 260px;
  border-right: 5px solid #B84110;
}

@media (max-width: 991.98px) {
  .left-section .excellence-content {
    padding-right: 220px;
  }
  
  .right-section .excellence-content {
    padding-left: 220px;
  }
}

@media (max-width: 767.98px) {
  .left-section .excellence-content,
  .right-section .excellence-content {
    padding: 25px;
    border: none;
    border-left: 4px solid #034B9F;
  }
  
  .right-section .excellence-content {
    border-left: 4px solid #B84110;
  }
}