:root {
      --primary: #181818;       /* Deep black */
      --primary-light: #2a2a2a; /* Slightly lighter black */
      --secondary: #f5f5f5; 
      --accent-light: #33363a;     /* Light gray */
      --accent: #3a86ff;       /* Vibrant blue */
      --accent-dark: #2667cc;  /* Darker blue */
      --text: #333333;         /* Dark gray for text */
      --text-light: #666666;    /* Lighter gray */
      --white: #ffffff;        /* Pure white */
      --light-bg: #f9f9f9;     /* Very light background */
    }
    
    
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      background-color: var(--white);
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      color: var(--primary);
    }
/*start new */
  /* Loading Bar */
     /* Loading Bar */
    .loading-bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--accent);
      z-index: 9999;
      transition: width 0.1s linear; /* Changed to linear for smoother progress */
    }
    
    .loading-bar.complete {
      opacity: 0;
      transition: opacity 0.5s ease 0.5s;
    }
    
    /* Hero Section */
    .hero,.all-other-hero {
      padding: 120px 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(rgba(235, 235, 235, 0.6), rgba(235, 235, 235, 0.6)), 
                  url('../images/hero.png') no-repeat center center/cover;
      color: var(--white);
    }
    
    .hero-title {
      font-size: 3rem;
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
      font-weight: 700;
    }
    
    .hero-subtitle {
      font-size: 1.25rem;
      margin-bottom: 2.5rem;
      max-width: 600px;
      opacity: 0.9;
      
    }
    
    
    .hero-cta {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }
    
    .btn-hero {
      padding: 12px 28px;
      font-weight: 600;
      border-radius: 6px;
      transition: all 0.3s ease;
    }
    
    .btn-hero-primary {
      background: var(--accent);
      border-color: var(--accent);
    }
    
    .btn-hero-primary:hover {
      background: var(--accent-dark);
      border-color: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
    }
    
    .btn-hero-outline {
      border-color: var(--text-light);
      color: var(--text-light);
    }
    
    .btn-hero-outline:hover {
      background: var(--white);
      color: var(--text-light);
    }
    
    /* Hero Content Animation */
    .hero-text-container {
      position: relative;
      min-height: 300px;
    }
    
    .hero-text-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      opacity: 0;
      transition: opacity 0.8s ease, transform 0.8s ease;
      transform: translateY(20px);
      pointer-events: none;
    }
    
    .hero-text-content.active {
      opacity: 1;
      transform: translateY(0);
      pointer-events: all;
    }
    
    /* Contact Form in Hero */
    .lead-form {
      background: rgba(255, 255, 255, 0.9);
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    }
    
    .lead-form h3 {
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 20px;
    }
    
    .lead-form p {
      color: var(--text-light);
      margin-bottom: 25px;
    }
    
    .form-label {
      font-weight: 500;
      color: var(--primary);
    }
    
    .form-control, .form-select {
      padding: 12px 15px;
      border-radius: 6px;
      border: 1px solid #ddd;
      margin-bottom: 20px;
    }
    
    .form-control:focus, .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 0.25rem rgba(58, 134, 255, 0.25);
    }
    
    .submit-btn {
      background: var(--accent);
      color: white;
      padding: 12px 30px;
      border: none;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
      width: 100%;
    }
    
    .submit-btn:hover {
      background: var(--accent-dark);
      transform: translateY(-2px);
    }
    
    @media (max-width: 991px) {
      .hero {
        padding: 100px 0;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }
      
      .hero-text-container {
        min-height: 250px;
      }
      
      .lead-form {
        margin-top: 50px;
      }
    }
    
    @media (max-width: 767px) {
      .hero {
        padding: 80px 0;
        text-align: center;
      }
      
      .hero-title {
        font-size: 2rem;
      }
      
      .hero-cta {
        justify-content: center;
      }
      
      .hero-text-container {
        min-height: 300px;
      }
      
      .lead-form {
        padding: 25px 20px;
      }
    }
    /*end new*/
    
    /* .hero-title {
      font-size: 3.5rem;
      line-height: 1.2;
      letter-spacing: -0.03em;
    } */
    
    .section-title {
      font-size: 2.5rem;
      letter-spacing: -0.02em;
      margin-bottom: 2rem;
      position: relative;
    }
    
    .section-title:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -12px;
      width: 60px;
      height: 3px;
      background: var(--accent);
    }
    
    .section-title.center {
      text-align: center;
    }
    
    .section-title.center:after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    /* Navigation */
    .navbar {
      padding: 20px 0;
      transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
      background: var(--white) !important;
      box-shadow: 0 2px 30px rgba(0,0,0,0.08);
      padding: 12px 0;
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: var(--primary) !important;
    }
    
    .nav-link {
      font-weight: 500;
      color: var(--primary) !important;
      padding: 8px 15px !important;
      position: relative;
      transition: all 0.3s ease;
    }
    
    .nav-link:before {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 15px;
      background-color: var(--accent);
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .nav-link:hover:before,
    .nav-link.active:before {
      visibility: visible;
      width: calc(100% - 30px);
    }
    
    .dropdown-menu {
      border: none;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      border-radius: 8px;
      padding: 10px 0;
      margin-top: 10px;
    }
    
    .dropdown-item {
      padding: 8px 20px;
      transition: all 0.2s;
    }
    
    .dropdown-item:hover {
      background: rgba(58, 134, 255, 0.05);
      color: var(--accent);
      padding-left: 25px;
    }
    
    /* Buttons */
    .btn {
      padding: 12px 28px;
      font-weight: 600;
      border-radius: 6px;
      transition: all 0.3s ease;
    }
    
    .btn-primary {
      background: var(--accent);
      border-color: var(--accent);
    }
    
    .btn-primary:hover {
      background: var(--accent-dark);
      border-color: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(58, 134, 255, 0.3);
    }
    
    .btn-outline-primary {
      border-color: var(--accent);
      color: var(--accent);
    }
    
    .btn-outline-primary:hover {
      background: var(--accent);
      color: var(--white);
    }
    
    /* Hero Section */
    /* .hero {
      padding: 140px 0 80px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(rgba(235, 235, 235, 0.2), rgba(235, 235, 235, 0.2)), 
                  url('../images/hero.png') no-repeat center center/cover;
      color: var(--white);
    }
    
    .hero .lead-form {
      background: #ffffffe6;
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    
    .hero .form-control,.form-select {
      padding: 14px 20px;
      margin-bottom: 20px;
      border: 1px solid #e0e0e0;
      border-radius: 6px;
      transition: all 0.3s ease;
    }
    
    .hero .form-control:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
    }
    
    .hero .form-label {
      font-weight: 500;
      margin-bottom: 8px;
      color: var(--primary-light);
    } */
    
    /* About Section - Modern Redesign */
    .about-section {
      padding: 80px 0;
      background: var(--white);
      position: relative;
    }
    
    .about-content {
      position: relative;
      z-index: 1;
    }
    
    .about-stats {
      background: var(--light-bg);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    
    .stat-item {
      margin-bottom: 30px;
      position: relative;
      padding-left: 30px;
    }
    
    .stat-item:before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 15px;
      height: 15px;
      background: var(--accent);
      border-radius: 3px;
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 5px;
    }
    
    .stat-label {
      font-size: 1rem;
      color: var(--text-light);
    }
    
    .about-img-container {
      position: relative;
    }
    
    .about-img-main {
      border-radius: 12px;
      box-shadow: 0 25px 50px rgba(0,0,0,0.1);
      position: relative;
      z-index: 1;
    }
    
    .about-img-shape {
      position: absolute;
      width: 70%;
      height: 70%;
      background: rgba(58, 134, 255, 0.1);
      border-radius: 12px;
      bottom: -20px;
      right: -20px;
      z-index: 0;
    }
    
    /* Services Section */
    .services-section {
      padding: 80px 0;
      background: var(--light-bg);
    }
    
    .service-card {
      background: var(--white);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      transition: all 0.3s ease;
      height: 100%;
      border: 1px solid rgba(0,0,0,0.03);
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }
    
    .service-icon {
      width: 60px;
      height: 60px;
      background: rgba(58, 134, 255, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
    }
    
    .service-icon i {
      font-size: 1.8rem;
      color: var(--accent);
    }
    
    /* Talent Connect Section */
    .talent-section {
      padding: 80px 0;
      background: var(--white);
    }
    
    .talent-card {
      background: var(--light-bg);
      border-radius: 12px;
      padding: 40px;
      height: 100%;
      transition: all 0.3s ease;
    }
    
    .talent-card:hover {
      background: var(--accent-light);
      color: var(--white);
    }
    
    .talent-card:hover h3,
    .talent-card:hover p {
      color: var(--white);
    }
    
    .talent-card h3 {
      margin-bottom: 20px;
      color: var(--primary);
    }
    
    .talent-card p {
      color: var(--text-light);
      margin-bottom: 25px;
    }
    
    /* Earn With Us Section */
    .earn-section {
      padding: 80px 0;
      background: var(--light-bg);
    }
    
    .earn-card {
      background: var(--white);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      transition: all 0.3s ease;
      height: 100%;
    }
    
    .earn-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }
    
    .earn-card .icon {
      width: 50px;
      height: 50px;
      background: rgba(58, 134, 255, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
    }
    
    .earn-card .icon i {
      font-size: 1.5rem;
      color: var(--accent);
    }
    
    /* CTA Section */
    .cta-section {
      padding: 80px 0;
      background: var(--primary);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    
    .cta-section h2 {
      color: var(--white);
    }
    
    .cta-section .section-title:after {
      background: var(--white);
    }
    
    .cta-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.03;
      z-index:-100;
    }
    
    /* Footer */
    .footer {
      background: var(--primary);
      color: var(--white);
      padding: 80px 0 0;
    }
    
    .footer h5 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 25px;
      color: var(--white);
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
      color: var(--white);
      padding-left: 5px;
    }
    
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      color: var(--white);
      margin-right: 10px;
      transition: all 0.3s ease;
    }
    
    .social-links a:hover {
      background: var(--accent);
      transform: translateY(-3px);
    }
    
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 25px 0;
      margin-top: 60px;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 1199px) {
      .hero-title {
        font-size: 3rem;
      }
      
      .section-title {
        font-size: 2.2rem;
      }
    }
    
    @media (max-width: 991px) {
      .hero {
        padding: 120px 0 60px;
      }
      
      .hero-title {
        font-size: 2.5rem;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .service-card,
      .talent-card,
      .earn-card {
        margin-bottom: 30px;
      }
    }
    
    @media (max-width: 767px) {
      .navbar{
        background-color: #fff;
      }
      /* .hero {
        padding: 100px 0 40px;
        text-align: center;
      }
      
      .hero-title {
        font-size: 2.2rem;
      } */
      
      .section-title {
        font-size: 1.8rem;
      }
      
      .section-title.center:after {
        left: 0;
        transform: none;
      }
      
      /* .hero .lead-form {
        margin-top: 40px;
      } */
      
      .about-img-shape {
        display: none;
      }
    }
    
    @media (max-width: 575px) {
      /* .hero-title {
        font-size: 2rem;
      } */
      
      .btn {
        padding: 10px 20px;
      }
    }
    .logo{
        width: 150px;
    }


    .testimonial-modern {
  background: linear-gradient(to bottom, #f9fafc 0%, #ffffff 100%);
}

.testimonial-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(58, 134, 255, 0.1);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.bg-primary-soft {
  background-color: rgba(58, 134, 255, 0.1);
}

.py-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.mt-6 {
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .testimonial-card {
    margin-bottom: 1.5rem;
  }
  
  .py-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .mt-6 {
    margin-top: 3rem;
  }
}


.why-choose-section {
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
}

.feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bg-primary-light {
  background: rgba(58, 134, 255, 0.1);
}

.feature-number {
  position: absolute;
  right: 30px;
  bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.1;
  line-height: 1;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-number {
  opacity: 0.2;
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .feature-card {
    text-align: center;
  }
  
  .feature-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

.bg-cta{
  background-color: rgb(0 40 81);
}

/* Timeline Wrapper */
.timeline {
  position: relative;
  padding: 2rem 0;
  margin: 0;
}

/* Vertical Line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #dee2e6; /* light gray */
  transform: translateX(-50%);
}

/* Each Item */
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
  padding: 1.5rem;
}

/* Left & Right Alignment */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

/* Circle Year Badge */
.timeline-year {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0d6efd; /* Bootstrap primary */
  color: #fff;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 2;
}

/* Content Card */
.timeline-content {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

/* Headings */
.timeline-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #212529;
}

/* Paragraphs */
.timeline-content p {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .timeline::before {
    left: 8px;
  }
  .timeline-item,
  .timeline-item:nth-child(even),
  .timeline-item:nth-child(odd) {
    width: 100%;
    padding-left: 2.5rem;
    text-align: left;
    left: 0;
  }
  .timeline-year {
    left: 0;
    transform: translateY(-50%);
  }
}


/* Process Steps Container */
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  margin-top: 2rem;
}

/* Connecting Line */
.process-steps::before {
  content: "";
  position: absolute;
  top: 35px; /* aligns with number circles */
  left: 0;
  right: 0;
  height: 4px;
  background: #dee2e6;
  z-index: 0;
}

/* Each Step */
.step {
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

/* Step Number Circle */
.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: #0d6efd; /* Bootstrap primary */
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

/* Step Titles */
.step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #212529;
}

/* Step Description */
.step p {
  font-size: 0.95rem;
  color: #6c757d;
  margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .process-steps::before {
    content: none; /* remove line on mobile */
  }
  .step {
    margin-bottom: 2rem;
  }
}


/* Optional utility if you're not using a framework with py-6 */
.py-6 { padding-top: 4rem; padding-bottom: 4rem; }

/* ===== SEO Process (Horizontal on desktop, vertical timeline on mobile) ===== */
.seo-process .process-timeline,.smm-process .process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: nowrap;          /* keep in a single row on desktop */
  margin-top: 1.5rem;
}

/* Horizontal connector line behind the circles */
.seo-process .process-timeline::before,.smm-process .process-timeline::before {
  content: "";
  position: absolute;
  top: 38px;                  /* aligns with center of number circle */
  left: 0;
  right: 0;
  height: 4px;
  background: #e9ecef;        /* light gray (Bootstrap-like) */
  z-index: 0;
}

.seo-process .timeline-step,.smm-process .timeline-step {
  flex: 1 1 0;
  text-align: center;
  position: relative;
  z-index: 1;                 /* above the connector line */
  min-width: 160px;
}

.seo-process .step-number,.smm-process .step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #0d6efd;        /* primary */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  position: relative;
}

/* small outer ring for definition */
.seo-process .step-number::after,.smm-process .step-number::after {
  content: "";
  position: absolute;
  inset: -6px;                /* creates a subtle ring around the circle */
  border-radius: 50%;
  border: 2px solid #e9ecef;
}

/* Titles & text */
.seo-process .step-content h4,.smm-process .step-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.25rem;
}

.seo-process .step-content p,.smm-process .step-content p {
  margin: 0;
  color: #6c757d;
  font-size: 0.95rem;
}

/* ===== Responsive: vertical timeline on tablets & mobile ===== */
@media (max-width: 991.98px) {
  .seo-process .process-timeline,.step-content .process-timeline {
    flex-direction: column;
    gap: 1.75rem;
  }

  /* switch to vertical line at the left */
  .seo-process .process-timeline::before,.step-content .process-timeline::before {
    top: 0;
    bottom: 0;
    left: 28px;               /* aligns with circle center */
    right: auto;
    width: 4px;
    height: auto;
  }

  .seo-process .timeline-step,.step-content .timeline-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
  }

  .seo-process .step-number,.step-content .step-number {
    margin: 0 1rem 0 0;       /* place circle left of text */
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
  }

  .seo-process .step-number::after,.step-content .step-number::after {
    inset: -4px;              /* slightly smaller ring on mobile */
  }
}


/* Common timeline style for consistency */
 /* Filter buttons */
        .filter-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 40px;
        }

        .filter-btn {
            padding: 10px 20px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        /* Client grid */
        .clients-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .client-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .client-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .client-logo-container {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            border-bottom: 1px solid var(--border);
        }

        .client-logo {
            max-width: 160px;
            max-height: 80px;
            object-fit: contain;
        }

        .client-content {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .client-category {
            display: inline-block;
            background: rgba(79, 70, 229, 0.1);
            color: var(--primary);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 5px 12px;
            border-radius: 50px;
            margin-bottom: 15px;
        }

        .client-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .client-description {
            color: var(--text-light);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .client-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .client-link i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .client-link:hover {
            color: var(--primary-dark);
        }

        .client-link:hover i {
            transform: translateX(4px);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .clients-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .filter-container {
                gap: 8px;
            }
            
            .filter-btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            
            .client-logo-container {
                height: 160px;
                padding: 20px;
            }
        }



