/* ========================================
   CSS VARIABLES
======================================== */
:root {
  /* Colors */
  --primary-blue: #4169E1;
  --secondary-blue: #2196F3;
  --dark-blue: #1976D2;
  --light-blue: #47B5FF;
  --darker-blue: #1e5bc6;
  
  --dark-bg: #1a1a2e;
  --darker-bg: #0f0f1e;
  --card-bg: rgba(26, 26, 46, 0.95);
  
  --text-dark: #1a1a1a;
  --text-gray: #666;
  --text-light-gray: #7A8C94;
  
  --success-green: #4CAF50;
  --warning-orange: #FFA726;
  --highlight-yellow: #FFD700;
  
  /* Spacing */
  --section-padding: 4rem 2rem;
  --card-padding: 2rem;
  
  /* Transitions */
  --transition-base: all 0.3s ease;
  
  /* Shadows */
  --shadow-sm: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ========================================
   RESET & BASE STYLES
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #6B8FE8 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: var(--transition-base);
}

nav a:hover {
  color: var(--success-green);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  background: url('../images/bigex-1.webp') center/cover no-repeat;
  color: white;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
#home-row{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  
  position: relative;
  z-index: 1;
  padding: 3.125rem 0;
}



.hero-text h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  line-height: 3.125rem;
}

.hero-text h1 .highlight-yellow {
  color: var(--highlight-yellow);
}

.hero-text h1 .highlight-orange {
  color: #FFA500;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.offer-banner {
  background-color: #d03409;
  color: #fff;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 27px;
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 2;
  transform: translateY(0);
  transition: 0.35s ease all;
}
.offer-banner::before{
  position: absolute;
  content: '';
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  bottom: -10px;
  right: -10px;
  border-bottom: 10px solid #152134;
  border-right: 10px solid #152134;
  z-index: -1;
}
.offer-banner:hover{
  transform: translateY(-10px);
}

/* Checkmark List */
.checkmark-list {
  list-style: none;
  margin: 2rem 0;
}

.checkmark-list li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
}

.solar-icon {
  display: none;
}

/* ========================================
   HERO FORM
======================================== */
.select_form{
  height: 60px !important;
}
.hero-form {
  background: var(--card-bg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  animation: fadeInRight 0.8s ease;
  margin-top: 3.125rem;
  max-width: 446px;
}
.hero-text{
  max-width: 700px;
}

.hero-form h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select, textarea {
  width: 100%;
  padding: 1.25rem;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: #fff;
  color: #333;
}
textarea{
  height: 90px;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: #fff;
  color: #333;
  letter-spacing: 0 !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-blue);
}

.btn-primary {
  width: 100%;
  padding: 1rem;
  background: var(--primary-blue);
  color: white;
  border: none;
  border-radius: 0.3125rem;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-base);
}

.btn-primary:hover {
  background: #5179F1;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.3125rem 0.9375rem rgba(65, 105, 225, 0.4);
}

.form-disclaimer {
  color: var(--light-blue);
  font-size: 1.1rem;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

/* ========================================
   COMPLIANCE SECTION (Partners Carousel)
======================================== */
.compliance-section {
  background: #141A24;
  padding: 5rem 1.25rem;
  width: 100%;
}

.compliance-title {
  margin-left: 5.3125rem;
  font-size: 2.625rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  color: #fff;
}

.partners-carousel {
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  gap: 1.875rem;
  animation: scroll 20s linear infinite;
}

.partner-logo {
  min-width: 15.625rem;
  height: 7.5rem;
  background: white;
  border-radius: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}

.partner-logo:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.3);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

/* ========================================
   STATS SECTION
======================================== */
.stats {
  background: #f8f9fa;
  padding: 2rem;
  text-align: center;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  animation: fadeIn 1s ease;
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--secondary-blue);
  margin-bottom: 0.5rem;
}

.stats-section {
  background: linear-gradient(135deg, var(--darker-blue) 0%, var(--secondary-blue) 100%);
  padding: 2.5rem 1.25rem;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
  color: white;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.95;
  color: white;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing {
  padding: 2rem 0;
  background: white;
  display: flex;
  width: 100%;
  justify-content: center;
  /* flex-wrap: wrap; */
  gap: 2.5rem;
}

.title-banner {
  display: flex;
  justify-content: space-between;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 3.4375rem;
  color: var(--dark-bg);
}

.section-subtitle {
  text-align: left;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  background: white;
}

.pricing-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-blue);
}

.pricing-card.featured {
  background: var(--secondary-blue);
  color: white;
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-0.625rem);
}

.pricing-content {
  padding: 1.25rem;
  font-size: 1.875rem;
}
.pricing-content h3{
  font-size: 18px;
}

.fw-bold {
  color: var(--darker-bg);
  font-weight: 700;
  margin-bottom: 1.5625rem;
}

.fw-bold-selected {
  font-weight: 700;
  margin-bottom: 1.5625rem;
  color: #fff;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.price-selected {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.starter-text {
  font-size: 0.9375rem;
  color: var(--text-light-gray);
}

.starter-text-selected {
  color: #fff;
}

.starter-p {
  color: var(--text-light-gray);
  margin-bottom: 1.5625rem;
  font-size: 16px;
}

.starter-p-selected {
  color: white;
  margin-bottom: 1.5625rem;
  font-size: 16px;
}

.card-divider {
  border: none;
  border-top: 2px solid #e7eaf3;
  width: 100%;
  margin: 1.5rem 0;
}

.starter-list {
  padding: 1.25rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
}

.pricing-card li {
  padding: 0.5rem 0;
  font-size: 1.125rem;
}

.pricing-card.featured li {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.Get-started-btn {
  display: block;
  margin: auto;
  background-color: #12212C;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.03125rem;
  transition: background 0.2s;
}

.Get-started-btn-selected {
  display: block;
  margin: auto;
  background-color: #E7B317;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  border: none;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  letter-spacing: 0.03125rem;
  transition: background 0.2s;
}

.Get-started-btn:hover,
.custom-btn:hover {
  background: #223a52;
}

.btn-outline {
  padding: 0.8rem 2rem;
  border: 2px solid var(--secondary-blue);
  background: transparent;
  color: var(--secondary-blue);
  border-radius: 0.3125rem;
  cursor: pointer;
  transition: var(--transition-base);
  font-weight: bold;
}

.btn-outline:hover {
  background: var(--secondary-blue);
  color: white;
}

.pricing-card.featured .btn-outline {
  border-color: white;
  color: white;
}

.pricing-card.featured .btn-outline:hover {
  background: white;
  color: var(--secondary-blue);
}

/* ========================================
   COMPARISON TABLE
======================================== */
.comparison-table {
  text-align: center;
  font-size: 1.875rem;
  line-height: 2.8125rem;
  margin-bottom: 4.375rem;
}

.comparison-table p {
  font-size: 1.5625rem;
}

.main-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.1rem;
  color: #333;
  padding: 1.5rem;
  background: #f8f8f8;
  border: 3px solid #c00000;
}

.table-wrapper {
  overflow-x: auto;
  padding-bottom: 3.125rem;
  display: flex;
  justify-content: center;
}

table {
  width: 80%;
  border-collapse: collapse;
}

thead th {
  background: #1e5ba8;
  color: white;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  border-right: 2px solid white;
}

thead th:last-child {
  border-right: none;
}

tbody th {
  background: #e8eef7;
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  color: #333;
  width: 15%;
  vertical-align: middle;
}

tbody tr:nth-child(even) th {
  background: #f8f8f8;
}

td {
  padding: 1.5rem;
  border: 1px solid #d0d0d0;
  background: white;
  vertical-align: top;
  color: #333;
  line-height: 1.6;
  font-size: 0.95rem;
}

tbody tr:nth-child(even) td {
  background: #f8f8f8;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
  background: white;
}

.service-title {
  text-align: center;
}

.services-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;       /* Enables horizontal scrolling */
    white-space: nowrap;    /* Prevents items from wrapping */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;      /* Firefox */
    scroll-behavior: smooth;    /* Smooth scrolling */
    padding-bottom: 1rem;   
    padding-top: 12px;    /* Optional: space for scroll */
}

.services-grid::-webkit-scrollbar {
    display: none;  /* Chrome, Safari, Opera */
}

.services-grid > * {
    flex: 0 0 auto; /* Prevent flex items from shrinking */
}


.service-card {
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 2rem;
  border: 2px solid #e0e0e0;
  border-radius: 0.625rem;
  transition: var(--transition-base);
  background: white;
}

.service-card:hover {
  background: var(--secondary-blue);
  transform: translateY(-0.3125rem);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--secondary-blue);
}

/* Services Section (new_page.php) */
.services-section {
  background: url('../images/bigex-1.png');
  padding: 2.5rem 1.25rem;
  position: relative;
}

.services-container {
  /* max-width: 1400px; */
  margin: 0 auto;
}

.services-title {
  text-align: center;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2.75rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.services-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.875rem;
  padding: 1.25rem;
}

.services-section .service-card {
  background: white;
  border-radius: 1.25rem;
  padding: 2.5rem 1.875rem;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  position: relative;
  flex: 1 1 17.5rem;
  display: block;
  max-width: 20rem;
  min-width: 17.5rem;
}

.services-section .service-card .service-title {
  color: var(--text-dark);
  transition: color 0.3s ease;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  line-height: 1.4;
}

.services-section .service-card:hover {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--dark-blue) 100%);
  color: #ffffff;
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.2);
  transform: translateY(-0.625rem);
}

.services-section .service-card:hover .service-title,
.services-section .service-card:hover p,
.services-section .service-card:hover span,
.services-section .service-card:hover a,
.services-section .service-card:hover * {
  color: #ffffff;
}

.services-section .service-icon {
  width: 6.25rem;
  height: 6.25rem;
  background: linear-gradient(135deg, #e8f4ff 0%, #f0f8ff 100%);
  border-radius: 50%;
  margin: 0 auto 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--secondary-blue);
}

/* ========================================
   PATH SECTION
======================================== */
.path-section {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--dark-blue) 100%);
  padding: 5rem 1.25rem;
  color: white;
}

.path-container {
  max-width: 1400px;
  margin: 0 auto;
}

.path-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3.75rem;
  flex-wrap: wrap;
  gap: 1.875rem;
}

.path-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  flex: 1;
  min-width: 18.75rem;
  margin-bottom: 1.875rem;
}

.path-description {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 31.25rem;
  opacity: 0.95;
}

.steps-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0;
  position: relative;
  padding: 0 2.5rem;
}



.step-card {
  background: white;
  border-radius: 0.9375rem;
  padding: 2.5rem 1.5625rem 1.875rem;
  color: #333;
  position: relative;
  z-index: 1;
  flex: 1 1 14.375rem;
  max-width: 17.5rem;
  min-width: 14.375rem;
  transition: var(--transition-base);
}

.step-card:hover {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--dark-blue) 100%);
  color: white;
}

.step-card:hover .step-title,
.step-card:hover .step-description,
.step-card:hover * {
  color: #ffffff;
}

.step-number {
  width: 1px;
  height: 1px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: -3.0625rem;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--secondary-blue);
  z-index: 2;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  margin-top: 0.625rem;
  color: var(--text-dark);
}

.step-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-gray);
}

/* ========================================
   BENEFITS SECTION
======================================== */
.benefits {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #004d99 100%);
  color: white;
}

.benefits-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.625rem;
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-0.3125rem);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
  padding: var(--section-padding);
  background: #f8f9fa;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 0.625rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  flex: 0 0 calc((100% - 3.75rem) / 3);
  min-height: 17.5rem;
}

.testimonial-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: var(--shadow-lg);
}

.testimonial-author {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 1rem;
}

.author-image {
  width: 3.125rem;
  height: 3.125rem;
  background: var(--secondary-blue);
  border-radius: 50%;
}

.testimonials-section {
  background: #f8f9fa;
  padding: 3.125rem 1.25rem;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.875rem;
  color: var(--text-dark);
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 1.875rem;
  padding: 1.25rem 0;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.google-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
}

.google-text {
  color: var(--secondary-blue);
  font-weight: 600;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5625rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9375rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

.testimonial-avatar {
  width: 3.125rem;
  height: 3.125rem;
  background: #e0e0e0;
  border-radius: 50%;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3125rem;
}

.star-rating {
  color: #FFC107;
  font-size: 1rem;
}

.quote-icon {
  font-size: 3rem;
  color: #e3f2fd;
  opacity: 0.5;
  line-height: 1;
}

.slider-nav {
  display: none;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.875rem;
}

.nav-button {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: var(--secondary-blue);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.nav-button:hover {
  background: var(--dark-blue);
}

/* ========================================
   PILLARS SECTION
======================================== */
.pillars-section {
  background: #f8f9fa;
  padding: 2rem 1.25rem;
}

.pillars-container {
  max-width: 1400px;
  margin: 0 auto;
}

.pillars-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 2.5rem;
}

.pillars-title {
  font-size: 2.625rem;
  font-weight: bold;
  color: var(--text-dark);
  max-width: 31.25rem;
  line-height: 1.2;
}

.pillars-subtitle,
.pillars-description {
  max-width: 28.125rem;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.6;
}

.pillars-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.875rem;
  justify-content: center;
}

.pillars-grid {
  display: flex;
  gap: 1.875rem;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  height: 29.375rem;
  box-shadow: var(--shadow-sm);
  flex: 1 1 21.875rem;
  max-width: 28.125rem;
  min-width: 18.75rem;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}

.pillar-card img,
.pillar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.pillar-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
  padding: 2.5rem 1.875rem;
  color: white;
}

.pillar-number {
  width: 3.75rem;
  height: 3.75rem;
  background: var(--secondary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
  color: white;
  z-index: 2;
}

.pillar-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.875rem;
  color: white;
  z-index: 2;
}

.pillar-content h3,
.pillar-title {
  font-size: 1.5rem;
  margin-bottom: 0.9375rem;
  line-height: 1.3;
}

.pillar-content p,
.pillar-description {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* ========================================
   ANALYZER SECTION
======================================== */
.analyzer-section {
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('../images/bigex-4.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.analyzer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(20, 48, 82, 0.95) 0%, rgba(20, 48, 82, 0.85) 50%, rgba(20, 48, 82, 0.4) 100%);
}

.analyzer-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.75rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

.analyzer-content {
  color: white;
}

.analyzer-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.875rem;
}

.analyzer-description {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 37.5rem;
}

.analyzer-form {
  background: rgba(42, 42, 50, 0.95);
  padding: 3.125rem;
  box-shadow: var(--shadow-xl);
}

.form-select {
  width: 100%;
  padding: 1.125rem 1.25rem;
  font-size: 1rem;
  color: #999;
  background-color: white;
  border: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  transition: var(--transition-base);
}

.form-select:hover {
  background-color: #f8f8f8;
}

.form-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.3);
}

.submit-btn {
  width: 100%;
  padding: 1.125rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--dark-blue) 100%);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 0.25rem 0.9375rem rgba(33, 150, 243, 0.4);
}

.submit-btn:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1.25rem rgba(33, 150, 243, 0.5);
}

.submit-btn:active {
  transform: translateY(0);
}

/* ========================================
   CTA SECTION
======================================== */
.cta {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: white;
  padding: var(--section-padding);
  text-align: center;
}

.cta-content {
  max-width: 50rem;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-form {
  display: flex;
  gap: 1rem;
  max-width: 37.5rem;
  margin: 2rem auto;
}

.cta-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 0.3125rem;
}

.cta-form button {
  padding: 1rem 2rem;
  background: var(--success-green);
  border: none;
  border-radius: 0.3125rem;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-base);
}

.cta-form button:hover {
  background: #45a049;
  transform: scale(1.05);
}

.cta-section {
  background: linear-gradient(135deg, var(--darker-blue) 0%, var(--secondary-blue) 100%);
  padding: 1rem 1.25rem;
  text-align: center;
}

.cta-container {
  max-width: 56.25rem;
  margin: 1.8125rem auto 0;
}

.cta-emoji {
  font-size: 3rem;
  margin-bottom: 1.25rem;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.875rem;
}

.cta-button {
  background: linear-gradient(135deg, var(--warning-orange) 0%, #FB8C00 100%);
  color: white;
  border: none;
  padding: 1.25rem 3.75rem;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 3.125rem;
  cursor: pointer;
  margin-bottom: 1.875rem;
  box-shadow: 0 0.25rem 0.9375rem rgba(255, 167, 38, 0.4);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-0.125rem);
}

.cta-text {
  color: white;
  font-size: 1.125rem;
  margin-top: 20px;
  line-height: 1.6;
}
/* Container Grid */
.business-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

/* Card Style */
.business-card {
  position: relative;
  height: 500px;
  border-radius:1rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.business-card:hover .card-bg{
  transform: scale(1.2);
}

/* Background Image */
.card-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
  transition: transform 0.5s ease;
}

/* Card Title Fixed at Bottom */
.card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 700;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 2;
}
.business-card:hover .card-title{
  top: 0;
  bottom: unset;
  background: #12212C;
}

/* Hover Overlay */
.card-content {
  position: absolute;
  bottom: 0;
  width: 90%;
  max-height: 150px;
  overflow-y: hidden;
  background: rgba(0, 0, 0, 0.8); /* semi-transparent */
  backdrop-filter: blur(10px);           /* frosted glass blur */
  -webkit-backdrop-filter: blur(10px);
  transition: max-height 0.5s ease, transform 0.5s ease;
  padding:30px 1rem;
  z-index: 1;
  border-radius: 1rem;
  left: 50%;
  transform: translate(-50%, 0);

   scrollbar-width: thin;        /* Firefox */
  scrollbar-color: rgba(255,255,255,0.5) transparent;
}

/* Chrome, Edge, Safari */
.card-content::-webkit-scrollbar {
  width: 6px;       /* very thin width */
}

.card-content::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);  /* subtle track */
  border-radius: 10px;
}

.card-content::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.4);  /* subtle thumb */
  border-radius: 10px;
}

.card-content::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.6);  /* slightly brighter on hover */
}

/* Show on Hover */
.business-card:hover .card-content {
  max-height: 80%;
  transform: translate(-50%,-4%);
  overflow-y: auto;
}

/* List inside content */
.card-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-content li {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #fff;
  opacity: 0.8;
}

.card-content li.extra {
  display: none; /* Hidden initially */
}

/* Show More Button */
.show-more {
  display: block;
  margin: 0 auto;
}
.card-content .fa-circle-check{
  color: #1C6EEE;
}

/* Responsive */
@media (max-width: 768px) {
  .business-card { height: 450px; }
}
.ox-hidden{
  overflow-x: hidden;
}


/* ========================================
   FOOTER SECTION
======================================== */
footer {
  background: var(--dark-bg);
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--success-green);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #aaa;
}

.footer-section {
  background-color: var(--dark-bg);
  padding: 3.75rem 1.25rem 1.875rem;
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  text-align: center;
  margin-bottom: 1.875rem;
}

.footer-logo img {
  height: 3.75rem;
}

.footer-description {
  text-align: center;
  color: #b0b0b0;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  color: #b0b0b0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.contact-item::before {
  font-size: 1.125rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.9375rem;
  margin-bottom: 2.5rem;
}

.social-link {
  width: 2.8125rem;
  height: 2.8125rem;
  border-radius: 50%;
  background-color: #2a2a3e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-blue);
}

.social-link.instagram {
  background-color: #426AE2;
}

.footer-bottom a {
  color: var(--primary-blue);
  text-decoration: none;
}
.reviewSlider{
  background: #f8f9fa;
  padding: 3.125rem 1.25rem;
}
.reviewSliderItem {
  background-color: #F0F4FA;
  border-radius: 16px;
  padding: 24px;
}

.reviewSliderCarousel img.w-auto {
  width: auto;
  max-width: 100px;
}

.reviewSliderItem p {
  color: #6B6F7F;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Nunito Sans', sans-serif;
  margin-top: 20px;
}
.reviewFooter{
  display: flex;
  justify-content: space-between;
}
.reviewFooter .profile {
  gap: 13px;
  display: flex;
}

.reviewFooter .profile img.p-image {
  width: 56px !important;
  height: 56px;
  border-radius: 50%;
}

.reviewSliderItem hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}
.reviewFooter .profile h5 {
  color: #021738;
  font-weight: bold;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  font-size: 18px;
  margin-bottom: 0;
}
.reviewFooter img{
  width: 122px !important;
}
.reviewFooter img.quote-icon{
  width: 44px !important;
}

.reviewSliderCarousel.owl-carousel .owl-nav button.owl-next,
.reviewSliderCarousel.owl-carousel .owl-nav button.owl-prev {
  width: 48px;
  height: 48px;
  background-color: #2C6BC2;
  border-radius: 50%;
  background: #2C6BC2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.35s ease-in;
}

.reviewSliderCarousel.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.reviewSliderCarousel.owl-carousel .owl-nav button.owl-prev {
  left: -28px;
}

.reviewSliderCarousel.owl-carousel .owl-nav button.owl-next {
  right: -28px;
}

.reviewSliderCarousel.owl-carousel .owl-nav button svg path {
  fill: white;
  transition: 0.35s ease-in;
}

.reviewSliderCarousel.owl-carousel .owl-nav button:hover {
  background: #E2F5F4;
}

.reviewSliderCarousel.owl-carousel .owl-nav button:hover svg path {
  fill: #021738;
}
.custom-container {
    width: 80%;
    margin: auto;
}
 #phone {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
  }
  
  #phone:focus {
    border-color: #2575fc;
    box-shadow: 0 0 0 2px rgba(37, 117, 252, 0.2);
  }
  
  .iti {
    width: 100%;
  }
  
  .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");
  }
  .mb-0{
    margin-bottom: 0 !important;
  }
  .checkmark-list li {
        padding: 0.5rem 0;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 1.55rem;
    }
  
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
      background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");
    }
  }
  .iti__country-list,.iti__selected-dial-code{
    color: var(--dark-bg);
  }
   .font-text{
        font-size:35px;
    }

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(1.875rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;   /* distance from bottom */
  right: 20px;    /* distance from right */
  z-index: 999;
  display: inline-block;
  animation: bounce 2s infinite;
}

.whatsapp-float img {
  width: 60px;   /* adjust size */
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}


/* @media only screen and  (max-width: 767px) {
  .hero-text h1 {
    font-size: 2rem;
    line-height: 2.125rem;
  }
  #home-row{
    flex-direction: column;
    gap: 2rem;
  }

#home{
    flex-direction: column;
}

  .offer-banner {
    font-size: 2.5rem;
    padding: 0.8rem 1rem;
  }

  .form-group input,
  .form-group select {
    padding: 0.9375rem;
    font-size: 0.9rem;
  }

  .btn-primary {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .checkmark-list li {
    font-size: 1.1rem;
  }

  .compliance-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    margin-left: 0;
    text-align: center;
  }

  .partner-logo {
    min-width: 12.5rem;
    height: 6.25rem;
  }

  .compliance-section {
    padding: 3.75rem 1.25rem;
  }

  .hero .row {
    display: block;
  }

  .hero .col-md-6 {
    width: 100%;
    max-width: 100%;
  }

  .hero .hero-content {
    padding: 0 0.5rem;
  }

  .pricing .row {
    grid-template-columns: 1fr;
  }

  .pricing .pricing-card {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .price,
  .price-selected {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .Get-started-btn,
  .Get-started-btn-selected {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.75rem;
  }

  .services-section .services-grid {
    grid-template-columns: 1fr;
  }

  .path-section .steps-container {
    grid-template-columns: 1fr;
  }

  .testimonials-section .nav-button {
    width: 2.25rem;
    height: 2.25rem;
    line-height: 2.25rem;
  }

  .main-title {
    font-size: 1.5rem;
  }

  .subtitle {
    font-size: 0.95rem;
    padding: 1rem;
  }

  thead th {
    font-size: 1rem;
    padding: 0.8rem;
  }

  td,
  tbody th {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .services-title,
  .testimonials-title {
    font-size: 2rem;
  }

  .path-title {
    font-size: 2.5rem;
  }

  .pillars-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .pillar-card {
    height: 28.125rem;
  }
#home-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
  .analyzer-section {
    min-height: auto;
    padding: 2.5rem 0;
  }

  .analyzer-container {
    padding: 2.5rem 1.25rem;
  }

  .analyzer-title {
    font-size: 2.5rem;
  }

  .analyzer-description {
    font-size: 1rem;
  }

  .analyzer-form {
    padding: 1.875rem 1.5625rem;
  }

  .form-select {
    padding: 1rem 1.125rem;
    font-size: 0.9375rem;
  }

  .submit-btn {
    padding: 1rem;
    font-size: 1rem;
  }

  .pricing-content {
    padding: 1.25rem;
    font-size: 2.5rem;
  }

  .pricing-content h3 {
    padding: 1.25rem;
    font-size: 2.5rem;
  }

  .pricing-card li {
    padding: 0.5rem 0;
    font-size: 1.25rem;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .hero-content,
  .pricing-grid,
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} */
@media only  screen and (min-width:1600px) {
   .containerHero{
      width: 80%;
      margin: auto;
   }
}
@media only  screen and (max-width:1300px) {
  .pricing{
    gap: 1rem;
  }
}
@media only  screen and (max-width:1199px) {
   .pricing{
    gap: 1rem;
   }
   .price,.price-selected{
    font-size: 1rem;
    line-height: 1.1;
  }
  .price .starter-text,.starter-text{
    margin-left: 6px;
  }
  .title-banner{
    padding-left: 30px;
    padding-right: 30px;
  }
  .steps-container{
    gap: 5px;
  }
  .path-title{
    font-size: 20px;
  }
  .path-description{
    font-size: 16px;
  }
}
@media only  screen and (max-width:991px) {

  .logo img{
    width: 200px;
  }
 #home-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}   
.hero-text h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    line-height: 3.125rem;
}
.comparison-table h2{
  margin-bottom:20px;
  font-size: 15px;
}
.comparison-table {
    padding: 15px;
    text-align: center;
    font-size: 1.875rem;
    line-height: 2.8125rem;
    margin-bottom: 4.375rem;
}
.pricing-card {
    box-shadow: var(--shadow-sm);
    width: 80%;
    border: 1px solid transparent;
    transition: border-color 0.3s 
ease, box-shadow 0.3s 
ease, transform 0.3s 
ease;
    background: white;
}
.pricing-content {
    padding: 1.25rem;
    font-size: 2.875rem;
}
.fw-bold {
    color: var(--darker-bg);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.5625rem;
}
.pricing-card li {
    padding: 0.5rem 0;
    font-size: 1.2rem;
}
.checkmark-list li {
    padding: 0.1rem 0 !important;
    display: flex;
    align-items: center;
    gap: 0.75rem !important;
    font-size: 2.35rem !important;
}

.hero-form h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 2.1rem;
    text-align: center;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid #ddd;
    font-size: 1.75rem;
    transition: border-color 0.3s;
    background: #fff;
    color: #333;
}

.title-banner {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.section-title {
    font-size: 3.8rem;
    margin-bottom: 1rem;
    line-height: 4.4375rem;
    color: var(--dark-bg);
    text-align: center;
}
.section-subtitle {
    text-align: center;
    font-size: 50px;
    color: var(--text-gray);
    margin-bottom: 3rem;
}
/* .services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
} */
.testimonial-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
.services-section .service-card .service-title {
    color: var(--text-dark);
    transition: color 0.3s 
ease;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.625rem;
    line-height: 1.4;
}
.pillar-card{
  height: 574px;
}
.analyzer-form{
  padding: 16px;
}
.form-group input, .form-group select{
  font-size: 1.5rem;
}
.path-header {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.75rem;
    flex-wrap: wrap;
    gap: 1.875rem;
    flex-direction: column;
}
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding: 0 2.5rem;
}
.step-card {
    background: white;
    border-radius: 0.9375rem;
    padding: 2.5rem 1.5625rem 1.875rem;
    color: #333;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    min-width: none;
    margin-bottom: 30px;
    transition: var(--transition-base);
}
.step-title {
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 0.9375rem;
    margin-top: 0.625rem;
    color: var(--text-dark);
}
.path-description {
    font-size: 3.2rem;
    line-height: 1.4;
    max-width: 80%;
    opacity: 0.95;
}
.path-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    flex: 1;
    min-width: 18.75rem;
    margin-bottom: 1.875rem;
}
.step-description {
    font-size: 2.21em;
    line-height: 1.2;
    color: var(--text-gray);
}
.pillars-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3.75rem;
    gap: 2.5rem;
}
.pricing{
    flex-wrap: nowrap;
  }
  .pricing{
    gap: 1rem;
  }
.pillar-card{
   min-width: unset;
}
.price,.price-selected{
  font-size: 1.5rem;
  line-height: 1.1;
}
.price .starter-text,.starter-text{
  margin-left: 6px;
}
}
@media only screen and (max-width: 768px) {
        #home-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .font-text {
           font-size: 25px !important;
        }
       }
@media only screen and (max-width: 767px) {
  .testimonials-slider {
    display: flex;
    flex-direction: row;
    overflow-x: hidden;
  }
  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    margin: 0;
  }
  .hero{
    padding: 16px;
  }
  .hero-form{
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    padding: 1rem;
  }
  .hero-text{
    max-width: 100%;
  }
  .checkmark-list li{
    font-size: 16px !important;
    gap: 8px !important;
  }
  .cta-button{
    font-size: 1rem;
    padding: 1rem;
    display: block;
  }
  #home-row{
    gap: 2rem;
  }
  .hero-form h3{
    font-size: 1.5rem;
  }
  .section-title,.step-title,.testimonials-title,.pillars-title,.comparison-table p{
    font-size: 1.8rem;
    line-height: 1.2;
  }
  .section-subtitle,.analyzer-title{
    font-size: 2rem;
    line-height: 1.2;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section-subtitle,.services-title{
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  .featured{
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .pillars-grid{
    flex-direction: column;
  }
  .analyzer-container {
        grid-template-columns: 1fr;   /* Stack items in one column */
        gap: 1rem;                    /* Reduce spacing */
        padding: 1rem;           /* Adjust padding for smaller screen */
    }
  .pricing-card li{
    font-size: 1rem;
  }
  .services-section .service-card .service-title,.path-title,.offer-banner,.hero-text h1{
    font-size: 12px;
  }
  .hero-text h1{
    line-height: 1.25;
    font-size: 17px;
  }
  .hero-text p{
    margin-bottom: 10px;
    font-size: 1rem;
  }
  .checkmark-list{
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .path-description,.step-description{
    font-size: 16px;
  }
  .path-header{
    align-items: flex-start;
    gap: 0;
  }
  .path-title{
    margin-bottom: 8px;
  }
  .steps-container{
    padding: 0;
  }
  .step-card{
    padding: 16px;
  }
  .path-section{
    padding: 16px;
  }
  .custom-container{
    width: 100%;
  }
  .reviewSliderItem{
    padding:20px 28px;
  }
  .reviewSliderCarousel.owl-carousel .owl-nav button{
    width: 35px !important;
    height: 35px !important;
  }
  .reviewSliderCarousel.owl-carousel .owl-nav button.owl-prev{
    left: -15px;
  }
  .reviewSliderCarousel.owl-carousel .owl-nav button.owl-next{
    right: -15px;
  }
  .stats-container{
    gap: 12px;
  }
  .stat-number{
    font-size: 35px;
    margin-bottom: 0;
  }
  .pillar-card{
    min-width: unset;
    height: auto;
    overflow: unset;
  }
  .pillar-number{
    top: -1.875rem;
  }
  .pillars-grid{
    gap: 2.5rem;
  }
  .pillar-content h3{
    font-size: 1rem;
  }
  .analyzer-form{
    padding: 1rem;
  }
  .form-group input, .form-group select{
    font-size: 1rem;
  }
  .starter-p{
    text-align: center;
  }
  .starter-p-selected{
    text-align: center;
  }
  .pricing-content h3 {
    font-size: 25px;
    text-align: center;
}
  .price,.price-selected{
    margin: .56rem 0;
    font-size: 1.2rem;
    line-height: 1;
    display: flex;
    justify-content: center;
  }
  .starter-text{
    margin-left: 5px;
  }
  .comparison-table h2{
    line-height: 1.2;
  }
  .pricing{
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .title-banner{
    padding-left: 10px;
    padding-right: 10px;
  }
  .text-sm-center{
    text-align: center;
  }
  #home-row{
    gap: 1rem !important;
  }
  .comparison-table{
    margin-bottom: 0;
  }
  .business-cards{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 1rem;
    padding:0 1.5rem 1rem;
  }
  .services-section,.reviewSlider,.stats-section,.pillars-section,.cta-section,.footer-section{
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .pillars-header,.footer-contact{
    gap: 1rem;
  }
  .pillars-header{
    margin-bottom: 2rem;
  }
  .mb-0,.testimonials-title,.cta-container{
    margin-bottom: 0 !important;
  }
  .analyzer-title,.step-card,.footer-logo,.footer-description,.footer-contact,.fw-bold-selected{
    margin-bottom: 1rem;
  }
  .footer-bottom{
    padding-top: 1rem;
  }
  .hero-content{
    padding-bottom: 0;
  }
  .pricing-card li{
    padding: 0.3rem 0;
  }
  .card-divider{
    margin: 1rem 0;
  }
  .pricing-content,.services-grid{
    padding-bottom: 0;
  }
  .starter-list{
    padding-top: 0;
  }
  .hero-content{
    padding-top: 1rem;
  }
}
