/* Font Families */
.font-barlow {
  font-family: 'Barlow';
}

.font-tajawal {
  font-family: 'Tajawal';
}

.modal-backdrop {
  z-index: 1000;
}

h2::before,
h3::before {
  content: none;
}

.modal-open .modal {
  background: rgba(0, 0, 0, .6);
  z-index: 999999
}

.modal .close {
  border-radius: 50%;
  background: RED;
  opacity: 1;
  width: 30px;
  height: 30px;
  color: #fff;
  text-shadow: none;
  font-size: 31px;
  margin: 0;
  position: absolute;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  top: 20px;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif
}

.breadcrumb-container {
  background: #060F24;
  border-top: 1px solid rgba(51, 69, 107, 0.50);
  border-bottom: 1px solid rgba(51, 69, 107, 0.50);
  padding: 10px 0;
}

@media (max-width: 768px) {
  .block-md {
    display: none;
  }

  .breadcrumb-container ul {
    margin-bottom: 0px;
  }

  .breadcrumb-container ul li:last-child span {
    max-width: 115px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    padding-top: 7px;
  }
}

/* Hero Section */
.bg-hero {
  width: 100%;
  background: #060f24;
  position: relative;
  overflow: hidden;
}

.bg-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
}

.hero {
  position: relative;
  z-index: 2;
  padding: 183px 0 0 0 !important;
  min-height: 750px;
}

.hero-content-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 40px;
  row-gap: 90px;
  position: relative;
  
}
.pentest-checkup-hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(/img/security/pentest-checkup/hero-grid.png) no-repeat center right;
  z-index: 1;
}
.pentest-checkup-hero-section .container{
  position: relative;
  z-index: 2;
}
.hero-content-container-left {
  max-width: 748px;
  flex: 0 0 727px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content-container-left-headings {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.hero-main-heading {
  font-family: 'Barlow', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin: 0;
  padding: 0;
  color: #ffca00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-subheading-1 {
  font-family: 'Barlow', sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-subheading-2 {
  font-family: 'Barlow', sans-serif;
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-description {
  color: #FFF;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.hero-description strong {
  font-weight: 700;
}

.hero-content-container-cta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  background: #ffca00;
  border-radius: 8px;
  color: #0e0c0a;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 175%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-hero-cta:hover {
  background: linear-gradient(90deg, #ffdf00 0%, #ff9500 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 202, 0, 0.3);
  color: #0e0c0a !important;
}

.btn-hero-cta svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-content-container-right {
  flex: 1;
  align-self: stretch;
}

.hero-decorative-icons {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 300px;
}

.hero-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero-icon-wrapper {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #FFF;
  background: #061026;
  box-shadow: 0 6px 10px 0 rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  overflow: visible;
}

.hero-icon-bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at center, rgba(118, 233, 255, 0.4) 0%, rgba(6, 16, 38, 0.1) 70%);
  border-radius: 8px;
  opacity: 1;
  width: 150%;
  height: 150%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.icon-hero-container{
  display: flex; 
  justify-content: center;
  align-items: flex-start;
  gap: 16px; 
}
.icon-hero-item{ 
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(26, 61, 114, 0.40);
  box-shadow: 0 0 14px 0 rgba(255, 255, 255, 0.25);
  padding: 8px 12px;
  display: flex; 
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
}
/* Hover effects */
.hero-icon:hover {
  z-index: 10;
}

.hero-icon:hover .hero-icon-wrapper {
  border-color: #FFCA00;
  box-shadow: 0 6px 10px 0 rgba(255, 255, 255, 0.1) inset, 0 0 20px 0 rgba(255, 202, 0, 0.5);
}

.hero-icon:hover .hero-icon-bg-overlay {
  opacity: 1;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 202, 0, 0.6) 0%, rgba(255, 202, 0, 0.2) 40%, rgba(6, 16, 38, 0.1) 70%);
}

.hero-icon:hover img {
  filter: drop-shadow(0 0 8px rgba(255, 202, 0, 0.8));
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* Sparkle/glow effect on hover */
.hero-icon:hover::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 202, 0, 0.4) 0%, transparent 70%);
  animation: sparkle 2s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes sparkle {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}


.hero-icon img {
  width: 32px;
  height: 32px;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease;
}

.hero-icon-wrapper span {
  position: absolute;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 11;
  color: #FFCA00;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  left: 50%;
  bottom: -61px;
  transform: translateX(-50%);
  min-width: 140px;
}

.hero-icon:hover span {
  opacity: 1;
  visibility: visible;
}

.hero-icon-1 {
  top: -35px;
  right: 50%;
  transform: translateX(50%) scale(0.9);
}

.hero-icon-1:hover {
  transform: translateX(50%) scale(1.1) !important;
}

.hero-icon-2 {
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0.9);
}

.hero-icon-2:hover {
  transform: translateY(-50%) scale(1.1) !important;
}

.hero-icon-3 {
  bottom: 0;
  right: 50%;
  transform: translateX(30%) scale(0.9);
}

.hero-icon-3:hover {
  transform: translateX(30%) scale(1.1) !important;
}

.hero-icon-4 {
  top: 50%;
  right: 0;
  transform: translateY(-50%) scale(0.9);
}

.hero-icon-4:hover {
  transform: translateY(-50%) scale(1.1) !important;
}

.hero-logo-bottom-right {
  position: absolute;
  bottom: 32px;
  right: 30px;
  z-index: 3;
}

.hero-logo-bottom-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile Feature Boxes - Hidden on desktop */
.hero-mobile-features {
  display: none;
}

@media (max-width: 1024px) {
  .hero-content-container-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 50px 0 !important;
    min-height: auto;
  }

  .hero-content-container {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 16px;
    position: relative;
  }

  .hero-content-container-left {
    flex: 1;
    max-width: 100%;
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hero-content-container-left-headings {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .hero-main-heading {
    font-size: 24px;
    line-height: 120%;
  }

  .hero-subheading-1 {
    font-size: 18px;
    line-height: 120%;
  }

  .hero-subheading-2 {
    font-size: 20px;
    line-height: 120%;
  }

  .hero-description {
    font-size: 16px;
    line-height: 150%;
    text-align: left;
  }

  .hero-decorative-icons {
    display: none;
  }

  /* Mobile Feature Boxes */
  .hero-mobile-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .hero-mobile-feature-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 8px 12px;
    box-shadow: 10px 11px 30px 0px rgba(19, 71, 121, 0.6);
    width: 100%;
  }

  .hero-mobile-feature-item p {
    color: #FFFFFF;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    margin: 0;
    padding: 0;
    text-align: left;
  }

  .hero-mobile-feature-item p strong {
    font-weight: 700;
  }

  .hero-content-container-cta {
    width: 100%;
    margin-top: 0;
  }

  .btn-hero-cta {
    font-size: 14px;
    padding: 10px 24px;
    width: 100%;
    justify-content: center;
  }

  .btn-hero-cta svg {
    width: 24px;
    height: 24px;
  }

  .hero-logo-bottom-right {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 24px;
    padding: 0 16px;
    text-align: center;
  }

  .hero-logo-bottom-right img {
    max-width: 150px;
    margin: 0 auto;
  }

  .hero .btn-secondary-no-outline,
  .hero .btn-secondary-outline,
  .hero .btn-secondary-outline-white {
    border-radius: 8px;
    border: 1px solid var(--primary-normal-hover, #e6b600);
    background: var(--primary-normal, #ffca00);
    display: inline-flex;
    min-height: 32px;
    height: 45px;
    padding: 10px 10px;
    align-items: center;
    gap: 0;
    color: var(--secondary-500-color);
    font-family: Barlow, sans-serif;
    font-size: 15px;
    line-height: var(--line-height-125);
    font-weight: var(--bold-font-weight);
  }
  .icon-hero-container{ 
    flex-direction: column;
  }
}


/* Section Overview */
.section-overview {
  padding: 100px 0 50px 0;
  background: #060F24;
}


.section-overview>.container {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.section-overview-container {
  background: rgba(17, 27, 48, 0.2);
  border: 1px solid rgba(51, 69, 107, 0.5);
  border-radius: 16px;
  padding: 50px 0;
  position: relative;
}

.section-overview-container::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0px 20px 20px 0px rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.section-overview-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section-overview-title {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding: 0;
  text-align: center;
  max-width: 933px;
}

.section-overview-title::before {
  display: none;
}

.section-overview-description {
  max-width: 840px;
  width: 100%;
}

.section-overview-description p {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.section-overview-description p strong {
  font-weight: 700;
}

.section-overview-features {
  display: flex;
  gap: 0;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.section-overview-feature-item {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 12px;
  min-height: 0;
}

.section-overview-feature-item-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  overflow: hidden;
}

.section-overview-feature-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-overview-feature-item-content {
  width: 100%;
}

.section-overview-feature-item-content p {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.section-overview-feature-item-content p strong {
  font-weight: 700;
}

@media (max-width: 992px) and (min-width: 769px) {
  .section-overview-features {
    flex-wrap: wrap;
    gap: 16px;
  }

  .section-overview-feature-item {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .section-overview {
    padding: 40px 0;
  }

  .section-overview-container {
    padding: 30px 16px;
    margin: 0 16px;
  }

  .section-overview-header {
    margin-bottom: 24px;
    padding: 0;
    gap: 16px;
  }

  .section-overview-title {
    font-size: 24px;
    line-height: 130%;
  }

  .section-overview-description {
    max-width: 100%;
  }

  .section-overview-description p {
    font-size: 16px;
    text-align: center;
  }

  .section-overview-features {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .section-overview-feature-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    padding: 16px 24px;
    border-radius: 12px;
    flex: 1;
  }

  .section-overview-feature-item-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    padding: 0;
  }

  .section-overview-feature-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .section-overview-feature-item-content {
    flex: 1;
  }

  .section-overview-feature-item-content p {
    font-size: 14px;
    line-height: 140%;
    text-align: left;
  }
}


@media (min-width: 992px) {
  [aria-label=Breadcrumb] span {
    font-size: 14px;
  }
}

/* Section Promotional Banner */
.section-promotional-banner {
  background: #060F24;
  position: relative;
  overflow: hidden;
}

.section-promotional-banner-container {
  max-width: 1140px;
  margin: 0 auto;
  background: #18203d;
  border: 1px solid #45556c;
  border-radius: 12px;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: url('/img/security/pentest-checkup/bg-service-conventional-pentest.png');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  background-color: #18203D;
}

.section-promotional-banner-container::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(230, 237, 242, 0.15);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: inset 0px 10px 20px 5px rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.section-promotional-banner-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 23px 39px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.section-promotional-banner-icon {
  width: 75px;
  height: 74px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.section-promotional-banner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-promotional-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-promotional-banner-title {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-promotional-banner-title::before {
  display: none;
}

.section-promotional-banner-description {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-promotional-banner-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(90deg, #ffde01 0%, #fed301 100%);
  border: 1px solid #FFFFFF;
  border-radius: 8px;
  color: #0E0C0A;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 37px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.section-promotional-banner-button:hover {
  background: linear-gradient(90deg, #FFDF00 0%, #FF9500 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 202, 0, 0.4);
  color: #0E0C0A;
  text-decoration: none;
}

.section-promotional-banner-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.section-promotional-banner-button:hover svg {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .section-promotional-banner-container {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: none;
  }

  .section-promotional-banner-content {
    padding: 0;
    margin-bottom: 16px;
  }

  .section-promotional-banner-button {
    margin-right: 0;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-promotional-banner {
    padding: 0px 0;
  }

  .section-promotional-banner-container {
    margin: 0 16px;
    padding: 20px 16px;
  }

  .section-promotional-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .section-promotional-banner-icon {
    width: 60px;
    height: 60px;
  }

  .section-promotional-banner-title {
    font-size: 20px;
  }

  .section-promotional-banner-description {
    font-size: 16px;
  }

  .section-promotional-banner-button {
    font-size: 16px;
    padding: 12px 20px;
  }
}

/* Section Pentest Work */
.section-pentest-work {
  padding: 100px 0;
  background: #FFFFFF;
}

.section-pentest-work-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px 0 200px;
}

.section-pentest-work-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
}

.section-pentest-work-title {
  width: 100%;
  color: #0E0C0A;
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.section-pentest-work-title::before {
  display: none;
}

.section-pentest-work-description {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.section-pentest-work-description p {
  color: #0E0C0A;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
  text-align: center;
  max-width: 674px;
}

.section-pentest-work-slider {
  width: 100%;
  overflow: hidden;
  position: relative; 
}

.section-pentest-work-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.section-pentest-work-slider-track {
  display: flex;
  align-items: stretch;
  margin: 0 -16px;
  will-change: transform;
  transition: transform 0.5s ease-in-out;
}

.section-pentest-work-slide-item {
  width: 554px;
  min-width: 554px;
  height: auto;
  display: flex;
  padding: 0 16px;
  flex-shrink: 0;
}

.section-pentest-work-slide-card {
  background: #0B1630;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  width: 100%;
}

.section-pentest-work-slide-card-image {
  width: 100%;
  position: relative;
}

.section-pentest-work-slide-card-browser {
  width: 100%;
  background: #111B30;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}

.section-pentest-work-slide-card-browser-bar {
  height: 14px;
  background: #111B30;
  border-radius: 4px 4px 0 0;
  padding: 5px;
  display: flex;
  align-items: center;
}

.section-pentest-work-slide-card-browser-dots {
  display: flex;
  gap: 4px;
  margin-left: 5px;
}

.section-pentest-work-slide-card-browser-dots span {
  width: 4px;
  height: 4px;
  background: #FBAF35;
  border-radius: 50%;
  display: block;
}

.section-pentest-work-slide-card-browser-content {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.section-pentest-work-slide-card-browser-content img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section-pentest-work-slide-card-content {
  width: 100%;
}

.section-pentest-work-slide-card-content p {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.hero-img-container {
  border-radius: 20px;
  border: 2px solid var(--Netral-white, #FFF); 
  overflow: hidden;
}

@media (max-width: 1200px) {
  .section-pentest-work-container {
    padding: 0 50px;
  }
}

@media (max-width: 992px) {
  .section-pentest-work-container {
    padding: 0 50px;
  }

  .section-pentest-work-slide-item {
    width: 450px !important;
  }
}

@media (max-width: 768px) {
  .section-pentest-work {
    padding: 40px 0;
  }

  .section-pentest-work-container {
    padding: 0 16px;
  }

  .section-pentest-work-header {
    margin-bottom: 24px;
  }

  .section-pentest-work-title {
    font-size: 24px;
  }

  .section-pentest-work-description p {
    font-size: 16px;
  }

  .section-pentest-work-slide-item {
    width: 100% !important;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    padding: 0 8px !important;
  }

  .section-pentest-work-slider-track {
    margin: 0 0 0px 0 !important;
    width: 100%;
  }

  .section-pentest-work-slider-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .section-pentest-work-slider {
    overflow: hidden;
    width: 100%;
  }

  .section-pentest-work-slide-card {
    padding: 16px;
  }

  .section-pentest-work-slide-card-content p {
    font-size: 16px;
  }
}
.dark-bg{
  background: #060F24;
}
/* Section Pentest Results */
.section-pentest-results {
  padding: 100px 0;
  background: #060F24;
}

.section-pentest-results-container {
  padding: 0 16px;
}

.section-pentest-results-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.section-pentest-results-title {
  width: 100%;
  color: #FFFFFF;
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding: 0;
}

.section-pentest-results-title::before {
  display: none;
}

.section-pentest-results-description {
  width: 100%;
  max-width: 778px;
  color: #FFFFFF;
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-pentest-results-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.section-pentest-results-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  box-shadow: inset 0px 2px 10px 4px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.section-pentest-results-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(31, 118, 255, 0.3) 20%, rgba(31, 118, 255, 0) 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.section-pentest-results-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0px 2px 10px 4px rgba(255, 255, 255, 0.15), 0px 4px 20px rgba(31, 118, 255, 0.1);
  transform: translateY(-2px);
}

.section-pentest-results-card:hover::before {
  opacity: 1;
}

.section-pentest-results-card-icon {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.3s ease;
}

.section-pentest-results-card-icon img {
  max-width: 64px;
  max-height: 48px;
  transition: filter 0.3s ease;
}

.section-pentest-results-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.section-pentest-results-card-title {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-pentest-results-card-description {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

@media (max-width: 1200px) {
  .section-pentest-results-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-pentest-results {
    padding: 40px 0;
  }

  .section-pentest-results-container {
    padding: 0 16px;
  }

  .section-pentest-results-header {
    margin-bottom: 24px;
  }

  .section-pentest-results-title {
    font-size: 24px;
  }

  .section-pentest-results-description {
    font-size: 16px;
  }

  .section-pentest-results-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .section-pentest-results-card {
    padding: 20px;
    gap: 20px;
  }

  .section-pentest-results-card-title {
    font-size: 18px;
  }

  .section-pentest-results-card-description {
    font-size: 16px;
  }
  .section-pentest-work-slider {
    margin-bottom: 40px;
  }
}

/* Section Methods */
.section-benefits {
  padding: 100px 0;
  background: #FFFFFF;
}

.section-benefits-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.section-benefits-title {
  width: 100%;
  color: #0E0C0A;
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding: 0;
}

.section-benefits-title::before {
  display: none;
}

.section-benefits-description {
  width: 100%;
  max-width: 840px;
  color: #0E0C0A;
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-benefits-description strong {
  font-weight: 700;
}

.section-benefits-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.section-benefits-content-left {
  width: 386px;
  flex-shrink: 0;
  position: relative;
}

.section-benefits-content-left picture,
.section-benefits-content-left img,
.section-benefits-content-left video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.section-benefits-content-left video {
  object-fit: cover;
  object-position: center;
}

.section-benefits-content-right {
  width: 510px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.section-benefits-benefit-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 24px 0;
  border-bottom: 1px solid #B5B5B5;
}

.section-benefits-benefit-item:first-child {
  padding-top: 0;
}

.section-benefits-benefit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section-benefits-benefit-title {
  color: #0E0C0A;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-benefits-benefit-title::before {
  display: none;
}

.section-benefits-benefit-description {
  color: #0E0C0A;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .section-benefits-container {
    max-width: 944px;
    padding: 0 16px;
  }
}

@media (max-width: 992px) {
  .section-benefits-content {
    flex-direction: column;
    gap: 40px;
  }

  .section-benefits-content-left {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .section-benefits-content-right {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .section-benefits {
    padding: 40px 0;
  }

  .section-benefits-container {
    padding: 0 16px;
  }

  .section-benefits-header {
    margin-bottom: 32px;
  }

  .section-benefits-title {
    font-size: 24px;
  }

  .section-benefits-description {
    font-size: 16px;
  }

  .section-benefits-content {
    gap: 32px;
  }

  .section-benefits-content-left {
    max-width: 100%;
  }

  .section-benefits-content-right {
    max-width: 100%;
  }

  .section-benefits-benefit-item {
    padding: 20px 0;
  }

  .section-benefits-benefit-title {
    font-size: 18px;
  }

  .section-benefits-benefit-description {
    font-size: 16px;
  }
}

/* Section Methods Report */
.section-benefits-report {
  width: 100%;
  padding: 80px 0px 0px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.section-benefits-report-left {
  max-width: 400px;
  width: 100%;
}

.section-benefits-report-left img {
  width: 100%;
  border-radius: 10px;
}

.section-benefits-report-right {
  flex: 1;
}

.section-benefits-report-right h2 {
  color: #0E0C0A;
  font-family: 'Tajawal';
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin: 0;
  padding: 0;
}

.section-benefits-report-right h2::before {
  display: none;
}

.section-benefits-report-description {
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 24px 0;
  padding: 0;
}

.section-benefits-report-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-benefits-report-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-benefits-report-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}

.section-benefits-report-list li::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M18.71 7.21a1 1 0 0 0-1.42 0l-7.45 7.46l-3.13-3.14A1 1 0 1 0 5.29 13l3.84 3.84a1 1 0 0 0 1.42 0l8.16-8.16a1 1 0 0 0 0-1.47'/%3E%3C/svg%3E");
}

.section-benefits-report-list li span {
  flex: 1;
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 768px) {
  .section-benefits-report {
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }

  .section-benefits-report-left {
    max-width: 100%;
    height: 240px;
  }

  .section-benefits-report-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
  }

  .section-benefits-report-right {
    flex: none;
    width: 100%;
  }

  .section-benefits-report-right h2 {
    font-size: 24px;
  }

  .section-benefits-report-description {
    font-size: 16px;
  }

  .section-benefits-report-list li {
    align-items: flex-start;
    font-size: 16px;
  }

  .section-benefits-report-list li span {
    font-size: 16px;
  }


  .section-benefits-report-list li::before {
    width: 20px;
    height: 20px;
    margin-top: 4px;
  }

}

/* Section Methods / Comparison */
.section-methods {
  padding: 100px 0;
  background: #070D27;
  border: 1px solid #48648E;
}

.section-methods-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.section-methods-header-title {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.section-methods-header-title h2 {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding: 0;
}

.section-methods-header-title h2::before {
  display: none;
}

.section-methods-header-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFDF00 0%, #FFE154 100%);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-methods-header-icon img {
  width: 29px;
  height: 48px;
  object-fit: contain;
}

.section-methods-header-description {
  max-width: 750px;
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  margin: 0;
  padding: 0;
}

.section-methods-header-description strong {
  font-weight: 700;
}

.section-methods-comparison {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

.section-methods-comparison-card {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: inset 0px 0px 10px 4px rgba(255, 255, 255, 0.2);
  flex: 1;
  max-width: 508px;
}

.section-methods-comparison-card:first-child::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 166px;
  background: radial-gradient(ellipse, rgba(31, 118, 255, 0.3) 40%, rgba(31, 118, 255, 0) 80%);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.section-methods-comparison-card-title {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
  margin: 0;
  padding: 0 0 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.section-methods-comparison-card-title::before {
  display: none;
}

.section-methods-comparison-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
  position: relative;
  z-index: 1;
}

.section-methods-comparison-card-list li {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 8px 0;
}

.section-methods-comparison-card-button {
  width: 100%;
  padding: 10px 24px;
  border-radius: 8px;
  border: 1px solid;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.section-methods-comparison-card-button-primary {
  background: linear-gradient(135deg, #FFDE01 0%, #FED301 100%);
  border-color: #FFFFFF;
  color: #0E0C0A;
  transition: all 0.3s ease;
}

.section-methods-comparison-card-button-primary:hover {
  background: linear-gradient(90deg, #FFDF00 0%, #FF9500 100%);
  transition: all 0.3s ease;
}

.section-methods-comparison-card-button-secondary {
  background: #262626;
  border-color: #515151;
  color: #FFFFFF;
}

.section-methods-comparison-card-button-secondary:hover {
  background: #333333;
  color: #FFFFFF !important;
}

@media (max-width: 992px) {
  .section-methods-comparison {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .section-methods {
    padding: 40px 0;
  }

  .section-methods-container {
    padding: 0 16px;
  }

  .section-methods-header {
    margin-bottom: 40px;
  }

  .section-methods-header-title {
    flex-direction: column;
    gap: 8px;
  }

  .section-methods-header-title h2 {
    font-size: 24px;
  }

  .section-methods-header-icon {
    width: 48px;
    height: 48px;
  }

  .section-methods-header-icon img {
    width: 24px;
    height: 40px;
  }

  .section-methods-header-description {
    font-size: 16px;
  }

  .section-methods-comparison {
    gap: 24px;
  }

  .section-methods-comparison-card {
    padding: 8px 16px;
  }

  .section-methods-comparison-card-title {
    font-size: 20px;
  }

  .section-methods-comparison-card-list li {
    font-size: 14px;
  }

  .section-methods-comparison-card-button {
    font-size: 16px;
    padding: 12px 20px;
  }
}

/* Section Methods Details */
.section-methods-details {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-top: 50px;
}

.section-methods-details-left {
  position: relative;
  flex: 1;
}

.section-methods-details-visual {
  position: relative;
  width: 100%;
  height: 743px;
  max-width: 509px;
  border-radius: 8px;
  overflow: hidden;
  background: url('/img/security/pentest-checkup/bg-pentest-shield.webp') center/cover no-repeat;
}

.section-methods-details-visual-diagram {
  position: relative;
  width: 100%;
  height: 77%;
  z-index: 2;
}

.section-methods-details-visual-bg {
  position: absolute;
  inset: 0;
  background: url('/img/security/pentest-checkup/security-background.webp') center/cover no-repeat;
  opacity: 0.6;
  z-index: 0;
}

.section-methods-details-visual-bg-overlay {
  position: absolute;
  inset: 0;
  background: #585858;
  mix-blend-mode: hard-light;
  border-radius: 8px;
  z-index: 1;
}

.section-methods-details-visual-bg-glow {
  position: absolute;
  left: 126px;
  top: 155px;
  width: 256px;
  height: 225px;
  background: radial-gradient(ellipse, rgba(31, 118, 255, 0.3) 0%, rgba(31, 118, 255, 0) 70%);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.section-methods-details-line {
  position: absolute;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 3;
  pointer-events: none;
}

.section-methods-details-line[data-line="1"] {
  left: 314px;
  top: 359px;
  width: 82px;
  transform: rotate(46.975deg);
  transform-origin: left center;
}

.section-methods-details-line[data-line="2"] {
  left: 194px;
  top: 368px;
  width: 73px;
  transform: rotate(135.556deg);
  transform-origin: left center;
}

.section-methods-details-line[data-line="3"] {
  left: 375px;
  top: 115px;
  width: 81px;
  transform: rotate(131.309deg);
  transform-origin: left center;
}

.section-methods-details-line[data-line="4"] {
  left: 121px;
  top: 120px;
  width: 81px;
  transform: rotate(45deg);
  transform-origin: left center;
}

.section-methods-details-shield {
  position: absolute;
  left: 254px;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.section-methods-details-shield-icon {
  width: 250px;
  height: 279px;
  position: relative;
  margin: 0 auto;
}

.section-methods-details-shield-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-methods-details-shield-polygon {
  position: absolute;
  left: 113.13px;
  top: 180.17px;
  width: 25px;
  height: 24px;
  z-index: 1;
}

.section-methods-details-shield-polygon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-methods-details-shield-banner {
  position: absolute;
  left: 6.98px;
  top: 195.53px;
  width: 232px;
  height: 35px;
  background: linear-gradient(180deg, #307FC6 0%, #20599B 100%);
  border: 1px solid #779EBF;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 1;
}

.section-methods-details-shield-banner span {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 221px;
}

.section-methods-details-assets {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.section-methods-details-asset-item {
  position: absolute;
  width: 70px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px;
}

.section-methods-details-asset-box {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 153, 153, 0.1) 100%);
  backdrop-filter: blur(2px);
  border-radius: 8px;
  z-index: 0;
}

.section-methods-details-asset-item[data-asset="website"] {
  left: 55px;
  top: 36px;
}

.section-methods-details-asset-item[data-asset="mobile"] {
  left: 367px;
  top: 36px;
}

.section-methods-details-asset-item[data-asset="api"] {
  left: 75px;
  top: 416px;
}

.section-methods-details-asset-item[data-asset="cloud"] {
  left: 367px;
  top: 416px;
}

.section-methods-details-asset-icon {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-methods-details-asset-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-methods-details-asset-dots {
  position: absolute;
  left: 34px;
  top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  z-index: 2;
}

.section-methods-details-asset-dots span {
  width: 8px;
  height: 8px;
  background: linear-gradient(180deg, #CECBCB 0%, #8C9EAF 100%);
  border-radius: 1px;
  display: block;
}

.section-methods-details-asset-item>span {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  z-index: 1;
}

.section-methods-details-subtitle-container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.section-methods-details-subtitle {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

.section-methods-details-features {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.section-methods-details-feature-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 150px;
  text-align: center;
}

.section-methods-details-feature-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 0.428px solid rgba(0, 213, 229, 0.60);
  background: linear-gradient(311deg, #38AA0E 13.19%, rgba(56, 170, 14, 0.40) 87.4%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-methods-details-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-methods-details-feature-item p {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}

.section-methods-details-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-methods-details-pricing {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section-methods-details-price {
  color: #FFCA00;
  font-family: 'Barlow', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  padding: 0;
}

.section-methods-details-price::before {
  display: none;
}

.section-methods-details-description {
  backdrop-filter: blur(7.5px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-methods-details-description p {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.06), 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.section-methods-details-description p strong {
  font-weight: 700;
}

.section-methods-details-scope {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-methods-details-scope-title {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.section-methods-details-scope-title::before {
  display: none;
}

.section-methods-details-scope-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-methods-details-scope-list li {
  display: flex;
  gap: 16px;
  align-items: center;
}

.section-methods-details-scope-check-icon {
  width: 16px;
  height: 16px;
  flex: 0;
}

.section-methods-details-scope-check::after {
  content: url('/img/security/pentest-checkup/icon-check-default.svg');
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #0E0C0A;
  font-weight: bold;
  line-height: 1;
}

.section-methods-details-scope-list li span:last-child {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  flex: 1;
}

.section-methods-details-scope-list li span:last-child strong {
  font-weight: 700;
}

.section-methods-details-optional {
  background: rgba(109, 191, 254, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: inset 0px 6px 10px 0px rgba(255, 255, 255, 0.15);
}

.section-methods-details-optional-title {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.section-methods-details-optional-title::before {
  display: none;
}

.section-methods-details-optional-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-methods-details-optional-list li {
  display: flex;
  gap: 16px;
  align-items: center;
}

.section-methods-details-optional-list li span:last-child {
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  flex: 1;
}

.section-methods-details-optional-list li span:last-child strong {
  font-weight: 700;
}

@media (max-width: 1200px) {
  .section-methods-details {
    flex-direction: column;
    gap: 40px;
  }

  .section-methods-details-left,
  .section-methods-details-right {
    width: 100%;
  }

  .section-methods-details-left {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-methods-details {
    margin-top: 40px;
    gap: 32px;
  }

  .section-methods-details-visual {
    height: 600px;
    position: relative;
  }

  .section-methods-details-line {
    display: none;
  }

  .section-methods-details-shield {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.7);
  }

  .section-methods-details-shield-icon {
    width: 180px;
    height: 200px;
  }

  .section-methods-details-shield-polygon {
    transform: scale(0.7);
  }

  .section-methods-details-shield-banner {
    transform: scale(0.7);
  }

  .section-methods-details-asset-item {
    width: 60px;
    height: 75px;
    padding: 6px;
    transform: scale(0.85);
  }

  .section-methods-details-asset-item[data-asset="website"] {
    left: 5%;
    top: 5%;
  }

  .section-methods-details-asset-item[data-asset="mobile"] {
    left: auto;
    right: 5%;
    top: 5%;
  }

  .section-methods-details-asset-item[data-asset="api"] {
    left: 5%;
    top: auto;
    bottom: 15%;
  }

  .section-methods-details-asset-item[data-asset="cloud"] {
    left: auto;
    right: 5%;
    top: auto;
    bottom: 15%;
  }

  .section-methods-details-asset-icon {
    width: 32px;
    height: 32px;
  }

  .section-methods-details-asset-item span {
    font-size: 12px;
    top: 70px;
  }

  .section-methods-details-subtitle {
    font-size: 14px;
  }

  .section-methods-details-feature-item {
    width: 100%;
    max-width: 200px;
    padding: 8px 4px;
  }

  .section-methods-details-feature-item p {
    font-size: 12px;
  }

  .section-methods-details-price {
    font-size: 28px;
  }

  .section-methods-details-description p {
    font-size: 16px;
  }

  .section-methods-details-scope-title,
  .section-methods-details-optional-title {
    font-size: 18px;
  }

  .section-methods-details-scope-list li span:last-child,
  .section-methods-details-optional-list li span:last-child {
    font-size: 14px;
  }

  .section-methods-details-visual-diagram {
    height: 426px;
  }

  .section-methods-details-subtitle-container {
    padding: 0 8px;
  }
}




/* Section Security Impact */
.section-security-impact {
  padding: 80px 0;
  background: #FFFF;
}

.section-security-impact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-security-impact-overview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.section-security-impact-overview-left {
  flex: 1;
}

.section-security-impact-overview-left h2 {
  color: #0E0C0A;
  font-family: 'Tajawal';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin: 0 0 24px 0;
  padding: 0;
}

.section-security-impact-overview-left h2::before {
  display: none;
}

.section-security-impact-overview-left p {
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-security-impact-overview-right {
  flex: 0 0 415px;
}

.section-security-impact-overview-right img {
  width: 100%;
  border-radius: 10px;
}

/* Section Security Impact Statistics */
.section-security-impact-statistics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.section-security-impact-statistics-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: 10px;
  padding: 24px;
  border: 1px solid #E6EDF2;
  background: #FFF;
  box-shadow: 0 0 40px 5px rgba(20, 99, 168, 0.03);
}

.section-security-impact-statistics-card-value {
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-security-impact-statistics-card-label {
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-security-impact-note-text {
  color: #908F8E;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
  padding: 0;
  text-align: center;
}

@media (max-width: 768px) {

  .section-security-impact {
    padding: 40px 0;
  }

  .section-security-impact-container {
    padding: 0px 16px 0px 16px;
  }

  .section-security-impact-overview {
    flex-direction: column;
    gap: 24px;
  }

  .section-security-impact-overview-left {
    order: 2;
  }

  .section-security-impact-overview-left h2 {
    font-size: 24px;
    line-height: 120%;
  }

  .section-security-impact-overview-left p {
    font-size: 16px;
    line-height: 150%;
  }

  .section-security-impact-overview-right {
    flex: none;
    width: 100%;
    order: 1;
  }

  .section-security-impact-statistics {
    grid-template-columns: repeat(1, 1fr);
  }

  .section-security-impact-statistics-card {
    padding: 24px;
  }

  .section-security-impact-note-text {
    font-size: 16px;
  }

  .section-security-impact-statistics-card-value {
    font-size: 20px;
  }

}

/* Section DevSecOps Solution */
.section-devsecops-solution {
  padding: 80px 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) -7.51%, #F3F3F3 92.41%);
}

.section-devsecops-solution-container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-devsecops-solution-overview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.section-devsecops-solution-overview-left {
  flex: 0 0 426px;
}

.section-devsecops-solution-overview-left img {
  width: 100%;
}

.section-devsecops-solution-overview-right {
  flex: 1;
}

.section-devsecops-solution-overview-right h2 {
  color: #0E0C0A;
  font-family: 'Tajawal';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  /* 45px */
  margin: 0 0 24px 0;
  padding: 0;
}

.section-devsecops-solution-overview-right h2::before {
  display: none;
}

.section-devsecops-solution-overview-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-devsecops-solution-overview-right ul li {
  display: flex;
  gap: 8px;
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  margin-bottom: 24px;
}

.section-devsecops-solution-overview-right ul li::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(/layanan/assets/img/img-jagaweb/icon-check.webp);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 4px;
}

.section-devsecops-solution-overview-right ul li span {
  flex: 1;
}

.section-devsecops-solution-overview-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
}

.section-devsecops-solution-overview-cta-title {
  display: flex;
  width: 240px;
  padding: 16px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  background: var(--g1, linear-gradient(278deg, #E7A200 15.31%, #FFCA00 72.5%));
  color: #000;
  text-align: center;
  font-family: 'Barlow';
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  border-radius: 10px 0px 0px 10px;

}

.section-devsecops-solution-overview-cta-title::before {
  display: none;
}

.section-devsecops-solution-overview-cta-description {
  flex: 1;
  border: 1px solid #E6E7E8;
  padding: 24px;
  margin-left: -1px;
  border-left: none;
  border-radius: 0px 10px 10px 0px;
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.00) 0%, #F0F9FF 100%);
}

@media (max-width: 768px) {
  .section-devsecops-solution {
    padding: 40px 0;
  }

  .section-devsecops-solution-container {
    padding: 0px 16px 0px 16px;
  }

  .section-devsecops-solution-overview {
    flex-direction: column;
    gap: 24px;
  }

  .section-devsecops-solution-overview-left {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .section-devsecops-solution-overview-left img {
    width: 80%;
    margin: 0 auto;
  }

  .section-devsecops-solution-overview-right {
    flex: none;
    width: 100%;
  }

  .section-devsecops-solution-overview-right h2 {
    font-size: 24px;
  }

  .section-devsecops-solution-overview-right ul li {
    font-size: 16px;
  }

  .section-devsecops-solution-overview-right ul li::before {
    width: 20px;
    height: 20px;
  }

  .section-devsecops-solution-overview-cta {
    flex-direction: column;
    gap: 0px;
  }

  .section-devsecops-solution-overview-cta-title {
    width: 100%;
    font-size: 24px;
    border-radius: 10px 10px 0px 0px;
  }

  .section-devsecops-solution-overview-cta-description {
    font-size: 16px;
    border-radius: 0px 0px 10px 10px;
    border-left: 1px solid #E6E7E8;
    border-right: 1px solid #E6E7E8;
    border-bottom: 1px solid #E6E7E8;
  }
}


/* Section How It Works */
.section-how-it-works {
  padding: 80px 0;
}

.section-how-it-works-container {
  max-width: 1140px;
  margin: 0 auto;
}

.section-how-it-works-title {
  width: 100%;
  color: #0E0C0A;
  text-align: center;
  font-family: 'Tajawal';
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  /* 45px */
  margin: 0 0 40px 0;
  padding: 0;
}

.section-how-it-works-title::before {
  display: none;
}

.section-how-it-works-content {
  width: 100%;
  margin-bottom: 40px;
}

.section-how-it-works-content-row-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.section-how-it-works-content-row-2 {
  max-width: 752px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.section-how-it-works-content-item {
  width: 100%;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #E6EDF2;
  background: #FFF;
  box-shadow: 0 0 40px 5px rgba(20, 99, 168, 0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.section-how-it-works-content-item img {
  width: 32px;
  height: 32px;
}

.section-how-it-works-content-item h3 {
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  margin: 0 0 8px 0;
  padding: 0;
}

.section-how-it-works-content-item h3::before {
  display: none;
}

.section-how-it-works-content-item p {
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  /* 17.5px */
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .section-how-it-works {
    padding: 40px 0;
  }

  .section-how-it-works-container {
    padding: 0px 16px 0px 16px;
  }

  .section-how-it-works-title {
    font-size: 24px;
  }

  .section-how-it-works-content {
    margin-bottom: 24px;
  }

  .section-how-it-works-content-row-1 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .section-how-it-works-content-row-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }

  .section-how-it-works-content-item {
    padding: 16px;
  }

  .section-how-it-works-content-item img {
    width: 24px;
    height: 24px;
  }

  .section-how-it-works-content-item h3 {
    font-size: 16px;
  }

  .section-how-it-works-content-item p {
    font-size: 16px;
  }

}

/* Section Certified Team */
.section-certified-team {
  padding: 100px 0;
  background: #FFFFFF;
}

.section-certified-team-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 60px;
}

.section-certified-team-header-top {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  width: 100%;
}

.section-certified-team-title-top {
  color: #0E0C0A;
  text-align: center;
  font-family: 'Barlow';
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin: 0 0 0 0;
  padding: 0;
}

.section-certified-team-title-top::before {
  display: none;
}

.section-certified-team-title {
  color: #0E0C0A;
  text-align: center;
  font-family: 'Barlow';
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0 0 0 0;
  padding: 0;
}

.section-certified-team-title::before {
  display: none;
}

.section-certified-team-description {
  color: #0E0C0A;
  text-align: center;
  font-family: 'Barlow';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
  max-width: 820px;
}

.section-certified-team-description strong {
  font-weight: 700;
}

.section-certified-team-content {
  display: flex;
  gap: 0;
  align-items: flex-start;
  width: 100%;
}

.section-certified-team-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  flex: 0 0 570px;
  padding: 0 32px;
}

.section-certified-team-image-wrapper {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(230, 237, 242, 0.15);
  box-shadow: inset 0px 10px 10px 0px rgba(255, 255, 255, 0.05);
}

.section-certified-team-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.section-certified-team-column-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.section-certified-team-column-title {
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-certified-team-column-description {
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}


.section-certified-team-promo-card {
  width: 100%;
  height: 70px;
  background: rgba(69, 113, 215, 0.1);
  backdrop-filter: blur(17px);
  border: 1px solid rgba(230, 237, 242, 0.15);
  border-radius: 12px;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0px 10px 20px 5px rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  background: url('/img/security/pentest-checkup/bg-learn-more-about-qa.webp') no-repeat center center / cover;
}

.section-certified-team-promo-card-bg-gradient {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg, #18203d 0%, rgba(24, 32, 61, 0.5) 100%);
  pointer-events: none;
  z-index: 0;
}


.section-certified-team-promo-card:hover .section-certified-team-promo-card-button {
  transform: translateX(10px);
}

.section-certified-team-promo-card-bg-overlay {
  position: absolute;
  right: 0;
  top: 50%;
}

.section-certified-team-promo-card:hover .section-certified-team-promo-card-bg-overlay {
  transform: translateY(-50%);
  background: #1F76FF;
  filter: blur(75px);
  z-index: 1;
  width: 40%;
  height: 100%;
}

.section-certified-team-promo-card-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.section-certified-team-promo-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.section-certified-team-promo-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-certified-team-promo-card-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.section-certified-team-promo-card-title {
  color: #FFFFFF;
  font-family: 'Barlow';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-certified-team-promo-card-description {
  color: #FFFFFF;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
  text-align: left;
}

.section-certified-team-promo-card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #FFFFFF;
  border-radius: 50%;
  text-decoration: none;
  margin-right: 31px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.section-certified-team-promo-card-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.section-certified-team-promo-card-button svg path {
  stroke: #1a274b;
}

@media (max-width: 1200px) {
  .section-certified-team-column {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 992px) {
  .section-certified-team {
    padding: 60px 0;
  }

  .section-certified-team-content {
    flex-direction: column;
    gap: 40px;
  }

  .section-certified-team-column {
    flex: 1 1 100%;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .section-certified-team {
    padding: 40px 0;
  }

  .section-certified-team-header {
    margin-bottom: 40px;
  }

  .section-certified-team-title-top {
    font-size: 20px;
  }

  .section-certified-team-title {
    font-size: 24px;
  }

  .section-certified-team-description {
    font-size: 16px;
  }

  .section-certified-team-column-title {
    font-size: 18px;
  }

  .section-certified-team-column-description {
    font-size: 16px;
  }

  .section-certified-team-promo-card {
    width: 100%;
    height: auto;
    min-height: 70px;
    padding: 16px;
    flex-direction: row;
    gap: 16px;
  }

  .section-certified-team-promo-card-bg-gradient {
    width: 100%;
    height: 100%;
  }

  /* .section-certified-team-promo-card-bg-overlay {
    width: calc(100% - 2px);
    height: 100%;
  } */

  .section-certified-team-promo-card-content {
    flex: 1;
    padding: 0;
  }

  .section-certified-team-promo-card-button {
    margin-right: 0;
    flex-shrink: 0;
  }
}


/* Section FAQ */
.section-faq {
  padding: 100px 0 0;
  background: #FFFFFF;
}

.section-faq-container {
  padding: 0 100px;
}

.section-faq-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.section-faq-title {
  color: #0E0C0A;
  text-align: center;
  font-family: 'Barlow';
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  margin: 0;
  padding: 0;
  width: 100%;
}

.section-faq-item-number {
  color: #0E0C0A;
  font-family: 'Barlow';
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  flex-shrink: 0;
  width: 40px;
}

.section-faq-title::before {
  display: none;
}

.section-faq-description {
  color: #0E0C0A;
  text-align: center;
  font-family: 'Barlow';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
  max-width: 800px;
}

.faq-accordion .card {
  border: none;
  border-bottom: 1px solid #E2DFDF !important;
}

.faq-accordion .card:last-child {
  border-bottom: none !important;
}

.faq-accordion .card > .card-header {
  background: #fff;
  padding: 0;
  border-bottom: none;
}

.faq-accordion .card > .card-header > .accordion-toggle.collapsed {
  padding: 24px 0;
}

.faq-accordion .card > .card-header > .accordion-toggle {
  padding: 24px 0 8px;
}

.faq-accordion .card .collapse {
  transition: all 0.3s ease;
}

.faq-accordion .card .collapse .card-body {
  padding: 0 0 24px 50px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.pertanyaan-wrapper {
  display: flex;
  gap: 60px;
}

.panel {
  margin-bottom: 20px;
  background-color: transparent !important;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: 0 0px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.05);
}

.panel-default>.panel-heading {
  background-color: transparent !important;
  border-bottom: 1px solid transparent;
  border-top: 1px solid black;
}

.panel-heading {
  padding: 0;
  border-radius: 0 !important;
}

.panel-default {
  border-color: white;
}

.panel.panel-default .panel-heading>a {
  color: var(--secondary-500-color);
}

.panel-group .panel+.panel {
  margin-top: 0px;
}

.panel-group .panel {
  margin-bottom: 0;
  border-radius: 0px;
}

.accordion-toggle {
  border: none;
  background-color: transparent !important;
  padding: 16px 0px;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  border-radius: 0 !important;
}


.accordion-toggle img.icon-panel {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.accordion-toggle.collapsed img.icon-panel {
  transform: rotate(0deg);
}

.accordion-toggle h4 {
  color: #000;
  font-family: 'Barlow';
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}

.panel.panel-default a:hover {
  text-decoration: none;
}

.panel-body {
  border-top: none !important;
  padding: 0 0 16px 0 !important;
}

/* Fix for collapse visibility issue */
.collapse.show {
  display: block !important;
  visibility: visible !important;
}

.panel-collapse.collapse.show {
  display: block !important;
  visibility: visible !important;
}

.panel-body p {
  color: #222425;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.pertanyaan-img img {
  max-width: 100%;
}

@media (min-width: 768px) {
  .pertanyaan-img img {
    position: sticky;
    top: 0;
  }
}

@media (max-width: 1200px) {
  .section-faq-container {
    padding: 0 32px;
  }

}

@media (max-width: 992px) {
  .section-faq-container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .section-faq {
    padding: 40px 0;
  }

  .section-faq-container {
    padding: 0 16px;
  }

  .section-faq-header {
    margin-bottom: 24px;
  }

  .section-faq-title {
    font-size: 24px;
  }

  .section-faq-description {
    font-size: 16px;
  }


  .pertanyaan-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .pertanyaan-img {
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }

  .pertanyaan-img img {
    position: sticky;
    top: 0;
    width: 70%;
  }

  .accordion-toggle:last-child {
    padding-bottom: 0px;
  }

  .faq-accordion .card .collapse .card-body {
    font-size: 14px;
    flex: 1;
  }
}

@media (min-width: 768px) {
  .panel-group {
    flex: 0 0 680px;
  }

  .pertanyaan-img {
    flex: 1;
  }

  .pertanyaan-img img {
    position: sticky;
    top: 0;
  }
}

/* Section Form Contact */
.section-certified-team-form {
  padding: 100px 0;
}

.section-certified-team-form-container {
  display: flex;
  justify-content: space-between;
  background: #070E25;
  gap: 40px;
  border-radius: 10px;
  padding: 40px;
}

.section-certified-team-form-left {
  flex: 1;
}

.section-certified-team-form-left img {
  width: auto;
  height: 58px;
  margin-bottom: 16px;
}

.section-certified-team-form-left-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-certified-team-form-left-content-title {
  color: #FFF;
  font-family: 'Tajawal';
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  /* 37.5px */
  margin: 0;
  padding: 0;
}

.section-certified-team-form-left-content-title::before {
  display: none;
}

.section-certified-team-form-left-content-description {
  color: #FFF;
  font-family: 'Tajawal';
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 27px */
  margin: 0;
  padding: 0;
}

.section-certified-team-form-left-content-description::before {
  display: none;
}

.section-certified-team-form-left-content-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-certified-team-form-left-content-list ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.section-certified-team-form-left-content-list ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.section-certified-team-form-left-content-list ul li::before {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: -0.125em;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M18.71 7.21a1 1 0 0 0-1.42 0l-7.45 7.46l-3.13-3.14A1 1 0 1 0 5.29 13l3.84 3.84a1 1 0 0 0 1.42 0l8.16-8.16a1 1 0 0 0 0-1.47'/%3E%3C/svg%3E");
}

.section-certified-team-form-left-content-list ul li span {
  color: #FFF;
  font-family: 'Barlow';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 0;
  padding: 0;
}

.section-certified-team-form-right {
  max-width: 499px;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1px solid rgba(230, 237, 242, 0.15);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 10px 0 rgba(255, 255, 255, 0.05) inset;
  padding: 24px;
}


.section-certified-team-form-right label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  color: #FFF;
  font-family: 'Tajawal';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
}

.section-certified-team-form-right .form-control {
  display: block;
  width: 100%;
  height: auto !important;
  padding: 13px !important;
  font-size: 16px !important;
  line-height: 150% !important;
  color: #333 !important;
  border-radius: 5px;
  background: #FFF !important;
  border: 1px solid #6878A9 !important;
  background: rgba(255, 255, 255, 0.20) !important;
}

.section-certified-team-form-right .form-control:focus {
  border: 1px solid #B4B4B3 !important;
  box-shadow: none !important;
  color: #333 !important;
}

.section-certified-team-form-right .row {
  margin-bottom: 24px;
  margin-left: -12px;
  margin-right: -12px;
}

.section-certified-team-form-right .row:last-of-type {
  margin-bottom: 0;
}

.section-certified-team-form-right .row [class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
}

.section-certified-team-form-right .grid {
  margin-bottom: 24px;
}

.section-certified-team-form-right .grid:last-of-type {
  margin-bottom: 0;
}

.section-certified-team-form-right .form-group {
  margin-bottom: 0;
}

.section-certified-team-form-right .btn-secondary-outline {
  justify-content: center;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFE700 0%, #FFCA00 100%);
}

.section-certified-team-form-right .btn-secondary-outline:hover {
  background: linear-gradient(314deg, #FFE700 0%, #FFCA00 100%);
  color: #000;
}

.section-certified-team-form-right-form-note {
  color: #FFCA00;
  font-family: 'Tajawal';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  text-align: center;
  margin: 24px 0 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.section-certified-team-form-right-form-note p {
  padding: 3px 0 0 0;
}

@media (max-width: 768px) {
  .section-certified-team-form {
    padding: 0;
  }

  .section-certified-team-form-container {
    padding: 24px 16px;
    flex-direction: column;
    gap: 24px;
    border-radius: 0px;
  }

  .section-certified-team-form-left {
    flex: none;
    width: 100%;
  }

  .section-certified-team-form-left-content {
    gap: 8px;
  }

  .section-certified-team-form-left-content-title {
    font-size: 24px;
  }

  .section-certified-team-form-left-content-description {
    font-size: 16px;
  }

  .section-certified-team-form-left-content-list ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }

  .section-certified-team-form-right {
    padding: 16px;
  }

  .section-certified-team-form-right .row {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 16px;
  }

  .section-certified-team-form-right .row [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }

  .section-certified-team-form-right .row [class*="col-"]:last-child {
    margin-bottom: 0;
  }

  .section-certified-team-form-right .grid {
    margin-bottom: 16px;
  }

  .section-certified-team-form-right .form-group {
    margin-bottom: 0;
  }

  .section-certified-team-form-right label.c-label {
    margin-bottom: 8px;
    display: block;
  }

  .section-certified-team-form-right .btn-secondary-outline {
    font-size: 16px;
    height: 48px;
  }

}

/* Section Form Contact */

@media (max-width: 768px) {
  .content-wrapper {
    margin: 60px 0 0 0;
  }
}

/* Rotate Effect Styles */
.rotate-effect {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 8px;
  background:#fff;
}

 .rotate-effect::before {
  content: "";
  display: block; 
  background: #FFA60B;
  height: 50%;
  width: 200%;
  position: absolute;
  animation:  new-rotate-effect-animation 6s linear infinite forwards;
  z-index: 0;
  top: 0;
  right: -10px;
  transform: translate(0, 0);
  transform-origin: center center;
} 
/*.rotate-effect::before {
  content: "";
  display: block;
  background: #FFA60B;
  height: 50%;
  width: 120%;
  position: absolute;
  animation:  new-rotate-effect-animation 6s linear infinite forwards;
  z-index: 0;
  top: 50%;
  right: 0px;
  left:-10%;
  transform: translate(0, -50%);
}*/

.rotate-effect::after {
  content: "";
  display: block;
  /* background: rgba(255, 231, 0, 0.1); */
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rotate-effect:hover::after {
  opacity: 1;
}

.rotate-effect .btn-hero-cta,
.rotate-effect .btn-secondary-outline {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .rotate-effect {
    width: 100%;
    display: flex;
  }
}

@keyframes rotate-effect-animation {
  from {
    transform: translate(50%, 50%) rotate(0deg);
  }

  to {
    transform: translate(50%, 50%) rotate(360deg);
  }
}

@keyframes new-rotate-effect-animation {
  0%{
     transform: rotate(0deg);
    }
 100%{
     transform: rotate(360deg);
    }
 }