:root {
  --red: #d92332;
  --navy: #15243b;
  --text: #243248;
  --muted: #667085;
  --line: #dfe5ec;
  --soft: #f6f8fb;
  --green: #087a55;
  --white: #fff;
  --shadow: 0 16px 45px rgba(21, 36, 59, 0.11);

       --ielts-blue: #0f4b87;
      --ielts-blue-dark: #0b335b;
      --ielts-red: #8d0d1b;
      --ielts-ink: #172033;
      --ielts-muted: #5f6b7a;
      --ielts-soft: #f5f8fc;
      --ielts-border: #dbe5f0;
      --ielts-success: #027a48;
      --focus-ring: 0 0 0 3px rgba(15, 75, 135, .25);

}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
   scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: #fff;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
}
.container_stru {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
.header_title_bg{background: #e6e6e6;}
.narrow {
  width: min(850px, calc(100% - 40px));
  margin: auto;
}
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow2 {
  display: inline-block;
  color: #ffd0d6;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  gap: 24px;
}
.brand {
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
  color: var(--navy);
}
.brand span {
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  font-weight: 650;
  font-size: 0.94rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 9px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(217, 35, 50, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: #bd1725;
}
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: #bfc9d6;
}
.btn-secondary:hover {
  border-color: var(--navy);
}
.btn-small {
  padding: 2px 15px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.hero {
  background: linear-gradient(
    135deg,
    #fff 0%,
    #fff 58%,
    #f3f6fa 58%,
    #f8fafc 100%
  );
  padding: 30px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 54px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--navy);
  margin: 0.45rem 0 1.25rem;
}
.hero p.lead {
  font-size: 1.18rem;
  max-width: 760px;
  color: #475467;
}
.cta-row {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin: 28px 0 15px;
}
.micro {
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card h2 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  color: var(--navy);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  font-size: 17px;
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--green);
  font-weight: 900;
}
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 23px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border-right: 0;
}
.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
}
.trust-item span {
  color: var(--muted);
  font-size: 0.88rem;
}
.section {
  padding: clamp(56px, 7vw, 88px) 0;
}
.section-soft {
  background: var(--soft);
}
.section-dark {
  background: #0b335b;
  color: #fff;
}
.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section h2 {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0.35rem 0 1rem;
}
.section-dark h2 {
  color: #fff;
}
.section-head p {
  font-size: 1.05rem;
  color: var(--muted);
}
.section-dark .section-head p {
  color: #cdd6e2;
}
.path-grid,
.feature-grid,
.feedback-grid,
.steps-grid {
  display: grid;
  gap: 22px;
}
.path-grid {
  grid-template-columns: 1fr 1fr;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
}
.card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 1.22rem;
}
.card p {
  margin: 0.3rem 0;
  color: #596579;
}
.path-card {
  border-top: 4px solid var(--red);
}
.path-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}
.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}
.feature-card {
  min-height: 230px;
}
.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff1f2;
  color: var(--red);
  font-weight: 900;
  margin-bottom: 18px;
}
.feedback-grid {
  grid-template-columns: 1fr 1fr;
}
.feedback-card {
  position: relative;
  overflow: hidden;
}
.feedback-card.ai {
  border-top: 5px solid #667eea;
}
.feedback-card.teacher {
  border-top: 5px solid var(--red);
}
.sample-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.sample-links a {
  font-weight: 750;
  color: var(--red);
}
.steps-grid {
  grid-template-columns: repeat(5, 1fr);
  counter-reset: step;
}

 .comparison-wrap { overflow-x: auto; margin-top: 34px; background: #fff; border: 1px solid var(--ielts-border); border-radius: 18px; }
    .comparison-table { width: 100%; border-collapse: collapse; min-width: 760px; }
    .comparison-table th, .comparison-table td { padding: 15px 16px; border-bottom: 1px solid #e5ecf4; text-align: center; }
    .comparison-table th:first-child, .comparison-table td:first-child { text-align: left; font-weight: 750; }
    .comparison-table thead th { background: #edf4fb; color: var(--ielts-blue-dark); }
    .comparison-table tr:last-child td { border-bottom: 0; }
.step {
  position: relative;
  padding: 58px 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.step:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 20px;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}
.step h3 {
  font-size: 1rem;
  color: var(--navy);
  margin: 0 0 7px;
}
.step p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
.format-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid #f2cf75;
  background: #fff8df;
  border-radius: 14px;
}
.format-note strong {
  color: #7a4f00;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.recommended {
  border: 2px solid var(--red);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.plan-badge {
  display: inline-block;
  align-self: flex-start;
  background: #eef2f6;
  color: var(--navy);
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}
.recommended .plan-badge {
  background: #fff0f1;
  color: var(--red);
}
.price-card h3 {
  font-size: 1.80rem;
  color: var(--navy);
  margin: 14px 0 0;
}
.price {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin: 10px 0;
}
.period {
  color: var(--muted);
  font-size: 0.88rem;
}
.price-card ul {
  padding-left: 20px;
  margin: 22px 0;
  flex: 1;
}
.price-card li {
  margin: 8px 0;
  font-size: 0.92rem;
}
.price-card li.redCl{font-weight: 600;
    font-size: 16px;
    color: var(--red);}
    .price-card li.withoutRed{font-weight: 600;
    font-size: 16px;
    }
.price-card .btn {
  width: 100%; cursor: pointer;
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.60rem;
  margin-top: 20px;
}
.chooser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.chooser .card strong {
  color: var(--red);
}
.proof-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.proof-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    padding: 26px;
}

.proof-panel p{ color:rgba(255,255,255,.8);}
.btn-primary2 {
    background: #8d0d1b !important;
    color: #fff;
}
.criteria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.criterion {
     background: rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
}
.faq {
  border-top: 1px solid var(--line);
}
details {
  border: 1px solid var(--ielts-border);
    border-radius: 14px;
    background: #fff;
    margin: 12px 0;
    overflow: hidden;
}
summary {
  cursor: pointer;
    list-style: none;
   padding: 19px 22px;
    font-weight: 800;
    color: var(--navy);
    position: relative;
    font-size: 17px;

}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 17px;
  font-size: 1.5rem;
  color: var(--red);
}
details[open] summary:after {
  content: "–";
}
.answer {
  padding: 0 22px 20px;
    color: var(--ielts-muted);
    line-height: 1.65;
}

.answer p{
  color: #566275; font-size: 17px;
}
.final-cta {
  padding: 72px 0;
  background: linear-gradient(125deg, var(--navy), #253d5f);
  color: #fff;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  margin: 0 auto 14px;
  max-width: 780px;
}
.final-cta p {
  color: #dbe3ed;
  max-width: 720px;
  margin: 0 auto 26px;
}
.footer {
  background: #0e1828;
  color: #c7d0dc;
  padding: 34px 0;
  font-size: 0.86rem;
}
.footer a {
  color: #fff;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.small {
  font-size: 0.84rem;
}
.muted {
  color: var(--muted);
}



@media (max-width: 980px) {
  .hero-grid,
  .proof-panel {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .price-card.recommended {
    transform: none;
  }
}
@media (max-width: 680px) {
  .container_stru,
  .narrow {
    width: min(100% - 26px, 1160px);
  }
  .nav-links a:not(.btn) {
    display: none;
  }
  .hero {
    padding-top: 20px;
  }
  .hero h1 {
    font-size: 2.45rem;
  }
  .path-grid,
  .feedback-grid,
  .feature-grid,
  .pricing-grid,
  .chooser,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
  .footer-grid {
    display: block;
  }
  .cta-row .btn {
    width: 100%;
  }
  .section {
    padding: 58px 0;
  }
}
@media print {
  .site-header,
  .cta-row,
  .final-cta {
    display: none;
  }
  .section {
    padding: 32px 0;
  }
  .price-card.recommended {
    transform: none;
    box-shadow: none;
  }
}


/*Header Css*/
header {
    padding: 5px 0;
    background-color: #fff !important;
    width: 100%;
    z-index: 99999;
    -webkit-transition: all .5s ease;
    -moz-transition: position 10s;
    -ms-transition: position 10s;
    -o-transition: position 10s;
    transition: all .5s ease;
    display: flex !important;
}
.container.main-navbar-head{ width: 1170px; margin: 0 auto;}
/* Footer Css*/
.footerIeltsNew{    width: 1170px; margin: 0 auto; display: flex; justify-content: space-between;}
.footer-link h3{font-size: 24px; font-weight: 500;}
.list-inline{    display: flex; list-style: none; gap: 13px; margin-top: 10px;}
address{ font-style: normal;}
/* Footer Css*/
.navbar-header{ float: left;}
.nav{ list-style: none;}
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
ul#MainMenu li ul li a{ text-decoration: none;}
.navbar-default .navbar-nav > li > a{ text-decoration: none;}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    display: none;
}

.topBarWrap{margin: 0 auto;
    width: 1170px;
    justify-content: center;
    display: flex;
    padding: 10px 0px;
    gap: 16px;
}


/* Model css*/
/* Overlay */
.IELTS_termmodel_overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

/* Show */
.IELTS_termmodel_overlay.IELTS_termmodel_show{
    display:flex;
}

/* Modal */
.IELTS_termmodel_box{
    width:90%;
    max-width:650px;
    background:#fff;
    border-radius:6px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.35);
    animation:IELTS_termmodel_popup .3s ease;
}

/* Header */
.IELTS_termmodel_header{
    background:#123d68;
    color:#fff;
    padding:5px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.IELTS_termmodel_header h2{
    margin:0;
    font-size:26px;
    font-weight:600;
}

/* Close Icon */
.IELTS_termmodel_close{
    font-size:30px;
    cursor:pointer;
    line-height:1;
}

/* Body */
.IELTS_termmodel_body{
    padding:20px;
    max-height:450px;
    overflow-y:auto;
}

.IELTS_termmodel_body h3{
    margin:15px 0 10px;
    font-size:21px;
}

.IELTS_termmodel_body p{
    margin:0 0 15px;
    line-height:1.7;
    color:#333;
}

/* Footer */
.IELTS_termmodel_footer{
    padding:15px 20px;
    text-align:right;
    border-top:1px solid #ddd;
}

#IELTS_termmodel_closeBtn{
    padding:10px 18px;
    border:none;
    background:#e9ecef;
    cursor:pointer;
    border-radius:4px;
}


/* Animation */
@keyframes IELTS_termmodel_popup{

    from{
        transform:translateY(-30px);
        opacity:0;
    }

    to{
        transform:translateY(0);
        opacity:1;
    }

}
/* Model css*/


/* Hide all tab content by default */
.tab-buttons{ display: none;}
.tab-content {
  display: flex;
}

/* Show active tab */
.tab-content.active {
  display: flex;
}





@media (max-width: 768px) {
      .navbar-toggle.ipad-portraitblock{ display: block;     margin-right: 0;}
      #slide-navbar-collapse{ display: none;}
      .footerIeltsNew{flex-direction: column; padding: 20px;}
      .footer-link + .footer-link{ padding-top: 20px;}
      .footer-list li a{ font-size: 16px;}
       address { font-style: normal; font-size: 16px;}
       .topBarWrap{ width: auto;}
       .footerIeltsNew{width: auto;}

       /* Style the tab buttons for mobile view */
  .tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px; gap: 8px; flex-wrap: wrap;
  }
  .tab-content {
  display: none;
}
  .tab-btn {
    padding: 8px 12px;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    font-size: 20px;
    font-weight: 600;
    color: #000;
  }
  .tab-btn.active {
    background-color:var(--red);
    color: white;
    display: block;
  }

 

}