/* Our Service Section Block Styles */

/* Base Section */
.our-service-section-section {
  width: 100%;
  padding: 50px 0px;
  background-color: #ffffff;
  box-sizing: border-box;
  display: none;
  position: relative;
}
.our-service-section-section::before {
  position: absolute;
  content: "";
  top: 0;
  left: -10px;
  width: 104%;
  height: 100%;
  background-color: #F4F7FA;
  z-index: 0;
}

.our-service-section-section .container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1;
  position: relative;
}

.our-service-section-section .our-service-section-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 5vw, 40px);
  align-items: center;
}

/* Main Title */
.our-service-section-section .our-service-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 300;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
  text-align: center;
}

/* Cards Container */
.our-service-section-section .our-service-section-cards {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Service Card */
.our-service-section-section .our-service-section-card {
  width: 100%;
  background-color: #daeef8;
  border-radius: 6px;
  padding: clamp(20px, 4vw, 30px);
  box-sizing: border-box;
}

.our-service-section-section .our-service-section-card-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 30px);
}

/* Service Title */
.our-service-section-section .our-service-section-service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #112446;
  margin: 0;
  line-height: 1.3;
  text-align: center;
}

/* Features List */
.our-service-section-section .our-service-section-features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px;
}

.our-service-section-section .our-service-section-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.our-service-section-section .our-service-section-check-icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
  object-fit: contain;
}

.our-service-section-section .our-service-section-feature-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #313f58;
  line-height: 1.6;
  flex: 1;
}

/* Feature Title (bold part before colon) */
.our-service-section-section .our-service-section-feature-title {
  font-weight: 600;
  color: #313f58;
}

/* Feature Description (normal weight after colon) */
.our-service-section-section .our-service-section-feature-desc {
  font-weight: 400;
  color: #313f58;
}

/* Logos Grid - 2 columns */
.our-service-section-section .our-service-section-logos-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.our-service-section-section .our-service-section-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 30px);
  justify-content: center;
  align-items: center;
  width: 90%;
}

.our-service-section-section .our-service-section-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

/* CTA Button */
.our-service-section-section .our-service-section-cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  padding: 0 10px;
}

.our-service-section-section .our-service-section-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  background-color: #13367d;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.our-service-section-section .our-service-section-cta-link:hover {
  background-color: #0f2a63;
}

.our-service-section-section .our-service-section-cta-text {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  text-align: center;
}



/* Responsive Breakpoints */

/* Tablet - 768px */
@media (max-width: 768px) {
  .our-service-section-section{
    display: block;
  }
  .our-service-section-section .container {
    padding: 0 15px;
  }
  
  .our-service-section-section .our-service-section-card {
    padding: 40px 10px;
  }
  
  .our-service-section-section .our-service-section-logos-row {
    gap: 25px;
  }
  
	.our-service-section-section .our-service-section-cta-wrapper{
		padding: 0px;
	}
	.our-service-section-section .our-service-section-cta-link{
		padding: 12px 15px;
	}
}

/* Mobile - 480px */
@media (max-width: 480px) {
  .our-service-section-section {
    padding: 50px 0;
  }
  
  .our-service-section-section .our-service-section-service-title {
    font-size: 20px;
  }
  
  /* .our-service-section-section .our-service-section-logo {
    max-width: 80px;
  } */
  
  .our-service-section-section .our-service-section-feature-item {
    gap: 10px;
  }
  
  .our-service-section-section .our-service-section-check-icon {
    width: 15px;
    height: 15px;
  }
  
  .our-service-section-section .our-service-section-cta-link {
    width: 100%;
    max-width: 100%;
  }
}
