/* Start custom CSS for shortcode, class: .elementor-element-47256a5 */.hero-form-wrap {
  margin-top: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 24px;
  max-width: 460px;
}

.hero-form-title {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}

.hero-form-wrap .ff-el-form-control,
.hero-form-wrap select,
.hero-form-wrap textarea {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #fff !important;
  border-radius: 8px !important;
}

.hero-form-wrap .ff-el-form-control::placeholder {
  color: rgba(255,255,255,0.5) !important;
}

.hero-form-wrap label {
  color: rgba(255,255,255,0.85) !important;
}

.hero-form-wrap .ff-btn {
  background: #f7941d !important; /* match your orange accent */
  border: none !important;
  font-weight: 700 !important;
}/* End custom CSS */
/* Start custom CSS *//* ==========================================================================
   NOIELTS GLOBAL FONTS & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0d1b3e;
  --blue: #1a56db;
  --blue-light: #e8f0fe;
  --blue-mid: #3b82f6;
  --accent: #f59e0b;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #1a1a2e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* ==========================================================================
   UTILITY & STRUCTURAL LAYOUT
   ========================================================================== */
.noielts-block {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
}
.noielts-block *, .noielts-block *::before, .noielts-block *::after { 
  box-sizing: border-box; 
}
.noielts-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.noielts-section { padding: 80px 0; }
.noielts-section-alt { background: var(--gray-50); }
.noielts-section-dark { background: var(--navy); color: var(--white); }

/* Typography */
.noielts-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 12px;
}
.noielts-title.white { color: var(--white); }
.noielts-sub {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 580px;
  margin-bottom: 48px;
}
.noielts-sub.white { color: rgba(255,255,255,0.75); }
.noielts-center { text-align: center; }
.noielts-center .noielts-sub { margin-left: auto; margin-right: auto; }

/* Components */
.noielts-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.noielts-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.noielts-btn-primary { background: var(--blue); color: var(--white); }
.noielts-btn-primary:hover { background: #1348b8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,0.3); }
.noielts-btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.noielts-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.noielts-btn-accent { background: var(--accent); color: var(--navy); }
.noielts-btn-accent:hover { background: #d97706; transform: translateY(-2px); }

/* Grid Engines */
.noielts-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.noielts-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.noielts-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

/* ==========================================================================
   BLOCK 1: STICKY HEADER & FLOATING WA
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1180px; margin: 0 auto; }
.logo { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--navy); text-decoration: none; }
.logo span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-600); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.wa-btn { display: flex; align-items: center; gap: 6px; padding: 10px 18px; background: #25D366; color: white; border-radius: var(--radius); font-size: 14px; font-weight: 600; text-decoration: none; }

.wa-float { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; z-index: 9999; transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }
.wa-float-tooltip { position: fixed; bottom: 98px; right: 28px; background: var(--navy); color: white; font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: 8px; white-space: nowrap; z-index: 9999; pointer-events: none; }

/* ==========================================================================
   BLOCK 2: HERO & QUICK STATS
   ========================================================================== */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #0d1b3e 100%); padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(26,86,219,0.2) 0%, transparent 70%); border-radius: 50%; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,158,11,0.15); color: var(--accent); border: 1px solid rgba(245,158,11,0.3); padding: 8px 16px; border-radius: 30px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.hero h1 { font-family: 'Sora', sans-serif; font-size: clamp(36px, 5vw, 58px); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 480px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.hero-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-stat-card { background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 16px; text-align: center; }
.hero-stat-card .num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--accent); }
.hero-stat-card .lbl { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }
.country-flags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.flag-pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); padding: 6px 14px; border-radius: 30px; font-size: 13px; }

.stats-bar { background: var(--blue); padding: 32px 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.stat-item { text-align: center; padding: 16px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-item .num { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); }
.stat-item .lbl { font-size: 14px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ==========================================================================
   BLOCK 3: GEOGRAPHIES, UNIVERSITIES, & STEPS
   ========================================================================== */
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 48px; position: relative; }
.step-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px 24px; position: relative; transition: all 0.3s ease; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.step-num { font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800; color: var(--blue-light); line-height: 1; margin-bottom: 16px; }
.step-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.step-card h3 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--gray-600); }

.country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 48px; }
.country-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; text-align: center; transition: all 0.3s ease; text-decoration: none; }
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.country-flag { font-size: 40px; margin-bottom: 12px; display: block; }
.country-name { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.country-detail { font-size: 13px; color: var(--gray-600); }
.country-tag { display: inline-block; margin-top: 10px; background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

.uni-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.uni-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; transition: all 0.3s ease; }
.uni-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.uni-logo-placeholder { width: 56px; height: 56px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; }
.uni-card h3 { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.uni-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.uni-tag { font-size: 12px; padding: 4px 10px; border-radius: 20px; font-weight: 500; }
.tag-green { background: #ecfdf5; color: #065f46; }
.tag-blue { background: var(--blue-light); color: var(--blue); }
.tag-amber { background: #fffbeb; color: #92400e; }

/* ==========================================================================
   BLOCK 4: WHY CHOOSE US & SERVICES COMBINATION
   ========================================================================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 24px; transition: all 0.3s ease; }
.service-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.service-icon { width: 52px; height: 52px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.service-card h3 { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-600); }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); }
.why-icon { font-size: 28px; flex-shrink: 0; }
.why-item h3 { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.why-item p { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ==========================================================================
   BLOCK 5: TESTIMONIALS, FAQS, & LEAD FORM
   ========================================================================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 24px; }
.stars { color: var(--accent); font-size: 18px; margin-bottom: 14px; }
.testimonial-card blockquote { font-size: 15px; color: var(--gray-600); font-style: italic; margin-bottom: 20px; line-height: 1.6; border: none; padding: 0; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 15px; color: var(--text); }
.author-meta { font-size: 13px; color: var(--gray-600); }
.destination-badge { display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; font-size: 12px; color: var(--blue); font-weight: 500; }

.form-section { background: linear-gradient(135deg, var(--navy), #1a3a6b); padding: 80px 0; }
.form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 48px 40px; max-width: 680px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.form-wrap h2 { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-wrap p { color: var(--gray-600); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--gray-800); }
.form-group input, .form-group select, .form-group textarea { border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 12px 16px; font-size: 15px; font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-submit { width: 100%; padding: 16px; background: var(--blue); color: white; border: none; border-radius: var(--radius); font-size: 17px; font-weight: 700; cursor: pointer; margin-top: 8px; transition: all 0.2s; font-family: 'Sora', sans-serif; }
.form-submit:hover { background: #1348b8; }
.form-wa-alt { text-align: center; margin-top: 16px; font-size: 14px; color: var(--gray-600); }
.form-wa-alt a { color: #25D366; font-weight: 600; text-decoration: none; }

.faq-list { margin-top: 48px; max-width: 740px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; background: var(--white); border: none; text-align: left; padding: 20px 24px; font-size: 16px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Inter', sans-serif; }
.faq-q span { font-size: 22px; color: var(--blue); }
.faq-a { display: none; padding: 0 24px 20px; font-size: 15px; color: var(--gray-600); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q { color: var(--blue); }

/* ==========================================================================
   BLOCK 6: ARTICLES PREVIEW & FOOTER
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 48px; }
.blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s ease; text-decoration: none; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--navy), #1a3a6b); display: flex; align-items: center; justify-content: center; font-size: 52px; }
.blog-body { padding: 20px; }
.blog-cat { font-size: 12px; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.blog-card h3 { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--gray-600); }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--blue); margin-top: 14px; }

.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 16px; display: block; text-decoration: none; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; font-size: 18px; transition: all 0.2s; }
.social-links a:hover { background: var(--blue); color: white; }

/* ==========================================================================
   RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .noielts-btn { text-align: center; justify-content: center; }
}/* End custom CSS */