
  
/* Hero Section */
.hero {
  
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #ff6600;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #e65c00;
}

    .two-col {
      display: flex;
      justify-content: space-between;
      padding: 50px 10%;
      background: #fff;
      flex-wrap: wrap;
    }
    .two-col .text { flex: 1; min-width: 280px; margin-right: 40px; }
    .contact-form { flex: 1; min-width: 150px; }
    form {
      display: flex; flex-direction: column;
      background: #f1f1f1;
      padding: 20px;
      border-radius: 8px;
    }
    form input, form textarea {
      margin: 10px 0; padding: 10px;
      border: 1px solid #ccc; border-radius: 5px;
    }
    form label {
      margin-top: 10px;
      font-size: 0.9rem;
      line-height: 1.4;
    }
    form button {
      margin-top: 15px;
      padding: 12px;
      background: #0073e6;
      color: white;
      border: none; border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
    }
    .video-section {
      padding: 40px 10%;
      text-align: center;
      background: #fff;
    }
    .video-section iframe {
      width: 80%; height: 400px;
      border-radius: 10px;
      border: none;
    }
    .section {
      padding: 50px 10%;
      background: #fff;
      text-align: center;
    }
    .section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #0073e6;
    }
    .section p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }
    .tabs {
      padding: 50px 10%;
      background: #f9f9f9;
    }
    .tab-buttons {
      display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
    }
    .tab-buttons button {
      padding: 10px 20px;
      border: none; border-radius: 5px;
      background: #eee; cursor: pointer;
      font-weight: bold;
    }
    .tab-buttons button.active {
      background: #0073e6; color: white;
    }
   .tab-content {
  margin-top: 30px;
  display: none;
}

.tab-content.active { display: block; }

.tab-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.tab-text {
  flex: 1;
  min-width: 250px;
}

.tab-text h3 {
  margin-bottom: 15px;
  color: #0073e6;
}

.tab-text p {
  line-height: 1.6;
  font-size: 1.05rem;
}

.tab-image {
  flex: 1;
  min-width: 250px;
  text-align: right;
}

.tab-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .tab-content.active { display: block; }
    .faq {
      padding: 50px 10%;
      background: #fff;
    }
    .faq h2 { margin-bottom: 20px; text-align: center; color: #0073e6; }
    .faq-item { margin-bottom: 15px; }
    .faq-item summary {
      font-weight: bold;
      cursor: pointer;
      background: #f1f1f1;
      padding: 10px;
      border-radius: 5px;
    }
    .faq-item p {
      padding: 10px;
      margin: 0;
    }
    
    .journeys {
  padding: 60px 10%;
  background: #0a1a2f; /* dark background like in screenshot */
  color: #fff;
  text-align: center;
}

.journeys h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #fff;
}

.journey-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.journey-card {
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center; 
}

.journey-card img {
  width: 50%; 
  height: auto; 
  border-radius: 8px;
  margin-bottom: 5px;
  display: block; 
  margin-left: auto;
  margin-right: auto;
}

.journey-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #111;
}

.journey-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #444;
}


.performance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 10%;
  background: #fff;
  flex-wrap: wrap;
}

.perf-text {
  flex: 1;
  min-width: 280px;
}

.perf-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #000;
}

.perf-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.perf-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.perf-image img {
  max-width: 40%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.revenue {
  padding: 60px 10%;
  background: #fff;
}

.revenue-top {
  margin-bottom: 30px;
}

.revenue-top h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #000;
}

.revenue-top p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-width: 900px;
}

.revenue-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a1a2f; /* dark background */
  border-radius: 12px;
  padding: 30px;
  gap: 40px;
  flex-wrap: wrap;
}

.revenue-image {
  flex: 1;
  min-width: 280px;
}

.revenue-image img {
  max-width: 40%;
  border-radius: 8px;
}

.revenue-text {
  flex: 1;
  min-width: 280px;
  color: white;
}

.revenue-text h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.revenue-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ddd;
}

.btn-guide {
  display: inline-block;
  padding: 12px 24px;
  background: #ff4d30;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.btn-guide:hover {
  background: #e63b20;
}

  .section {
  padding: 40px 0;
}

.section + .section {
  margin-top: 0; /* Prevent extra spacing stacking up */
}
 
 
    /* Main container */
.container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;   /* keeps layout clean */
  margin: 0 auto;      /* centers content */
  padding: 0 40px;     /* add space on left/right */
  box-sizing: border-box;
}

/* Left content */
.container .left-content {
  flex: 1;
  padding-right: 30px;  /* spacing between text & form */
  padding-left: 20px;   /* this fixes your issue */
}

/* Right form */
.container .form-section {
  flex: 1;
  padding-left: 30px;
}

    .section-title {
      text-align: center;
      font-size: 1.6rem;
      margin-bottom: 20px;
      color: #004a99;
    }
    .grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;  /* <-- this keeps space on left & right edges */
  align-items: center;
  box-sizing: border-box;
}

.grid-two > div:first-child {
  padding-left: 20px;  /* <-- space for left section */
}

.grid-two h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.grid-two h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
}

.grid-two p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.subtext {
  font-size: 0.95rem;
  color: #666;
}
    .checklist {
      list-style: none;
      padding-left: 0;
    }
    .checklist li::before {
      content: 'âœ”';
      color: green;
      font-weight: bold;
      margin-right: 10px;
    }
    .table-style {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
    .table-style th, .table-style td {
      padding: 10px;
      border: 1px solid #ddd;
      text-align: left;
    }
    .table-style td:last-child {
      text-align: center;
    }
    .carousel {
      text-align: center;
      padding: 40px 20px;
      background: #fafafa;
      margin-top: 40px;
    }
    .carousel h3 {
      color: #d62828;
      margin: 20px 0 10px;
    }
    .carousel p {
      color: #333;
      margin-bottom: 20px;
    }
    .carousel .btn {
      padding: 10px 20px;
      background: #e63946;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .stats {
      display: flex;
      justify-content: space-around;
      background: linear-gradient(to right, #1d3557, #457b9d);
      color: white;
      padding: 40px 20px;
      font-size: 1.2rem;
    }
    .highlight {
      font-weight: bold;
      font-size: 2rem;
    }
    @media screen and (max-width: 768px) {
      .grid-two {
        grid-template-columns: 1fr;
      }
      .stats {
        flex-direction: column;
        text-align: center;
      }
    }
    
    .btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0;
}

.btn-group .btn {
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-red {
  background-color: #e74c3c;
}
.btn-red:hover {
  background-color: #c0392b;
}

.btn-green {
  background-color: #27ae60;
}
.btn-green:hover {
  background-color: #1e8449;
}

.btn-blue {
  background-color: #3498db;
}
.btn-blue:hover {
  background-color: #2c80b4;
}

.flex-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
   margin-top: 30px;
}

.info-card {
  border: 1px dashed #ccc;
  padding: 25px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
  color: #0d6efd;
}
.info-card h3 {
  margin: 0 0 10px;
  font-weight: 600;
}
.info-card p {
  color: #333;
  font-size: 15px;
}

.pricing-section {
    display: none;
    margin-top: 40px;
    font-family: 'Segoe UI', sans-serif;
  }
  .pricing-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .pricing-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: 0.3s ease;
  }
  .pricing-card:hover {
  transform: scale(1.02);
}
  .pricing-badge {
    font-size: 18px;
    font-weight: bold;
    color: #0859BB;
  }
  .pricing-info {
    font-size: 14px;
    color: #333;
  }
  .price-amount {
    font-size: 18px;
    font-weight: 600;
    color: #28a745;
  }
  .buy-btn {
  display: inline-block;
  background: linear-gradient(to right, #ff8a00, #e65100); /* Orange gradient */
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.buy-btn:hover {
  background: linear-gradient(to right, #e65100, #bf360c);
  transform: translateY(-2px);
}

  .pricing-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  .pricing-tags button {
    padding: 10px 20px;
    background: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
  }
  .pricing-tags button:hover {
    background: #e6f0ff;
  }
  
  @media screen and (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
    padding: 0 10px;
  }

  .pricing-card {
    padding: 15px;
  }

  .pricing-badge {
    font-size: 18px;
    padding: 6px 12px;
  }

  .pricing-info {
    font-size: 14px;
  }

  .buy-btn {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%;
  }

  .pricing-section h2 {
    font-size: 22px;
    padding: 0 10px;
  }
}

.sms-features {
  background-color: #f8f9fa;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

.feature-box {
  background-color: #f1f1f1;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.feature-box h5 {
  font-weight: 600;
  color: #333;
}

.feature-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

.feature-box a {
  color: #0d6efd;
  text-decoration: underline;
}

.btn-danger {
  background-color: #d62828;
  border: none;
}

.pricing-table-container {
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #e5e5e5;
  padding: 12px 15px;
  text-align: left;
}

.pricing-table th {
  background: #f8f9fa;
  font-weight: bold;
}

.calculate-btn {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #0a58ca;
  color: #0a58ca;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  float: right;
}

.calculate-btn:hover {
  background: #0a58ca;
  color: #fff;
}

.know-more {
  margin-top: 10px;
}

.know-more a {
  font-size: 14px;
  color: #0a58ca;
  text-decoration: none;
}

.know-more a:hover {
  text-decoration: underline;
}

/* Button */
.calc-btn {
  padding: 10px 20px;
  border: 1px solid #007aff;
  background: #007aff;
  color: #fff;
  font-size: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.calc-btn:hover {
  background: #005edc;
  border-color: #005edc;
  transform: translateY(-1px);
}
.calc-btn.full {
  width: 100%;
  margin-top: 12px;
}

/* Modal Background */
.calc-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 30, 0.55);
  backdrop-filter: blur(6px);
}

/* Modal Box */
.calc-modal-content {
  background: #fff;
  margin: 6% auto;
  padding: 25px;
  border-radius: 20px;
  width: 420px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  animation: fadeIn 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.calc-title {
  margin: 0 0 15px 0;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

/* Close Button */
.calc-close {
  float: right;
  font-size: 22px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: 0.2s;
}
.calc-close:hover {
  color: #000;
}

/* Inputs */
.calc-modal-content input {
  width: 100%;
  padding: 10px 14px;
  margin: 8px 0 15px 0;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  outline: none;
  font-size: 15px;
  transition: border 0.2s, box-shadow 0.2s;
}
.calc-modal-content input:focus {
  border-color: #007aff;
  box-shadow: 0 0 0 3px rgba(0,122,255,0.15);
}

/* Output */
#output {
  margin-top: 15px;
  font-size: 15px;
  color: #333;
}
#output .result {
  margin: 6px 0;
}
#output .total {
  margin-top: 8px;
  font-weight: 600;
  color: #007aff;
  font-size: 17px;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


    /* PROCESS SECTION STYLING */
.smm-process-section {
    padding: 80px 0;
}

.eltdf-process-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 20px;
}

.eltdf-process {
    width: 18%;
    text-align: center;
    position: relative;
}

/* CIRCLE ICON BOX */
.eltdf-process-content-holder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Transparent overlay */
.eltdf-process-content-overlay {
    background: rgba(0,0,0,0.15);
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

/* Number */
.eltdf-process-inner-text {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Title + Text */
.eltdf-process-title {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 700;
}

.eltdf-process-text {
    font-size: 14px;
    color: #777;
}

/* Dotted angled connectors between circles */
.eltdf-process::after {
    content: "";
    width: 120px;
    height: 2px;
    border-bottom: 2px dotted #44b2ff;
    position: absolute;
    top: 40px;
    left: calc(100% - 10px);
    transform: rotate(35deg);
}

.eltdf-process:last-child::after {
    display: none;
}

/* RESPONSIVE */
@media(max-width: 991px) {
    .eltdf-process {
        width: 45%;
    }
    .eltdf-process::after {
        display: none;
    }
}



@media(max-width: 575px) {
    .eltdf-process {
        width: 100%;
    }
}
