/*============= PREMIUM EXPERTISE CSS AREA ===============*/

/* General Helpers */
.sp-hero {
  padding: 120px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.sp-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.bg-white {
  background-color: #ffffff !important;
}

.section-bg-light {
  background-color: #f8fafc !important;
}

.rounded-24 {
  border-radius: 24px !important;
}

.text-cyan {
  color: var(--ztc-text-text-4) !important;
}

/* Badge Custom */
.badge-custom {
  background: rgba(0, 176, 239, 0.1);
  color: var(--ztc-text-text-4);
  font-family: var(--ztc-family-font1);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.badge-custom i {
  font-size: 12px;
}

/* Section Badge Blue */
.section-badge-blue {
  background: rgba(0, 176, 239, 0.1);
  color: var(--ztc-text-text-4);
  font-family: var(--ztc-family-font1);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
}

.section-title-dark {
  font-size: 36px;
  font-weight: 800;
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  line-height: 1.3;
}

/* Hero Section */
.premium-expertise-hero {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(224, 242, 254, 0.5) 100%);
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--ztc-text-text-2);
  line-height: 1.25;
  font-family: var(--ztc-family-font1);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 38px;
  }
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font1);
}

.btn-group-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-secondary-custom {
  background: var(--ztc-bg-bg-1) !important;
  color: var(--ztc-text-text-2) !important;
  border: 1px solid rgba(0, 176, 239, 0.25) !important;
}

.btn-secondary-custom:hover {
  background: var(--ztc-text-text-4) !important;
  color: #ffffff !important;
}

/* Hero Images Shape */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-image-wrapper img {
  box-shadow: 0 20px 40px rgba(0, 176, 239, 0.12);
  border: 4px solid #ffffff;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(15px);
  animation: floatShape 6s infinite ease-in-out;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: rgba(0, 176, 239, 0.2);
  top: -20px;
  left: -20px;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: rgba(40, 170, 74, 0.15);
  bottom: -30px;
  right: -20px;
  animation-delay: 3s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

/* Breadcrumb Override */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font1);
  font-weight: 500;
}

.breadcrumb-item.active {
  color: var(--ztc-text-text-4);
  font-family: var(--ztc-family-font1);
  font-weight: 600;
}

/* Key Focus Area Cards */
.expertise-img-wrap img {
  border: 6px solid #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.expertise-detail-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid rgba(0, 176, 239, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  position: relative;
  transition: all 0.3s ease;
}

.expertise-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 176, 239, 0.08);
  border-color: rgba(0, 176, 239, 0.15);
}

.card-icon-wrap {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(0, 176, 239, 0.08);
  color: var(--ztc-text-text-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.expertise-detail-card:hover .card-icon-wrap {
  background: var(--ztc-text-text-4);
  color: #ffffff;
}

.expertise-detail-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  margin-bottom: 12px;
}

.expertise-detail-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font1);
}

.expertise-detail-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
}

.mini-bullet {
  font-family: var(--ztc-family-font1);
  font-size: 14px;
  color: var(--ztc-text-text-2);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.mini-bullet i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.mini-bullet:hover {
  transform: translateX(4px);
}

/* Reverse Row align rules */
@media (min-width: 992px) {
  .row.reverse-row {
    flex-direction: row-reverse;
  }
}

/* Pills Target Grid */
.pills-container {
  gap: 12px;
}

.pill-tag {
  background: #ffffff;
  border: 1px solid rgba(0, 176, 239, 0.12);
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--ztc-family-font1);
  font-weight: 600;
  color: var(--ztc-text-text-2);
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  cursor: default;
}

.pill-tag i {
  color: var(--ztc-text-text-4);
  font-size: 16px;
  transition: all 0.3s ease;
}

.pill-tag:hover {
  background: var(--ztc-text-text-4);
  color: #ffffff;
  border-color: var(--ztc-text-text-4);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 176, 239, 0.15);
}

.pill-tag:hover i {
  color: #ffffff;
}

/* Our Approach Connected Timeline */
.approach-timeline-wrapper {
  position: relative;
}

@media (min-width: 992px) {
  .timeline-connecting-line {
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(0, 176, 239, 0.3), rgba(0, 176, 239, 0.3) 8px, transparent 8px, transparent 16px);
    z-index: 1;
  }
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-badge-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(0, 176, 239, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  transition: all 0.3s ease;
}

.circle-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 176, 239, 0.08);
  color: var(--ztc-text-text-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
}

.step-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ztc-text-text-3);
  margin: 20px auto;
  border: 1px solid rgba(0, 176, 239, 0.1);
  transition: all 0.3s ease;
}

.timeline-step h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ztc-text-text-2);
  font-family: var(--ztc-family-font1);
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ztc-text-text-3);
  font-family: var(--ztc-family-font1);
  padding: 0 15px;
}

/* Timeline Hovers */
.timeline-step:hover .step-badge-num {
  border-color: var(--ztc-text-text-4);
}

.timeline-step:hover .circle-num {
  background: var(--ztc-text-text-4);
  color: #ffffff;
}

.timeline-step:hover .step-icon-wrap {
  background: var(--ztc-text-text-4);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 176, 239, 0.2);
}

/* Adaptive Mobile Rules for Timeline */
@media (max-width: 991px) {
  .timeline-connecting-line {
    display: none;
  }
  .timeline-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(0, 176, 239, 0.08);
  }
  .step-badge-num {
    margin: 0;
    flex-shrink: 0;
  }
  .step-icon-wrap {
    margin: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  .timeline-step h4 {
    margin-top: 0;
    margin-bottom: 8px;
  }
  .timeline-step p {
    padding: 0;
    margin-bottom: 0;
  }
}

/* Checklist Cards (Why us) */
.intro-image-wrapper img {
  border: 6px solid #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.checklist-card {
  background: #f8fafc;
  padding: 20px 25px;
  border-radius: 12px;
  border: 1px solid rgba(0, 176, 239, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.checklist-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 176, 239, 0.08);
  border-color: rgba(0, 176, 239, 0.15);
  transform: translateX(5px);
}

.check-icon-wrap {
  font-size: 20px;
  color: #28aa4a; /* Green check icon color */
  line-height: 1;
}

.checklist-text {
  font-family: var(--ztc-family-font1);
  font-weight: 700;
  color: var(--ztc-text-text-2);
  font-size: 15px;
}

/* Call To Action Gradient */
.cta-gradient-section {
  background: linear-gradient(135deg, #0b1e36 0%, #0078c8 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.cta-title {
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.3;
  font-family: var(--ztc-family-font1);
}

@media (max-width: 767px) {
  .cta-title {
    font-size: 30px;
  }
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 750px;
  margin: 0 auto;
  font-family: var(--ztc-family-font1);
}

.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-white-custom {
  background: #ffffff !important;
  color: #0078c8 !important;
  border: 1px solid #ffffff !important;
}

.btn-white-custom:hover {
  background: var(--ztc-text-text-4) !important;
  color: #ffffff !important;
  border-color: var(--ztc-text-text-4) !important;
}

.btn-outline-white-custom {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.btn-outline-white-custom:hover {
  background: #ffffff !important;
  color: #0078c8 !important;
  border-color: #ffffff !important;
}
