@font-face {
    font-family: 'Calibri';
    src: url('fonts/Calibri-BoldItalic.eot');
    src: url('fonts/Calibri-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Calibri-BoldItalic.woff2') format('woff2'),
        url('fonts/Calibri-BoldItalic.woff') format('woff'),
        url('fonts/Calibri-BoldItalic.svg#Calibri-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('fonts/Calibri-Italic.eot');
    src: url('fonts/Calibri-Italic.eot?#iefix') format('embedded-opentype'),
        url('fonts/Calibri-Italic.woff2') format('woff2'),
        url('fonts/Calibri-Italic.woff') format('woff'),
        url('fonts/Calibri-Italic.svg#Calibri-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('fonts/Calibri-Bold.eot');
    src: url('fonts/Calibri-Bold.eot?#iefix') format('embedded-opentype'),
        /*url('fonts/Calibri-Bold.woff2') format('woff2'),*/
        /*url('fonts/Calibri-Bold.woff') format('woff'),*/
        url('fonts/Calibri-Bold.svg#Calibri-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('fonts/Calibri.eot');
    src: url('fonts/Calibri.eot?#iefix') format('embedded-opentype'),
        /* url('fonts/Calibri.woff2') format('woff2'),*/
        /*url('fonts/Calibri.woff') format('woff'),*/
        url('Calibri.svg#Calibri') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body {
  font-family: 'Calibri', sans-serif;
}

.slick-prev.slick-arrow.slick-disabled {
      display: none !important;
    }
    .slick-next.slick-arrow.slick-disabled {
      display: none !important;
    }
/* ================= HEADER ================= */
.site-header {
  background-color: #0b2a5b;
  height: 64px;
  display: flex;
  align-items: center;
  z-index: 1030;
}

.header-inner {
  height: 64px;
}

.header-logo img {
  display: block;
}

/* Right side */
.header-actions {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
}
span.phone_icon {
    width: 24px;
    height: 25px;
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    margin-right: 8px;
}

.header-phone,
.header-login {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  display: flex;
    align-items: center;
}

.header-login img{
    margin-right: 8px;
}
.header-phone:hover,
.header-login:hover {
  opacity: 0.8;
}

.divider {
  width: 2px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 14px;
}

.znav-container.header_b2b ul li a i.fa.fa-lock{
  width: 14px;
  height: 18px;
  display: inline-block;
  background: url(../images/login.svg) 0 0 no-repeat;
}
.znav-container.header_b2b ul li a {
    display: flex;
    align-items: center;
    font-weight: normal;
    gap: 7px;
}
#znav-container .container ul li a img{
  margin-top: 0;
}
/* ================= HERO ================= */

/* ================= HERO SECTION ================= */
.hero-section {
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  /* padding: 80px 0 60px; */
  overflow: hidden;
  padding: 75px 0 10px;
}

.hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  color:#143066;
}


.hero-subtitle {
  font-size: 25px;
  font-weight: 400;
  color: #5A6B7B;
  margin-bottom: 10px;
}

.hero-rating {
  font-size: 14px;
  font-weight:400;
  margin-bottom: 12px;
  color: #6C7A89;
}
.hero-rating img {
  width: 20px;
  margin-right: 7px;
}
.hero-section h4 {
    font-size: 18px;
    color: #5A6B7B;
}
h5.hero-sub-text{
    font-size: 17px;
    color: #5A6B7B;
    margin-bottom: 20px;
}
.hero-section ul {
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}
.hero-section ul li {
    font-size: 15px;
    color: #5A6B7B;
}

.hero-cta {
  background-color: #ff6b2c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 19px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 107, 44, 0.35);
  color: #fff;
  background-color: #ff6b2c;
}


/* RIGHT SIDE VISUALS */
.hero-visual {
  margin-top: 40px;
}

.hero-main {
  /* max-width: 420px; */
}

/* Floating elements */
.hero-badge {
  position: absolute;
  width: 120px;
  animation: float 4s ease-in-out infinite;
}

.badge-left {
  top: 20px;
  left: 0;
}

.badge-right {
  top: 60px;
  right: 0;
}

.hero-graph {
  position: absolute;
  bottom: 8%;
  left: -30px;
  width: 220px;
  animation: float 5s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* info section */
/* ================= INFO CARDS ================= */
.info-cards-section {
  padding: 50px 0 60px 0;
  background-color: #ffffff;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
}

.info-icon img {
  width: 70px;
  margin-bottom: 18px;
}
.info-card .d-flex {
    gap: 15px;
}
.info-title {
  font-size: 24px;
  font-weight: 700;
  color: #143066;
  margin-bottom:5px;
}
.info-card h4{
    color: #6C7A89;
    font-size: 18px;
}
.info-list {
	list-style: none;
	padding: 0;
	margin: 0 0 0px;
	min-height: 150px;
}

.info-list li {
  font-size: 18px;
  color: #3b4a6b;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.info-list li strong{
    color: #478DCD;
}
.info-list li::before {
    content: "";
    position: absolute;
    left: 0;
    background: url(../images/blue_tick.svg) 0 0 no-repeat;
    width: 19px;
    height: 14px;
    line-height: 1;
    top: 6px;
}
.info-cta {
  margin-top: auto;
  background-color:#478DCD;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  padding: 8px 15px;
  border-radius: 8px;
  text-decoration: none;
  align-self: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-cta:hover {
  transform: translateY(-2px);
  background-color:#478DCD;
  box-shadow: 0 10px 24px rgba(11, 94, 215, 0.3);
  color: #ffffff;
}

.info-card .col-md-6:nth-child(2) {
    position: relative;
}
.info-card .col-md-6:nth-child(2):before {
    content: '';
    position: absolute;
    left: -10px;
    height: 100%;
    width: 1px;
    background: #E0E6E9;
    top: 0;
}


/* ================= TESTIMONIALS ================= */
.testimonials-section {
  padding:42px 0 48px;
  background-color: #FDF9FA;
}

.testimonials-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 23px;
  color: #0b1c3f;
}

.testimonial-slider {
  margin: 0 -12px;
}

.testimonial-slide {
  padding: 0 12px;
}

.testimonial-slide img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  display: block;
  height: 270px;
}
.testimonials-section .slide_inner {
    padding: 5px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.16);
    border-radius: 8px;
    background: #fff;
    margin-bottom: 6px;
}
.testimonials-section .slide_inner p {
    text-align: center;
    font-style: italic;
    font-size: 14px;
    margin:15px 0 12px;
    padding: 0 15px;
    min-height: 105px;
} 
/* Remove slick arrows if design doesn't have them */
.testimonials-section .slick-arrow {
  display: none !important;
}

/* Dots (keep subtle or remove if not in design) */
.testimonials-section .slick-dots {
  bottom: -40px;
}
.testimonials-section .slick-dots li.slick-active button:before {
    opacity: .75;
    color: #0CC0D1;
}

.testimonials-section .slick-dots li button:before {
  font-size: 35px;
  color: #0b1c3f;
  opacity: .60;
  width: 100%;
  height: 100%;
}

.testimonials-section .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 0px;
    padding: 0;
    cursor: pointer;
}
.testimonials-section .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 1px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

/* ================= AI POWERED EVALUATION ================= */
.ai-powered-evaluation {
  padding: 50px 0;
  background-image: url("../images/ai_section_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

/* Small top label */
.ai-eyebrow {
  display: inline-block;
  font-size: 28px;
  font-weight: 400;
  color: #28DDF3;
  margin-bottom: 12px;
}

/* Main heading */
.ai-heading {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.35;
  margin:0 0 28px;
}

/* Feature list */
.ai-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 19px;
  line-height: 1.3;
  color: #e6ecff;
  text-transform: capitalize;
}
.ai-feature-list li:last-child{
    margin-bottom: 0;
}
/* Tick icon via pseudo element */
.ai-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("../images/green_tick.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.ai-powered-evaluation .info-cta {
    margin-top: auto;
    background-color: #28DDF3;
    color: #0e0e2c;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    align-self: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* trust section */
/* ================= TRUST / GLOBE SECTION ================= */
.trust-section {
  padding: 90px 0;
  background-image: url("../images/trust_bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}
.trust-heading {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #fff;
    text-align: left;
}
.trust-subtext {
    font-size: 30px;
    color: #cfd6ff;
    text-align: left;
}
.trust_globe {
    max-width: 240px;
    box-shadow: 0px 10px 50px rgba(255,255,255,0.5);
    border-radius: 50%;
    /* border: 0px solid #071233; */
}

.trust_support {
  max-width: 260px;
}

/* Header */
#notificationDiv {
    display: none;
}
.notificationDropDown {
    position: absolute;
    right: 10px;
    background: #fff;
    box-shadow: 0 0 5px #999;
    z-index: 3;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    top: 47px;
    display: none;
}
.arrow-top-notification {
    background: url(../img/noti-arrow.png) no-repeat rgba(0,0,0,0);
    height: 11px;
    top: -11px;
    width: 20px;
}
.arrow-top-notification, .arrow-top-profile {
    position: absolute;
    right: 17px;
    z-index: 999999;
}
.notificationDropDown h2 {
    float: left;
    padding: 10px 22px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: calibri,calibriregular;
    margin: 0;
    width: 100%;
    color: #444;
}
.notificationDropDown ul.InviteDiv_Container {
    width: 350px;
    height: auto;
    max-height: 250px;
    overflow-y: auto;
}
#mblapppopup {
    display: none;
}
#notficationData {
	display: none;
}
.znav-container.header_b2b a.header-phone, 
.znav-container.header_b2b a.header-login{
  color: #fff;
}
div#znav-container .navbar {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 11px 0;
    margin: 0;
    height: auto;
    min-height: fit-content;
}
div#znav-container .collapse.navbar-collapse {
    /* display: flex; */
    width: auto;
    white-space: normal;
    flex-basis: content;
    flex-grow: unset;
    font-family: 'Calibri';
}
.znav-container.header_b2b ul li:first-child{
  /* border-right: 2px solid #fff; */
}
.znav-container.header_b2b ul li span.spanclassnav a {
    position: static !important;
    padding: 0px 10px;
}
.znav-container.header_b2b .container ul li a{
  padding: 0 10px;
}
.navbar-collapse:before,
.navbar-collapse:after,
.container:before,
.container:after,
 .navbar:before,
  .navbar:after{
    display: none !important;
  }
div#znav-container .navbar a.navbar-brand {
    height: auto;
    padding: 0;
}
.znav-container.header_b2b ul li.notifi a {
    border: none !important;
}
.znav-container.header_b2b ul li.notifi{
  display: none;
}
.navbar-nav .dropdown-menu {
    right: 0;
}
div#znav-container.znav-container{
  border:none;
}
/* Header */

/* pricing slider css */
section.product-section{}
section.product-section .selfComparativeTabs.categoryTabs{}
section.product-section .selfComparativeTabs.categoryTabs ul{
  list-style: none;
}
section.product-section .selfComparativeTabs.categoryTabs ul li a{
  text-decoration: none;
}
section.product-section .pte_inner p,
section.product-section .pte_inner .my_btn{ 
  text-align: center;
}

#view_all_packs .row{
  width: 100%;
}
section.product-section .slick-next:before,
section.product-section .slick-prev:before{
  display: none;
}
section.product-section div#view_all_packs {
    padding: 20px 0 30px;
}
section.product-section h2 {
    font-size: 35px;
    font-weight: 700;
    margin: 30px 0 -15px 0;
    color: #333;
    text-align: center;
}
section.product-section div#view_all_packs h2.subsdiv_head_title {
    display: none;
}

/* footer */

.site-footer{
    background-color:#F6F6F6 ;
    padding:15px 0;
    text-align: center;
}

.site-footer p{
    font-size: 14px;
    color: #333333;
    margin: 0;
}

section.product-section .pricingContainer .each_text_wrapper {
    display: none;
}
.pte_inner .front{
  text-align: center;
}

/* popup css */
  /* Modal Overlay */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 50;
      display: none;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.2s ease-out;
    }

    .modal-overlay.active {
      display: flex;
    }

    /* Modal Content */
    .modal-content {
      background: white;
      border-radius: 12px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
      max-width: 448px;
      width: 100%;
      padding: 32px;
      position: relative;
      animation: scaleIn 0.2s ease-out;
    }

    /* Close Button */
    .modal-close {
      position: absolute;
      right: 16px;
      top: 16px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 4px;
      border-radius: 4px;
      opacity: 0.7;
      transition: opacity 0.2s;
    }

    .modal-close:hover {
      opacity: 1;
    }

    .modal-close svg {
      width: 16px;
      height: 16px;
    }

    /* Gift Icon */
    .gift-icon-wrapper {
      display: flex;
      justify-content: center;
      margin-bottom: 24px;
    }

    .gift-icon-bg {
      background-color: rgb(37 211 102 / 10%);
      padding: 16px;
      border-radius: 9999px;
      display: inline-flex;
    }

    .gift-icon {
      width: 48px;
      height: 48px;
      color: #25D366;
    }

    /* Title and Description */
    .modal-title {
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 12px;
      color: #1a1a1a;
    }

    .modal-description {
      text-align: center;
      font-size: 16px;
      line-height: 1.5;
      color: #666;
      margin-bottom: 24px;
    }

    /* Benefits List */
    .benefits-list {
      background-color: #f0faff;
      border-radius: 8px;
      padding: 16px;
      margin-bottom: 16px;
    }

    .benefit-item {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .benefit-item:last-child {
      margin-bottom: 0;
    }

    .benefit-emoji {
      font-size: 24px;
      line-height: 1;
    }

    .benefit-text {
      font-weight: 600;
      color: #1a1a1a;
      font-size: 14px;
    }

    /* Buttons */
    div#exitModal .btn {
      width: 100%;
      padding: 12px 24px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
      display: block;
      text-align: center;
    }
div#exitModal .btn-primary {
      /* background: linear-gradient(135deg, #25D366 0%, #25D366 100%); */
       background-color: #25D366;
      color: white;
      margin-bottom: 12px;
      border: navajowhite;
      line-height: 38px;
      border-radius: 6px;
      transition: 0.3s;
    }
div#exitModal .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px -5px rgb(37 211 102 / 10%);
    }

    /* .btn-secondary {
      background: transparent;
      color: #666;
    }

    .btn-secondary:hover {
      background-color: #f9fafb;
    } */

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes scaleIn {
      from {
        transform: scale(0.95);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Demo Button */
    .demo-trigger {
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 12px 24px;
      background: #8b5cf6;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    }

    .demo-trigger:hover {
      background: #7c3aed;
    }

    section.product-section .selfComparativeTabs.categoryTabs ul li:last-child{
      display: none;
    }

    
.sponser {
      text-align: center;
      top: -33px !important;
    }
    

/* popup css */

/* hero section form */ 
.hero_b_section {
    background: url(../images/b_design_bg.webp) 0 0 no-repeat;
    background-size: cover;
    padding-bottom: 50px;
}
.right_form_div {
    width: 100%;
    max-width: 430px;
    margin: 0 0 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.16);
}
.right_form_div h4{
  font-size: 22px;
  font-weight: bold;
  color: #478DCD;
}
.right_form_div .error {
  color: #fa0000;
  width: 100% !important;
  text-align: left !important;
  font-size: 12px;
  margin-bottom: 10px;
}
.right_form_div ul.social-login {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.right_form_div ul.social-login li {
    margin: 0 8px;
    list-style: none;
}
.right_form_div ul.social-login li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #529FEC;
    padding: 0;
    line-height: 35px;
    border-radius: 6px;
    color: #529FEC;
    width: 115px;
    font-size: 14px !important;
    font-weight: 600;
    /* box-sizing: border-box; */
}
.right_form_div ul.social-login li a img {
    margin-right: 8px;
}
.right_form_div ul.social-login li:nth-child(2) a {
    border-color: #4267B2;
    color: #4267B2;
}
.right_form_div .or {
    border-top: 1px solid #D3D3D3;
    height: 1px;
    margin: 20px auto 10px;
    width: 98%;
    position: relative;
}
.right_form_div .or span {
    width: 70px;
    height: 20px;
    background: #fff;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: 600;
    color: #707070;
}
.right_form_div .f-input {
    margin-top: 12px;
    position: relative;
    display: inline-block;
    width: 100%;
}
.right_form_div .f-input input {
    line-height: 35px;
    font-size: 14px;
    color: #222;
    border: 1px solid #DEDEDE;
    border-radius: 6px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
}
.right_form_div .f-input.errorBorder {
    border: 1px solid #f70606;
    clear: both;
    border-radius: 5px;
}
.right_form_div .f-input.errorBorder {
    border: none;
}
.right_form_div .phonecont {
    width: 100%;
    /* float: left; */
    margin: 12px 0px 0;
    display: flex;
    align-items: flex-start;
}
.right_form_div  select#country_code {
    height: 37px;
    font-size: 14px;
    color: #222;
    border: none;
    border-radius: 6px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    transition: 0.3s;
    background-color: #fff;
}
.right_form_div .phonecont select#country_code {
    width: 110px;
    margin-right: 10px;
    padding: 7px;
    border: 1px solid #ddd;
}
.right_form_div .f-input .login-btn {
    background-color: #478DCD;
    color: #fff;
    line-height: 40px;
    padding: 0;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    margin-top: 0;
    letter-spacing: 0;
    font-family: 'Calibri';
}



/* hero section form */



/* pte_part_b_design_css */
body.part_b_design .znav-container.header_b2b ul li+li{
  display: none;
}

.part_b_design .description_bx {
    float: none !important;
    display: inline-flex;
    justify-content: center;
    flex-flow: row wrap;
    width: 100%;
}

.part_b_design .infom_bx:first-child {
    margin-left: 0px;
}

.part_b_design .infom_bx {
    width: 18%;
    float: left;
    padding: 15px;
    /* border: none !important; 
    margin-top: 22px;*/
    background: #f9f9f9;
    background: #F6F6F6;
    border: 1px solid #E2E2E2;
    border-radius: 15px;
    float: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
}
.part_b_design .infom_bx + .infom_bx {
    margin-left: 15px;
}
.part_b_design .info-icon img{
  margin-bottom: 0;
}
.part_b_design .info-title{
  text-align: center;
  margin-bottom: 15px;
}
.part_b_design .infom_bx span {
    font-size: 25px;
    /* font-family: bebasregular; */
    color: #353535;
    /* width: 16%; */
    display: table-cell;
    font-weight: bold;
    vertical-align: middle;
}

.part_b_design .infom_bx p {
    font-size: 16px;
    font-weight: normal;
    color: #555;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    display: table-cell;
    width: 76%;
    float: none;
}

.part_b_design .description_bx .infom_bx p {
    text-align: left;
}

/* pte pack css — IELTS dual plan cards */

.pte-package-section{
    background:#f5f7fb;
    padding-top: 24px;
    padding-bottom: 40px;
}

.pte-package-section .pte-plans-row{
    align-items: stretch;
}

.pte-package-section .pte-plan-card{
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    padding: 26px 24px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pte-package-section .pte-plan-title{
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.35;
    margin: 0 0 16px;
}

.pte-package-section .pte-plan-pricing{
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-bottom: 16px;
}

.pte-package-section .pte-package-old-price{
    font-size: 18px;
    color: #9a9a9a;
    text-decoration: line-through;
    font-weight: 400;
}

.pte-package-section .pte-package-new-price{
    font-size: 2rem;
    font-weight: 700;
    color: #0b73bb;
    line-height: 1;
}

.pte-package-section .pte-package-subscribe-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #478DCD;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    transition: background 0.25s ease, color 0.25s ease;
}

.pte-package-section .pte-package-subscribe-btn:hover{
    background: #075f9d;
    color: #ffffff;
}

.pte-package-section .pte-package-validity{
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 14px;
    color: #555555;
    text-align: center;
}

/* After pricing + CTA + validity: separator before feature list (see design) */
.pte-package-section .pte-plan-divider{
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 16px 0 18px;
    opacity: 1;
}

.pte-package-section .pte-plan-cta-block{
    width: 100%;
}

.pte-package-section .pte-plan-feature-list{
    margin: 0;
    padding: 0;
    flex: 1;
}

.pte-package-section .pte-plan-feature-row{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.45;
    color: #333333;
    margin-bottom: 12px;
}

.pte-package-section .pte-plan-feature-row:last-of-type{
    margin-bottom: 14px;
}

.pte-package-section .pte-plan-check{
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.pte-package-section .pte-plan-check svg{
    display: block;
    width: 20px;
    height: 20px;
}

.pte-package-section .pte-plan-card:not(.is-expanded) .pte-plan-feature-item--more{
    display: none;
}

.pte-package-section .pte-plan-toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 0;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #2475C7;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pte-package-section .pte-plan-toggle:hover{
    color: #075f9d;
}

/* Collapsed default: caret points down (View More); expanded: points up (View Less) */
.pte-package-section .pte-plan-toggle-caret{
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #2475C7;
    border-bottom: 0;
    flex-shrink: 0;
}

.pte-package-section .pte-plan-card.is-expanded .pte-plan-toggle-caret{
    border-top: 0;
    border-bottom: 6px solid #2475C7;
}

.part_b_design .testimonials-section {
    background-color: #ffffff;
}

/* Tablet */
@media(max-width:991px){
    .pte-package-section .pte-plan-title{
        font-size: 1.1rem;
    }
    .pte-package-section .pte-package-new-price{
        font-size: 1.85rem;
    }
}

/* Mobile */
@media(max-width:767px){

    .pte-package-section{
        padding-left: 15px;
        padding-right: 15px;
    }

    .pte-package-section .pte-plan-card{
        padding: 22px 18px 18px;
    }

    .pte-package-section .pte-plan-title{
        font-size: 1.05rem;
    }

    .pte-package-section .pte-package-old-price{
        font-size: 16px;
    }

    .pte-package-section .pte-package-new-price{
        font-size: 1.75rem;
    }

    .pte-package-section .pte-package-subscribe-btn{
        padding: 12px 16px;
        font-size: 16px;
    }

    .pte-package-section .pte-package-validity{
        font-size: 14px;
    }

    .pte-package-section .pte-plan-feature-row{
        font-size: 14px;
    }

    .part_b_design .description_bx{
      flex-direction: column;
    }
    .part_b_design .infom_bx{
      width: 100%;
    }
    .part_b_design .infom_bx + .infom_bx{
      margin:15px 0 0;
    }
}


/* pte pack css */















/* Mobile adjustments */

@media (max-width: 768px) {
    .hero-content{
      text-align: center;
    }
    .info-card .col-md-6:first-child{
      margin-bottom: 20px;

    }
    .hero-rating{
      display: inherit !important;
      margin-bottom: 12px;
    }
    .my_points {
      margin-bottom: 0px;
    }
    .toggle-div {
      text-align: center;
      font-size: 15px;
    }
    .toggle-list img {
      width: 13px;
    }
    .info-card .col-md-6:nth-child(2)::before{
      display: none;
    }
    .hero-title {
      font-size: 34px;
    }
    .hero-section {
        padding: 55px 0 10px;
    }
    .hero-visual {
      margin-top: 0px;
    }
    .info-card{
      padding: 25px 32px;
    }

    .hero-badge,
    .hero-graph {
      display: none;
    }

    .ai-powered-evaluation {
      padding: 70px 0;
      background-position: center;
    }

    .ai-heading {
      font-size: 26px;
    }
    .trust-section {
      padding: 50px 0;
    }

    .trust-heading {
      font-size: 24px;
      margin-top: 24px;
      text-align: center;
    }
    .trust-subtext {
      font-size:19px;
      text-align: center;
    }
    .trust-globe,
    .trust-support {
      margin-bottom: 20px;
    }
    .trust_globe{
      display: none;
    }

    section.product-section .selfComparativeTabs.categoryTabs ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }
    section.product-section .selfComparativeTabs.categoryTabs ul li {
      display: inline-block;
    }
    section.product-section .selfComparativeTabs.categoryTabs ul li a {
      font-size: 14px;
      padding: 2px 5px;
    }
    section.product-section div#view_all_packs {
      padding: 5px 0 20px;
    }
    .testimonials-section {
      padding: 30px 0 35px;
    }
    section.product-section h2,
    .testimonials-title {
      font-size: 26px;
      margin-bottom: 15px;
    }
    .info-cards-section {
      padding: 25px 0;
      background-color: #ffffff;
    }
    .info-list {
      margin: 0 0 15px;
      min-height: inherit;
    }
    .info-title {
      font-size: 19px;
      font-weight: 700;
      color: #143066;
      margin:0 0 5px;
    }
    .info-card h4 {
        color: #6C7A89;
        font-size: 16px;
  }
    .hero-cta {
      padding: 10px 22px;
      font-size: 17px;
  }
  .hero-title {
      font-size: 32px;
      margin-bottom: 0;
  }
  .hero-subtitle {
    font-size: 20px;
    margin-bottom: 5px;
  }
  div#znav-container .collapse.navbar-collapse{
    display: block !important;
  }
  #znav-container .navbar-toggler{
    display: none;
  }
  .znav-container.header_b2b ul.navbar-nav{
    padding:0 !important;
    flex-direction: row !important;
  }
  .znav-container.header_b2b ul li span.spanclassnav a {
      position: static !important;
      padding: 0px;
      font-size: 0px !important;
  }
  #znav-container .container ul li .spanclassnav a img {
    margin-top: 0;
    width: 24px !important;
}
.znav-container.header_b2b ul.navbar-nav li.notifi{
  display: none;
}
.znav-container.header_b2b ul.navbar-nav > li .btn {
    margin: 0px 0;
}
#znav-container .navbar-brand img {
    width: 124px !important;
}
  div#znav-container.znav-container {
    overflow: unset;
}
.navbar-nav .dropdown-menu {
    right: 0;
}
.znav-container.header_b2b .container ul li a {
    padding:0 0 0 10px !important;
    display: flex !important;
        align-items: center;
        justify-content: center;
}
}

    @media (max-width: 640px) {
      .modal-content {
        margin: 20px;
        padding: 24px;
      }

      .modal-title {
        font-size: 20px;
      }

      .modal-description {
        font-size: 14px;
      }
    }
@media (max-width: 576px) {
  /* .header-phone {
    display: none;
  } */
   .header-actions{
    font-size: 14px;
   }
   .ai-feature-list li {
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 16px;
}
.ai-feature-list li::before {
    top: 6px;
}
  .info-card {
    /* text-align: center; */
  }

  .info-cta {
    /* align-self: center; */
    width: 100%;
  }

  .info-list li {
    /* padding-left: 0; */
    font-size: 15px;
    line-height: 21px;
  }

  .info-list li::before {
    /* display: none; */
  }
}