/* Hero Section */
.hero {
    color: white;
    margin-top: 110px;
    position: relative;
    overflow: hidden;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color:#2a2c39;
}
.hero-text .description {
    font-size: 1.3rem;
    opacity: 0.9;
    color:#2a2c39;
}
.hero-visual {
    position: relative;
    z-index: 2;
}
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #333;
    border-radius: 30px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.phone-screen {
    width: 260px;
    height: 520px;
    background: #000;
    border-radius: 20px;
    margin: 40px auto;
    position: relative;
    overflow: hidden;
}
.sms-bubble {
    background: #007AFF;
    color: white;
    padding: 12px 16px;
    border-radius: 18px;
    margin: 20px;
    max-width: 200px;
    animation: slideIn 2s ease-in-out infinite;
}

.no-credit-card {
  font-size: 0.9rem;
  margin-top:30px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.no-credit-card i {
  color: #28a745;
}


.cta-button {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
}
.cta-button{
  padding: 15px 25px;
  background-color: #ef6603;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(26, 16, 8, 0.3);
  z-index:2;
}
.cta-button:hover {
  background-color: #2a2c39;
  color: #fff;
}
.sms-hero-image {
  position: relative;
  max-width: 100%;
  text-align: center;
}

.sms-hero-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


/*---responsive---*/
@media (min-width: 992px) {
  .sms-hero-image img {
    width: 480px;
  }
}
/* Tablet (iPad) */
@media (max-width: 991px) {
  .hero {
    margin-top: 90px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-text .description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .cta-button {
    font-size: 1rem;
    padding: 12px 24px;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .sms-hero-image img {
    width: 400px;
  }
}

/* Mobile Devices */
@media (max-width: 767px) {
  .hero {
    margin-top: 90px;
    text-align: center;
  }
  .hero p {
    max-width: 100%;
}
  .hero-content {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 30px;
  }

  .hero-text {
    order: 2;
  }

  .hero-text h1 {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .hero-text .description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 12px 22px;
  }

  .no-credit-card {
    justify-content: center;
    font-size: 0.85rem;
  }

  .sms-hero-image img {
    width: 90%;
    max-width: 320px;
  }
}


/* Features Section */
.features {
  position: relative;
    overflow: hidden;

  z-index: 1;
}
/* Left Circle */
.circle-left {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #ef6603;
  opacity: 0.1;
  border: 4px solid #ef6603;
  z-index: 0;
}

/* Right Circle */
.circle-right {
  position: absolute;
  bottom: 15%;
  right: 100px;
  width: 50px;
  height: 50px;
  background: #ef6603;
  border-radius: 50%;
  border: 4px solid #ef6603;
  opacity: 0.15;
  z-index: 0;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #2a2c39;
}
.cards-wrapper {
  padding: 4rem;
}


.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.17);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
}

/* Top-left curved border */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 4px solid #ef6603;
  border-left: 4px solid #ef6603;
  border-top-left-radius: 16px;
  z-index: 2;
}

/* Bottom-right curved border */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-bottom: 4px solid #ef6603;
  border-right: 4px solid #ef6603;
  border-bottom-right-radius: 16px;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #ef6603;
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #2a2c39;
  font-weight: 900;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #2a2c39;
  line-height: 1.6;
}

/*first card style*/

.first-card .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: white;
  color: #ef6603;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.first-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 1rem;
}

.first-card  p {
  color: #ffffff;
  line-height: 1.6;
}
.first-card {
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  background: #ef6603;
  transform: rotate(-3deg) !important;
  transition: all 0.3s ease;
}
/* Top-left curved border */
.first-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 4px solid white;
  border-left: 4px solid white;
  border-top-left-radius: 16px;
  z-index: 2;
}
/* bottom right  curved border */

.first-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-bottom: 4px solid white;
  border-right: 4px solid white;
  border-bottom-right-radius: 16px;
  z-index: 2;
}

/* Commerce Section */
.commerce-section-wrapper {
  background: linear-gradient(145deg, #2a2c39, #1f2029);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.commerce-section h2 {
  color: #fff;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 700;
}

.commerce-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 0;
  margin: 0;
}

.commerce-list li {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #f1f1f1;
  transition: all 0.3s ease;
  min-height: 160px;
}

.commerce-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.commerce-list strong {
  color:rgb(248, 228, 214);
  font-size: 25px;
  display: block;
  margin-bottom: 14px;
  font-weight: 700;
}

/* DOTS FOR DECORATION */
.dot {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.7;
}

.orange-dot {
  top: -35px;
  left: 0%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: #ef6603;
}
.orange-dot-2 {
  top: 170px;
  left: 30%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: #ef6603;
}
.white-dot {
  top: 200px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: white;
}

.white-dot-2 {
  top: 650px;
  right: 40px;
  width: 300px;
  height: 300px;
  background: white;
}
.custom-shapes img{
  position:absolute;
  top:500px;
  left:-20%;
  width:1600px;
}

/* RESPONSIVE TYPOGRAPHY */
@media (max-width: 768px) {
  .commerce-section-wrapper {
  border-radius: 0px;

  }

  .commerce-section h2 {
    font-size: 1.5rem;
    width: 100%;
    z-index:9;
  }
  .commerce-list li {
    padding: 16px;
  }
  .white-dot-2 {
  top: 80%;
  right: -20px;
  width: 300px;
  height: 300px;
  background: white;
}
.custom-shapes img{
  display:none;
}
}

/* Technology Section */
.technology-section {
  background: #ffffff;
  padding: 80px 0;
  color: #2a2c39;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2a2c39;
}

.section-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #444444;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #2a2c39;
  position: relative;
  padding-left: 24px;
}

.tech-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ef6603;
  font-weight: bold;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.stat-card {
  background: #fff;
  border: 2px solid #2a2c39;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.17);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card:nth-child(2){
    transform: rotate(-2deg) !important;
}
.stat-card:nth-child(3){
    transform: rotate(3deg) ;
}

.stat-card:hover {
  transform: translateY(-5px)!important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.17);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ef6603;
}

.stat-label {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #2a2c39;
  opacity: 0.8;
}

/* CTA Section */
.final-cta {
  padding: 80px 0;
  background: rgba(239, 101, 3, 0.05);
  color: #2a2c39;
  text-align: center;
}

.cta-title {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-title span {
  color: #ef6603;
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #444444;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 40px 0;
  padding: 0;
}

.features-list li {
  border: 1px solid rgba(42, 44, 57, 0.22);
  background-color: transparent;
  padding: 20px;
  list-style: none;
  font-size: 1rem;
  color: #2a2c39;
  transition:all 0.3s ease;
  position: relative;
}
.features-list li:nth-child(1) {
  border:1px solid #2a2c39;
  background-color: #ef6603;
  padding: 20px;
  list-style: none;
  font-size: 1rem;
  color: white;
  transition:all 0.3s ease;
  position: relative;
}
.features-list li:nth-child(1):hover {
    border:1px solid  #2a2c39;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.17);
}
.features-list li:nth-child(1)::before {
  content: "✓";
  color: white;
  font-weight: bold;
  margin-right: 8px;
}
.features-list li::before {
  content: "✓";
  color: #ef6603;
  font-weight: bold;
  margin-right: 8px;
}

.features-list li:hover {
  border:1px solid  #ef6603;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.17);

}

.cta-button {
  display: inline-block;
  background-color: #ef6603;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-note {
  margin-top: 30px;
  font-size: 1rem;
  color: #444444;
}

/* Responsive */
@media (max-width: 768px) {
    .features-list {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      margin: 40px 0;
      padding: 0;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .commerce-content,
    .tech-content {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
.phone-mockup {
        width: 250px;
        height: 500px;
    }
    .phone-screen {
        width: 210px;
        height: 420px;
    }
}