@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

@tailwind base;
@tailwind components;
@tailwind utilities;

/* CSS Styles */
.services-section {
  padding: 40px 0;
  background-color: #f9fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 4px 6px -2px rgba(0, 0, 0, 0.025);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
}

.service-card p {
  color: #718096;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  color: #667eea;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #5a67d8;
}

.service-link::after {
  content: "→";
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-link:hover::after {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* CSS Styles */
.products-section {
  padding: 80px 0;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.products-scroller {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.products-container {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.products-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.product-card {
  flex: 0 0 calc(33.333% - 17px);
  min-width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #667eea;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.product-badge[data-badge="New"] {
  background: #48bb78;
}

.product-badge[data-badge="Best Seller"] {
  background: #f56565;
}

.product-badge[data-badge="Sale"] {
  background: #ed8936;
}

.product-badge[data-badge="Coming Soon"] {
  background: #9f7aea;
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.product-description {
  color: #718096;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  min-height: 40px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
}

.old-price {
  text-decoration: line-through;
  color: #a0aec0;
  font-size: 0.9rem;
  margin-right: 8px;
}

.product-button {
  width: 100%;
  padding: 10px;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-button:hover {
  background: #5a67d8;
}

.product-button:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
}

.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.scroll-button:hover {
  opacity: 1;
}

.scroll-button svg {
  width: 24px;
  height: 24px;
  color: #4a5568;
}

.scroll-button.left {
  left: 10px;
}

.scroll-button.right {
  right: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .product-card {
    flex: 0 0 calc(50% - 13px);
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 calc(100% - 10px);
  }

  .scroll-button {
    display: none;
  }

  .section-title {
    font-size: 2rem;
  }
}
.product-card {
  padding: 5px; /* Increases touchable area */
}
.product-button {
  min-height: 44px; /* Apple's recommended minimum tap size */
}
.products-container {
  scroll-snap-type: x mandatory;
}
.product-card {
  scroll-snap-align: start;
}

/* WHO WE ARE */
/* CSS Styles */
.about-section {
  padding:0 0 100px 0;
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content {
  position: relative;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  position: relative;
  display: inline-block;
}

.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 3px;
}

.about-timeline {
  position: relative;
  padding-left: 30px;
  margin-bottom: 40px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  height: calc(100% - 20px);
  width: 2px;
  background: #e2e8f0;
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -30px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #6366f1;
  border: 3px solid white;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.timeline-content p {
  color: #64748b;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .main-image {
  transform: scale(1.03);
}

.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 15px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.image-badge svg {
  width: 18px;
  height: 18px;
  color: #10b981;
}

.image-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1e293b;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    max-width: 80%;
    margin: 0 auto 40px;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding:0 0 60px 0;
  }

  .about-image {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* fOOTER */

.service-icon{
  display: none;
}

.service-card h3{
color: #667eea ;
}


@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2.25rem; /* Larger on mobile */
    font-weight: 800;
    color: #4c51bf; /* Slightly deeper Indigo */
  }

  .service-card h3 {
    font-size: 1.6rem; /* Bigger heading on mobile */
    font-weight: 700;
    color: #4c51bf;
  }

  .service-card {
    padding: 30px 25px; /* Slightly tighter, still comfortable */
  }

  .section-subtitle {
    font-size: 1rem;
    color: #718096;
  }
}
.submit-btn {
            background-color: #b74380 !important;
            color: white !important;
            border: none;
            padding: 12px 30px;
            font-size: 1rem;
            font-weight: 600;
            /* border-radius: 50px; */
            cursor: pointer;
            transition: background-color 0.3s;
            display: block;
            margin:0 30px ;
      }
.submit-btn:hover {
    background-color: #6a0dad !important;
}
.submit-text{
        color: #b74380 !important;

}