
/* Hero Section */
.hero-branding {
    background: url('../img/service-branding/bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    margin-top: 100px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #2a2c39;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text .description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #2a2c39;
}

.hero-visual img {
    width: 120%;
    height: auto;
    border-radius: 15px;
}

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

.trust-note i {
    color: #28a745;
}

/* Responsive  */
@media (max-width: 768px) {
    .hero-text h1 {
    font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        order: 1; 
    }

    .hero-text {
        order: 2; 
    }

    .hero-visual img {
        margin: 0 auto;
        width: 100%;
        height: auto;
    }
    .trust-note {
        display:flex;
        justify-content: center;
        font-size: 1rem;
    }
}

/* 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;
}

.circle-small-left {
  position: absolute;
  top: 50%;
  left: 80px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ef6603;
  opacity: 0.1;
  border: 4px solid #ef6603;
  z-index: 0;
}

/* Right Circle */
.circle-right {
  position: absolute;
  bottom: 20%;
  right: 170px;
  width: 70px;
  height: 70px;
  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:0 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;
  text-align:left;

}

/*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;
  text-align:left;
}
.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(4deg) !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;
}

.feature-points-fst{
    color:white;
    text-align:left
}

.feature-points{
    text-align:left;
}
/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #2a2c39;
    position: relative;
    overflow: hidden;
}

.benefit-section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.benefits-container {
    position: relative;
    z-index: 10;
}

.benefits-cards-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 60px;
    flex-wrap: wrap;
    margin-top:150px;
}

.benefit-card {
    width: 330px;
    height: auto;
    border-radius: 0px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.benefit-card.white-card {
    background: white;
    color: #2a2c39;
}
.benefit-card.orange-card {
    background: #ef6603;
    color: white;
    margin-top: -50px;
    margin-bottom: 50px;
}
.benefit-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.benefit-card:nth-child(2) h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color:white
}
.benefit-card p {
    line-height: 1.6;
    font-size: 0.95rem;
}
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 19px;
    height: 19px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .benefit-card.orange-card {
        margin-top: 0px;
        margin-bottom:0px;
    }
    .benefit-card {
        width: 280px;
        height: 350px;
    }
            
    .benefit-section-title {
        font-size: 2rem;
        margin-bottom: 60px;
    }

    .orange-line {
        display: none;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .benefits-cards-row {
        gap: 40px;
    }
    .benefit-card {
        width: 250px;
        height: 380px;
    }
}
/* Examples Section */
.examples-section {
  padding: 10px;
  background-color: white;
  color: #2a2c39;
}

.examples-section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight:700;
  color: #2a2c39;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #2a2c39;
  margin: 0 auto 60px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom:80px;
}
.examples-grid > div:nth-child(1) {
  border-left: none;
  border-right: 2px solid #ef6603;
  border-bottom: 2px solid #ef6603;
    background-color: rgba(239, 102, 3, 0.05);

}
.examples-grid > div:nth-child(2) {
  border-right: 2px solid #ef6603;
  border-bottom: 2px solid #ef6603;
}
.examples-grid > div:nth-child(3) {
  border-bottom: 2px solid #ef6603;
  background-color: rgba(239, 102, 3, 0.05);

}
.examples-grid > div:nth-child(4) {
  border-right: 2px solid #ef6603;
}
.examples-grid > div:nth-child(5) {
  border-right: 2px solid #ef6603;
    background-color: rgba(239, 102, 3, 0.05);

}

.example-card {
  padding: 20px;
  
  background-color: white;
  transition: background-color 0.3s;
}

.example-icon {
  font-size: 2.8rem;
  color: #ef6603;
  margin-bottom: 20px;
}
.example-icon-img {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  filter: invert(52%) sepia(99%) saturate(3867%) hue-rotate(6deg) brightness(98%) contrast(103%);

}
.example-icon-img img {
  width: 80%;
  height: 60%;
  object-fit: contain;

}
.example-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #2a2c39;
  font-weight: 700;
}

.example-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}


/* ----Responsive-----*/

@media (max-width: 1024px) {
  .examples-section-title {
    font-size: 2.4rem;
  }

  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
  }

  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .examples-grid > div {
    border-right: 2px solid #ef6603;
    border-bottom: 2px solid #ef6603;
    background-color: white;
  }

  .examples-grid > div:nth-child(2),
  .examples-grid > div:nth-child(4) {
    border-right: 2px solid #ef6603;
    border-bottom: 2px solid #ef6603;
    background-color: white;
  }

  .examples-grid > div:nth-child(1),
  .examples-grid > div:nth-child(3),
  .examples-grid > div:nth-child(5) {
    border-right: 2px solid #ef6603;
    border-bottom: 2px solid #ef6603;
    background-color: white;
  }
}

@media (max-width: 768px) {
  .examples-section {
    padding: 40px 20px;
  }

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

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .examples-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .examples-grid > div {
    border-right: none;
    border-bottom: 2px solid #ef6603;
    background-color: white;
  }

  .examples-grid > div:last-child {
    border-bottom: none;
  }

  .examples-grid > div:nth-child(odd) {
    background-color: rgba(239, 102, 3, 0.05);
  }
}

/* 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;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.17);
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover {
  display: inline-block;
  background-color: #2a2c39;
  color:#fff

}
.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: 2rem;
    }
    .commerce-content,
    .tech-content {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none;
    }
.phone-mockup {
        width: 250px;
        height: 500px;
    }
    .phone-screen {
        width: 210px;
        height: 420px;
    }
}