  /* Modal Theme Styling */
  :root {
    --primary-color: #00cf79;
    --primary-light: #1ddb8c;
    --primary-dark: #00b368;
    --light-green: #e6fff2;
    --success-light: #ccffe6;
    --text-dark: #1a1a1a;
  }
 
  .text-green {
    color: var(--color-green) !important;
  }
  
  .bg-light-green {
    background-color: var(--color-light-green) !important;
  }
  
  .modern-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
  }
  
  .modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1.5rem rgba(0, 121, 107, 0.15)!important;
  }
  
  .feature-icon-box {
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .modern-card:hover .feature-icon-box {
    background-color: var(--color-green)!important;
  }
  
  .modern-card:hover .feature-icon-box i {
    color: white!important;
  }
  
  .card-title {
    color: #2b2b2b;
  }
  
  .border-top {
    border-color: rgba(0, 121, 107, 0.1)!important;
  }
  
  /* Optional: Add a subtle green border on hover */
  .modern-card:hover {
    border-top: 3px solid var(--color-green);
    margin-top: -3px;
  }
  
  /* Optional: Add a subtle gradient background on hover */
  .modern-card:hover .card-body {
    background: linear-gradient(to bottom right, white, rgba(0, 121, 107, 0.02));
  }

  /* Base styles for stats container */
  .stats-section {
    padding: 80px 0;
    background-color: var(--color-white);
  }
  
  /* Card styles */
  .stats-card {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-speed) ease;
  }
  
  .stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 121, 107, 0.15);
  }
  
  /* Icon container styles */
  .stats-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--color-light-green);
    transition: all var(--transition-speed) ease;
  }
  
  .stats-icon i {
    font-size: 1.75rem;
    color: var(--color-green);
    transition: color var(--transition-speed) ease;
  }
  
  /* Hover effects for icon */
  .stats-card:hover .stats-icon {
    background-color: var(--color-green);
  }
  
  .stats-card:hover .stats-icon i {
    color: var(--color-white);
  }
  
  /* Counter number styles */
  .stats-number {
    margin: 1.5rem 0 0.5rem;
    line-height: 1.2;
  }
  
  .purecounter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-green);
    transition: color var(--transition-speed) ease;
  }
  
  /* Label styles */
  .stats-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--color-muted);
    margin: 0;
  }
  
  /* Gradient overlay effect */
  .stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(0, 121, 107, 0.05) 0%,
      rgba(255, 255, 255, 0) 100%
    );
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
  }
  
  .stats-card:hover .stats-overlay {
    opacity: 1;
  }
  
  /* Utility classes */
  .text-green {
    color: var(--color-green) !important;
  }
  
  .bg-light-green {
    background-color: var(--color-light-green) !important;
  }
  
  /* Animation for counter */
  @keyframes countUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .purecounter.animated {
    animation: countUp 1s ease-out forwards;
  }
  
  /* Responsive styles */
  @media (max-width: 1200px) {
    .stats-card {
      padding: 1.75rem;
    }
  
    .purecounter {
      font-size: 2.25rem;
    }
  }
  
  @media (max-width: 992px) {
    .stats-icon {
      width: 56px;
      height: 56px;
    }
  
    .stats-icon i {
      font-size: 1.5rem;
    }
  
    .purecounter {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .stats-section {
      padding: 60px 0;
    }
  
    .stats-card {
      padding: 1.5rem;
    }
  
    .stats-icon {
      width: 48px;
      height: 48px;
    }
  
    .stats-icon i {
      font-size: 1.25rem;
    }
  
    .purecounter {
      font-size: 1.75rem;
    }
  
    .stats-label {
      font-size: 0.8rem;
    }
  }
  
  /* Optional: Add smooth scrolling for the entire page */
  html {
    scroll-behavior: smooth;
  }
  
/* Custom Scrollbar Styles */
  ::-webkit-scrollbar {
    width: 10px;
  }
  
  ::-webkit-scrollbar-track {
  background: var(--light-green);
  border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb {
  background: var(--primary-color);
    border-radius: 5px;
  border: 2px solid var(--light-green);
  transition: all 0.3s ease;
  }
  
  ::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
  box-shadow: 0 0 10px rgba(0, 207, 121, 0.3);
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-green);
}

/* Optional: Hide scrollbar for specific elements */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Optional: Custom scrollbar for specific containers */
.custom-scroll {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--light-green);
}

.custom-scroll::-webkit-scrollbar {
  width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: var(--light-green);
  border-radius: 3px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
  border: 1px solid var(--light-green);
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
  }
  
  /* Optional: Add focus styles for accessibility */
  .stats-card:focus-within {
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
  }
  
  /* Optional: Add print styles */
  @media print {
    .stats-card {
      break-inside: avoid;
      box-shadow: none !important;
      transform: none !important;
    }
  
    .stats-overlay {
      display: none;
    }
  }

/* Service Cards Styling */
  .service-item {
    padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
    transition: all 0.3s ease;
  border: 1px solid rgba(0, 207, 121, 0.15);
    box-shadow: 
      0 5px 15px rgba(0, 207, 121, 0.1),
      0 10px 30px rgba(0, 0, 0, 0.05),
      inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
    height: 100%;
  background: linear-gradient(135deg, 
      rgba(0, 207, 121, 0.15) 0%, 
      rgba(0, 207, 121, 0.05) 100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.service-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
      rgba(255, 255, 255, 0.1) 0%, 
      rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  }
  
  .service-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
      0 15px 35px rgba(0, 207, 121, 0.2),
      0 20px 40px rgba(0, 0, 0, 0.1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  background: #f0f4f1;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item:hover::after {
  opacity: 1;
}

.service-item .icon {
  position: relative;
    width: 60px;
    height: 60px;
  margin-bottom: 20px;
  background: var(--light-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 
      0 5px 15px rgba(0, 207, 121, 0.2),
      inset 0 2px 5px rgba(255, 255, 255, 0.5);
  }
  
  .service-item .icon i {
  font-size: 28px;
  color: var(--primary-color);
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-item:hover .icon {
  background: var(--primary-color);
  transform: rotateY(360deg);
  box-shadow: 
      0 8px 20px rgba(0, 207, 121, 0.3),
      inset 0 2px 5px rgba(255, 255, 255, 0.5);
}

.service-item:hover .icon i {
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .service-item h3 {
  font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
  color: var(--dark);
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  
  .service-item p {
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 1.6;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.service-item:hover h3 {
  color: var(--primary-color);
  text-shadow: 0 2px 4px rgba(0, 207, 121, 0.2);
}

/* SVG Background */
.service-item svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-item:hover svg {
  opacity: 0.2;
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Color Variants with Enhanced Shadows */
.service-item.item-cyan,
.service-item.item-orange,
.service-item.item-teal,
.service-item.item-red,
.service-item.item-indigo,
.service-item.item-pink {
  border-color: rgba(0, 207, 121, 0.2);
  box-shadow: 
      0 5px 15px rgba(0, 207, 121, 0.15),
      0 10px 30px rgba(0, 0, 0, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .service-item {
    padding: 25px;
    box-shadow: 
        0 3px 10px rgba(0, 207, 121, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .service-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 
        0 10px 25px rgba(0, 207, 121, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.08);
  }
  }
  
  .stats-container {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .stats-item {
    text-align: center;
  }
  
  .stats-number {
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
  }
  
  .stats-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-top: 5px;
  }
  
  .item-cyan .icon i { color: #00A0C1; }
  .item-orange .icon i { color: #FF6B6B; }
  .item-teal .icon i { color: #00796B; }

  .service-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
  }

  .service-item:hover {
    transform: translateY(-5px);
  }

  .service-item .icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .service-item .icon i {
    font-size: 32px;
    z-index: 2;
  }

  .service-item .icon svg {
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }

  .service-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2b2b2b;
  }

  .service-item .counter-text {
    font-size: 36px;
    font-weight: 700;
    color: #2b2b2b;
    margin-bottom: 10px;
  }

  .item-cyan .icon i { color: #00A0C1; }
  .item-orange .icon i { color: #FF6B6B; }
  .item-teal .icon i { color: #00796b; }

  .stats-card {
    transition: all 0.3s ease;
  }

  .stats-card:hover {
    transform: translateY(-5px);
  }

  .stats-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .text-green {
    color: #00796b !important;
  }

  .bg-light-green {
    background-color: rgba(0, 121, 107, 0.1) !important;
  }

  .stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 121, 107, 0.05) 0%, rgba(0, 121, 107, 0) 100%);
    pointer-events: none;
  }

  .stats-number {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .stats-label {
    font-size: 0.875rem;
    letter-spacing: 0.5px;
  }

  /* Additional styles for new modals */
  .dialer-type h6 {
    color: var(--primary-color);
  }

  .timeline .step h6 {
    color: var(--primary-color);
    margin-bottom: 5px;
  }

  .feature-card {
    transition: transform 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-3px);
  }

  .modal-body h6.fw-bold {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }

  .timeline .step {
    position: relative;
    padding-left: 25px;
  }

  .timeline .step:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
  }

  .timeline .step:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 20px;
    width: 1px;
    height: calc(100% - 15px);
    background: #dee2e6;
  }

  .timeline .step:last-child:after {
    display: none;
  }

  /* Additional styles for the updated modals */
  .metric-card {
    background: var(--light-green);
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .metric-card:hover {
    transform: translateY(-3px);
  }

  .metric-card h3 {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 5px;
  }

  .tech-stack .badge {
    padding: 8px 15px;
    margin: 5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .tech-stack .badge:hover {
    background: var(--primary-color) !important;
    color: white !important;
  }

  .feature-card {
    height: 100%;
    transition: all 0.3s ease;
  }

  .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .feature-card h6 {
    color: var(--primary-color);
    margin-bottom: 10px;
  }

  .support-services ul li {
    margin-bottom: 10px;
  }

  /* Add these styles */
  .dropdown-menu li a {
    padding: 10px 20px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .dropdown-menu li a:hover {
    color: var(--primary-color);
  }

  /* Style for nested dropdowns */
  .dropdown-menu .dropdown-menu {
    margin-top: -1px;
    border-radius: 0 4px 4px 4px;
  }

  /* Modal transition effects */
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
  }

  .modal.show .modal-dialog {
    transform: none;
  }

  /* Active state for dropdown items */
  .dropdown-menu li a.active {
    background-color: var(--light-green);
    color: var(--primary-color);
  }

  /* Modal Container */
  .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 207, 121, 0.1);
  }

  /* Modal Header */
  .modal-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 1.5rem;
  }

  .modal-header .modal-title {
    color: white;
    font-weight: 600;
  }

  .modal-header .btn-close {
    color: white;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
  }

  /* Modal Body */
  .modal-body {
    padding: 2rem;
    background-color: white;
  }

  /* Feature Cards in Modal */
  .feature-card {
    background-color: var(--light-green);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 207, 121, 0.1);
  }

  .feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 207, 121, 0.1);
    background-color: white;
  }

  .feature-card h6 {
    color: var(--primary-color);
    font-weight: 600;
  }

  /* Lists in Modal */
  .modal-body .list-unstyled li {
    padding: 8px 0;
    color: var(--text-dark);
  }

  .modal-body .list-unstyled li i {
    color: var(--primary-color);
  }

  /* Section Headings */
  .modal-body h6.fw-bold {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--success-light);
  }

  /* Metrics Cards */
  .metric-card {
    background-color: var(--light-green);
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .metric-card:hover {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 207, 121, 0.1);
  }

  .metric-card h3 {
    color: var(--primary-color);
    font-weight: bold;
  }

  /* Timeline Steps */
  .timeline .step {
    position: relative;
    padding-left: 25px;
  }

  .timeline .step:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
  }

  .timeline .step:after {
    content: "";
    position: absolute;
    left: 7px;
    top: 20px;
    width: 1px;
    height: calc(100% - 15px);
    background: #dee2e6;
  }

  .timeline .step:last-child:after {
    display: none;
  }

  .timeline .step h6 {
    color: var(--primary-color);
    margin-bottom: 5px;
  }

  /* Tech Stack Badges */
  .tech-stack .badge {
    background-color: var(--light-green);
    color: var(--primary-color);
    border: 1px solid rgba(0, 207, 121, 0.1);
    padding: 8px 15px;
    margin: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .tech-stack .badge:hover {
    background-color: var(--primary-color);
    color: white;
  }

  /* Modal Footer */
  .modal-footer {
    border-top: none;
    padding: 1.5rem;
    background-color: var(--light-green);
    border-radius: 0 0 15px 15px;
  }

  .modal-footer .btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
  }

  .modal-footer .btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 207, 121, 0.2);
  }

  /* Icons in Modal */
  .modal-body i[class^="bi-"] {
    color: var(--primary-color);
  }

  /* Text Success Color Override */
  .text-success {
    color: var(--primary-color) !important;
  }

  /* Check Icons */
  .bi-check-lg,
  .bi-check-circle-fill {
    color: var(--primary-color);
  }

  /* Hover Effects */
  .feature-card:hover i[class^="bi-"],
  .metric-card:hover h3 {
    color: var(--primary-dark);
  }

  /* Active States */
  .btn-primary:active,
  .btn-primary:focus {
    background-color: var(--primary-dark);
    box-shadow: 0 0 0 0.25rem rgba(0, 207, 121, 0.25);
  }

  /* Animation for Content */
  .modal.show .modal-content {
    animation: modalFadeIn 0.3s ease;
  }

  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .modal-dialog {
      margin: 1rem;
    }
    
    .modal-body {
      padding: 1.5rem;
    }
    
    .feature-card {
      margin-bottom: 1rem;
  }
}

/* Data Page Specific Styles */
.data-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
}

.hero-content {
  padding-right: 50px;
}

.hero-stats {
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-top: 5px;
}

.solution-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 207, 121, 0.1);
  border: 1px solid rgba(0, 207, 121, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 207, 121, 0.15);
  border-color: var(--primary-color);
}

.card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 30px;
  color: white;
  text-align: center;
  position: relative;
}

.card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-wrapper i {
  font-size: 30px;
  color: white;
}

.card-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-header .subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.card-body {
  padding: 30px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--light-green);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-list li:hover {
  background: white;
  box-shadow: 0 5px 15px rgba(0, 207, 121, 0.1);
}

.feature-list li i {
  color: var(--primary-color);
  font-size: 20px;
  margin-right: 15px;
  margin-top: 3px;
}

.feature-content h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.feature-content p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.stats-box {
  background: var(--light-green);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-item .label {
  font-size: 14px;
  color: #666;
}

@media (max-width: 991px) {
  .solution-card {
    margin-bottom: 30px;
  }
  
  .card-header {
    padding: 25px;
  }
  
  .card-body {
    padding: 25px;
  }
  
  .feature-list li {
    padding: 12px;
  }
}

.hero-image {
    position: relative;
    padding: 20px;
    text-align: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-green) 0%, transparent 100%);
    opacity: 0.1;
    border-radius: 20px;
    z-index: 1;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 207, 121, 0.1));
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .hero-image {
        margin-top: 30px;
    }
    
    .hero-image img {
        max-width: 60%;
    }
}

/* Advantage Cards Styling */
.advantage-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.advantage-card .icon-wrapper {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-card .icon-wrapper i {
  font-size: 26px;
  color: #343a40;
}

.advantage-card:nth-child(1) .icon-wrapper i { color: #2196f3; }
.advantage-card:nth-child(2) .icon-wrapper i { color: #4caf50; }
.advantage-card:nth-child(3) .icon-wrapper i { color: #ff9800; }

.advantage-card h4 {
  text-align: center;
  color: #343a40;
  margin-bottom: 15px;
}

.advantage-card .feature-list {
  padding-left: 0;
  list-style: none;
}

.advantage-card .feature-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.advantage-card .feature-list li i {
  margin-right: 8px;
  color: #4caf50;
  font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .advantage-card {
    padding: 20px;
  }
}

/* 3D Card Effect for All Cards */
.modern-card,
.service-item,
.advantage-card,
.solution-card,
.feature-card,
.metric-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(0, 207, 121, 0.1),
        0 6px 6px rgba(0, 207, 121, 0.1),
        0 0 100px rgba(0, 207, 121, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid rgba(0, 207, 121, 0.1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.modern-card::after,
.service-item::after,
.advantage-card::after,
.solution-card::after,
.feature-card::after,
.metric-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 207, 121, 0.2),
        0 3px 10px rgba(0, 207, 121, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modern-card:hover,
.service-item:hover,
.advantage-card:hover,
.solution-card:hover,
.feature-card:hover,
.metric-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 207, 121, 0.2),
        0 15px 20px rgba(0, 207, 121, 0.1),
        0 0 100px rgba(0, 207, 121, 0.1);
}

.modern-card:hover::after,
.service-item:hover::after,
.advantage-card:hover::after,
.solution-card:hover::after,
.feature-card:hover::after,
.metric-card:hover::after {
    opacity: 1;
}

/* Card Headers */
.card-header,
.feature-icon-box,
.icon-wrapper {
    transform: translateZ(20px);
    box-shadow: 
        0 5px 15px rgba(0, 207, 121, 0.2),
        0 2px 5px rgba(0, 207, 121, 0.1);
}

/* Icons */
.feature-icon-box i,
.icon-wrapper i {
    transform: translateZ(30px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card Content */
.card-body,
.feature-content {
    transform: translateZ(10px);
}

/* Feature Lists */
.feature-list li,
.list-unstyled li {
    transform: translateZ(10px);
    box-shadow: 
        0 2px 5px rgba(0, 207, 121, 0.1),
        0 1px 3px rgba(0, 207, 121, 0.05);
    transition: all 0.3s ease;
}

.feature-list li:hover,
.list-unstyled li:hover {
    transform: translateY(-3px) translateZ(15px);
    box-shadow: 
        0 5px 15px rgba(0, 207, 121, 0.15),
        0 3px 8px rgba(0, 207, 121, 0.1);
}

/* Stats Box */
.stats-box,
.stats-container {
    transform: translateZ(10px);
    box-shadow: 
        0 2px 5px rgba(0, 207, 121, 0.1),
        0 1px 3px rgba(0, 207, 121, 0.05);
}

/* Text Depth */
.card-title,
.feature-content h5,
.stats-number {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .modern-card:hover,
    .service-item:hover,
    .advantage-card:hover,
    .solution-card:hover,
    .feature-card:hover,
    .metric-card:hover {
        transform: translateY(-10px);
    }
    
    .card-header,
    .feature-icon-box,
    .icon-wrapper {
        transform: translateZ(10px);
    }
    
    .feature-icon-box i,
    .icon-wrapper i {
        transform: translateZ(15px);
    }
}

/* Smooth Transitions */
.modern-card *,
.service-item *,
.advantage-card *,
.solution-card *,
.feature-card *,
.metric-card * {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Optional: Add glass effect on hover */
.modern-card:hover,
.service-item:hover,
.advantage-card:hover,
.solution-card:hover,
.feature-card:hover,
.metric-card:hover {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* Key Features Section Styling */
.features-item {
    padding: 10px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-align: left;
    height: 100%;
    margin-bottom: 12px;
    min-height: 70px;
}

/* Faded Colorful Card Backgrounds */
.features-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(0, 207, 121, 0.1) 0%, rgba(29, 219, 140, 0.1) 100%);
    border: 1px solid rgba(0, 207, 121, 0.2);
}
.features-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(71, 174, 255, 0.1) 0%, rgba(107, 197, 255, 0.1) 100%);
    border: 1px solid rgba(71, 174, 255, 0.2);
}
.features-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(255, 187, 44, 0.1) 0%, rgba(255, 209, 102, 0.1) 100%);
    border: 1px solid rgba(255, 187, 44, 0.2);
}
.features-item:nth-child(4) {
    background: linear-gradient(135deg, rgba(232, 3, 104, 0.1) 0%, rgba(255, 77, 141, 0.1) 100%);
    border: 1px solid rgba(232, 3, 104, 0.2);
}
.features-item:nth-child(5) {
    background: linear-gradient(135deg, rgba(17, 219, 207, 0.1) 0%, rgba(77, 230, 224, 0.1) 100%);
    border: 1px solid rgba(17, 219, 207, 0.2);
}
.features-item:nth-child(6) {
    background: linear-gradient(135deg, rgba(183, 33, 255, 0.1) 0%, rgba(209, 102, 255, 0.1) 100%);
    border: 1px solid rgba(183, 33, 255, 0.2);
}
.features-item:nth-child(7) {
    background: linear-gradient(135deg, rgba(0, 131, 116, 0.1) 0%, rgba(45, 166, 156, 0.1) 100%);
    border: 1px solid rgba(0, 131, 116, 0.2);
}
.features-item:nth-child(8) {
    background: linear-gradient(135deg, rgba(255, 156, 67, 0.1) 0%, rgba(255, 179, 102, 0.1) 100%);
    border: 1px solid rgba(255, 156, 67, 0.2);
}
.features-item:nth-child(9) {
    background: linear-gradient(135deg, rgba(66, 51, 255, 0.1) 0%, rgba(107, 95, 255, 0.1) 100%);
    border: 1px solid rgba(66, 51, 255, 0.2);
}
.features-item:nth-child(10) {
    background: linear-gradient(135deg, rgba(227, 97, 255, 0.1) 0%, rgba(240, 143, 255, 0.1) 100%);
    border: 1px solid rgba(227, 97, 255, 0.2);
}
.features-item:nth-child(11) {
    background: linear-gradient(135deg, rgba(41, 204, 97, 0.1) 0%, rgba(77, 230, 127, 0.1) 100%);
    border: 1px solid rgba(41, 204, 97, 0.2);
}
.features-item:nth-child(12) {
    background: linear-gradient(135deg, rgba(255, 88, 40, 0.1) 0%, rgba(255, 123, 77, 0.1) 100%);
    border: 1px solid rgba(255, 88, 40, 0.2);
}

/* 3D Effect */
.features-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

/* Icons */
.features-item i {
    font-size: 14px;
    margin-bottom: 6px;
    display: inline-block;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

/* Hover Effects */
.features-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.features-item:hover::before {
    opacity: 1;
}

.features-item:hover i {
    transform: rotateY(360deg);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Text Styling */
.features-item h3 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dark);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.features-item:hover h3 {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 207, 121, 0.2);
}

/* Link Styling */
.features-item a {
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.features-item:hover a {
    color: var(--primary-color);
}

/* Grid Layout */
.features .row {
    display: flex;
    flex-wrap: wrap;
    margin: -6px;
    width: 100%;
}

.features .col-lg-3,
.features .col-md-4 {
    padding: 6px;
    flex: 0 0 auto;
    width: 25%;
}

@media (max-width: 991px) {
    .features .col-lg-3,
    .features .col-md-4 {
        width: 33.333%;
    }
}

@media (max-width: 767px) {
    .features .col-lg-3,
    .features .col-md-4 {
        width: 50%;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .features-item {
        padding: 8px;
        min-height: 60px;
    }
    
    .features-item i {
        font-size: 12px;
        padding: 4px;
    }
    
    .features-item h3 {
        font-size: 11px;
    }
}

/* Contact Page Specific Styles */

/* Contact Section Base */
.contact {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(145deg, #f8f9fa, #ffffff);
}

.contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/img/pattern.png') repeat;
  opacity: 0.05;
}

.contact-wrapper {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 40px;
  transition: all 0.4s ease;
}

.contact-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-info-card {
  background: linear-gradient(145deg, #1bbd36, #18a830);
  padding: 40px;
  border-radius: 15px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.contact-info-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);
  opacity: 0;
  transition: all 0.4s ease;
}

.contact-info-card:hover::before {
  left: 100%;
}

.contact-info-card .card-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.contact-info-card .header-icon {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.contact-info-card .header-icon i {
  font-size: 48px;
  color: #ffffff;
  transition: all 0.4s ease;
}

.contact-info-card:hover .header-icon {
  background: rgba(255,255,255,0.2);
  transform: rotate(360deg);
}

.contact-info-card:hover .header-icon i {
  color: #1bbd36;
}

.contact-info-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.contact-info-card p {
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

.info-item:hover::before {
  opacity: 1;
}

.info-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
}

/* Email Item */
.email-item {
  background: linear-gradient(145deg, rgba(27, 189, 54, 0.1), rgba(27, 189, 54, 0.05));
}

.email-item:hover {
  background: linear-gradient(145deg, rgba(27, 189, 54, 0.15), rgba(27, 189, 54, 0.05));
}

/* Phone Item */
.phone-item {
  background: linear-gradient(145deg, rgba(255, 149, 0, 0.1), rgba(255, 149, 0, 0.05));
}

.phone-item:hover {
  background: linear-gradient(145deg, rgba(255, 149, 0, 0.15), rgba(255, 149, 0, 0.05));
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

.icon-wrapper:hover::before {
  opacity: 1;
}

.icon-wrapper i {
  font-size: 26px;
  color: #ffffff;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.email-item .icon-wrapper {
  background: rgba(27, 189, 54, 0.2);
}

.email-item:hover .icon-wrapper {
  background: rgba(27, 189, 54, 0.3);
}

.phone-item .icon-wrapper {
  background: rgba(255, 149, 0, 0.2);
}

.phone-item:hover .icon-wrapper {
  background: rgba(255, 149, 0, 0.3);
}

.info-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.info-content h4 {
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.info-content a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  font-weight: 500;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.info-content a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all 0.4s ease;
}

.info-item:hover .info-content h4 {
  transform: translateX(5px);
}

.info-item:hover .info-content a {
  opacity: 1;
  color: #ffffff;
}

.info-item:hover .info-content a::before {
  width: 100%;
}

/* Email Item Animations */
.email-item .icon-wrapper i {
  animation: emailPulse 3s infinite;
}

@keyframes emailPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Phone Item Animations */
.phone-item .icon-wrapper i {
  animation: phoneRing 3s infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(10deg); }
}

@media (max-width: 768px) {
  .contact-info-list {
    gap: 20px;
  }
  
  .info-item {
    padding: 15px;
  }
  
  .icon-wrapper {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .icon-wrapper i {
    font-size: 22px;
  }
  
  .info-content h4 {
    font-size: 15px;
  }
}

.contact-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(27, 189, 54, 0.05), transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

.contact-form-card:hover::before {
  opacity: 1;
}

.contact-form .form-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.contact-form .form-header h3 {
  font-size: 24px;
  color: #333333;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.contact-form .form-header p {
  color: #666666;
  font-size: 15px;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.contact-form .form-body {
  position: relative;
  z-index: 1;
}

.contact-form .form-group {
  position: relative;
  z-index: 1;
}

.contact-form .form-floating {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.contact-form .form-control {
  border-radius: 15px;
  padding: 18px 25px 18px 55px;
  border: 2px solid #e9ecef;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #444444;
}

.contact-form .form-control::placeholder {
  color: #e9ecef;
  opacity: 1;
}

.contact-form .form-control:focus {
  border-color: #1bbd36;
  box-shadow: 0 0 0 3px rgba(27, 189, 54, 0.1);
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(27, 189, 54, 0.05), transparent);
}

.contact-form .form-control:focus::placeholder {
  color: #1bbd36;
}

.contact-form .form-label {
  position: absolute;
  top: 12px;
  left: 55px;
  color: #444444;
  font-size: 15px;
  transition: all 0.3s ease;
  pointer-events: none;
  background: #ffffff;
  padding: 0 5px;
  z-index: 1;
}

.contact-form .form-control:focus ~ .form-label,
.contact-form .form-control:not(:placeholder-shown) ~ .form-label {
  top: -10px;
  left: 50px;
  font-size: 13px;
  background: #ffffff;
  color: #1bbd36;
}

.contact-form .form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #e9ecef;
  font-size: 20px;
  transition: all 0.4s ease;
  z-index: 1;
}

.contact-form .form-control:focus ~ .form-icon {
  color: #1bbd36;
  transform: translateY(-50%) scale(1.2);
}

.contact-form textarea.form-control {
  height: 180px;
  resize: none;
  padding: 20px 25px 20px 55px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(145deg, #1bbd36, #18a830);
  color: #ffffff;
  padding: 18px 35px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(27, 189, 54, 0.2);
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: all 0.4s ease;
}

.submit-button:hover::before {
  opacity: 1;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(27, 189, 54, 0.3);
  background: linear-gradient(145deg, #18a830, #1bbd36);
}

.submit-button .button-icon {
  font-size: 22px;
  transition: all 0.4s ease;
}

.submit-button:hover .button-icon {
  transform: translateX(5px);
}

/* Loading State */
.submit-button.loading {
  pointer-events: none;
  opacity: 0.8;
}

.submit-button.loading .button-text {
  display: none;
}

.submit-button.loading .button-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success State */
.submit-button.success {
  background: linear-gradient(145deg, #4caf50, #45a049);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.submit-button.success .button-text {
  content: 'Message Sent!';
}

.submit-button.success .button-icon {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 30px;
  }
  
  .contact-form .form-header h3 {
    font-size: 22px;
  }
  
  .contact-form .form-control {
    padding: 15px 20px 15px 50px;
  }
  
  .contact-form textarea.form-control {
    height: 160px;
    padding: 15px 20px 15px 50px;
  }
  
  .submit-button {
    padding: 15px 30px;
    font-size: 14px;
    max-width: 200px;
  }
}
