/* Custom CSS Variables */
:root {
  --primary-color: #3b82f6;
  --secondary-color: #8b5cf6;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #06b6d4;
  --dark-color: #1f2937;
  --light-color: #f8fafc;
  --pink-color: #ec4899;
  --purple-color: #8b5cf6;
  --cyan-color: #06b6d4;
  --green-color: #10b981;
  --orange-color: #f59e0b;
  --yellow-color: #eab308;

  --gradient-primary: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --gradient-secondary: linear-gradient(135deg, #8b5cf6, #c084fc);
  --gradient-danger: linear-gradient(135deg, #ef4444, #f87171);
  --gradient-dark: linear-gradient(135deg, #374151, #6b7280);
  --gradient-pink: linear-gradient(135deg, #ec4899, #f43f5e);
  --gradient-cyan: linear-gradient(135deg, #06b6d4, #3b82f6);
  --gradient-green: linear-gradient(135deg, #10b981, #059669);
  --gradient-orange: linear-gradient(135deg, #f59e0b, #ea580c);
  --gradient-purple: linear-gradient(135deg, #8b5cf6, #a855f7);
  --gradient-yellow: linear-gradient(135deg, #eab308, #f59e0b);
  --gradient-info: linear-gradient(135deg, #06b6d4, #7dd3fc);
  --gradient-success: linear-gradient(135deg, #10b981, #6ee7b7);


  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #374151;
  overflow-x: hidden;
  background-color: #f8fafc;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-cyan);
}

/* Utility Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-pink {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-cyan {
  background: var(--gradient-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-green {
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-orange {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-purple {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-yellow {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-pink {
  color: var(--pink-color);
}

.text-blue {
  color: var(--primary-color);
}

.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-secondary { background: var(--gradient-secondary); }
.bg-gradient-danger { background: var(--gradient-danger); }
.bg-gradient-dark { background: var(--gradient-dark); }
.bg-gradient-info { background: var(--gradient-info); }
.bg-gradient-success { background: var(--gradient-success); }
.bg-gradient-pink { background: var(--gradient-pink); }
.bg-gradient-cyan { background: var(--gradient-cyan); }
.bg-gradient-green { background: var(--gradient-green); }
.bg-gradient-orange { background: var(--gradient-orange); }
.bg-gradient-purple { background: var(--gradient-purple); }
.bg-gradient-yellow { background: var(--gradient-yellow); }
.bg-gradient-blue { background: var(--gradient-primary); }

/* Add this with your other .bg-gradient classes */
.bg-gradient-red { background: var(--gradient-danger); }
.bg-gradient-warning { background: var(--gradient-warning); }
.bg-gradient-red { background: var(--gradient-danger); }

/* Button Styles */
.btn-gradient {
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: white;
}

.btn-quote {
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  color: white;
}

/* Header Styles */
.navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-md);
}


.navbar-brand {
  font-weight: 700;
  text-decoration: none;
}

.brand-icon {
  position: relative;
}

.icon-wrapper {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.icon-wrapper:hover {
  transform: scale(1.1);
}

.brand-letter {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

.pulse-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: var(--gradient-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-tagline {
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-link {
  font-weight: 500;
  color: #374151;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.dropdown-toggle::after {
    margin-left: 0.5em;
    vertical-align: 0.1em;
}

.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 10px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-xl);
  border-radius: 16px;
  padding: 1rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: var(--primary-color);
  transform: translateX(4px);
}

@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
    }
    .navbar-nav .nav-item {
        padding: 0.5rem 0;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .navbar-collapse {
        border-top: 1px solid #e5e7eb;
        margin-top: 1rem;
        padding-top: 1rem;
    }
}


/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 50%, #fce7f3 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 60px;
  height: 60px;
  background: var(--gradient-pink);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 40px;
  height: 40px;
  background: var(--gradient-cyan);
  top: 30%;
  right: 15%;
  animation-delay: 1s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background: var(--gradient-purple);
  bottom: 30%;
  left: 15%;
  animation-delay: 2s;
}

.shape-4 {
  width: 50px;
  height: 50px;
  background: var(--gradient-orange);
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(236, 72, 153, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-title .small {
  font-size: 0.6em;
}

.hero-description {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 500px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Section Styles */
.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f3e8ff 100%);
  position: relative;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.service-description {
  color: #6b7280;
  line-height: 1.6;
  flex-grow: 1; /* Allows this element to grow and push the button down */
  margin-bottom: 1.5rem;
}

.btn-service-card {
    background-color: var(--light-color);
    border: 1px solid #e5e7eb;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-service-card:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}


/* About Section */
.about-section {
  background: white;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.about-image-wrapper {
  position: relative;
}

.about-image-card {
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow-2xl);
  border: 1px solid #f1f5f9;
  overflow: hidden;
}

.about-image-card img {
    border-radius: 24px;
}

.about-image-card-2 {
    display: none;
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #f1f5f9;
}

.about-icon {
  font-size: 2.5rem;
}


.value-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.value-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.1rem;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 12px;
}


/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f3e8ff 100%);
  position: relative;
}

.stat-card {
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  color: #6b7280;
  font-weight: 500;
  font-size: 0.875rem;
}

/* Industries Section */
.industries-section {
  background: white;
  position: relative;
}

.industry-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.industry-header {
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.industry-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.industry-card:hover .industry-header::before {
  background: rgba(0, 0, 0, 0.2);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
}

.industry-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.industry-content {
  padding: 1.5rem;
}

.industry-content h6 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.industry-content p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

.cta-card {
  background: var(--gradient-primary);
  padding: 3rem 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow-2xl);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f3e8ff 100%);
  position: relative;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px; /* Add space for the arrows */
}

.testimonial-card-wrapper {
    overflow: hidden;
    position: relative;
}


.testimonial-card {
  background: linear-gradient(135deg, #fce7f3, #e0e7ff);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-2xl);
  border: none;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  opacity: 0.2;
}

.testimonial-quote i {
  font-size: 4rem;
  color: var(--pink-color);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: #fbbf24;
}

.testimonial-stars i {
  margin-right: 0.25rem;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}

.testimonial-author h6 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: var(--shadow-lg);
    color: var(--primary-color);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-xl);
}

.testimonial-arrow.prev {
    left: 0;
}

.testimonial-arrow.next {
    right: 0;
}


.testimonial-controls {
  margin-top: 2rem;
}

.testimonial-dots {
  display: inline-flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: var(--gradient-primary);
  transform: scale(1.25);
}

/* Contact Section */
.contact-section {
  padding-top: 6rem;
  background: white;
  position: relative;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-header {
  background: var(--gradient-primary);
  padding: 2rem;
  text-align: center;
}

.contact-form-body {
  padding: 2rem;
}

.form-control {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

/* Footer Styles */
.footer-section {
  background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #1f2937 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, #ec4899 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, #06b6d4 0%, transparent 50%);
  opacity: 0.1;
}

.footer-brand-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-cyan);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-pulse-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: var(--gradient-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.footer-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.footer-brand-tagline {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-description {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}

.footer-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.industry-tag {
  background: #374151;
  color: #d1d5db;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-tag:hover {
  background: var(--gradient-pink);
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 3rem;
  padding-top: 2rem;
  color: #9ca3af;
}


/* SERVICE PAGES STYLES */
.service-hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    padding: 6rem 0;
}
.service-hero-content .section-badge.alt {
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 50px;
}
.service-title-alt { 
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    font-weight: 700; 
    color: var(--dark-color); 
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.service-subtitle { font-size: 1.5rem; color: #6b7280; font-weight: 500; }
.service-description { max-width: 600px; margin: 1rem auto 2rem; }

.app-process-section { background: white; }
.process-item { margin-bottom: 3rem; }
.process-content h3 { font-weight: 700; display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.process-content h3 span { background: var(--gradient-primary); color: white; border-radius: 50%; width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.process-image-alt {
    background: #f8fafc;
    border-radius: 24px;
    padding: 1rem;
    border: 1px solid #e5e7eb;
}
.process-image-alt img {
    border-radius: 16px;
}

.why-choose-us-section { background: #f8fafc; }
.why-choose-card-alt { background: white; padding: 2rem; border-radius: 20px; text-align: center; height: 100%; transition: all 0.3s ease; border: 1px solid #e5e7eb; }
.why-choose-card-alt:hover { box-shadow: var(--shadow-xl); transform: translateY(-8px); }
.why-choose-icon-alt { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.75rem; background: var(--icon-bg); color: var(--icon-color); }
.why-choose-card-alt h5 { margin-bottom: 0.75rem; font-weight: 700; }
.why-choose-alt-item { background: white; padding: 1.5rem; border-radius: 12px; box-shadow: var(--shadow-md); font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 1rem; transition: all 0.3s ease; border: 1px solid #e5e7eb; }
.why-choose-alt-item:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-xl); border-color: var(--primary-color); }
.why-choose-alt-item i { color: var(--primary-color); font-size: 1.25rem; }

.cta-section-service { background: white; padding-bottom: 6rem; }
.cta-card-service { background: var(--gradient-primary); color: white; padding: 4rem; border-radius: 24px; box-shadow: var(--shadow-2xl); }
.cta-card-service h2 { font-weight: 700; }
.cta-card-service p { color: rgba(255,255,255,0.8); }

/* MOBILE APP DEV PAGE */
.custom-solutions-section { background: white; padding: 6rem 0; }
.solution-showcase-card { background: white; border-radius: 24px; box-shadow: var(--shadow-2xl); padding: 1.5rem; }
.solution-showcase-header { background: #f8fafc; border-radius: 16px; padding: 1.5rem; text-align: center; position: relative; min-height: 200px; }
.solution-showcase-header .solution-img-1 { width: 45%; border-radius: 12px; box-shadow: var(--shadow-lg); position: absolute; left: 10%; top: 50%; transform: translateY(-50%) rotate(-10deg); transition: all 0.3s ease; }
.solution-showcase-header .solution-img-2 { width: 45%; border-radius: 12px; box-shadow: var(--shadow-xl); position: absolute; right: 10%; top: 50%; transform: translateY(-50%) rotate(10deg); transition: all 0.3s ease; }
.solution-showcase-card:hover .solution-img-1 { transform: translateY(-55%) rotate(-12deg) scale(1.05); }
.solution-showcase-card:hover .solution-img-2 { transform: translateY(-45%) rotate(12deg) scale(1.05); }
.solution-showcase-body { padding: 1.5rem 0.5rem 0.5rem; }
.solution-showcase-body h5 { font-weight: 700; }
.advantages-section { background: white; }
.advantage-item { background: white; padding: 1rem 1.5rem; border-radius: 12px; box-shadow: var(--shadow-md); font-weight: 500; display: flex; align-items: center; gap: 1rem; transition: all 0.3s ease; border: 1px solid #e5e7eb; }
.advantage-item:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-xl); border-color: var(--primary-color); }
.advantage-icon { color: var(--warning-color); font-size: 1.25rem; background-color: #fffbeb; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.our-services-section { background: #f8fafc; }
.app-service-card-alt { background: white; padding: 2rem; border-radius: 20px; transition: all 0.3s ease; height: 100%; border: 1px solid #e5e7eb; text-align: center;}
.app-service-card-alt:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.app-service-icon-alt { font-size: 1.75rem; color: white; width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); margin: 0 auto 1.5rem; }
.app-service-card-alt h5 { margin-bottom: 0.5rem; font-weight: 700; }
.app-service-card-alt p { color: #6b7280; font-size: 0.95rem; }

/* WEBSITE DEV PAGE */
.creative-design-section { background: #f8fafc; padding: 6rem 0;}
.creative-design-card { background: white; border-radius: 24px; padding: 2rem; box-shadow: var(--shadow-2xl); border: 1px solid #e5e7eb; text-align: center; }
.creative-design-icon { font-size: 4rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.creative-design-checklist { list-style: none; padding: 0; text-align: left; display: inline-block; }
.creative-design-checklist li { margin-bottom: 1rem; font-weight: 500; display: flex; align-items: center; gap: 0.75rem; }
.creative-design-checklist li i { color: var(--success-color); }
.web-services-section { background: white; }
.web-service-card { background: white; border-radius: 20px; padding: 2rem; box-shadow: var(--shadow-lg); border: 1px solid #e5e7eb; height: 100%; transition: all 0.3s ease; }
.web-service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.web-service-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1.5rem; background: var(--bg); color: var(--color); }
.web-service-card h5 { font-weight: 700; margin-bottom: 0.75rem; }
.overview-image-card { border-radius: 24px; box-shadow: var(--shadow-2xl); overflow: hidden;}
.overview-image-card img { transition: transform 0.3s ease; }
.overview-image-card:hover img { transform: scale(1.05); }


/* ECOMMERCE PAGE */
.ecommerce-solution-section { background: white; padding: 6rem 0;}
.ecommerce-solution-card { background: linear-gradient(135deg, #f0f9ff, #e0e7ff); border-radius: 24px; padding: 2rem; text-align: center; border: 1px solid #dbeafe; }
.ecommerce-solution-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 1rem; }
.ecommerce-solution-card h5 { font-weight: 700; }
.marketplace-section { background: #f8fafc; }
.marketplace-card { background: white; border-radius: 20px; padding: 2rem; text-align: center; border: 1px solid #e5e7eb; transition: all 0.3s ease; height: 100%; }
.marketplace-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.marketplace-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin: 0 auto 1.5rem; background: var(--bg); color: var(--color); }
.marketplace-card h5 { font-weight: 700; }
.core-features-section { background: white; }
.feature-item { background: #f8fafc; padding: 1rem 1.5rem; border-radius: 12px; font-weight: 500; display: flex; align-items: center; gap: 1rem; transition: all 0.3s ease; border: 1px solid #e5e7eb; }
.feature-item:hover { background: white; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-item i { color: var(--success-color); font-size: 1.25rem; }
.benefits-section { background: #f8fafc; }
.benefit-card { background: white; border-radius: 20px; padding: 2rem; text-align: center; height: 100%; transition: all 0.3s ease; border: 1px solid #e5e7eb; }
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.benefit-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.75rem; background: var(--bg); color: var(--color); }
.benefit-card h5 { font-weight: 700; margin-bottom: 0.75rem; }

/* DIGITAL MARKETING PAGE */
.dm-services-section { background: #f8fafc; }
.dm-service-card { display: flex; align-items: flex-start; gap: 1.5rem; background: white; padding: 2rem; border-radius: 20px; transition: all 0.3s ease; height: 100%; border: 1px solid #e5e7eb; }
.dm-service-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }
.dm-service-icon { font-size: 1.75rem; color: var(--color); background: var(--bg); width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dm-service-content h5 { font-weight: 700; }

/* AI & ML PAGE */
.ai-hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}
.ai-hero-section .service-title-alt, .ai-hero-section .service-subtitle, .ai-hero-section .service-description {
    color: var(--dark-color) !important;
}
.ai-hero-section .text-white-50 {
    color: #6b7280 !important;
}
.ai-hero-section .btn-light {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.ai-services-overview-section { background: white; }
.ai-service-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}
.ai-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: white;
}
.ai-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
}
.ai-service-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ai-use-cases-section { background: #f8fafc; }
.accordion-button {
    font-weight: 600;
}
.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: #e0e7ff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}
.accordion-header {
    margin-bottom: 0;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25);
}

/* ABOUT US PAGE */
.our-story-section { background: white; }
.story-card { background: white; border-radius: 24px; box-shadow: var(--shadow-2xl); border: 1px solid #e5e7eb; }
.story-card-header { padding: 1.5rem; border-bottom: 1px solid #e5e7eb; }
.story-card-header h5 { font-weight: 700; }
.story-card-body { padding: 1.5rem; }
.stat-item { background: #f8fafc; border-radius: 8px; padding: 0.75rem; text-align: center; }
.stat-item span { font-weight: 700; display: block; font-size: 1.25rem; }
.story-card-footer { padding: 1.5rem; border-top: 1px solid #e5e7eb; display: flex; justify-content: space-between; align-items: center; }
.story-card-footer h6 { font-weight: 600; }

.achievements-section { background: #f8fafc; }
.achievement-card { background: white; border-radius: 20px; padding: 2rem; text-align: center; height: 100%; border: 1px solid #e5e7eb; transition: all 0.3s ease; }
.achievement-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.achievement-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.75rem; background: var(--bg); color: var(--color); }
.achievement-card h5 { font-weight: 700; margin-bottom: 0.5rem; }

.specialize-card { background: white; border-radius: 20px; padding: 2rem; height: 100%; border: 1px solid #e5e7eb; transition: all 0.3s ease; text-align: center; }
.specialize-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.specialize-icon { font-size: 2.5rem; margin-bottom: 1rem; color: var(--primary-color); }
.specialize-card h5 { font-weight: 700; }

.team-section { background: white; }
.team-card { background: #f8fafc; border-radius: 20px; padding: 2rem; text-align: center; height: 100%; border: 1px solid #e5e7eb; transition: all 0.3s ease; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); background: white; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.5rem; font-weight: 700; color: var(--dark-color); }
.team-card h5 { font-weight: 700; }
.team-title { color: var(--primary-color); font-weight: 600; margin-bottom: 0.5rem; }
.team-desc { font-size: 0.9rem; color: #6b7280; }

.process-section { background: #f8fafc; }
.process-card { background: white; border-radius: 20px; padding: 2rem; height: 100%; border: 1px solid #e5e7eb; transition: all 0.3s ease; }
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.process-card span { display: block; font-size: 1.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 1rem; }
.process-card h5 { font-weight: 700; }

/* CONTACT US PAGE */
.contact-details-section { background: white; }
.contact-card { background: #f8fafc; border-radius: 20px; padding: 2rem; text-align: center; border: 1px solid #e5e7eb; height: 100%; }
.contact-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.75rem; color: white; }
.contact-card h5 { font-weight: 700; }

.contact-form-map-section { background: #f8fafc; }
.contact-form-wrapper { background: white; padding: 2rem; border-radius: 20px; border: 1px solid #e5e7eb; }
.map-wrapper { border-radius: 20px; overflow: hidden; height: 100%; border: 1px solid #e5e7eb; }


/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-image-card-2 {
        bottom: -20px;
        right: -20px;
        padding: 1rem;
    }
    .about-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}


@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card,
  .value-card {
    margin-bottom: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-slider {
    padding: 0;
  }

  .testimonial-arrow {
    display: none; /* Hide arrows on smaller screens, rely on dots */
  }

  .contact-form-header,
  .contact-form-body {
    padding: 1.5rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .about-image-wrapper {
      margin-bottom: 4rem;
  }

  .process-item {
      flex-direction: column !important;
  }
  .process-image-alt {
      order: -1;
      margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .navbar-brand .brand-name {
    font-size: 1rem;
  }

  .navbar-brand .brand-tagline {
    font-size: 0.6rem;
  }

  .service-card,
  .value-card,
  .industry-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .footer-section,
  .floating-shape,
  .hero-bg {
    display: none;
  }

  .hero-section {
    background: white;
    color: black;
  }

  .btn {
    border: 1px solid #000;
    background: white;
    color: black;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .service-card,
  .value-card,
  .industry-card,
  .testimonial-card {
    border: 2px solid #000;
  }

  .btn-gradient {
    background: #000;
    color: #fff;
    border: 2px solid #000;
  }

  .text-gradient {
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-shape {
    animation: none;
  }

  .pulse-dot,
  .footer-pulse-dot {
    animation: none;
  }
}
