/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
  }
  
  a {
    text-decoration: none;
    color: #0066cc;
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Header Styles */
  header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo img {
    height: 40px;
  }
  
  .search-container {
    flex-grow: 1;
    margin: 0 20px;
  }
  
  .search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .search-bar input {
    flex-grow: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
  }
  
  .search-bar button {
    background-color: #fff;
    border: none;
    padding: 0 15px;
    cursor: pointer;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
  }
  
  .become-seller {
    margin-right: 20px;
    padding: 8px 15px;
    border: 1px solid #0066cc;
    border-radius: 20px;
    color: #0066cc;
    font-weight: bold;
  }
  
  .icon-buttons {
    display: flex;
  }
  
  .icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    margin-left: 15px;
    color: #666;
    cursor: pointer;
  }
  
  .icon-btn.cart {
    color: var(--gradient-start);
  }
  
  /* Main Navigation */
  .main-nav {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    padding: 10px 0;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
  }
  
  .breadcrumb a {
    color: #666;
    margin-right: 5px;
  }
  
  .breadcrumb span {
    color: #999;
  }
  
  /* About Hero Section */

  
  .hero-content h1 {
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero-content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  
  /* About Sections */
  .about-section {
    margin-bottom: 60px;
  }

  .about-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
    position: relative;
    padding-bottom: 15px;
  }
  
  .about-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  }
  
  .about-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Stats Section */
  .stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 50px 20px;
    margin-bottom: 60px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
  }
  
  .stat-number {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Mission Section */
  .mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .mission-card {
    background-color: white;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .mission-icon {
    font-size: 40px;
    color: var(--gradient-start);
    margin-bottom: 20px;
  }
  
  .mission-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .mission-card p {
    color: #666;
    line-height: 1.7;
  }
  
  /* Dark Section */
  .dark-section {
    background-color: #333;
    color: white;
    padding: 60px 20px;
    border-radius: 5px;
  }
  
  .dark-section h2 {
    color: white;
  }
  
  .dark-section h2:after {
    background-color: white;
  }
  
  /* Process Steps */
  .process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .process-step {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 200px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  
  .step-number {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 15px;
  }
  
  .step-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--gradient-start);
  }
  
  .process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .process-step p {
    font-size: 14px;
    color: #ccc;
  }
  
  /* Team Section */
  .team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .team-member {
    background-color: white;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  
  .member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #f5f5f5;
  }
  
  .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #333;
  }
  
  .member-title {
    color: var(--gradient-start);
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .member-bio {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Testimonials Section */
.testimonials-section {
    margin-bottom: 60px;
    position: relative;
  }
  
  .testimonials-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  
  .testimonials-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
  }
  
  .testimonial {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .testimonial-content {
    background-color: white;
    border-radius: 5px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.02);
  }
  
  .testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.7;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    padding-left: 20px;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .author-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .rating {
    color: #ffc107;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }
  
  .testimonial-nav {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
  }
  
  .testimonial-nav:hover {
    color: var(--gradient-start);
  }
  
  .testimonial-dots {
    display: flex;
    margin: 0 20px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .dot.active {
    background-color: var(--gradient-start);
  }
  
  /* Locations Section */
  .locations-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .location-map {
    flex: 2;
    min-width: 300px;
  }
  
  .location-map img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .location-list {
    flex: 1;
    min-width: 300px;
  }
  
  .location-item {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  
  .location-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
  }
  
  .location-item h3 i {
    color: var(--gradient-start);
    margin-right: 10px;
  }
  
  .location-item p {
    color: #666;
    margin-bottom: 5px;
  }
  
  /* CTA Section */
  .cta-section {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
  }
  
  .cta-content p {
    font-size: 18px;
    color: #e6e6e6;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1000;
  }
  
  .cta-btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s;
  }
  
  .cta-btn.primary {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
  }
  
  .cta-btn.primary:hover {
    background-color: #a30029;
  }
  
  .cta-btn.secondary {
    background-color: white;
    color:  var(--gradient-start);
    border: 2px solid  var(--gradient-end);
  }
  
  .cta-btn.secondary:hover {
    background-color: #f9f9f9;
  }
  
  /* Footer */
  footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0 20px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
  }
  
  .footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #ccc;
  }
  
  .footer-section ul li a:hover {
    color: #fff;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .social-icons a {
    color: #ccc;
    font-size: 20px;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  .newsletter p {
    margin-bottom: 10px;
    color: #ccc;
  }
  
  .newsletter-form {
    display: flex;
  }
  
  .newsletter-form input {
    flex-grow: 1;
    padding: 8px;
    border: none;
    border-radius: 3px 0 0 3px;
  }
  
  .newsletter-form button {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
  }
  
  .copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .copyright p {
    color: #ccc;
    font-size: 14px;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .about-columns {
      flex-direction: column;
    }
    
    .about-image {
      order: -1;
    }
    
    .locations-container {
      flex-direction: column;
    }
  }
  
  @media (max-width: 768px) {
    .header-container {
      flex-wrap: wrap;
    }
    
    .logo {
      order: 1;
    }
    
    .header-actions {
      order: 2;
    }
    
    .search-container {
      order: 3;
      width: 100%;
      margin: 15px 0 0;
    }
    
    .about-hero {
      padding: 60px 20px;
    }
    
    .hero-content h1 {
      font-size: 28px;
    }
    
    .hero-content p {
      font-size: 16px;
    }
    
    .mission-container,
    .team-container {
      gap: 15px;
    }
    
    .mission-card,
    .team-member {
      min-width: 100%;
    }
    
    .process-step {
      min-width: 45%;
    }
  }
  
  @media (max-width: 576px) {
    .stat-item {
      min-width: 45%;
    }
    
    .process-step {
      min-width: 100%;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
    
    .cta-btn {
      width: 100%;
    }
  }