/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Variables */
:root {
  --primary: #4361ee;
  --primary-dark: #3a56d4;
  --primary-v2: #4f46e5;
  --primary-dark-v2: #4338ca;
  --text: #2b2d42;
  --text-v2: #1f2937;
  --text-light: #8d99ae;
  --text-light-v2: #6b7280;
  --light-bg: #f8f9fa;
  --light-bg-v2: #f9fafb;
  --white: #ffffff;
  --white-v2: #ffffff;
  --gray-v2: #e5e7eb;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-v2: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-v2: 12px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-v2: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --dark-bg: #3d3343;
  --dark-accent: #6d5b7c;
  --accent: #ff6f00;
  --accent-dark: #e65100;
}

/* Base Styles */
body {
  background: var(--light-bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* FAQ Section Styles (Added from CSS 1) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.faq-section {
  margin-top: 60px;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
}

.faq-title {
  font-size: 2rem;
  color: #3d3343;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #4f46e5;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #c7d2fe;
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background-color: #6d5b7c4f;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #ff6f005e;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: white;
}

.faq-answer p {
  padding: 20px;
  color: #475569;
  line-height: 1.6;
}

/* Active State */
.faq-item.active .faq-question {
  background-color: #ff6f00;
  color: white;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* CEO Card Styles from CSS 1 */
.ceo-card {
  width: 100%;
  max-width: 1200px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  margin: 20px auto;
}

.ceo-image-section {
  position: relative;
  width: 100%;
  height: 300px;
  order: 1;
}

.ceo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ceo-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: white;
  padding: 20px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ceo-details h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.ceo-details p {
  font-size: 1.1rem;
  color: #93c5fd;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.vision-section {
  padding: 30px;
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vision-section h2 {
  font-size: 2rem;
  color: #3d3343;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.vision-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: #4f46e5;
  border-radius: 2px;
}

.vision-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 30px;
}

.team-button {
  align-self: flex-start;
  padding: 14px 28px;
  background-color: #ff6f00;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(79, 70, 229, 0.25);
  position: relative;
  overflow: hidden;
}

.team-button:hover {
  background-color: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(79, 70, 229, 0.3);
}

.team-button:active {
  transform: translateY(1px);
}

.team-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.team-button:focus:not(:active)::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Rest of CSS 2 content */
.container-v2 {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header and navigation styles */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--dark-accent);
  color: var(--white);
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

nav .logo h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 768px) {
        .logo img {
width: 50px;
}
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
}

.menu-toggle .bar {
  height: 5px;
  width: 100%;
  background-color: var(--white);
  border-radius: 5px;
}

/* Navigation Links */
.nav-list {
  display: flex;
  list-style: none;
  justify-content: space-between;
  width: 70%;
}

.nav-list li {
  margin: 0 15px;
}

.nav-list li a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-list li a:hover {
  color: var(--accent);
}

/* Banner */
.banner {
  background-color: var(--dark-accent);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  background-image: url('https://www.wachsyn.com/images/desktop-banner.webp');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  position: relative;
}
.banner img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Adjusts how the image fills space */
  display: block;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.banner h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.banner p {
  font-size: 18px;
  margin-bottom: 20px;
}

.banner button {
  font-size: 18px;
  background-color: var(--accent);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.banner button:hover {
  background-color: var(--accent-dark);
}

/* About Us Section */
.about-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 20px;
  flex-wrap: wrap;
  background: var(--white);
}

.about-content {
  flex: 1 1 45%;
  margin-right: 20px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.about-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.team-image {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1 1 45%;
}

.team-image img {
  max-width: 100%;
  height: auto;
  transition: var(--transition);
  border-radius: 10px;
}

.team-image:hover img {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Services Tabs */
.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  overflow-x: auto;
  background: #574961;
  border-bottom: 2px solid var(--dark-accent);
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
}

.nav-item {
  flex: 1;
}

.nav-link {
  display: block;
  padding: 12px;
  text-align: center;
  background: var(--dark-accent);
  cursor: pointer;
  border: none;
  color: var(--white);
  font-weight: 500;
  transition: background 0.3s;
}

.nav-link.active {
  background-color: var(--accent);
  color: var(--white);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

.st_2_con {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.st_2_con_img,
.st_2_con_in {
  flex: 1 1 48%;
  min-width: 300px;
}

.st_2_con_img img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  object-fit: cover;
}

.st_2_con_in h2 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 10px;
}

.st_2_con_in p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.5;
}

.btn {
  background-color: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 12px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: var(--accent-dark);
}

/* Case Studies Section - Original */
.case-studies {
  padding: 5rem 1rem;
  background: var(--light-bg);
}

.section-header h2 {
  text-align: center;
  font-size: 2.25rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Case Studies Grid - Original */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

/* Case Study Card - Original */
.case-study-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.client-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e9ecef;
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.results-badges {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.results-badges span {
  background: #edf2ff;
  color: var(--primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
  margin: 0 auto 1.5rem;
  position: relative;
  flex: 1;
}

.testimonial::before,
.testimonial::after {
  content: '"';
  color: #dee2e6;
  font-size: 1.5rem;
}

.client-info {
  margin-bottom: 1.5rem;
}

.client-info strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.client-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-top: auto;
}

.read-more:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.read-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(3px);
}

/* Case Studies Section - V2 */
.case-studies-v2 {
  padding: 4rem 1rem;
  background: var(--light-bg-v2);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.section-header-v2 {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-v2 {
  font-size: 28px;
  color: #3d3343;
  margin-bottom: 0.75rem;
}

.section-subtitle-v2 {
  color: #6d5b7c;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* Case Studies Grid - V2 */
.case-studies-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Case Study Card - V2 */
.case-study-card-v2 {
  background: var(--white-v2);
  border-radius: var(--radius-v2);
  overflow: hidden;
  box-shadow: var(--shadow-v2);
  transition: var(--transition-v2);
  display: flex;
  flex-direction: column;
}

.case-study-card-v2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-image-v2 {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.card-image-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-v2);
}

.image-overlay-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.case-study-card-v2:hover .card-image-v2 img {
  transform: scale(1.05);
}

.card-content-v2 {
  padding: 1.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-meta-v2 {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light-v2);
}

.category-v2, .duration-v2 {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background: var(--gray-v2);
}

.card-title-v2 {
  font-size: 1.25rem;
  color: #3d3343;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-desc-v2 {
  color: #6d5b7c;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-results-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-v2);
  border-bottom: 1px solid var(--gray-v2);
}

.result-item-v2 {
  text-align: center;
}

.result-value-v2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6f00;
  margin-bottom: 0.25rem;
}

.result-label-v2 {
  font-size: 0.85rem;
  color: var(--text-light-v2);
}

.card-cta-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ff6f00;
  color: var(--white-v2);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-v2);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-v2);
  margin-top: auto;
  width: 100%;
}

.card-cta-v2:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.card-cta-v2 i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.card-cta-v2:hover i {
  transform: translateX(3px);
}

/* Testimonials Section */
.testimonials {
  background: var(--dark-bg);
  padding: 4rem 1rem;
  color: var(--white);
  overflow: hidden;
}

.testimonials .section-header h2 {
  color: var(--white);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.testimonials .section-subtitle {
  color: #d1d1d1;
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonials-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 0 2rem;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1rem;
  padding-bottom: 1rem;
}

.testimonial-card {
  min-width: 85vw;
  scroll-snap-align: center;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.testimonial-content {
  background: var(--dark-accent);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--accent);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating {
  color: #ffc107;
  font-size: 1.3rem;
  text-align: center;
  margin: 0.5rem 0;
}

blockquote {
  margin: 1rem 0;
  padding: 0 0.5rem;
  position: relative;
  font-style: italic;
  color: #e0e0e0;
  line-height: 1.5;
  font-size: 0.95rem;
}

blockquote::before,
blockquote::after {
  content: '"';
  color: var(--accent);
  font-size: 1.5em;
  position: absolute;
}

blockquote::before {
  left: -5px;
  top: -5px;
}

blockquote::after {
  right: -5px;
  bottom: -15px;
}

.testimonial-info {
  text-align: center;
  margin-top: 1rem;
}

.testimonial-info h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  color: #bbb;
  font-size: 0.85rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.control-prev,
.control-next {
  background: var(--accent);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-prev:hover,
.control-next:hover {
  background: var(--accent-dark);
  transform: scale(1.1);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark-accent);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* Card Carousel Styles */
.card-carousel {
  width: 80%;
  margin: 3rem auto;
}

.card-carousel .my-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  text-align: center;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-right: 20px;
}

.card-carousel .my-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-carousel .card-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.card-carousel .my-card h3 {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card-carousel .my-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

/* Responsive Adjustments for FAQ Section (Added from CSS 1) */
@media (max-width: 768px) {
  .faq-section {
    padding: 25px;
    margin-top: 40px;
  }
  
  .faq-question {
    padding: 15px;
    font-size: 1rem;
  }
}

/* Desktop Layout for CEO Card */
@media (min-width: 768px) {
  .ceo-card {
    flex-direction: row;
    min-height: 400px;
  }
  
  .ceo-image-section {
    width: 45%;
    height: auto;
    order: 2;
  }
  
  .vision-section {
    width: 55%;
    padding: 40px;
    order: 1;
  }
  
  .ceo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  }
  
  .ceo-image-section:hover .ceo-image {
    transform: scale(1.05);
  }
}

/* Tablet Layout for CEO Card */
@media (max-width: 767px) {
  .ceo-image-section {
    height: 250px;
  }
  
  .vision-section {
    padding: 25px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Case Studies Mobile - Original */
  .case-studies {
    padding: 3rem 1rem;
  }
  
  .case-studies-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    margin: 0 -1rem;
    scrollbar-width: none;
  }
  
  .case-studies-grid::-webkit-scrollbar {
    display: none;
  }
  
  .case-study-card {
    min-width: 85%;
    scroll-snap-align: start;
    margin: 0 1rem;
  }

  /* Case Studies Mobile - V2 */
  .case-studies-v2 {
    padding: 2rem 1rem;
    overflow: hidden;
  }
  
  .case-studies-grid-v2 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem calc((100% - min(85vw, 400px)) / 2);
    margin: 0;
    scrollbar-width: none;
    gap: 1.5rem;
  }
  
  .case-studies-grid-v2::-webkit-scrollbar {
    display: none;
  }
  
  .case-study-card-v2 {
    min-width: min(85vw, 400px);
    scroll-snap-align: center;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .case-study-card-v2:not(:last-child) {
    margin-right: 1.5rem;
  }

  .case-studies-grid-v2::before,
  .case-studies-grid-v2::after {
    content: '';
    min-width: 1rem;
  }

  /* Banner Mobile */
  .banner {
    background-image: url('https://www.wachsyn.com/images/mobile-banner.webp');
    padding: 40px 20px;
  }
  @media (max-width: 768px) {
  .banner {
    height: 50vh;
  }
  }

  .banner img {
    object-fit: cover; /* or 'contain' if you want the full image visible */
    height: auto;
  }
}

  .banner h2 {
    font-size: 28px;
  }

  .banner p,
  .about-content p,
  .st_2_con_in p {
    font-size: 15px;
  }

  .banner button {
    font-size: 16px;
    padding: 1rem 1.5rem;
  }

  .about-us,
  .st_2_con {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .about-content,
  .st_2_con_in {
    margin-right: 0;
    min-width: 100%;
  }

  .team-image img,
  .st_2_con_img img {
    width: 100%;
    height: auto;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--dark-accent);
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px 0;
  }

  .nav-list.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-list li {
    margin: 15px 0;
    text-align: center;
  }

  .nav-list li a {
    font-size: 20px;
  }

  .nav-tabs {
    flex-direction: column;
  }

  .nav-item {
    flex: 1 0 100%;
  }

  .nav-link {
    text-align: left;
    padding-left: 20px;
  }

  .st_2_con_in h2 {
    font-size: 20px;
  }

  .card-carousel {
    width: 95%;
  }

  .card-carousel .my-card {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    margin-right: 0;
  }

  /* Testimonials Mobile */
  .testimonial-card {
    min-width: 85vw;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 1023px) {
  .case-studies-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    min-width: 60vw;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .card-carousel .my-card {
    margin-right: 30px;
  }

  .card-carousel .slick-track {
    display: flex;
    justify-content: space-between;
  }

  .testimonial-card {
    min-width: 400px;
  }
  
  .testimonials-track {
    gap: 2rem;
  }
  
  .testimonial-content {
    padding: 2rem;
  }
  
  .testimonial-avatar {
    width: 80px;
    height: 80px;
  }
  
  .rating {
    font-size: 1.5rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}