:root {
  --primary: #DED9F6;
  --primary-dark: #C3B4E5;
  --secondary: #592986;
  --accent: #A083C9;
  --light: #f8fafc;
  --gray: #94a3b8;
  --dark: #592986;
  --text-color: #E0E0E0;
}

[data-theme="dark"] {
  /* Dark theme variables */
  --light-purple: #2D2640;
  --medium-light-purple: #3D2E58;
  --medium-purple: #4D3777;
  --medium-dark-purple: #3A2359;
  --dark-purple: #281A3D;
  --accent-purple: #8A5FFF;
  --text-color: #E0E0E0;
  --bg-color: linear-gradient(135deg, #1D1A2F 0%, #261F3C 100%);
  --card-bg: rgba(30, 30, 40, 0.9);
  --section-bg: linear-gradient(135deg, #261F3C 0%, #372C54 100%);
  --tech-stack-bg: linear-gradient(135deg, #372C54 0%, #3A2359 100%);
  --tech-icon-color: #A083C9;
  --tech-text-color: #E0E0E0;
  --services-bg: linear-gradient(135deg, #261F3C 0%, #372C54 100%);
}

[data-theme="dark"] .hero-section{
  background: var(--bg-color);
}


[data-theme="dark"] .counter{
  background: var(--bg-color);
}

[data-theme="dark"] .hero-content{
  color: var(--text-color);
}

[data-theme="dark"] .landing-tech-icon {
  color: var(--tech-icon-color, rgba(160, 131, 201, 0.3)) !important;
  opacity: 0.15;
}

[data-theme="dark"] .particle {
  background: rgba(255, 255, 255, 0.1);
}



body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: #ECE7F5;
  color: var(--dark);
  overflow-x: hidden;
}



/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, #A083C9 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  color: black;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-cta {
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(37, 99, 235, 0.2);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatAnimation 8s infinite ease-in-out;
}

@keyframes floatAnimation {

  0%,
  100% {
      transform: translateY(0) translateX(0);
  }

  50% {
      transform: translateY(-20px) translateX(10px);
  }
}

.landing-tech-icon {
  color: var(--text-color) !important;
  position: absolute;
  opacity: 0.1;
  animation: rotateAnimation 30s linear infinite;
  transition: color 0.3s ease, opacity 0.3s ease;
}

@keyframes rotateAnimation {
  from {
      transform: rotate(0deg);
  }

  to {
      transform: rotate(360deg);
  }
}

.section-heading {
  position: relative;
  font-weight: 700;
  margin-bottom: 60px;
  padding-bottom: 15px;
  color: var(--dark);
}

.section-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* Solutions Section */
.solutions-container {
  padding: 100px 0;
}

.content-box {
  padding: 30px;
  border-radius: 12px;
  background: white;
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
}

.content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--dark);
}

.content-box h3 {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 20px;
}

.image-container {
  position: relative;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.image-container.with-offset {
  padding-right: 30px;
  padding-bottom: 30px;
}

.image-item {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.offset-image {
  position: absolute;
  width: 60%;
  height: auto;
  bottom: 0;
  right: 0;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
  transition: all 0.5s ease;
}

.image-container:hover .image-item {
  transform: scale(1.03);
}

.image-container:hover .offset-image {
  transform: translateY(-10px) translateX(-10px);
}

.blue-accent {
  position: absolute;
  width: 85%;
  height: 85%;
  top: -15px;
  left: -15px;
  background-color: rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  z-index: -1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  padding: 15px;
  border-radius: 8px;
}

.feature-item:hover {
  background-color: rgba(37, 99, 235, 0.05);
  transform: translateX(5px);
}

.feature-icon {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--dark);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--accent);
  color: white;
  transform: rotateY(180deg);
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-content p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Counter Section */
.counter {
  background: linear-gradient(135deg, var(--secondary) 0%, #A083C9 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.counter-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-box:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.counter-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.counter-box h2 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--accent);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 20px auto 0;
}

/* Review Section */
.review-area {
  padding: 100px 0;
  position: relative;
}

.tp-section-sub-title {
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.tp-section-title {
  color: var(--secondary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.tp-section-title:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--primary);
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.tp-review-item {
  background-color: white;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tp-review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tp-review-item:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 25px;
  font-size: 100px;
  color: rgba(37, 99, 235, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.tp-review-content {
  position: relative;
  z-index: 1;
}

.tp-review-content p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.tp-review-avatar {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.tp-review-avatar-title {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary);
}

.tp-review-avatar span {
  color: var(--gray);
  font-size: 0.9rem;
}

.tp-review-thumb img {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tp-review-thumb:hover img {
  transform: scale(1.02);
}

.partner-showcase {
  padding: 60px 0;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.partner-header {
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.partner-header h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: var(--dark);
  font-weight: bold;
}

.partner-header p {
  font-size: 16px;
  color: #666;
}

.brand-slider-outer {
  overflow: hidden;
  position: relative;
}

.brand-slider-viewport {
  width: 100%;
  overflow: hidden;
}

.brand-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.brand-item {
  min-width: 200px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-item img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}


.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .logo-slide {
      min-width: calc(100% / 3);
      /* Show 3 logos on tablets */
  }
}

@media (max-width: 768px) {
  .logo-slide {
      min-width: calc(100% / 2);
      /* Show 2 logos on mobile */
  }
}

@media (max-width: 576px) {
  .logo-slide {
      min-width: 100%;
      /* Show 1 logo on small mobile */
  }
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .projects-showcase {
      padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .project-image img {
      height: 220px;
  }
}

@media (max-width: 575.98px) {
  .section-heading {
      font-size: 1.8rem;
  }

  .section-subheading {
      font-size: 1rem;
  }

  .project-title {
      font-size: 1.2rem;
  }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-title {
      font-size: 2.8rem;
      text-align: center;
  }

  .hero-text {
      font-size: 1.1rem;
  }

  .ml-50 {
      margin-left: 0;
  }

  .tp-review-wrap {
      margin-left: 0;
      text-align: center;
  }

  .tp-section-title:after {
      left: 50%;
      transform: translateX(-50%);
  }

  .tp-review-item {
      text-align: left;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
      font-size: 2.2rem;
      text-align: center;
  }

  .hero-text {
      font-size: 1rem;
  }

  .hero-section {
      min-height: 70vh;
  }

  .offset-image {
      width: 50%;
  }

  .counter-box {
      padding: 30px 15px;
  }

  .counter-box h2 {
      font-size: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    text-align: center;
      font-size: 1.8rem;
  }

  .hero-cta {
      padding: 10px 25px;
      font-size: 1rem;
  }

  .section-heading {
      font-size: 1.8rem;
  }

  .tp-section-title {
      font-size: 1.8rem;
  }
}
/* Add these new dark theme variables right after your existing [data-theme="dark"] block */
[data-theme="dark"] {
    /* Keep your existing dark theme variables */
    --light-purple: #2D2640;
    --medium-light-purple: #3D2E58;
    --medium-purple: #4D3777;
    --medium-dark-purple: #3A2359;
    --dark-purple: #281A3D;
    --accent-purple: #8A5FFF;
    --text-color: #E0E0E0;
    --bg-color: linear-gradient(135deg, #1D1A2F 0%, #261F3C 100%);
    --card-bg: rgba(30, 30, 40, 0.9);
    --section-bg: linear-gradient(135deg, #261F3C 0%, #372C54 100%);
    --tech-stack-bg: linear-gradient(135deg, #372C54 0%, #3A2359 100%);
    --tech-icon-color: #A083C9;
    --tech-text-color: #E0E0E0;
    --services-bg: linear-gradient(135deg, #261F3C 0%, #372C54 100%);
}

/* Add these new dark mode styles after your existing styles */

/* Dark mode body */
[data-theme="dark"] body {
    background: var(--bg-color);
    color: var(--text-color);
}

/* Dark mode hero section */
[data-theme="dark"] .hero-section {
    background: var(--bg-color);
}

/* Dark mode solutions section */
[data-theme="dark"] .solutions-box {
    background: var(--dark-purple);
}

[data-theme="dark"] .solutions-container {
    background: var(--section-bg);
}

/* Dark mode headings */
[data-theme="dark"] .section-heading {
    color: var(--text-color);
}

/* Dark mode feature items */
[data-theme="dark"] .feature-item {
    color: var(--text-color);
}

[data-theme="dark"] .feature-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .feature-icon {
    background-color: var(--medium-purple);
    color: var(--text-color);
}

[data-theme="dark"] .feature-item:hover .feature-icon {
    background-color: var(--accent-purple);
}

/* Dark mode counter section */
[data-theme="dark"] .counter {
    background: var(--bg-color);
}

[data-theme="dark"] .counter-box {
    background-color: var(--card-bg);
    border-color: var(--medium-purple);
}

[data-theme="dark"] .counter-box:hover {
    background-color: var(--medium-purple);
}

[data-theme="dark"] .counter-icon {
    color: var(--accent-purple);
}

/* Dark mode partner showcase */
[data-theme="dark"] .partner-showcase {
    background: var(--dark-purple);
}

[data-theme="dark"] .partner-header h2 {
    color: var(--text-color);
}

/* Dark mode images and containers */
[data-theme="dark"] .image-container {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .offset-image {
    border-color: var(--medium-purple);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .blue-accent {
    background-color: rgba(138, 95, 255, 0.08);
}

/* Dark mode brand logos */
[data-theme="dark"] .brand-item img {
    filter: brightness(0.8) contrast(1.2);
}

/* Dark mode tech icons */
[data-theme="dark"] .landing-tech-icon {
    color: var(--tech-icon-color) !important;
    opacity: 0.15;
}

/* Dark mode particles */
[data-theme="dark"] .particle {
    background: rgba(255, 255, 255, 0.1);
}
        /* Why Choose Us Section Styles - Matching your exact theme */
        .why-choose-us {
            background: #ffffff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        /* Dark theme for Why Choose Us */
        [data-theme="dark"] .why-choose-us {
            background: var(--bg-color);
        }
        
        .why-choose-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            100% { transform: translateY(-60px); }
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }
        
        .section-header h2 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 20px;
            text-shadow: none;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--accent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        [data-theme="dark"] .section-header h2 {
            color: var(--text-color);
        }
        
        [data-theme="dark"] .section-header h2:after {
            background-color: var(--accent-purple);
        }
        
        .section-header p {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 20px auto 0;
            line-height: 1.6;
        }
        
        [data-theme="dark"] .section-header p {
            color: var(--text-color);
            opacity: 0.8;
        }
        
        .reliability-card {
            background-color: white;
            backdrop-filter: none;
            border: 1px solid #f1f5f9;
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        [data-theme="dark"] .reliability-card {
            background-color: var(--card-bg);
            border-color: var(--medium-purple);
        }
        
        .reliability-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .reliability-card:hover::before {
            left: 100%;
        }
        
        .reliability-card:hover {
            transform: translateY(-10px);
            background-color: white;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary);
        }
        
        [data-theme="dark"] .reliability-card:hover {
            background-color: var(--medium-purple);
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background-color: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            box-shadow: 0 10px 25px rgba(160, 131, 201, 0.3);
            transition: all 0.3s ease;
        }
        
        [data-theme="dark"] .card-icon {
            background-color: var(--accent-purple);
            box-shadow: 0 10px 25px rgba(138, 95, 255, 0.3);
        }
        
        .reliability-card:nth-child(2) .card-icon {
            background-color: var(--secondary);
            box-shadow: 0 10px 25px rgba(89, 41, 134, 0.3);
        }
        
        [data-theme="dark"] .reliability-card:nth-child(2) .card-icon {
            background-color: var(--medium-purple);
            box-shadow: 0 10px 25px rgba(77, 55, 119, 0.3);
        }
        
        .reliability-card:nth-child(3) .card-icon {
            background-color: var(--primary-dark);
            box-shadow: 0 10px 25px rgba(195, 180, 229, 0.3);
        }
        
        [data-theme="dark"] .reliability-card:nth-child(3) .card-icon {
            background-color: var(--medium-dark-purple);
            box-shadow: 0 10px 25px rgba(58, 35, 89, 0.3);
        }
        
        .reliability-card:nth-child(4) .card-icon {
            background-color: var(--primary);
            box-shadow: 0 10px 25px rgba(222, 217, 246, 0.3);
        }
        
        [data-theme="dark"] .reliability-card:nth-child(4) .card-icon {
            background-color: var(--light-purple);
            box-shadow: 0 10px 25px rgba(45, 38, 64, 0.3);
        }
        
        .reliability-card:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        [data-theme="dark"] .card-title {
            color: var(--text-color);
        }
        
        .card-description {
            color: var(--gray);
            line-height: 1.6;
            font-size: 1rem;
        }
        
        [data-theme="dark"] .card-description {
            color: var(--text-color);
            opacity: 0.8;
        }
        
        .trust-banner {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            margin-top: 60px;
            text-align: center;
            backdrop-filter: none;
            border: 1px solid #f1f5f9;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        [data-theme="dark"] .trust-banner {
            background-color: var(--card-bg);
            border-color: var(--medium-purple);
        }
        
        .trust-banner h3 {
            color: var(--dark);
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        [data-theme="dark"] .trust-banner h3 {
            color: var(--text-color);
        }
        
        .trust-banner p {
            color: var(--gray);
            font-size: 1.1rem;
            margin: 0;
        }
        
        [data-theme="dark"] .trust-banner p {
            color: var(--text-color);
            opacity: 0.8;
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        
        .floating-elements .element {
            position: absolute;
            border-radius: 50%;
            background: rgba(89, 41, 134, 0.05);
            animation: floatUpDown 6s infinite ease-in-out;
        }
        
        [data-theme="dark"] .floating-elements .element {
            background: rgba(255, 255, 255, 0.05);
        }
        
        .floating-elements .element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-elements .element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }
        
        .floating-elements .element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }
        
        @keyframes floatUpDown {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        @media (max-width: 991.98px) {
            .section-header h2 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 767.98px) {
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .reliability-card {
                margin-bottom: 30px;
                padding: 30px 20px;
            }
            
            .why-choose-us {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 575.98px) {
            .section-header h2 {
                font-size: 1.8rem;
            }
        }