/* Home Advantages Section */
.home-advantages-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}
.home-advantages-section .container-wide {
    max-width: 1476px;
}
.advantages-card {
  background-color: #F69541;
  border-radius: 40px;
  padding: 100px 130px;
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 400px;
}

.bnft-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain; /* Or cover, depending on desired fit */
    opacity: 1; /* Subtle pattern */
    z-index: 1;
    background-size: 676px;
}

.bnft-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Header */
.bnft-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.bnft-header-left {
    
}

.bnft-main-title {
  color: #FFF;
  font-family: Golden;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: 2.5px;
  margin: 0;
}

.bnft-header-right {

    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.bnft-item-title {
  margin-top: 0px;
  margin-bottom: 18px;
  color: #FFF;
  font-family: Outfit;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 2.5px;
}
.bnft-item-desc {
  color: #FFF;
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
}
.bnft-subheading {
  color: #FFF;
  font-family: Outfit;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 1px;
}

/* Main Grid Layout */
.bnft-grid {
    display: flex;
    flex-wrap: wrap; 
    margin: 0 -30px; /* Offset col paddings */
}

/* Column */
.bnft-col {
    position: relative;
    padding: 0 15px; 
    width: 25%; /* 4 cols */
    margin-bottom: 0; /* Single row */
}

/* Icon Area */
.bnft-top {
    height: 61px; 
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.bnft-icon-wrap img {
    height: 60px;
    width: auto;
}

/* Horizontal Line */
.bnft-h-sep {
    height: 1px;
    width: 100%;
    background-color: #FFF;
    margin-bottom: 25px;
    width: 100%;
    margin-left: 0;
}

/* Vertical Line */
.bnft-v-sep {
    position: absolute;
    top: 100px; 
    right: 0;
    width: 1px;
    height: calc(100% - 100px);
    background: #FFF;
}

/* Responsive */
@media screen and (max-width: 1279px) {
  .advantages-card {
    padding: 50px 50px;
    border-radius: 0;
  }
  .home-advantages-section .container-wide {
    padding-left: 0px;
    padding-right: 0px;
  }
  .bnft-header {
    margin-bottom: 25px;
  }
  .bnft-main-title {
    font-size: 38px;
  }
  .bnft-subheading {
    font-size: 16px;
    max-width: 344px;
  }
  .bnft-header {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 25px;
  }
  .bnft-col {
    padding: 0 10px;
  }
  .bnft-h-sep {
    margin-bottom: 20px;
  }
  .bnft-item-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .bnft-item-desc {
    font-size: 16px;
  }
  .home-advantages-section {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 726px) {
.bnft-header {
        display: flex;
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 25px;
        width: 100%;
        text-align: start;
    }
    .bnft-header-left {
        width: 100%;
    }
    .bnft-subheading {
        max-width: 100%;
        text-align: start;
    }
    .advantages-card {
      padding: 42px 24px;
      border-radius: 0;
    }
    .bnft-grid {
      margin: 0 -10px;
    }
    .bnft-top {
        height: 40px;
        margin-bottom: 20px;
    }
    .bnft-icon-wrap img {
      height: 40px;
      width: auto;
    }
    .bnft-top .bnft-icon-wrap {
      display: flex;
    }
    .bnft-col {
        width: 50%;
    }
    .bnft-col:nth-child(2) .bnft-v-sep {
        display: none;
    }
    .bnft-v-sep {
        top: 70px;
        height: calc(100% - 70px);
    }
    .bnft-col:nth-child(1), .bnft-col:nth-child(2) {
        margin-bottom: 30px;
    }
    .bnft-h-sep {
        margin-bottom: 15px;
    }
    .bnft-item-title {
        font-size: 17px;
    }
    .bnft-item-desc {
        font-size: 15px;
        font-weight: 300;
        line-height: normal;
    }
}