.elementor-1002 .elementor-element.elementor-element-86b4f29 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1002 .elementor-element.elementor-element-7171fdd > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1002 .elementor-element.elementor-element-8b02d40 > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1002 .elementor-element.elementor-element-aaf38ff > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1002 .elementor-element.elementor-element-3fd707d > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1002 .elementor-element.elementor-element-996981b > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1002 .elementor-element.elementor-element-7d4fdfb > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1002 .elementor-element.elementor-element-383f8ee > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1002 .elementor-element.elementor-element-5a9bc6d > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-1002 .elementor-element.elementor-element-3a803a4 > .elementor-element-populated{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-f5ddb7f *//* Separate CSS Code for Google Ads Course Hero Section (Black, Orange, White Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --accent-orange-hover: #e56a00;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.gads-hero-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 60px 20px 40px 20px;
  box-sizing: border-box;
  width: 100%;
}

.gads-hero-section *, 
.gads-hero-section *::before, 
.gads-hero-section *::after {
  box-sizing: border-box;
}

.gads-container {
  max-width: 1240px;
  margin: 0 auto 50px auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .gads-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.gads-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gads-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 20px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

.gads-main-title {
  font-size: clamp(32px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px 0;
  color: var(--text-white);
}

.title-highlight {
  color: var(--accent-orange);
}

.gads-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 24px 0;
}

/* Feature Checkpoints Grid */
.gads-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin-bottom: 30px;
}

@media (max-width: 640px) {
  .gads-check-grid {
    grid-template-columns: 1fr;
  }
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #f1f5f9;
  font-weight: 500;
}

.check-item span {
  color: #e2e8f0;
}

/* CTA Buttons */
.gads-cta-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.gads-btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 119, 0, 0.25);
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gads-btn-primary:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.gads-btn-secondary {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  color: var(--text-white);
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gads-btn-secondary:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}

/* Ratings Bar */
.gads-ratings-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #cbd5e1;
}

.stars-gold {
  color: var(--accent-orange);
  letter-spacing: 2px;
}

/* Right Side Form Column */
.gads-form-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.gads-form-card {
  background: #ffffff;
  color: #1e293b;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-card-header {
  background: #f8fafc;
  padding: 18px 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-header-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: #0f172a;
}

.form-header-text p {
  font-size: 11.5px;
  color: #64748b;
  margin: 0;
}

.form-price-tag {
  text-align: right;
}

.current-price {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
}

.strike-price {
  font-size: 11px;
  color: #94a3b8;
  text-decoration: line-through;
}

/* Form Fields */
.gads-reg-form {
  padding: 20px 24px;
}

.form-row-grid {
  display: flex;
  gap: 12px;
  width: 100%;
}

.form-row-grid .form-group {
  flex: 1;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 4px;
}

.form-group input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #1e293b;
  outline: none;
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 2px rgba(255, 119, 0, 0.15);
}

/* Experience Tabs */
.experience-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.gads-exp-tab {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 7px 4px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
}

.gads-exp-tab.active {
  background: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
  font-weight: 600;
}

/* Submit Button */
.gads-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  border: none;
  padding: 13px 20px;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 119, 0, 0.3);
  margin-top: 6px;
  transition: transform 0.2s;
}

.gads-submit-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Form Footer */
.form-card-footer {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  padding: 10px 24px;
  display: flex;
  justify-content: space-around;
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

/* Bottom Stats Container Bar */
.gads-stats-container {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--card-bg-black);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
}

.gads-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px;
  gap: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .gads-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 4px 0;
}

.stat-box p {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.gads-batch-footer-strip {
  background: #07090e;
  border-top: 1px solid var(--border-dark);
  padding: 14px;
  text-align: center;
  font-size: 13.5px;
  color: #cbd5e1;
}

.gads-batch-footer-strip strong {
  color: var(--accent-orange);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7d8a7a5 *//* Separate CSS Code for Google Ads Opportunity Section (Black, Orange, White Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.gads-opp-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.gads-opp-section *, 
.gads-opp-section *::before, 
.gads-opp-section *::after {
  box-sizing: border-box;
}

.opp-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Tag Pill */
.opp-tag-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.opp-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.opp-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header */
.opp-header-wrap {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.opp-title {
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.opp-title-highlight {
  color: var(--accent-orange);
}

/* Center Description Box */
.opp-desc-box {
  max-width: 780px;
  margin: 0 auto 45px auto;
  background: var(--card-bg-black);
  border-left: 3.5px solid var(--accent-orange);
  border-top: 1px solid var(--border-dark);
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 22px 28px;
  border-radius: 14px;
}

.opp-desc-box p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .opp-desc-box {
    padding: 18px 20px;
  }
  .opp-desc-box p {
    text-align: left;
  }
}

/* 4 Cards Grid */
.opp-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .opp-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .opp-cards-grid {
    grid-template-columns: 1fr;
  }
}

.opp-card {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.opp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 119, 0, 0.4);
}

.opp-icon-box {
  font-size: 22px;
  background: rgba(255, 119, 0, 0.1);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 119, 0, 0.2);
}

.opp-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 10px 0;
}

.opp-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-bf3e8f3 *//* Separate CSS Code for Google Ads Audience Section (Black, Orange, White Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.gads-audience-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.gads-audience-section *, 
.gads-audience-section *::before, 
.gads-audience-section *::after {
  box-sizing: border-box;
}

.audience-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Tag Pill */
.audience-tag-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.audience-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.audience-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header & Subtitle */
.audience-header-wrap {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px auto;
}

.audience-title {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.audience-title-highlight {
  color: var(--accent-orange);
}

.audience-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 6 Cards Grid (3 columns x 2 rows) */
.audience-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .audience-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .audience-cards-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 119, 0, 0.4);
}

.audience-icon-box {
  font-size: 22px;
  background: rgba(255, 119, 0, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 119, 0, 0.2);
}

.audience-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 8px 0;
}

.audience-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-71655fb *//* Separate CSS Code for Google Ads Skills Section (Black, Orange, White Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.gads-skills-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.gads-skills-section *, 
.gads-skills-section *::before, 
.gads-skills-section *::after {
  box-sizing: border-box;
}

.skills-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* Tag Pill */
.skills-tag-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.skills-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.skills-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header & Subtitle */
.skills-header-wrap {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px auto;
}

.skills-title {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.skills-title-highlight {
  color: var(--accent-orange);
}

.skills-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 12 Skills Grid (3 Columns) */
.skills-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .skills-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .skills-grid-layout {
    grid-template-columns: 1fr;
  }
}

.skill-box {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.skill-box:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 119, 0, 0.4);
}

.skill-check {
  color: var(--accent-orange);
  font-weight: 800;
  font-size: 14px;
  background: rgba(255, 119, 0, 0.1);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 119, 0, 0.25);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aa70f17 *//* Separate CSS Code for Google Ads Curriculum Section (Black, Orange, White Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --accent-orange-hover: #e56a00;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.gads-curr-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.gads-curr-section *, 
.gads-curr-section *::before, 
.gads-curr-section *::after {
  box-sizing: border-box;
}

.curr-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Tag Pill */
.curr-tag-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.curr-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.curr-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header */
.curr-header-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.curr-title {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.curr-title-highlight {
  color: var(--accent-orange);
}

.curr-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Modules Wrapper */
.curr-modules-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
}

.gads-mod-item {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gads-mod-item.active {
  border-color: var(--accent-orange);
  box-shadow: 0 8px 20px -4px rgba(255, 119, 0, 0.15);
}

.gads-mod-header {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.gads-mod-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mod-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-orange);
  background: rgba(255, 119, 0, 0.1);
  padding: 4px 8px;
  border-radius: 6px;
}

.mod-name {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

.mod-arrow {
  font-size: 11px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.gads-mod-item.active .mod-arrow {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.gads-mod-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out;
  background: #0f1624;
  border-top: 1px solid transparent;
}

.gads-mod-item.active .gads-mod-body {
  border-top-color: var(--border-dark);
}

.gads-mod-body p {
  margin: 0;
  padding: 16px 22px 20px 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Download Banner Box */
.curr-download-banner-box {
  background: var(--card-bg-black);
  border: 1.5px solid rgba(255, 119, 0, 0.35);
  border-radius: 18px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 768px) {
  .curr-download-banner-box {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
  }
}

.banner-text-side h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 4px 0;
}

.banner-text-side p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.curr-download-btn {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  border: none;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(255, 119, 0, 0.25);
  white-space: nowrap;
}

.curr-download-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

/* Brochure Modal Overlay */
.gads-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.gads-modal-box {
  background: #131b2e;
  border: 1px solid rgba(255, 119, 0, 0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  padding: 30px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  color: #ffffff;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #cbd5e1;
  font-size: 26px;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-header-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px 0;
}

.modal-header-text p {
  font-size: 12.5px;
  color: #cbd5e1;
  margin: 0 0 20px 0;
}

.gads-popup-form .form-group {
  margin-bottom: 14px;
}

.gads-popup-form label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.gads-popup-form input {
  width: 100%;
  padding: 10px 12px;
  background: #0b0f17;
  border: 1px solid #1e293b;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13.5px;
  outline: none;
}

.gads-popup-form input::placeholder {
  color: #64748b;
}

.gads-popup-form input:focus {
  border-color: #ff7700;
}

.gads-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff7700 0%, #cc6000 100%);
  color: #ffffff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: opacity 0.2s;
}

.gads-submit-btn:hover {
  opacity: 0.95;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d120364 *//* Separate CSS Code for Google Ads Transformation Section (Black, Orange, White Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.gads-trans-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.gads-trans-section *, 
.gads-trans-section *::before, 
.gads-trans-section *::after {
  box-sizing: border-box;
}

.trans-container {
  max-width: 1080px;
  margin: 0 auto;
}

/* Tag Pill */
.trans-tag-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.trans-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.trans-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header & Subtitle */
.trans-header-wrap {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px auto;
}

.trans-title {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.trans-title-highlight {
  color: var(--accent-orange);
}

.trans-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Comparison Grid */
.trans-comparison-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

@media (max-width: 992px) {
  .trans-comparison-grid {
    flex-direction: column;
  }
}

.trans-card {
  border-radius: 20px;
  padding: 32px;
  flex: 1;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Before Joining Card Style */
.before-card {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #cbd5e1;
}

/* After Training Card Style */
.after-card {
  background: var(--card-bg-black);
  border: 1.5px solid rgba(255, 119, 0, 0.4);
  background: linear-gradient(145deg, #131b2e 0%, #16110a 100%);
  color: #ffffff;
}

/* Badge Pills */
.trans-badge-pill {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.before-badge {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.after-badge {
  background: rgba(255, 119, 0, 0.15);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 119, 0, 0.3);
}

/* List Items */
.trans-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.trans-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  line-height: 1.55;
}

.before-list li {
  color: #334155;
  font-weight: 500;
}

.before-list li .item-icon {
  color: #dc2626;
  font-size: 13px;
  font-weight: 800;
  background: rgba(239, 68, 68, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.after-list li {
  color: #f1f5f9;
  font-weight: 500;
}

.after-list li .item-icon {
  background: rgba(255, 119, 0, 0.18);
  color: var(--accent-orange);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(255, 119, 0, 0.3);
}

/* Center Arrow Divider */
.trans-arrow-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-circle {
  width: 48px;
  height: 48px;
  background: var(--card-bg-black);
  border: 1.5px solid rgba(255, 119, 0, 0.4);
  color: var(--accent-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .trans-arrow-divider {
    transform: rotate(90deg);
    margin: -8px 0;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-185b769 *//* Separate CSS Code for Google Ads Bonuses Section (Black, Orange, White Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.gads-bonus-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.gads-bonus-section *, 
.gads-bonus-section *::before, 
.gads-bonus-section *::after {
  box-sizing: border-box;
}

.bonus-container {
  max-width: 1160px;
  margin: 0 auto;
}

/* Tag Pill */
.bonus-tag-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.bonus-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.bonus-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header & Subtitle */
.bonus-header-wrap {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 50px auto;
}

.bonus-title {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.bonus-title-highlight {
  color: var(--accent-orange);
}

.bonus-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* 6 Cards Grid (3 Columns) */
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .bonus-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .bonus-cards-grid {
    grid-template-columns: 1fr;
  }
}

.bonus-card {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bonus-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 119, 0, 0.4);
}

.bonus-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.bonus-icon-box {
  font-size: 22px;
  background: rgba(255, 119, 0, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 119, 0, 0.2);
}

.bonus-free-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-orange);
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.bonus-card-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 8px 0;
}

.bonus-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

/* Special Highlight Card Style */
.special-highlight-card {
  background: linear-gradient(145deg, #131b2e 0%, #1c140c 100%);
  border: 1.5px dashed rgba(255, 119, 0, 0.5);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-card-center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.special-highlight-card .bonus-icon-box {
  margin: 0 auto 16px auto;
  background: rgba(255, 119, 0, 0.15);
}

.special-highlight-card .bonus-card-title {
  margin-bottom: 4px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c009de4 *//* Separate CSS Code for Google Ads Pricing Section (Black, Orange, White Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --accent-orange-hover: #e56a00;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.gads-pricing-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.gads-pricing-section *, 
.gads-pricing-section *::before, 
.gads-pricing-section *::after {
  box-sizing: border-box;
}

.pricing-container {
  max-width: 960px;
  margin: 0 auto;
}

/* Tag Pill */
.pricing-tag-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.pricing-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header & Subtitle */
.pricing-header-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px auto;
}

.pricing-title {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.pricing-title-highlight {
  color: var(--accent-orange);
}

.pricing-subtitle {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Pricing Card Box */
.pricing-card-box {
  background: var(--card-bg-black);
  border: 1.5px solid rgba(255, 119, 0, 0.4);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

@media (max-width: 900px) {
  .pricing-card-box {
    grid-template-columns: 1fr;
  }
}

/* Left Column */
.pricing-left-col {
  padding: 40px;
  border-right: 1px solid var(--border-dark);
}

@media (max-width: 900px) {
  .pricing-left-col {
    border-right: none;
    border-bottom: 1px solid var(--border-dark);
    padding: 30px 24px;
  }
}

.pricing-badge-pill {
  display: inline-block;
  background: rgba(255, 119, 0, 0.15);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 119, 0, 0.3);
}

.pricing-card-main-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 16px 0;
  line-height: 1.35;
}

.pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 25px;
}

.currency-symbol {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-orange);
}

.main-price-val {
  font-size: clamp(40px, 5vw, 48px);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.tenure-val {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: 6px;
  font-weight: 500;
}

.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: #cbd5e1;
}

.feat-check {
  color: var(--accent-orange);
  background: rgba(255, 119, 0, 0.12);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 119, 0, 0.25);
}

/* Right Column */
.pricing-right-col {
  background: #0f1624;
  padding: 40px;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .pricing-right-col {
    padding: 30px 24px;
  }
}

.right-col-inner {
  width: 100%;
}

.reserve-seat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 20px 0;
}

.pricing-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.pricing-btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 119, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-btn-primary:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.pricing-btn-secondary {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  color: var(--text-white);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pricing-btn-secondary:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}

.pricing-footer-note {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  line-height: 1.5;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-39cdc44 *//* Separate CSS Code for Google Ads FAQ Section (Black, Orange, White Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.gads-faq-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.gads-faq-section *, 
.gads-faq-section *::before, 
.gads-faq-section *::after {
  box-sizing: border-box;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

/* Tag Pill */
.faq-tag-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.faq-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.faq-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header & Subtitle */
.faq-header-wrap {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 45px auto;
}

.faq-title {
  font-size: clamp(30px, 4.5vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.faq-title-highlight {
  color: var(--accent-orange);
}

.faq-subtitle {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Accordion List */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: var(--accent-orange);
  box-shadow: 0 8px 20px -4px rgba(255, 119, 0, 0.15);
}

.faq-question-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .faq-question-header {
    padding: 16px 18px;
  }
}

.faq-question-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
  padding-right: 20px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .faq-question-text {
    font-size: 14.5px;
  }
}

.faq-arrow-icon {
  background: rgba(255, 119, 0, 0.1);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-arrow-icon {
  background: var(--accent-orange);
  color: #ffffff;
}

.faq-answer-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out;
  background: #0f1624;
  border-top: 1px solid transparent;
}

.faq-item.active .faq-answer-body {
  border-top-color: var(--border-dark);
}

.faq-answer-body p {
  margin: 0;
  padding: 16px 24px 22px 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7a27640 *//* Separate CSS Code for Google Ads Footer CTA Box Section (Black, Orange, White Theme) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-black: #0b0f17;
  --card-bg-black: #131b2e;
  --accent-orange: #ff7700;
  --accent-orange-hover: #e56a00;
  --text-white: #ffffff;
  --text-muted: #94a3b8;
  --border-dark: #1e293b;
}

.gads-footer-cta-box-section {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-black);
  color: var(--text-white);
  padding: 80px 20px;
  box-sizing: border-box;
  width: 100%;
}

.gads-footer-cta-box-section *, 
.gads-footer-cta-box-section *::before, 
.gads-footer-cta-box-section *::after {
  box-sizing: border-box;
}

.footer-cta-card-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: radial-gradient(circle at center, #161f36 0%, #0d121d 100%);
  border: 1.5px solid rgba(255, 119, 0, 0.4);
  border-radius: 28px;
  padding: 55px 40px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .footer-cta-card-wrapper {
    padding: 35px 20px;
  }
}

/* Tag Pill */
.footer-tag-wrap {
  margin-bottom: 18px;
}

.footer-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 119, 0, 0.12);
  border: 1px solid rgba(255, 119, 0, 0.3);
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
}

.footer-tag-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-orange);
  border-radius: 50%;
}

/* Header & Subtitle */
.footer-header-wrap {
  margin-bottom: 35px;
}

.footer-title {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.footer-title-highlight {
  color: var(--accent-orange);
}

.footer-subtitle {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Action Buttons Wrap */
.footer-action-buttons-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #cc6000 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 119, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(255, 119, 0, 0.4);
  color: #ffffff;
}

.footer-btn-secondary {
  background: var(--card-bg-black);
  border: 1.5px solid var(--border-dark);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-btn-secondary:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  transform: translateY(-2px);
}/* End custom CSS */