/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0000005e;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background: rgba(48, 47, 47, 0.144);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  line-height: 1;
}

.logo-sub {
  font-size: 12px;
  color: #666;
  line-height: 1;
}

.cta-button {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./assets/herobg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.8),
    rgba(255, 107, 53, 0.3)
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
  min-height: 80vh;
}

.hero-left {
  color: white;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight-orange {
  color: #f7931e;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #f7931e;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-box {
  background: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 24px;
  background-color: #e65100;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-stat {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.feature-label {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1;
}

.cta-button-large {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
  margin-bottom: 20px;
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 147, 30, 0.5);
}

.development-note {
  font-size: 14px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Contact Form */
.contact-form {
  height: auto;
  background: #edeff4;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.coupon-tag {
  position: absolute;
  top: -15px;
  right: -20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(247, 147, 30, 0.4);
  transform: rotate(5deg);
  z-index: 10;
}

.coupon-icon {
  font-size: 14px;
}

.coupon-text {
  line-height: 1.2;
  text-align: center;
  font-weight: 400;
}

.form-title {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f7931e;
  box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-button {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

/* Pain Points Section */
.pain-points {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #f7931e;
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-stat {
  background: #fff3e0;
  border: 1px solid #ffe0b2;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 60px;
  font-size: 18px;
  color: #e65100;
}

.stat-text {
  font-weight: 500;
}

.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.column-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 3px solid #f7931e;
}

.problem-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.problem-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.problem-icon {
  font-size: 24px;
  padding: 8px;
  background: #fff3e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.problem-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.problem-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.cta-center {
  text-align: center;
}

.calendar-button {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

.calendar-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 147, 30, 0.5);
}

/* Solutions Section */
.solutions {
  padding: 100px 0;
  background: white;
}

.solutions-table {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e5;
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
}

.header-cell {
  padding: 20px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cell:last-child {
  border-right: none;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.table-row:hover {
  background: #f8f9fa;
}

.table-row:last-child {
  border-bottom: none;
}

.table-cell {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid #e5e5e5;
  font-size: 14px;
}

.table-cell:last-child {
  border-right: none;
}

.problem-cell {
  color: #666;
}

.solution-cell {
  color: #1a1a1a;
  font-weight: 500;
}

.outcome-cell {
  color: #2e7d32;
  font-weight: 600;
}

.problem-icon-small,
.solution-icon,
.outcome-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.solution-icon {
  color: #f7931e;
}

.outcome-icon {
  color: #4caf50;
}

/* Future Tech Section */
.future-tech {
  padding: 0px 0;
  background: #f8f9fa;
}

.future-tech-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.future-tech-left {
  position: relative;
  height: 100%;
  /* border-radius: 16px; */
  overflow: hidden;
}

.tech-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("./assets/logistics-operation.jpg");
  background-size: cover;
  background-position: center;
}

.tech-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.future-tech-right {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 40px;
}

.future-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.future-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.tech-features {
  margin-bottom: 40px;
}

.tech-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.tech-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.tech-content {
  font-size: 14px;
  line-height: 1.4;
}

.why-now-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.urgency-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.urgency-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.urgency-icon {
  font-size: 16px;
  flex-shrink: 0;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: white;
}

.process-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.process-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 30px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-icon {
  background: #4caf50;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 16px;
  color: #666;
}

.process-right {
  position: relative;
}

.process-images {
  position: relative;
  height: 400px;
}

.process-images img {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process-img-1 {
  width: 300px;
  height: 300px;
  object-fit: cover;
  top: 40px;
  left: 0;
  z-index: 3;
}

.process-img-2 {
  width: 180px;
  height: 180px;
  object-fit: cover;
  top: 0px;
  right: 10px;
  z-index: 2;
}

.process-img-3 {
  width: 200px;
  height: 200px;
  object-fit: cover;
  bottom: 0;
  left: 300px;
  z-index: 1;
}

.differentiators-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 30px;
}

.differentiators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.differentiator {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.differentiator:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.diff-icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: #f7931e;
}

.differentiator h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.differentiator p {
  font-size: 14px;
  color: #666;
}

/* Tech Partners Section */
.tech-partners {
  padding: 60px 0;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
}

.partners-title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-image: url("https://images.pexels.com/photos/906494/pexels-photo-906494.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.8);
}

.testimonials .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.testimonials-title {
  color: #f7931e;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.testimonials-subtitle {
  color: white;
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid-wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.testimonial-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-stars {
  color: #f7931e;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-author {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.testimonial-company {
  font-size: 14px;
  color: #f7931e;
  font-style: italic;
}

/* Indicators */
.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #f7931e;
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 10px);
  }

  .testimonials-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 0px);
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonials-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 24px;
    min-height: 250px;
  }

  .testimonials-grid {
    gap: 16px;
  }
  .process-right {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-subtitle {
    font-size: 16px;
  }

  .testimonial-card {
    padding: 20px;
  }
}

/* Final CTA Section */
.final-cta {
  padding: 100px 0;
  background: #f8f9fa;
}

.cta-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: #f7931e;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 18px;
  text-align: center;
  color: #666;
  margin-bottom: 60px;
}

.cta-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.cta-option {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.cta-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: #e65100;
}

.cta-option h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.cta-option p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.cta-features {
  list-style: none;
  margin-bottom: 24px;
}

.cta-features li {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
}

.cta-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: 600;
}

.cta-option-btn {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.cta-option-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(247, 147, 30, 0.4);
}

.final-calendar {
  text-align: center;
}

.calendar-button-large {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

.calendar-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 147, 30, 0.5);
}

/* Footer */
.footer {
  background: #000000;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-middle h4,
.footer-right h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12px;
  opacity: 0.8;
}
.bottom-timer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  color: #e65100;
  z-index: 9999;
  padding: 10px 20px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
}

.timer-content {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}

.timer-label {
  font-weight: bold;
}

.timer-time span {
  font-weight: bold;
  font-size: 20px;
}
@keyframes popUp {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

.popping {
  animation: popUp 0.6s ease-in-out;
}
.buy-button {
  background-color: #e65100;
  color: #ffffff;
  padding: 10px 15px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: popUp 0.6s ease-in-out infinite;
  animation-delay: 3s;
}
.buy-button:hover {
  background-color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    max-width: 500px;
    margin: 0 auto;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .future-tech-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .differentiators {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-content {
    /* flex-direction: column; */
    gap: 16px;
    padding: 20px 0;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 32px;
  }

  .feature-boxes {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
  }

  .table-cell {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    justify-content: center;
    text-align: center;
  }

  .table-row .table-cell:last-child {
    border-bottom: none;
  }

  .future-tech-left {
    height: 300px;
  }

  .future-tech-right {
    padding: 24px;
  }

  .future-title {
    font-size: 24px;
  }

  .process-images {
    height: 250px;
  }

  .process-img-1,
  .process-img-2,
  .process-img-3 {
    position: relative;
    width: 100%;
    height: 150px;
    margin-bottom: 16px;
  }

  .partners-logos {
    gap: 20px;
  }
  .cta-title,
  .testimonials-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-description {
    font-size: 16px;
  }

  .contact-form {
    padding: 24px;
    margin: 5px 16px;
  }

  .pain-points,
  .solutions {
    padding: 60px 0;
  }
  .solutions-table {
    display: none;
  }
  .future-tech,
  .process-section,
  .final-cta {
    padding: 60px 0;
  }

  .future-tech-right {
    padding: 20px;
  }

  .tech-partners {
    padding: 40px 0;
  }

  .footer {
    padding: 40px 0 20px;
  }
}

/* --popupcss-- */
/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-overlay.show {
  display: flex;
}

.popup-container {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  z-index: 10;
  padding: 0.5rem;
  border-radius: 0.25rem;
  transition: color 0.2s;
}

.close-btn:hover {
  color: #6b7280;
}

.popup-content {
  display: flex;
  min-height: 600px;
}

.testimonials-section {
  flex: 1;
  background: linear-gradient(135deg, #dbeafe 0%, #c7d2fe 100%);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-header {
  margin-bottom: 2rem;
}

.testimonials-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #1b1b1b;
  margin-bottom: 1rem;
}

.testimonials-header p {
  color: #6b7280;
  font-size: 0.95rem;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-profile {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial-profile img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.testimonial-profile h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.testimonial-profile p {
  font-size: 0.875rem;
  color: #6b7280;
  border: 1px solid #d1d5db;
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  display: inline-block;
}

.testimonial-quote {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-quote p {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.nav-btn {
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  color: #6b7280;
}

.nav-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #1f2937;
}

.dots-container {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1f2937;
  cursor: pointer;
  transition: all 0.3s;
}

.dot:hover {
  background-color: #ffffff;
}

.dot.active {
  background-color: #000000;
  transform: scale(1.25);
}

/* Form Section */
.form-section {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-section h2 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 2rem;
  line-height: 1.3;
}

#consultationForm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

input,
textarea,
select {
  border: none;
  border-bottom: 1px solid #d1d5db;
  padding: 0.75rem 0;
  font-size: 1rem;
  background: transparent;
  transition: border-color 0.2s;
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-bottom-color: #000000;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

textarea {
  resize: none;
  font-family: inherit;
}

.phone-input {
  display: flex;
  gap: 1rem;
}

.phone-input select {
  flex-shrink: 0;
  width: 80px;
}

.phone-input input {
  flex: 1;
}

.submit-btn {
  background: #f7931e;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 4px 8px rgba(240, 170, 66, 0.3);
}

.submit-btn:hover {
  background: #ee8814;
  box-shadow: 0 6px 12px rgba(241, 157, 30, 0.4);
}

.form-footer {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

.form-footer p {
  margin-bottom: 0.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .popup-content {
    flex-direction: column;
    min-height: auto;
  }

  .testimonials-section,
  .form-section {
    padding: 2rem;
  }

  .testimonials-header h2 {
    font-size: 1.5rem;
  }

  .form-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .popup-container {
    margin: 1rem;
    max-height: 95vh;
    overflow-y: auto;
  }

  .testimonials-section,
  .form-section {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-quote p {
    font-size: 0.875rem;
  }

  .container h1 {
    font-size: 2rem;
  }

  .container > p {
    font-size: 1.125rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .testimonials-section {
    display: none;
  }
  .close-btn {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
  }
  .submit-btn {
    background: #005f99;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
  }
}

/* -----View success story popup------- */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.9); */
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.slider {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 85vh;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.overlay.active .slider {
  transform: scale(1);
}

.closeButton {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(66, 66, 66, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgb(26, 26, 26);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}

.closeButton:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.content {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.leftSection {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background: #1a1a1a;
}

.rightSection {
  flex: 1;
  position: relative;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.caseStudyLabel {
  color: #ffa03e;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.1;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}
.infoSections {
  margin-top: 20px;
}

.infoRow {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}

.infoColumn {
  flex: 1;
}

.infoLabel {
  color: #ffa03e;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.infoContent {
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.projectImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navigation {
  position: absolute;
  top: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(8, 8, 8, 0.2);
  color: rgb(26, 25, 25);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navigation:hover {
  background: rgba(255, 255, 255, 0.2);
}

.prevButton {
  left: 1px;
}

.nextButton {
  right: 1px;
}

.indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #ffa03e;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .slider {
    width: 95%;
    height: 90vh;
  }
  .content {
    flex-direction: column;
  }

  .leftSection {
    padding: 30px 25px;
  }

  .title {
    font-size: 32px;
  }

  .description {
    font-size: 14px;
  }

  .infoContent {
    font-size: 14px;
  }

  .projectImage {
    width: 250px;
    height: 300px;
  }

  .navigation {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .prevButton {
    left: -20px;
  }

  .nextButton {
    right: -20px;
  }
}
@media (max-width: 480px) {
  .slider {
    height: 100vh;
    overflow: scroll;
  }
  .closeButton {
    color: rgb(255, 255, 255);
  }
  .projectImage {
    display: none;
  }
}
