/* ===================================
   MAACODE - COMPILED CSS
   ================================== */

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

.section-padding {
  padding: 100px 0;
}

.bg-light {
  background-color: #f8fafc !important;
}

.bg-dark {
  background-color: #0f172a !important;
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.header.scrolled .navbar-brand {
  color: #1e293b;
}

.header.scrolled .nav-link {
  color: #1e293b;
}

.header.scrolled .nav-link:hover {
  color: #6366f1;
}

.header .navbar {
  padding: 20px 0;
  transition: padding 0.3s ease;
}

.header .navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  transition: color 0.3s ease;
}

.header .navbar-brand .logo-text {
  color: inherit;
}

.header .navbar-brand .logo-accent {
  color: #6366f1;
}

.header .navbar-brand:hover {
  color: #818cf8;
}

.header .nav-link {
  color: #ffffff;
  font-weight: 500;
  padding: 8px 20px !important;
  margin: 0 4px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.header .nav-link:hover,
.header .nav-link.active {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
}

.header .cta-btn {
  padding: 10px 28px;
  margin-left: 16px;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
}

.header .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.header .navbar-toggler {
  border: none;
  padding: 8px;
}

.header .navbar-toggler:focus {
  box-shadow: none;
}

.header .navbar-toggler .hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.header .navbar-toggler.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.header .navbar-toggler.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.header .navbar-toggler.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-section .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-section .hero-background .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  opacity: 0.95;
}

.hero-section .hero-background .animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-section .hero-background .animated-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite ease-in-out;
}

.hero-section .hero-background .animated-shapes .shape.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero-section .hero-background .animated-shapes .shape.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.hero-section .hero-background .animated-shapes .shape.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 50%;
  animation-delay: 10s;
}

.hero-section .hero-content {
  color: #ffffff;
}

.hero-section .hero-content .hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-section .hero-content .hero-title .gradient-text {
  background: linear-gradient(90deg, #fff, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .hero-content .hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 90%;
}

.hero-section .hero-content .hero-cta .btn {
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-section .hero-content .hero-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.hero-section .hero-content .hero-cta .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-section .hero-content .hero-cta .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-section .hero-cards {
  display: grid;
  gap: 20px;
}

.hero-section .hero-cards .service-highlight-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 24px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.hero-section .hero-cards .service-highlight-card:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.15);
}

.hero-section .hero-cards .service-highlight-card .card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #14b8a6;
}

.hero-section .hero-cards .service-highlight-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-section .hero-cards .service-highlight-card p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.animate-fadeInUp {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInUp.delay-1 {
  animation-delay: 0.2s;
}

.animate-fadeInUp.delay-2 {
  animation-delay: 0.4s;
}

.animate-fadeInUp.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */
.services-section .section-header {
  margin-bottom: 60px;
  text-align: center;
}

.services-section .section-header .section-tag {
  display: inline-block;
  color: #6366f1;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.services-section .section-header .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.services-section .section-header .section-description {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.services-section .service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.services-section .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.services-section .service-card .service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
  border-radius: 12px;
  font-size: 2rem;
  color: #6366f1;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.services-section .service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.services-section .service-card .service-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 16px;
}

.services-section .service-card .service-description {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}

.services-section .service-card .service-link {
  color: #6366f1;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-section .service-card .service-link i {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.services-section .service-card .service-link:hover {
  color: #4f46e5;
}

.services-section .service-card .service-link:hover i {
  transform: translateX(4px);
}

/* About Section */
.about-section .about-image {
  position: relative;
}

.about-section .about-image img {
  border-radius: 24px;
}

.about-section .about-image .about-badge {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background: #6366f1;
  color: #ffffff;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.about-section .about-image .about-badge .badge-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-section .about-image .about-badge .badge-content p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.about-section .about-content {
  padding-left: 40px;
}

.about-section .about-content .section-tag {
  display: inline-block;
  color: #6366f1;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.about-section .about-content .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.about-section .about-content .about-text {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 18px;
}

.about-section .value-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.about-section .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #6366f1;
}

.about-section .value-card .value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border-radius: 12px;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-section .value-card .value-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-section .value-card .value-description {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Process Section */
.process-section .section-header {
  margin-bottom: 60px;
  text-align: center;
}

.process-section .section-header .section-tag {
  display: inline-block;
  color: #6366f1;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.process-section .section-header .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.process-section .section-header .section-description {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.process-section .process-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.process-section .process-step {
  flex: 1;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.process-section .process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-section .process-step .step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.process-section .process-step .step-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 70px 24px 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.process-section .process-step .step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #6366f1;
}

.process-section .process-step .step-content .step-icon {
  font-size: 2.5rem;
  color: #6366f1;
  margin-bottom: 16px;
}

.process-section .process-step .step-content .step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-section .process-step .step-content .step-description {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

.process-section .process-connector {
  display: none;
}

/* Industries Section */
.industries-section .section-header {
  margin-bottom: 60px;
  text-align: center;
}

.industries-section .section-header .section-tag {
  display: inline-block;
  color: #6366f1;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.industries-section .section-header .section-title,
.industries-section .section-header .section-description {
  color: #ffffff;
}

.industries-section .section-header .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.industries-section .section-header .section-description {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.industries-section .industry-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.industries-section .industry-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #818cf8;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.industries-section .industry-card .industry-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border-radius: 12px;
  font-size: 2rem;
  color: #ffffff;
  margin: 0 auto 20px;
}

.industries-section .industry-card .industry-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.industries-section .industry-card .industry-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section .section-header {
  margin-bottom: 60px;
  text-align: center;
}

.testimonials-section .section-header .section-tag {
  display: inline-block;
  color: #6366f1;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.testimonials-section .section-header .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}

.testimonials-section .section-header .section-description {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-section .testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
}

.testimonials-section .testimonials-carousel .testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.testimonials-section .testimonials-carousel .testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  border: 1px solid #e2e8f0;
}

.testimonials-section .testimonials-carousel .testimonial-card .testimonial-rating {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonials-section .testimonials-carousel .testimonial-card .testimonial-rating i {
  margin-right: 2px;
}

.testimonials-section .testimonials-carousel .testimonial-card .testimonial-text {
  color: #64748b;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  font-size: 18px;
}

.testimonials-section .testimonials-carousel .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials-section .testimonials-carousel .testimonial-card .testimonial-author .author-avatar {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.25rem;
}

.testimonials-section .testimonials-carousel .testimonial-card .testimonial-author .author-info .author-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #1e293b;
}

.testimonials-section .testimonials-carousel .testimonial-card .testimonial-author .author-info .author-role {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.testimonials-section .testimonials-carousel .carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  pointer-events: none;
}

.testimonials-section .testimonials-carousel .carousel-controls .carousel-btn {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #6366f1;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonials-section .testimonials-carousel .carousel-controls .carousel-btn:hover {
  background: #4f46e5;
  transform: scale(1.1);
}

.testimonials-section .testimonials-carousel .carousel-controls .carousel-btn:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
}

.testimonials-section .testimonials-carousel .carousel-controls .carousel-btn:disabled:hover {
  transform: scale(1);
}

.testimonials-section .client-logos {
  margin-top: 80px;
}

.testimonials-section .client-logos h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  color: #64748b;
  font-weight: 600;
}

.testimonials-section .client-logos .logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.testimonials-section .client-logos .logos-grid .logo-item {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #64748b;
  transition: all 0.3s ease;
}

.testimonials-section .client-logos .logos-grid .logo-item:hover {
  border-color: #6366f1;
  color: #6366f1;
  transform: translateY(-3px);
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-section .cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  z-index: -1;
}

.cta-section .cta-background .cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-section .cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-section .cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 32px;
}

.cta-section .cta-buttons .btn {
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cta-section .cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.cta-section .cta-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.cta-section .cta-buttons .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
}

/* Footer */
.footer {
  background: #0f172a;
  color: #f1f5f9;
  padding-top: 80px;
}

.footer .footer-widget {
  margin-bottom: 40px;
}

.footer .footer-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer .footer-logo .logo-text {
  color: #ffffff;
}

.footer .footer-logo .logo-accent {
  color: #6366f1;
}

.footer .footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer .social-links {
  display: flex;
  gap: 12px;
}

.footer .social-links .social-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer .social-links .social-link:hover {
  background: #6366f1;
  transform: translateY(-3px);
}

.footer .footer-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
}

.footer .footer-links li {
  margin-bottom: 12px;
}

.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .footer-links li a:hover {
  color: #6366f1;
  padding-left: 5px;
}

.footer .footer-contact {
  list-style: none;
  padding: 0;
}

.footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.footer .footer-contact li i {
  color: #6366f1;
  margin-top: 4px;
  font-size: 1.1rem;
}

.footer .footer-newsletter {
  background: #1e293b;
  border-radius: 16px;
  padding: 40px;
  margin: 60px 0 40px;
}

.footer .footer-newsletter .newsletter-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.footer .footer-newsletter .newsletter-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.footer .footer-newsletter .newsletter-form .input-group .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 14px 20px;
}

.footer .footer-newsletter .newsletter-form .input-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer .footer-newsletter .newsletter-form .input-group .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #6366f1;
  box-shadow: none;
  color: #ffffff;
}

.footer .footer-newsletter .newsletter-form .input-group .btn {
  padding: 14px 28px;
  font-weight: 600;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  margin-top: 20px;
}

.footer .footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer .footer-bottom .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.footer .footer-bottom .footer-legal li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .footer-bottom .footer-legal li a:hover {
  color: #6366f1;
}

/* Responsive Design */
@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .navbar-collapse {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-collapse .nav-link {
    color: #1e293b !important;
  }
  
  .navbar-collapse .nav-link:hover,
  .navbar-collapse .nav-link.active {
    color: #6366f1 !important;
  }
  
  .navbar-collapse .cta-btn {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }
  
  .about-section .about-content {
    padding-left: 0;
    margin-top: 60px;
  }
  
  .hero-section .hero-content .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .cta-section .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-section .section-header .section-title,
  .about-section .about-content .section-title,
  .process-section .section-header .section-title,
  .testimonials-section .section-header .section-title {
    font-size: 2rem;
  }
  
  .testimonials-section .testimonials-carousel {
    padding: 20px 10px;
  }
  
  .testimonials-section .testimonials-carousel .testimonial-track {
    flex-direction: column;
  }
  
  .testimonials-section .testimonials-carousel .testimonial-card {
    flex: 0 0 100%;
  }
  
  .footer .footer-bottom .footer-legal {
    justify-content: flex-start;
    margin-top: 16px;
  }
}

@media (min-width: 992px) {
  .process-section .process-timeline {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .process-section .process-step .step-number {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .process-section .process-step .step-content {
    padding-top: 24px;
    margin-top: 70px;
  }
  
  .process-section .process-connector {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    margin-top: 95px;
    flex-shrink: 0;
  }
  
  .footer .footer-newsletter .newsletter-description {
    margin-bottom: 0;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: #6366f1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4f46e5;
}