/*
================================================
TABLE OF CONTENTS
================================================
1.  VARIABLES & RESET
2.  GLOBAL STYLES & UTILITIES
3.  LOADER / PRELOADER
4.  HEADER & NAVIGATION
5.  HERO SECTION
6.  SERVICES SECTION
7.  INTERACTIVE 3D SECTION
8.  PROCESS SECTION
9.  STATS / COUNTER SECTION
10. INDUSTRIES SECTION
11. TESTIMONIALS SECTION
12. CTA SECTION
13. FOOTER
14. PAGE-SPECIFIC STYLES (CONTACT, LEGAL)
15. ANIMATIONS (KEYFRAMES & SCROLL)
16. RESPONSIVE DESIGN (MEDIA QUERIES)
================================================
*/

/* ==============================================
   1. VARIABLES & RESET
   ============================================== */
:root {
  --primary-color: #0a74f9;
  --secondary-color: #00f5d4;
  --dark-color: #1a202c;
  --gray-color: #4a5568;
  --light-gray-color: #edf2f7;
  --background-color: #ffffff;
  --white-color: #ffffff;
  --primary-font: "Poppins", sans-serif;
  --header-height: 80px;
  --border-radius: 8px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  --transition-speed: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.2rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition-speed);
}

a:hover {
  color: var(--dark-color);
}

img {
  max-width: 100%;
  height: auto;
}

/* ==============================================
   2. GLOBAL STYLES & UTILITIES
   ============================================== */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.section-padding {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 60px;
}

.section-title {
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-speed);
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-primary:hover {
  background-color: #0861d1;
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(10, 116, 249, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--light-gray-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: var(--light-gray-color);
  transform: translateY(-3px);
}

.btn i {
  margin-left: 8px;
}

.btn-full {
  width: 100%;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}
/* ==============================================
   3. LOADER / PRELOADER
   ============================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

#loader p {
  margin-top: 20px;
  font-weight: 500;
  color: var(--dark-color);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid var(--light-gray-color);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

body.loaded #loader {
  opacity: 0;
  visibility: hidden;
}

/* ==============================================
   4. HEADER & NAVIGATION
   ============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all var(--transition-speed);
}

.header.scrolled {
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: auto;
  transition: var(--transition-speed);
}


.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-left: 10px;
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle,
.nav-close {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--dark-color);
}

/* ==============================================
   5. HERO SECTION
   ============================================== */
.hero-section {
  padding-top: calc(var(--header-height) + 100px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #f9fcff, #f0f6ff);
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--primary-color);
}

.animated-text-container {
  display: inline-block;
  position: relative;
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  height: 5rem;
  overflow: hidden;
  vertical-align: bottom;
}

.animated-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  animation: text-cycle 9s linear infinite;
  opacity: 0;
}
.animated-text:nth-child(1) {
  animation-delay: 0s;
}
.animated-text:nth-child(2) {
  animation-delay: 3s;
}
.animated-text:nth-child(3) {
  animation-delay: 6s;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-bg-shape {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.05;
  z-index: 1;
  animation: pulse 10s infinite ease-in-out;
}
.hero-bg-shape::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -300px;
  width: 400px;
  height: 400px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.5;
}

/* ==============================================
   6. SERVICES SECTION
   ============================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--background-color);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--light-gray-color);
  transition: all var(--transition-speed);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow);
  border-color: var(--primary-color);
}

.service-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  transition: all var(--transition-speed);
}

.service-card:hover .service-card-icon {
  background-color: var(--secondary-color);
  color: var(--dark-color);
  transform: rotate(360deg);
}

.service-card-title {
  margin-bottom: 15px;
}

.service-card-desc {
  margin-bottom: 25px;
}

.service-card-link {
  font-weight: 600;
  color: var(--primary-color);
}

.service-card-link i {
  transition: transform var(--transition-speed);
}

.service-card:hover .service-card-link i {
  transform: translateX(5px);
}

/* ==============================================
   7. INTERACTIVE 3D SECTION
   ============================================== */
.interactive-3d-section {
  background-color: var(--light-gray-color);
}

.interactive-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.interactive-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.interactive-content .section-title::after {
  left: 0;
  transform: translateX(0);
}

.interactive-content .section-subtitle {
  margin: 0 0 30px 0;
  max-width: 100%;
}

.interactive-3d-container {
  perspective: 1000px;
}

.scene {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  position: relative;
}

.cube {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 20s infinite linear;
}

.cube-face {
  position: absolute;
  width: 250px;
  height: 250px;
  background-color: rgba(10, 116, 249, 0.8);
  border: 2px solid var(--white-color);
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 600;
  gap: 10px;
}

.cube-face-front {
  transform: rotateY(0deg) translateZ(125px);
}
.cube-face-back {
  transform: rotateY(180deg) translateZ(125px);
}
.cube-face-right {
  transform: rotateY(90deg) translateZ(125px);
}
.cube-face-left {
  transform: rotateY(-90deg) translateZ(125px);
}
.cube-face-top {
  transform: rotateX(90deg) translateZ(125px);
}
.cube-face-bottom {
  transform: rotateX(-90deg) translateZ(125px);
}

/* ==============================================
   8. PROCESS SECTION
   ============================================== */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background-color: var(--light-gray-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.process-step {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.process-step:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 70px;
}

.process-step:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 70px;
}

.process-step-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 5px solid var(--background-color);
  box-shadow: 0 0 0 3px var(--primary-color);
}

.process-step:nth-child(odd) .process-step-icon {
  right: -30px;
}
.process-step:nth-child(even) .process-step-icon {
  left: -30px;
}

.process-step-content h3 {
  margin-bottom: 10px;
}

/* ==============================================
   9. STATS / COUNTER SECTION
   ============================================== */
.stats-section {
  background:
    linear-gradient(rgba(10, 116, 249, 0.9), rgba(10, 116, 249, 0.9)),
    url("https://i.imgur.com/g82u5im.jpeg") no-repeat center center/cover;
  background-attachment: fixed;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white-color);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--white-color);
  font-weight: 500;
}

/* ==============================================
   10. INDUSTRIES SECTION
   ============================================== */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.industry-item {
  background-color: var(--light-gray-color);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: var(--transition-speed);
}

.industry-item:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.05);
}

.industry-item i {
  color: var(--primary-color);
  transition: var(--transition-speed);
}

.industry-item:hover i {
  color: var(--white-color);
}

/* ==============================================
   11. TESTIMONIALS SECTION
   ============================================== */
.testimonials-section {
  background-color: var(--light-gray-color);
}

.testimonial-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
  padding: 40px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.testimonial-content {
  margin-bottom: 25px;
  font-style: italic;
  font-size: 1.1rem;
  position: relative;
  padding-left: 50px;
}

.testimonial-content::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 2.5rem;
  color: var(--primary-color);
  opacity: 0.2;
}

.testimonial-author {
  text-align: right;
}

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author span {
  font-weight: 500;
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
}

.slider-btn {
  background-color: var(--background-color);
  border: 1px solid var(--light-gray-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-speed);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.prev-btn {
  margin-left: -25px;
}
.next-btn {
  margin-right: -25px;
}

.slider-btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* ==============================================
   12. CTA SECTION
   ============================================== */
.cta-section {
  background-color: var(--dark-color);
  padding: 80px 0;
  color: var(--white-color);
}

.cta-title {
  color: var(--white-color);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-text {
  color: var(--light-gray-color);
  max-width: 600px;
  margin: 0 auto 30px;
}

/* ==============================================
   13. FOOTER
   ============================================== */
.footer {
  background-color: var(--dark-color);
  color: var(--light-gray-color);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--gray-color);
}

.footer-col-title {
  color: var(--white-color);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-about .logo {
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.footer-about-text {
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gray-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  color: var(--light-gray-color);
}
.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}
.footer-contact ul li i {
  margin-top: 5px;
  color: var(--primary-color);
}
.footer-contact ul li a {
  color: var(--light-gray-color);
}
.footer-contact ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
}

/* ==============================================
   14. PAGE-SPECIFIC STYLES (CONTACT, LEGAL)
   ============================================== */
.page-header-section {
  padding: 160px 0 80px;
  background: linear-gradient(45deg, #f9fcff, #f0f6ff);
}
.page-title {
  font-size: 3.5rem;
}
.page-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 15px auto 0;
}
.breadcrumbs {
  margin-top: 15px;
}
.breadcrumbs span a {
  color: var(--gray-color);
}
.breadcrumbs span a:hover {
  color: var(--primary-color);
}
.breadcrumbs i {
  margin: 0 10px;
  font-size: 0.8rem;
}

/* Contact Page */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  background-color: var(--background-color);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.contact-info-panel h3 {
  margin-bottom: 20px;
}
.contact-details-list {
  margin-top: 30px;
  list-style: none;
}
.contact-details-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}
.contact-details-list i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 5px;
}
.contact-details-list h4 {
  margin-bottom: 5px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray-color);
  border-radius: var(--border-radius);
  font-family: var(--primary-font);
  font-size: 1rem;
  transition: var(--transition-speed);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(10, 116, 249, 0.2);
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-speed);
}
.popup.active {
  opacity: 1;
  visibility: visible;
}
.popup-content {
  background-color: var(--white-color);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 450px;
  transform: scale(0.9);
  transition: all var(--transition-speed);
}
.popup.active .popup-content {
  transform: scale(1);
}
.popup-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 20px;
}

/* Legal Pages */
.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 15px;
}
.legal-content p,
.legal-content li {
  margin-bottom: 15px;
}
.legal-content strong {
  color: var(--dark-color);
}

/* ==============================================
   15. ANIMATIONS (KEYFRAMES & SCROLL)
   ============================================== */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.05;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 0.05;
  }
}

@keyframes text-cycle {
  0%,
  25% {
    transform: translateY(0);
    opacity: 1;
  }
  30%,
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes rotateCube {
  from {
    transform: rotateX(0) rotateY(0);
  }
  to {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* Scroll Animations */
.animate-in {
  opacity: 0;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.animate-in[data-animation="fade-in-up"] {
  transform: translateY(50px);
}
.animate-in[data-animation="fade-in-left"] {
  transform: translateX(-50px);
}
.animate-in[data-animation="fade-in-right"] {
  transform: translateX(50px);
}

.animate-in.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ==============================================
   16. RESPONSIVE DESIGN (MEDIA QUERIES)
   ============================================== */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .section-padding {
    padding: 80px 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--background-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 60px 20px 20px;
    transition: right var(--transition-speed);
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
  }

  .interactive-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .interactive-content .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .interactive-3d-container {
    margin-top: 50px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item:nth-child(n + 3) {
    margin-top: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .process-timeline::after {
    left: 30px;
  }
  .process-step {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
    text-align: left !important;
    left: 0 !important;
  }
  .process-step-icon {
    left: 0 !important;
  }

  .slider-controls {
    display: none;
  } /* Hide for simplicity on mobile */
  .testimonial-slide {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 15px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .btn {
    width: 100%;
    max-width: 300px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-item:nth-child(n + 2) {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 2.5rem;
  }
}
