
@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.new-packages{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #364153;
}
.np-main-desc{
text-align: center;
font-size: 20px;
line-height: 30px;
color: #364153;
margin-bottom: 25px;
}
.np-main-container{
max-width: 1120px;
padding: 90px 15px;
margin: 0px auto;
    
}
.main-new-package{
width: 100%;
background: #E6EBFA80;
}

/* Desktop only: Add padding-bottom for T&C spacing */
@media (min-width: 769px) {
  .main-new-package {
    padding-bottom: 20px;
  }
}
.new-packages h1{
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #135EFF;
  line-height: 40px;
  margin-bottom: 30px;
}
.np-tab-desc{
font-weight: 400;
font-size: 20px;
color: #000000;
text-align: center;
margin: 10px 0 50px;
}
.np-choose{
font-size: 20px;
font-weight: 600;
color: #000;
margin-bottom: 30px;
}
.np-review-card span {
  display: block;
}
.np-container {
  max-width: 100%;
  margin: 30px auto;
  display: flex;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  }

  /* Tabs */
  .np-tabs {
       display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  max-width: 940px;
  margin: 0 auto;
  }
  .np-tab {
    padding:0;
    background: #fff;
    border: 1px solid #EAEAEA;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
  width: 300px;
  text-align: center;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  position: relative;

  }
  .np-tab.np-active, .np-tab:hover {
    background: #2C7FFF;
    color: #fff;
    border-color: #2C7FFF;
  }
}
.np-tab.np-popular {
  position: relative;
}
.np-tab.np-popular span {
  position: absolute;
  display: block;
  line-height: 1;
  background: #2ABE65;
  color: #fff;
  width: 72px;
  height: 25px;
  line-height: 27px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px 10px 0 0;
  right: 25px;
  top: -26px;
}
  /* Left card */
  .np-left {
    width: calc(100% - 430px);
  }
  .np-left-top {
  background: #fff;
  border-radius: 38px;
  padding: 30px;
  width: 100%;
}

  .np-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  gap: 15px;
  }

  /* Review options */
  .np-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
        gap: 20px 15px;
  margin: 0;
  }
  .np-review-card {
    border: 2px solid #EAEAEA;
    padding: 0 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    display: flex;
  flex-direction: column;
  align-items: self-start;
  justify-content: center;
  height: 140px;
  width: 140px;
      line-height: 1.3;
  }
  .np-review-card.np-selected {
    border-color: #165DFB;
    position: relative;

  }
.np-review-card.np-selected:after{
content:'' ;
    background: url('../images/new-package/np-tick.svg') no-repeat;
    width: 20px;
  height: 20px;
  position: absolute;
  top: 8px;
  right: 8px;

}
.np-rev-price {
  font-size: 24px;
  font-weight: 600;
  color: #165DFB;
}
.np-rev {
  font-size: 16px;
  color: #6F6F80;
  font-weight: 400;
}
  /* Dropdowns */
  .np-select-row {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    justify-content: space-between;
  }
  .np-select-row select {
    flex: 1;
    padding: 10px;
    border: 1px solid #E6E7EB;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    width: 272px;
    appearance: none;           /* remove default arrow */
-webkit-appearance: none;
-moz-appearance: none;
background: #fff url("../images/new-package/dd-arrow.svg") 
            no-repeat right 12px center;
background-size: 16px;
padding: 10px 40px 10px 12px;
cursor: pointer;
height: 50px;
  }

  /* Order Summary */
  .np-summary {
  border: 1px solid #E6E7EB;
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 12px;
  }
  .np-summary-row {
    display: flex;
    justify-content: space-between;
    margin: 6px 0;
    font-size: 14px;
  }
  .np-summary-total {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    display: flex;
  align-items: center;
  justify-content: space-between;
      padding-bottom: 10px;
  border-bottom: 1px solid #E2E2E8;
  }
#np-more-summary {
  padding-top: 10px;
}
  #np-total {
  color: #165DFB;
  font-size: 30px;
}
  .np-toggle-summary {
    color: #2563eb;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
  }
  .np-hidden {
    display: none;
  }

  /* Buy Button */
  .np-buy-btn {
    background: #165DFB;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    margin-top: 25px;
  }

  /* Right Section */
  .np-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
        width: 400px;
  }
  
#np-country-summary {
display: inline-flex;
align-items: center;
gap: 6px;
font-weight: 600;
}
.np-summary-row {
display: flex;
justify-content: space-between;
margin: 6px 0;
font-size: 14px;
}
.np-summary-row span:first-child {
font-weight: 500;
}

.np-select-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
#np-reviews{
color: #000;
}
#np-reviews > span, #np-reviews-custom > span{
  font-size: 14px;
  font-weight: 600;
}
#np-reviews > span span, #np-reviews-custom > span span{
font-weight: 400;
font-size: 14px;
}
#np-reviews > span:last-child, #np-reviews-custom > span:last-child{
font-weight: 600;
font-size: 20px;
}
.np-added-label {
  font-size: 10px;
  font-weight: 600 !important;
  color: #165DFB;
}
.np-gender-label, .np-country-label {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.np-gender-extra {
  font-size: 14px;
  color: #6F6F80;
  font-weight: 600;
}
.np-price {
  font-weight: 600 !important;
  font-size: 20px;
  color: #000;
}
.np-arrow.np-up svg {
  transform: rotate(180deg);
}
.np-info-section {
text-align: center;
margin: 30px 0 0;
}

.np-info-heading {
font-size: 16px;
font-weight: 600;
color: #6F6F80;
margin-bottom: 8px;
}

.np-info-list {
font-size: 14px;
color: #6F6F80;
font-weight: 500;
display: flex;
justify-content: space-between;
align-items: center;
gap: 12px;
}

.np-info-list .np-dot {
color: #6F6F80;
font-weight: bold;
font-size: 16px;
}
.np-left-bottom {
  background: #FFFFF8;
  border: 1px solid #F6F6C2;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
}
.np-left-bottom h3{
font-size: 24px;
  font-weight: 700;
  color: #7B592D;
  margin-bottom: 3px;
}
.np-left-bottom p{
text-align: left;
  font-size: 16px;
  font-weight: 400;
  color: #7B592D;
  margin-bottom: 0;
}

.np-right-section {
display: flex;
flex-direction: column;
gap: 16px;
font-family: Arial, sans-serif;
}

.np-card {
    background: #FCFCFF;
  border: 1px solid #EAEAFF;
  border-radius: 20px;
  padding: 25px;
}

.np-card-title {
font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000;
}

.np-feature {
display: flex;
align-items: flex-start;
gap: 20px;
margin-bottom: 30px;
}
.np-feature:last-child{
margin-bottom: 0;
}
.np-feature-title {
font-size: 20px;
font-weight: 600;
margin: 0;
color: #000000;
}

.np-feature-text {
font-size: 16px;
color: #6F6F80;
margin: 2px 0 0;
}

.np-card-desc {
font-size: 13px;
color: #444;
margin-bottom: 10px;
}

.np-bulk-list {
list-style: none;
margin: 0;
padding: 0 0 0 30px;
font-size: 13px;
color: #444;
}
.np-bulk-list li{
display: flex;
align-items: center;
font-size: 16px;
color: #364153;
gap: 10px;
margin-bottom: 10px;
}
.np-bulk-list li:before{
content: '';
background: url('../images/new-package/np-list.svg');
width: 13px;
height: 11px;
display: block;
background-size: 100%;
}

.np-email {
font-size: 16px;
  margin: 25px 0;
  color: #165DFB;
  font-weight: 600;
padding-left: 30px;
}
.np-email a{
color: #165DFB;  
}
.np-card-sec button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
    padding: 15px;
border-radius: 12px;
width: 100%;
}

.np-btn-primary {
background: #2D5AF0;
color: #fff;
border: none;
cursor: pointer;
margin-bottom: 15px;
}

.np-btn-outline {
border: 1px solid #EAEAEA;
background: #fff;

cursor: pointer;

color: #000;
}

.np-response-text {
   font-size: 14px;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  color: #165DFB;
}

.np-rating-card {
background: #f0fdf4;
border-color: #bbf7d0;
text-align: center;
}

.np-stars {
font-size: 18px;
margin-bottom: 4px;
}

.np-rating-score {
    font-size: 24px;
  font-weight: 600;
  color: #000;
  margin: 10px 0 0;
}
.np-rating-sub span {
  display: block;
}
.np-rat {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}
.np-card.np-rating-card {
  background: #F6FFFA;
}
.np-from {
  font-size: 16px;
  color: #6F6F80;
  padding-top: 5px;
}
.np-rating-sub {
font-size: 13px;
color: #444;
margin: 4px 0 10px;
}
.np-rating-stats {
  margin-top: 30px;
}
.np-rating-stats p {
font-size: 20px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #000;
}
.np-rating-stats p strong{
color: #6F6F80;
font-weight: 400;  
}

.np-card.np-card-sec {
  background: #fff;
  border: 1px solid #D7EBFF;
}
.np-card-sec .np-card-title{
font-size: 24px;
color: #165DFB;
margin-bottom: 5px;
}
.np-card-sec .np-card-desc{
font-size: 16px;
font-weight: 400;
margin-bottom: 25px;
}
.npm-pricing {
display: flex;
gap: 24px;
justify-content: center;
flex-wrap: wrap;
margin-top: 60px;
}

.npm-card {
background: #fff;
border-radius: 38px;
padding: 40px 20px;
max-width: 352px;
flex: 1;
text-align: center;
}

.npm-card-header {
font-size: 18px;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
}
.npm-title {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  line-height: 1;
}

.npm-subtitle {
font-size: 14px;
color: #000;
margin: 6px 0 12px;
}

.npm-old-price-main {
font-size: 14px;
color: #C5BDBD;
margin-bottom: 0;

}
.npm-old-price{
text-decoration: line-through;
}


.npm-price {
font-size: 32px;
font-weight: 700;
margin: 10px 0;
color: #000000;
}

.npm-selects {
display: flex;
gap: 10px;
margin: 0px 0 20px;
}
.npm-selects select {
    flex: 1;
  border: 1px solid #E6E7EB;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(../images/new-package/dd-arrow.svg) no-repeat right 12px center;
  background-size: 12px;
  padding: 10px 25px 10px 12px;

}

.npm-btn, .npm-btn.npm-secondary {
background: #165dfb;
color: #fff;
border: none;
padding: 10px;
width: 100%;
border-radius: 10px;
font-weight: 600;
cursor: pointer;
margin-top: 10px;
font-size: 20px;
}


.npm-features {
list-style: none;
padding: 25px 15px 0;
margin-top: 15px;
text-align: left;
font-size: 16px;
color: #364153;
margin-bottom: 0;
}
.npm-features li {
    margin: 6px 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 8px;

}
.npm-features li:last-child{
margin-bottom: 0;
}
.npm-features li:before{
  content: '';
  background: url(../images/new-package/green-tick.svg);
  width: 16px;
  height: 12px;
  display: block;
  background-size: 100%;
      flex-shrink: 0;
      position: relative;
  top: 6px;
}
.npm-card.npm-premium {
position: relative;
}
.npm-badge {
height: 25px;
position: absolute;
top: 0px;
right: 0px;
left: 0;
margin: 0 auto;
background: #2ABE65;
color: #fff;
padding: 0;
font-size: 12px;
font-weight: 700;
border-radius: 0 0 10px 10px;
line-height: 25px;
width: 94px;
text-align: center;
}

.npm-talk {
font-size: 32px;
font-weight: 700;
margin: 50px 0 30px;
}
.npm-email {
font-size: 16px;
font-weight: 600;
color: #000000;
margin-bottom: 10px;
}
.npm-email span{
display: block;
}
.npm-email a {
color: #165DFB;
text-decoration: none;
font-weight: 600;
}
.mp-main-sec.month-active .np-right-section {
  display: none;
}
.mp-main-sec.month-active .np-left {
  width: 100%;
}
.mp-main-sec.month-active .np-container{
display: block;
}
.mp-main-sec.month-active .np-left-top{
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.mp-main-sec.month-active .np-left-bottom{
display: none;
}
.npm-custom {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  text-align: left;
  margin: 20px 0 0;
}


.npm-dropdowns {
display: flex;
gap: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.npm-dropdown {
position: relative;
display: inline-block;
width: 49%;
margin-bottom: 15px;
}


.npm-dropdown-btn {
   width: 100%;   
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #E6E7EB;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(../images/new-package/dd-arrow.svg) no-repeat right 12px center;
  background-size: 16px;
  padding: 10px 40px 10px 12px;
  cursor: pointer;
  height: 50px;
}
.custom-dd .npm-dropdown-btn {
  font-size: 12px;
  padding: 10px 5px 10px 12px;
}
.npm-arrow {
margin-left: 8px;
font-size: 12px;
display: none;
}

.npm-dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: #fff;
border: 1px solid #ddd;
border-radius: 6px;
margin-top: 4px;
padding: 10px;
z-index: 1000;
}
.npm-dropdown-menu.open {
display: block;
}

.npm-dropdown-menu label {
display: flex;
align-items: center;
gap: 6px;
padding: 6px 0;
font-size: 14px;
color: #444;
cursor: pointer;
}
.custom-dd .npm-dropdown-menu label{
font-size: 10px;
}
.npm-dropdown-menu input {
accent-color: #165dfb;
width: auto;
}
.custom-dd .npm-dropdown{
margin-bottom: 0;
}
.custom-dd .np-select-row{
margin: 5px 0;
}
/* Utility: hide testimonials until revealed */
.testimonial-card.hidden { display: none; }
.read-more-btn.hidden { display: none; }



@media(max-width: 1170px) {
.np-reviews-grid{
      grid-template-columns: repeat(3, 1fr);
}
.np-select-row select{
  width: 100%;
}
.np-info-list{
  font-size: 13px;
}
.npm-title{
  font-size: 24px;
}
.np-main-container{
  margin: 70px auto;  
}
.np-select-title{
  font-size: 18px;
}
.np-title{
  font-size: 30px;
}
}
@media(max-width: 1024px) {
.custom-dd .npm-dropdown{
  width: 100%;
}
.custom-dd .npm-dropdowns{
  gap: 10px 0;
}
}
@media(max-width: 991px) {
.np-left {
  width: 100%;
}
.np-container{
  flex-wrap: wrap;
}
.np-right-section{
  width: 100%;
}
.np-reviews-grid {
      grid-template-columns: repeat(4, 1fr);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  }
  .npm-title {
      font-size: 20px;
  }
  .npm-selects{
      flex-wrap: wrap;
      flex-direction: column;
  }
  .npm-features{
    padding: 15px 0px 0;
  }
  .np-main-desc br{
    display: none;
  }
  .npm-features li{
    font-size: 14px;
  }
}

  @media(max-width: 900px) {
    .np-container {
      grid-template-columns: 1fr;
    }
    .np-reviews-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
@media(max-width: 767px) {
  .np-main-container {
      margin: 40px auto;
  }
  .new-packages h1{
    font-size: 30px;
  }
  .new-packages h1{
    margin-bottom: 25px;
  }
  .np-main-desc{
    font-size: 18px;
    line-height: 26px;
  }
  .np-tab{
    width: auto;
    padding: 0 15px;
  }
  .np-select-row{
    margin: 30px 0;
  }
      .npm-card {
      width: 100%;
      flex: none;
  }
}
@media(max-width: 599px) {
.np-main-desc{
  margin-bottom: 50px;
}
.np-tabs{
  max-width: 599px;
  margin: 0 auto;
  display: flex;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
  gap: 16px;
  padding: 16px 0;
  flex-wrap: revert;
  padding-top: 0;
  padding-bottom: 0;
  justify-content: flex-start;
}
.np-tab{
  flex: 0 0 60%;
  scroll-snap-align: start;
}
.np-review-card{
  width: 120px;
  height: 120px;
}
.np-info-list {
      display: inline-block;
  }
.np-info-list span {
  padding-left: 5px;
}
.np-buy-btn{
padding: 10px;
font-size: 20px;
}
.np-title{
font-size: 26px;
}
.np-tab-desc{
font-size: 16px;
margin-bottom: 30px;
}
.npm-card{
width: 100%;
flex: none;
}
.np-select-title{
font-size: 16px;
}
.np-choose{font-size: 16px;margin-bottom: 20px;}
}

@media(max-width: 479px) {
.np-tab{
  font-size: 12px;
}
.np-reviews-grid{
  gap: 10px 0;
  justify-content: space-between;
}
.np-review-card {
  width: 32%;
  height: auto;
}
.np-left-top{
padding: 15px;
}
.np-review-card{
font-size: 20px;
padding: 15px;
}
.np-rev{
font-size: 14px;
}
.np-rev-price{
font-size: 20px;
}
.np-select-row{
display: block;
}
.np-select-row > div{
width: 100%;
margin-bottom: 20px;
}
.np-select-title{
margin-bottom: 10px;
}
.npm-dropdown{
width: 100%;
}
.np-gender-extra{
font-size: 10px;
display: block;
}
}

@media(max-width: 413px) {
    .np-title {
      font-size: 24px;
      gap: 10px;
  }
  .np-title img{
    max-width: 22px;
    position: relative;
    top: -1px;
  }
  .np-review-card {
      font-size: 18px;
      padding: 10px;
  }
  .np-rev-price{
    font-size: 16px;
  }
  .np-gender-label, .np-country-label{
    font-size: 11px;
  }
  #np-reviews > span:last-child, #np-reviews-custom > span:last-child{font-size: 16px;}
  .np-price{font-size: 16px;}
  #np-total{font-size: 26px;}
  .np-bulk-list{
    padding: 0;
  }
  .np-email{padding-left: 0}
  .np-feature-title{font-size: 16px;}
}