/* Embedded Automotive Section Styles */

.embedded-automotive-section {
  padding: 80px 0;
  background-color: #fcfbf9;
  position: relative;
  overflow: hidden;
}

.embedded-automotive-header {
  text-align: center;
  margin-top: 45px;
  margin-bottom: 50px;
  position: relative;
  padding: 0 15px;
}

.embedded-automotive-header h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0d2944;
  line-height: 1.25;
  display: inline-block;
  position: relative;
  font-family: var(--eduvers-font-two);
  max-width: 800px;
}

.embedded-automotive-header h2 span {
  color: #008ed2;
  display: block;
  font-size: 42px;
  margin-top: 5px;
}

/* Title Decorative Lines */
.header-decor-line-left,
.header-decor-line-right {
  display: none;
}

@media (min-width: 1200px) {
  .embedded-automotive-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  
  .embedded-automotive-header h2 span {
    display: inline;
    font-size: 38px;
    margin-top: 0;
  }
  
  .header-decor-line-left,
  .header-decor-line-right {
    display: block;
    height: 2px;
    width: 120px;
    position: relative;
  }
  
  .header-decor-line-left {
    background: linear-gradient(90deg, transparent, #008ed2);
  }
  
  .header-decor-line-right {
    background: linear-gradient(90deg, #008ed2, transparent);
  }
  
  .header-decor-line-left::after,
  .header-decor-line-right::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #008ed2;
    top: -3px;
  }
  
  .header-decor-line-left::after {
    right: 0;
  }
  
  .header-decor-line-right::before {
    left: 0;
  }
}

/* Cards Grid */
.ea-card {
  background: #ffffff;
  border: 1px solid rgba(0, 142, 210, 0.15);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 142, 210, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ea-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 142, 210, 0.08);
}

.ea-card-left {
  padding-right: 40px;
}

.ea-card-right {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

/* Left Card Elements */
.ea-header-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.ea-header-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 142, 210, 0.08);
  border: 1.5px dashed #008ed2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #008ed2;
  font-size: 22px;
  margin-right: 20px;
  flex-shrink: 0;
}

.ea-header-title {
  font-size: 20px;
  font-weight: 700;
  color: #0d2944;
  line-height: 1.4;
  font-family: var(--eduvers-font-two);
}

.ea-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4D5756;
  margin-bottom: 35px;
}

.ea-desc .highlight {
  color: #008ed2;
  font-weight: 600;
}

/* Timeline */
.ea-timeline {
  position: relative;
  padding-left: 55px;
}

.ea-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  border-left: 2px dashed #008ed2;
  z-index: 1;
}

.ea-timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.ea-timeline-item:last-child {
  margin-bottom: 0;
}

.ea-timeline-icon {
  position: absolute;
  left: -55px;
  top: 2px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #008ed2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 142, 210, 0.25);
  transition: transform 0.3s ease, background 0.3s ease;
}

.ea-timeline-item:hover .ea-timeline-icon {
  transform: scale(1.1);
  background: #0d2944;
}

.ea-timeline-content {
  font-size: 14px;
  line-height: 1.65;
  color: #4D5756;
}

.ea-timeline-content a {
  color: #008ed2;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.ea-timeline-content a:hover {
  color: #0d2944;
}

/* Board Wrapper & Overlay pointers */
.board-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 30px 0;
}

.board-image-el {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.board-pointer {
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 10;
}

.board-pointer.pointer-left {
  justify-content: flex-end;
}

.board-pointer.pointer-right {
  justify-content: flex-start;
}

.pointer-label {
  font-size: 11px;
  font-weight: 800;
  color: #0d2944;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--eduvers-font-two);
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.85);
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.pointer-line {
  flex-grow: 1;
  height: 1px;
  border-top: 1.5px dashed #008ed2;
  margin: 0 8px;
  position: relative;
}

.pointer-dot {
  width: 9px;
  height: 9px;
  background-color: #008ed2;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(0, 142, 210, 0.25);
  position: relative;
  flex-shrink: 0;
}

.pointer-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 1px solid #008ed2;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* Pointer Positions - Desktop */
.pt-can-2 { top: 21%; left: -6%; width: 51%; }
.pt-rs232 { top: 32%; left: -6%; width: 42%; }
.pt-rs485 { top: 43%; left: -4%; width: 40%; }
.pt-potentiometer { top: 61%; left: -10%; width: 49%; }
.pt-power-cable { top: 82%; left: -8%; width: 46%; }

.pt-usb-header { top: 21%; right: -10%; width: 52%; }
.pt-sd-card { top: 28%; right: -12%; width: 46%; }
.pt-oled { top: 40%; right: -12%; width: 46%; }
.pt-buzzer { top: 49%; right: -12%; width: 46%; }
.pt-lcd { top: 69%; right: -10%; width: 46%; }

/* Mobile Features Grid (hidden on desktop) */
.board-features-mobile {
  display: none;
}

/* Steps Section */
.steps-wrapper {
  margin-top: 50px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(0, 142, 210, 0.15);
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 5px 20px rgba(0, 142, 210, 0.02);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 142, 210, 0.08);
}

.step-badge-container {
  display: flex;
  align-items: center;
  margin-right: 18px;
  position: relative;
  flex-shrink: 0;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #008ed2;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 142, 210, 0.2);
  z-index: 2;
}

.step-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 142, 210, 0.08);
  border: 1px solid rgba(0, 142, 210, 0.15);
  color: #008ed2;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  z-index: 1;
}

.step-content {
  flex-grow: 1;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: #0d2944;
  margin-bottom: 8px;
  font-family: var(--eduvers-font-two);
}

.step-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #4D5756;
}

/* Responsiveness */
@media (max-width: 1199px) {
  .ea-card {
    padding: 30px;
  }
  .ea-card-left {
    padding-right: 30px;
  }
  .board-wrapper {
    max-width: 420px;
  }
  /* Scale width of lines to avoid overlap on medium screens */
  .pt-can-2 { left: -4%; width: 49%; }
  .pt-rs232 { left: -4%; width: 40%; }
  .pt-rs485 { left: -2%; width: 38%; }
  .pt-potentiometer { left: -8%; width: 47%; }
  .pt-power-cable { left: -6%; width: 44%; }
  .pt-usb-header { right: -8%; width: 50%; }
  .pt-sd-card { right: -10%; width: 44%; }
  .pt-oled { right: -10%; width: 44%; }
  .pt-buzzer { right: -10%; width: 44%; }
  .pt-lcd { right: -8%; width: 44%; }
}

@media (max-width: 991px) {
  .embedded-automotive-section {
    padding: 60px 0;
  }
  .ea-card-left {
    padding-right: 30px;
    margin-bottom: 30px;
  }
  .board-wrapper {
    max-width: 100%;
    padding: 0;
    margin: 15px auto;
  }
  .board-image-el {
    max-width: 400px;
    margin: 0 auto;
  }
  .board-pointer {
    display: none; /* Hide overlays on small screens to prevent visual clutter */
  }
  .board-features-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .board-feature-tag {
    background: #ffffff;
    border: 1px solid rgba(0, 142, 210, 0.15);
    padding: 10px 14px;
    border-radius: 8px;
    font-family: var(--eduvers-font-two);
    font-size: 12px;
    font-weight: 700;
    color: #0d2944;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 142, 210, 0.02);
  }
  .board-feature-tag i {
    color: #008ed2;
    font-size: 14px;
  }
  .steps-wrapper .col-lg-4 {
    margin-bottom: 24px;
  }
  .steps-wrapper .col-lg-4:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .board-features-mobile {
    grid-template-columns: 1fr;
  }
  .embedded-automotive-header h2 {
    font-size: 28px;
  }
  .ea-card {
    padding: 24px 20px;
  }
  .ea-timeline {
    padding-left: 45px;
  }
  .ea-timeline::before {
    left: 15px;
  }
  .ea-timeline-icon {
    left: -45px;
    width: 34px;
    height: 34px;
    font-size: 13px;
    top: 5px;
  }
}

/* Call to Action Bar */
.ea-action-bar {
  background: #ffffff;
  border: 1px solid rgba(0, 142, 210, 0.12);
  border-radius: 12px;
  padding: 24px 30px;
  box-shadow: 0 8px 30px rgba(0, 142, 210, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
  margin-bottom: 45px;
  position: relative;
}

.ea-action-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.ea-action-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(0, 142, 210, 0.15);
  margin: 0 15px;
}

.ea-btn-download {
  background: rgba(29, 59, 117, 0.05);
  border: 1px solid rgba(29, 59, 117, 0.08);
  color: #1d3b75;
  font-size: 14.5px;
  font-weight: 700;
  font-family: var(--eduvers-font-two);
  padding: 12px 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ea-btn-download:hover {
  background: rgba(29, 59, 117, 0.1);
  color: #008ed2;
  transform: translateY(-1px);
}

.ea-btn-download i {
  font-size: 14px;
}

.ea-enquiry-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: #4D5756;
  font-family: var(--eduvers-font);
}

.ea-enquiry-box i {
  color: #008ed2;
  font-size: 18px;
}

.ea-enquiry-box span {
  line-height: 1.4;
}

.ea-phone-num {
  color: #008ed2;
  font-weight: 700;
  transition: color 0.3s ease;
}

.ea-phone-num:hover {
  color: #0d2944;
  text-decoration: underline;
}

.ea-btn-classes {
  background: rgba(255, 107, 43, 0.04);
  border: 1px solid rgba(255, 107, 43, 0.15);
  color: #ff6b2b;
  font-size: 13.5px;
  font-weight: 700;
  font-family: var(--eduvers-font-two);
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.ea-btn-classes:hover {
  background: rgba(255, 107, 43, 0.08);
  color: #ff5500;
  transform: translateY(-1px);
}

.ea-btn-classes i {
  font-size: 16px;
}

@media (max-width: 991px) {
  .ea-action-bar {
    flex-direction: column;
    gap: 20px;
    padding: 24px 20px;
    text-align: center;
  }
  .ea-action-divider {
    display: none;
  }
  .ea-action-col {
    width: 100%;
  }
}

/* Best Training Section */
.best-training-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}
.best-training-title {
  font-size: 40px;
  font-weight: 700;
  color:#008ed2 ;
  margin-bottom: 20px;
  line-height: 1.2;
}
.best-training-title span {
  color: #0d2944;
}
.best-training-desc {
  font-size: 16px;
  color: #4D5756;
  line-height: 1.8;
  max-width: 950px;
  margin: 0 auto 50px;
}
.best-training-desc span.text-primary {
  color: #008ed2;
  font-weight: 700;
}
.training-feature-box {
  background: #ffffff;
  border-bottom: 1px dashed #d1e5f0;
  padding: 20px 10px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  text-align: left;
  transition: all 0.3s ease;
}
.training-feature-box:last-child {
  border-bottom: none;
}
.training-feature-box:hover {
  transform: translateY(-3px);
}
.training-feature-icon {
  width: 65px;
  height: 65px;
  background: #eaf5fb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.training-feature-icon i {
  font-size: 30px;
  color: #008ed2;
}
.training-feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0d2944;
  margin-bottom: 8px;
}
.training-feature-content p {
  font-size: 15px;
  color: #4D5756;
  line-height: 1.6;
  margin: 0;
}
.center-laptop-wrapper {
  background: radial-gradient(circle at 50% 50%, rgba(0, 142, 210, 0.03) 0%, rgba(129, 140, 248, 0.03) 100%) !important;
  border-radius: 24px !important;
  border: 4px solid rgba(0, 142, 210, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 10px !important;
  transition: all 0.5s ease !important;
  box-shadow: 0 20px 50px rgba(0, 142, 210, 0.08), 0 0 20px rgba(0, 142, 210, 0.05) !important;
}

.center-laptop-wrapper:hover {
  border-color: rgba(129, 140, 248, 0.4) !important;
  background: radial-gradient(circle at 50% 50%, rgba(0, 142, 210, 0.05) 0%, rgba(129, 140, 248, 0.05) 100%) !important;
  box-shadow: 0 30px 60px rgba(0, 142, 210, 0.18), 0 0 30px rgba(129, 140, 248, 0.15) !important;
}

.center-laptop-wrapper img {
  max-width: 100%;
  animation: float-board 6s ease-in-out infinite !important;
  transition: all 0.5s ease !important;
}

.center-laptop-wrapper:hover img {
  transform: scale(1.03) rotate(1deg) !important;
}

@media (max-width: 991px) {
  .best-training-title {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  .best-training-title {
    font-size: 28px;
  }
  .training-feature-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: none;
    background: #f8fbff;
    border-radius: 12px;
    padding: 20px;
      margin-right: 0;
    margin-bottom: 15px;
  }
  
  }


/* Course Highlights Section */
.course-highlights-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.ch-box {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 142, 210, 0.06) !important;
  border-radius: 24px !important;
  padding: 35px;
  height: auto;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 142, 210, 0.01), 0 2px 4px rgba(0, 0, 0, 0.005);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.ch-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #008ed2, #818cf8);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.ch-box:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(0, 142, 210, 0.18) !important;
  box-shadow: 0 25px 50px rgba(0, 142, 210, 0.08), 0 10px 20px rgba(129, 140, 248, 0.03) !important;
}

.ch-box:hover::before {
  height: 5px;
  opacity: 1;
}

.ch-box-title-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.ch-box-icon {
  width: 48px !important;
  height: 48px !important;
  background: rgba(0, 142, 210, 0.06) !important;
  color: #008ed2 !important;
  border-radius: 12px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 18px !important;
  margin-right: 15px;
  transition: all 0.35s ease !important;
  border: 1px solid rgba(0, 142, 210, 0.1) !important;
}

.ch-box:hover .ch-box-icon {
  background: #008ed2 !important;
  color: #ffffff !important;
  transform: scale(1.1) rotate(4deg) !important;
  border-color: #008ed2 !important;
}

.ch-box-title {
  font-size: 21px;
  font-weight: 700;
  color: #0d2944;
  margin: 0;
}

.ch-box-desc {
  font-size: 14px;
  color: #4D5756;
  line-height: 1.7;
  margin-bottom: 30px;
}

.ch-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e1eef5;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.ch-feature-item:hover {
  transform: translateX(6px) !important;
  padding-left: 0;
}

.ch-feature-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ch-feature-icon {
  width: 44px !important;
  height: 44px !important;
  background: rgba(0, 142, 210, 0.06) !important;
  color: #008ed2 !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 18px !important;
  transition: all 0.3s ease !important;
  flex-shrink: 0;
  border: 1px solid rgba(0, 142, 210, 0.1) !important;
  margin-right: 18px !important;
}

.ch-feature-item:hover .ch-feature-icon {
  background: linear-gradient(135deg, #008ed2 0%, #818cf8 100%) !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
  border-color: #008ed2 !important;
  box-shadow: 0 4px 10px rgba(0, 142, 210, 0.2) !important;
}

.ch-feature-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0d2944;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.ch-feature-item:hover .ch-feature-content h5 {
  color: #008ed2;
}

.ch-feature-content p {
  font-size: 13.5px;
  color: #4D5756;
  line-height: 1.6;
  margin: 0;
}

.ch-feature-content ul,
.ch-list-2col ul,
.ch-simple-list {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.ch-feature-content ul li,
.ch-list-2col ul li,
.ch-simple-list li {
  position: relative !important;
  display: block !important;
  padding: 10px 15px 10px 46px !important;
  border-radius: 12px !important;
  background: rgba(0, 142, 210, 0.015) !important;
  border: 1px solid rgba(0, 142, 210, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  margin-bottom: 12px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #475569 !important;
  line-height: 1.6 !important;
  list-style: none !important;
}

.ch-feature-content ul li::before,
.ch-list-2col ul li::before,
.ch-simple-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 11px !important;
  top: 10px !important;
  width: 24px !important;
  height: 24px !important;
  background-color: rgba(0, 142, 210, 0.08) !important;
  border-radius: 50% !important;
  border: 1px solid rgba(0, 142, 210, 0.12) !important;
  transition: all 0.3s ease !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23008ed2' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-size: 12px 12px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.ch-feature-content ul li:hover,
.ch-list-2col ul li:hover,
.ch-simple-list li:hover {
  background: rgba(0, 142, 210, 0.04) !important;
  border-color: rgba(0, 142, 210, 0.15) !important;
  transform: translateX(6px) !important;
  color: #008ed2 !important;
}

.ch-feature-content ul li:hover::before,
.ch-list-2col ul li:hover::before,
.ch-simple-list li:hover::before {
  background-color: #008ed2 !important;
  border-color: #008ed2 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") !important;
  transform: scale(1.1) !important;
  box-shadow: 0 4px 10px rgba(0, 142, 210, 0.2) !important;
}

.ch-list-2col {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-left: -10px;
  margin-right: -10px;
}

.ch-list-2col ul {
  width: 100%;
  list-style: none !important;
  padding: 0 10px;
  margin: 0;
}

.ch-simple-list {
  list-style: none !important;
  padding: 0;
  margin: 16px 0 0 0;
}

/* Certified Professionals Section */
.certified-professionals-section {
  padding: 100px 0;
  background-color: var(--eduvers-primary, #fcfaf8);
}

.cp-image-wrapper {
  background: radial-gradient(circle at 50% 50%, rgba(0, 142, 210, 0.03) 0%, rgba(129, 140, 248, 0.03) 100%) !important;
  border-radius: 24px !important;
  border: 4px solid rgba(0, 142, 210, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 10px !important;
  transition: all 0.5s ease !important;
  box-shadow: 0 20px 50px rgba(0, 142, 210, 0.08), 0 0 20px rgba(0, 142, 210, 0.05) !important;
}

.cp-image-wrapper:hover {
  border-color: rgba(129, 140, 248, 0.4) !important;
  background: radial-gradient(circle at 50% 50%, rgba(0, 142, 210, 0.05) 0%, rgba(129, 140, 248, 0.05) 100%) !important;
  box-shadow: 0 30px 60px rgba(0, 142, 210, 0.18), 0 0 30px rgba(129, 140, 248, 0.15) !important;
}

.cp-image-wrapper::before {
  display: none !important;
}

.cp-certificate-img {
  max-width: 100%;
  width: 420px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  animation: float-board 6s ease-in-out infinite !important;
  transition: all 0.5s ease !important;
}

.cp-image-wrapper:hover .cp-certificate-img {
  transform: scale(1.03) rotate(1deg) !important;
}

.cp-content {
  padding-left: 30px;
}

.cp-title {
  font-size: 38px;
  font-weight: 700;
  color: #008ed2;
  line-height: 1.25;
  margin-bottom: 25px;
  font-family: var(--eduvers-font-two, "Montserrat Alternates", sans-serif);
}

.cp-divider {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 30px;
}

.cp-divider::before {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #0d2944;
}

.cp-divider span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #008ed2;
}

.cp-divider span:nth-child(2) {
  opacity: 0.7;
}

.cp-divider span:nth-child(3) {
  opacity: 0.4;
}

.cp-text {
  font-size: 15px;
  color: #4D5756;
  line-height: 1.8;
  margin-bottom: 25px;
}

.cp-list-title {
  font-size: 17px;
  font-weight: 700;
  color: #008ed2;
  margin-bottom: 25px;
  margin-top: 35px;
}

.cp-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.cp-features-list li {
  display: flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 12px;
  background: rgba(0, 142, 210, 0.015);
  border: 1px solid rgba(0, 142, 210, 0.04);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  margin-bottom: 12px !important;
}

.cp-features-list li:hover {
  background: rgba(0, 142, 210, 0.04) !important;
  border-color: rgba(0, 142, 210, 0.15) !important;
  transform: translateX(6px) !important;
}

.cp-check-icon {
  width: 24px !important;
  height: 24px !important;
  background: rgba(0, 142, 210, 0.08) !important;
  color: #008ed2 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 10px !important;
  transition: all 0.3s ease !important;
  flex-shrink: 0;
  border: 1px solid rgba(0, 142, 210, 0.12) !important;
  margin-right: 15px !important;
}

.cp-features-list li:hover .cp-check-icon {
  background: linear-gradient(135deg, #008ed2 0%, #818cf8 100%) !important;
  color: #ffffff !important;
  transform: scale(1.1) !important;
  border-color: #008ed2 !important;
  box-shadow: 0 4px 10px rgba(0, 142, 210, 0.2) !important;
}

.cp-features-list li span {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: #475569 !important;
  transition: color 0.3s ease;
}

.cp-features-list li:hover span {
  color: #008ed2 !important;
}

.cp-bottom-line {
  height: 1px;
  background-color: rgba(0, 142, 210, 0.3);
  margin-bottom: 25px;
  width: 100%;
}

.cp-bottom-text {
  font-size: 15.5px;
  font-weight: 500;
  color: #0d2944;
  line-height: 1.6;
  margin: 0;
}

@keyframes float-board {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.ch-feature-item span[style*="display: inline-flex"] {
  background: rgba(0, 142, 210, 0.08) !important;
  color: #008ed2 !important;
  border: 1px solid rgba(0, 142, 210, 0.15) !important;
  transition: all 0.3s ease !important;
}

.ch-feature-item:hover span[style*="display: inline-flex"] {
  background: linear-gradient(135deg, #008ed2 0%, #818cf8 100%) !important;
  color: #ffffff !important;
  border-color: #008ed2 !important;
  box-shadow: 0 4px 10px rgba(0, 142, 210, 0.2) !important;
  transform: scale(1.08) !important;
}

@media (max-width: 991px) {
  .cp-content {
    padding-left: 0;
    margin-top: 40px;
  }
  .cp-title {
    font-size: 32px;
  }
  .cp-image-wrapper::before {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 575px) {
  .cp-title {
    font-size: 26px;
  }
  .cp-image-wrapper {
    padding: 20px;
  }
  .cp-image-wrapper::before {
    width: 280px;
    height: 280px;
  }
}
