.services-section {
    padding: 2rem 0;
  }

  .why-branding-section {
    padding: 2rem 0;
  }

  .process-section {
    padding: 2rem 0;
  }
  
  
  .portfolio-showcase {
    padding: 2rem 0;
  }

  .pricing-section {
    padding: 2rem 0;
    background-color: var(--background);
  }
  
  


/* Portfoliio */

  .portfolio-showcase {
    padding: 2rem 0;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .portfolio-image {
    height: 250px;
  }
  
  .portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
    color: white;
  }
  
  .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
  }
  
  .portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
  }
  
  .portfolio-overlay-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .portfolio-overlay-content p {
    margin-bottom: 20px;
  }
  
  .portfolio-overlay-content .btn {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    transition: var(--transition);
  }
  
  .portfolio-overlay-content .btn:hover {
    background-color: white;
    color: var(--primary-color);
  }




/* Pricing Section */
.pricing-section {
    padding: 2rem 0;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
  }
  
  .pricing-card {
    background-color: rgb(27, 27, 27);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    height: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
  }
  
  .pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: #0ea5e9;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom-left-radius: 10px;
  }
  
  .pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  
  .pricing-header h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  
  .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .currency {
    font-size: 1.5rem;
    margin-right: 5px;
    align-self: flex-start;
  }
  
  .period {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 400;
    margin-left: 5px;
    align-self: flex-end;
  }
  
  .pricing-features {
    padding: 30px;
  }
  
  .pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
  }
  
  .pricing-features li:last-child {
    border-bottom: none;
  }
  
  .pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .pricing-footer {
    padding: 0 30px 30px;
  }
  
  .custom-pricing {
    margin-top: 3rem;
    /* background-color: blue; */
  }



/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: var(--card);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.faq-toggle {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.faq-toggle.active {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

.faq-answer p {
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 4rem 0;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 3rem;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  z-index: 2;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  width: 2px;
  height: calc(100% - 30px);
  background-color: var(--border-color);
  z-index: 1;
}

.process-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.process-content p {
  color: var(--muted-color);
  line-height: 1.6;
}

.brand-card .overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.brand-card:hover {
  background-color: var(--muted);
}

.brand-card .card-title {
  color: var(--primary);
}

