/* ===================================
   HOME PAGE CSS - DARK THEME
   NTL TECHNOLOGIES, LLC
   ================================= */

/* ===== HERO CAROUSEL SECTION ===== */

.it-solutions {
  position: relative;
  background: var(--color-background);
  overflow: hidden;
  margin-top: 80px; /* Account for fixed header */
}

.it-solutions::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.it-solutions__wrapper {
  position: relative;
  z-index: 2;
}

.it-solutions__carousel {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 800px;
  border-radius: 0;
  overflow: hidden;
}

.it-solutions__item {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.it-solutions__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

.it-solutions__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1) saturate(1.2);
  transition: filter var(--duration-700) var(--ease-out);
}

.it-solutions__item:hover .it-solutions__image {
  filter: brightness(0.5) contrast(1.15) saturate(1.3);
}

/* Carousel Caption */
.it-solutions__caption {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-light-100);
  z-index: 10;
  max-width: 600px;
  width: 85%;
  height: 30%;
  /* Minimal container that fits content */
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-8) var(--spacing-8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.it-solutions__caption-title {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-2); /* Reduced from spacing-4 */
  color: var(--color-light-100);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  letter-spacing: var(--letter-spacing-tight);
}

.it-solutions__caption-text {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-normal); /* Changed from relaxed to normal */
  color: var(--color-light-200);
  margin: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
  opacity: 0.95;
  font-weight: var(--font-weight-normal);
}

/* Carousel Controls */
.it-solutions__control-prev,
.it-solutions__control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: var(--backdrop-blur-md);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--duration-300) var(--ease-out);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.it-solutions__control-prev {
  left: var(--spacing-6);
}

.it-solutions__control-next {
  right: var(--spacing-6);
}

.it-solutions__control-prev:hover,
.it-solutions__control-next:hover {
  background: rgba(59, 130, 246, 0.6);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--glow-primary);
}

.it-solutions__icon {
  color: var(--color-light-100);
  font-size: var(--font-size-lg);
}

/* Carousel Indicators */
.it-solutions__indicators {
  position: absolute;
  bottom: var(--spacing-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-3);
  margin: 0;
  padding: 0;
  z-index: 10;
}

.it-solutions__indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--duration-300) var(--ease-out);
}

.it-solutions__indicators li.active,
.it-solutions__indicators li:hover {
  background: var(--color-primary-500);
  border-color: var(--color-light-100);
  transform: scale(1.2);
  box-shadow: var(--glow-primary);
}

/* ===== ABOUT US SECTION ===== */

.about-us {
  padding: var(--spacing-32) 0;
  background: var(--color-background-secondary);
  position: relative;
}

.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.about-us__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-16);
  position: relative;
}

.about-us__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  margin-top: var(--spacing-3);
}

.about-us__description {
  font-size: var(--font-size-lg);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-16);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.about-us__card {
  background: var(--gradient-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-8);
  transition: all var(--duration-300) var(--ease-out);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.about-us__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left var(--duration-500) var(--ease-out);
}

.about-us__card:hover::before {
  left: 100%;
}

.about-us__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-500);
}

.about-us__card-icon {
  font-size: var(--font-size-4xl);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--duration-300) var(--ease-out);
}

.about-us__card:hover .about-us__card-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-us__card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-3);
}

.about-us__card-text {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* ===== SERVICES SECTION ===== */

.services {
  padding: var(--spacing-32) 0;
  background: var(--color-background);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.services__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-16);
  position: relative;
}

.services__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  margin-top: var(--spacing-3);
}

.services__item {
  background: var(--gradient-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-8);
  transition: all var(--duration-300) var(--ease-out);
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
}

.services__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left var(--duration-500) var(--ease-out);
}

.services__item:hover::before {
  left: 100%;
}

.services__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-500);
}

.services__icon {
  font-size: var(--font-size-4xl);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--duration-300) var(--ease-out);
}

.services__item:hover .services__icon {
  transform: scale(1.1) rotate(5deg);
}

.services__heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-3);
}

.services__description {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* ===== WHY CHOOSE US SECTION ===== */

.why-choose-us {
  padding: var(--spacing-32) 0;
  background: var(--color-background-secondary);
  position: relative;
}

.why-choose-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 60% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 40% 60%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.why-choose-us__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-16);
  position: relative;
}

.why-choose-us__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  margin-top: var(--spacing-3);
}

.why-choose-us__description {
  font-size: var(--font-size-lg);
  text-align: center;
  max-width: 900px;
  margin: 0 auto var(--spacing-16);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* ===== IMPROVED GRID LAYOUT FOR EQUAL HEIGHTS ===== */

.why-choose-us .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-6);
  align-items: stretch;
}

.why-choose-us .col-md-4 {
  display: contents;
}

.why-choose-us__reason {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-6);
  transition: all var(--duration-300) var(--ease-out);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-4);
  height: 100%;
  min-height: 180px;
}

.why-choose-us__reason:hover {
  background: rgba(59, 130, 246, 0.05);
  transform: translateX(8px);
  border-color: var(--color-primary-500);
  box-shadow: var(--shadow-lg);
}

.why-choose-us__reason-icon {
  font-size: var(--font-size-3xl);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--duration-300) var(--ease-out);
  flex-shrink: 0;
  margin-top: var(--spacing-1);
}

.why-choose-us__reason:hover .why-choose-us__reason-icon {
  transform: scale(1.1) rotate(10deg);
}

.why-choose-us__reason-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-choose-us__reason-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-2);
  line-height: var(--line-height-tight);
}

.why-choose-us__reason-text {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

/* ===== OUR APPROACH SECTION ===== */

.our-approach {
  padding: var(--spacing-32) 0;
  background: var(--color-background);
  position: relative;
}

.our-approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.our-approach__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-16);
  position: relative;
}

.our-approach__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  margin-top: var(--spacing-3);
}

/* ===== IMPROVED CARDS GRID LAYOUT ===== */

.our-approach__cards-grid {
  display: grid;
  gap: var(--spacing-8);
  margin-bottom: var(--spacing-20);
  /* Default: 4 columns on large screens */
  grid-template-columns: repeat(4, 1fr);
}

.our-approach__card {
  background: var(--gradient-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-8);
  text-align: center;
  transition: all var(--duration-300) var(--ease-out);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.our-approach__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left var(--duration-500) var(--ease-out);
}

.our-approach__card:hover::before {
  left: 100%;
}

.our-approach__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-500);
}

.our-approach__card-icon {
  font-size: var(--font-size-4xl);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--duration-300) var(--ease-out);
  margin-bottom: var(--spacing-3);
}

.our-approach__card:hover .our-approach__card-icon {
  transform: scale(1.1) rotate(5deg);
}

.our-approach__card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-3);
  line-height: var(--line-height-tight);
}

.our-approach__card-text {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  flex-grow: 1;
}

/* ===== IMPROVED TIMELINE LAYOUT ===== */

.our-approach__timeline {
  position: relative;
  padding: var(--spacing-20) 0;
}

.our-approach__timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.our-approach__timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: var(--border-radius-full);
  z-index: 1;
}

.our-approach__timeline-step {
  position: relative;
  margin-bottom: var(--spacing-20);
}

.our-approach__timeline-step:last-child {
  margin-bottom: 0;
}

.our-approach__timeline-content {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 120px;
}

.our-approach__timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--color-surface-elevated);
  border: 4px solid var(--color-primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--duration-300) var(--ease-out);
  box-shadow: var(--shadow-md);
}

.our-approach__timeline-step:hover .our-approach__timeline-marker {
  transform: translateX(-50%) scale(1.1);
  box-shadow: var(--glow-primary);
}

.our-approach__step-icon {
  font-size: var(--font-size-xl);
  color: var(--color-primary-500);
}

.our-approach__timeline-item-content {
  background: var(--gradient-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-6);
  max-width: 400px;
  width: 100%;
  transition: all var(--duration-300) var(--ease-out);
  position: relative;
  z-index: 5;
}

/* Alternating left/right positioning */
.our-approach__timeline-step:nth-child(odd) .our-approach__timeline-item-content {
  margin-right: auto;
  margin-left: 0;
  text-align: right;
  transform: translateX(-40px);
}

.our-approach__timeline-step:nth-child(even) .our-approach__timeline-item-content {
  margin-left: auto;
  margin-right: 0;
  text-align: left;
  transform: translateX(40px);
}

.our-approach__timeline-step:hover .our-approach__timeline-item-content {
  transform: translateY(-4px) translateX(-40px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-500);
}

.our-approach__timeline-step:nth-child(even):hover .our-approach__timeline-item-content {
  transform: translateY(-4px) translateX(40px);
}

.our-approach__step-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-2);
  line-height: var(--line-height-tight);
}

.our-approach__step-text {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* ===== OUR FOUNDATION SECTION ===== */

.our-foundation {
  padding: var(--spacing-32) 0;
  background: var(--color-background-secondary);
  position: relative;
}

.our-foundation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 40% 60%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 60% 40%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.our-foundation__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-16);
  position: relative;
}

.our-foundation__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  margin-top: var(--spacing-3);
}

.our-foundation__intro {
  font-size: var(--font-size-lg);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-16);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.our-foundation__item {
  background: var(--gradient-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-8);
  transition: all var(--duration-300) var(--ease-out);
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
}

.our-foundation__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left var(--duration-500) var(--ease-out);
}

.our-foundation__item:hover::before {
  left: 100%;
}

.our-foundation__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-500);
}

.our-foundation__icon {
  font-size: var(--font-size-4xl);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--duration-300) var(--ease-out);
}

.our-foundation__item:hover .our-foundation__icon {
  transform: scale(1.1) rotate(5deg);
}

.our-foundation__heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-3);
}

.our-foundation__description {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* ===== OUR VISION SECTION ===== */

.our-vision {
  padding: var(--spacing-32) 0;
  background: var(--color-background);
  position: relative;
}

.our-vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.our-vision__title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-16);
  position: relative;
}

.our-vision__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-full);
  margin-top: var(--spacing-3);
}

.our-vision__content {
  background: var(--gradient-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-8);
  transition: all var(--duration-300) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.our-vision__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left var(--duration-500) var(--ease-out);
}

.our-vision__content:hover::before {
  left: 100%;
}

.our-vision__content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-500);
}

.our-vision__description {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.our-vision__pillar {
  background: var(--gradient-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-xl);
  padding: var(--spacing-6);
  transition: all var(--duration-300) var(--ease-out);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.our-vision__pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left var(--duration-500) var(--ease-out);
}

.our-vision__pillar:hover::before {
  left: 100%;
}

.our-vision__pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-500);
}

.our-vision__pillar-icon {
  font-size: var(--font-size-3xl);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform var(--duration-300) var(--ease-out);
}

.our-vision__pillar:hover .our-vision__pillar-icon {
  transform: scale(1.1) rotate(5deg);
}

.our-vision__pillar-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-2);
}

.our-vision__pillar-text {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large desktop screens (1400px+) */
@media (min-width: 1400px) {
  .it-solutions__caption-title {
    font-size: var(--font-size-6xl);
  }
  
  .it-solutions__caption-text {
    font-size: var(--font-size-2xl);
  }
  
  /* Keep 4 columns on extra large screens */
  .our-approach__cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-10);
  }
}

/* Desktop screens (992px - 1399px) */
@media (max-width: 1399px) and (min-width: 992px) {
  .our-approach__cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-8);
  }
}

/* Tablet screens (768px - 991px) */
@media (max-width: 991px) {
  .it-solutions {
    margin-top: 70px;
  }
  
  .it-solutions__carousel {
    height: 60vh;
    min-height: 400px;
  }
  
  .it-solutions__caption {
    padding: var(--spacing-6);
    width: 75%;
    bottom: 30%;
  }
  
  .it-solutions__caption-title {
    font-size: var(--font-size-3xl);
  }
  
  .it-solutions__caption-text {
    font-size: var(--font-size-base);
  }
  
  .it-solutions__control-prev,
  .it-solutions__control-next {
    width: 50px;
    height: 50px;
  }
  
  .it-solutions__control-prev {
    left: var(--spacing-4);
  }
  
  .it-solutions__control-next {
    right: var(--spacing-4);
  }
  
  .about-us,
  .services,
  .why-choose-us,
  .our-approach,
  .our-foundation,
  .our-vision {
    padding: var(--spacing-24) 0;
  }
  
  .about-us__title,
  .services__title,
  .why-choose-us__title,
  .our-approach__title,
  .our-foundation__title,
  .our-vision__title {
    font-size: var(--font-size-3xl);
  }
  
  .about-us__description,
  .why-choose-us__description,
  .our-foundation__intro {
    font-size: var(--font-size-base);
  }
  
  /* 2x2 grid layout for tablets */
  .our-approach__cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-16);
  }
  
  .our-approach__timeline {
    padding: var(--spacing-16) 0;
  }
  
  .our-approach__timeline-line {
    display: none;
  }
  
  .our-approach__timeline-step {
    margin-bottom: var(--spacing-16);
  }
  
  .our-approach__timeline-content {
    flex-direction: column;
    min-height: auto;
  }
  
  .our-approach__timeline-marker {
    position: static;
    transform: none;
    margin: 0 auto var(--spacing-4);
    flex-shrink: 0;
  }
  
  .our-approach__timeline-item-content {
    max-width: none;
    text-align: center;
    transform: none !important;
    margin: 0;
  }
  
  .our-approach__timeline-step:hover .our-approach__timeline-item-content {
    transform: translateY(-4px) !important;
  }
}

/* Mobile screens (767px and below) */
@media (max-width: 767px) {
  .it-solutions {
    margin-top: 60px;
  }
  
  .it-solutions__carousel {
    height: 50vh;
    min-height: 350px;
  }
  
  .it-solutions__caption {
    padding: var(--spacing-4);
    width: 70%;
  }
  
  .it-solutions__caption-title {
    font-size: var(--font-size-2xl);
  }
  
  .it-solutions__caption-text {
    font-size: var(--font-size-sm);
  }
  
  .it-solutions__control-prev,
  .it-solutions__control-next {
    width: 40px;
    height: 40px;
  }
  
  .it-solutions__control-prev {
    left: var(--spacing-3);
  }
  
  .it-solutions__control-next {
    right: var(--spacing-3);
  }
  
  .it-solutions__icon {
    font-size: var(--font-size-base);
  }
  
  .it-solutions__indicators {
    bottom: var(--spacing-4);
  }
  
  .it-solutions__indicators li {
    width: 10px;
    height: 10px;
  }
  
  .about-us,
  .services,
  .why-choose-us,
  .our-approach,
  .our-foundation,
  .our-vision {
    padding: var(--spacing-20) 0;
  }
  
  .about-us__title,
  .services__title,
  .why-choose-us__title,
  .our-approach__title,
  .our-foundation__title,
  .our-vision__title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-12);
  }
  
  .about-us__title::after,
  .services__title::after,
  .why-choose-us__title::after,
  .our-approach__title::after,
  .our-foundation__title::after,
  .our-vision__title::after {
    width: 60px;
  }
  
  .about-us__description,
  .why-choose-us__description,
  .our-foundation__intro {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-12);
  }
  
  .about-us__card,
  .services__item,
  .our-approach__card,
  .our-foundation__item,
  .our-vision__content,
  .our-vision__pillar {
    padding: var(--spacing-6);
  }
  
  .about-us__card-icon,
  .services__icon,
  .our-approach__card-icon,
  .our-foundation__icon {
    font-size: var(--font-size-3xl);
  }
  
  .about-us__card-title,
  .services__heading,
  .our-approach__card-title,
  .our-foundation__heading {
    font-size: var(--font-size-lg);
  }
  
  .about-us__card-text,
  .services__description,
  .our-approach__card-text,
  .our-foundation__description {
    font-size: var(--font-size-sm);
  }
  
  .why-choose-us .row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4);
  }
  
  .why-choose-us__reason {
    padding: var(--spacing-4);
    min-height: 160px;
  }
  
  .why-choose-us__reason:hover {
    transform: translateX(4px);
  }
  
  .why-choose-us__reason-icon {
    font-size: var(--font-size-2xl);
  }
  
  .why-choose-us__reason-title {
    font-size: var(--font-size-lg);
  }
  
  .why-choose-us__reason-text {
    font-size: var(--font-size-sm);
  }
  
  /* Single column layout for mobile */
  .our-approach__cards-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-12);
  }
  
  .our-approach__card {
    min-height: 240px;
  }
  
  .our-approach__timeline {
    padding: var(--spacing-12) 0;
  }
  
  .our-approach__timeline-step {
    margin-bottom: var(--spacing-12);
  }
  
  .our-approach__timeline-marker {
    width: 50px;
    height: 50px;
  }
  
  .our-approach__step-icon {
    font-size: var(--font-size-lg);
  }
  
  .our-approach__timeline-item-content {
    padding: var(--spacing-4);
  }
  
  .our-approach__step-title {
    font-size: var(--font-size-base);
  }
  
  .our-approach__step-text {
    font-size: var(--font-size-sm);
  }
  
  .our-vision__pillar-icon {
    font-size: var(--font-size-2xl);
  }
  
  .our-vision__pillar-title {
    font-size: var(--font-size-base);
  }
  
  .our-vision__pillar-text,
  .our-vision__description {
    font-size: var(--font-size-sm);
  }
}

/* Small mobile screens (575px and below) */
@media (max-width: 575px) {
  .it-solutions__carousel {
    height: 40vh;
    min-height: 300px;
  }
  
  .it-solutions__caption {
    padding: var(--spacing-3);
    width: 65%;
  }
  
  .it-solutions__caption-title {
    font-size: var(--font-size-xl);
  }
  
  .it-solutions__caption-text {
    font-size: var(--font-size-xs);
  }
  
  .about-us,
  .services,
  .why-choose-us,
  .our-approach,
  .our-foundation,
  .our-vision {
    padding: var(--spacing-16) 0;
  }
  
  .about-us__title,
  .services__title,
  .why-choose-us__title,
  .our-approach__title,
  .our-foundation__title,
  .our-vision__title {
    font-size: var(--font-size-xl);
  }
  
  .about-us__card,
  .services__item,
  .our-approach__card,
  .our-foundation__item,
  .our-vision__content,
  .our-vision__pillar {
    padding: var(--spacing-4);
  }
  
  .about-us__card:hover,
  .services__item:hover,
  .our-approach__card:hover,
  .our-foundation__item:hover {
    transform: translateY(-4px);
  }
  
  .our-approach__card {
    min-height: 220px;
  }
  
  /* Single column layout for Why Choose Us on mobile */
  .why-choose-us .row {
    grid-template-columns: 1fr;
    gap: var(--spacing-4);
  }
  
  .why-choose-us__reason {
    min-height: 140px;
  }
}

/* ===== ANIMATION DELAYS ===== */

.about-us__card:nth-child(1) {
  animation-delay: 0.1s;
}

.about-us__card:nth-child(2) {
  animation-delay: 0.2s;
}

.about-us__card:nth-child(3) {
  animation-delay: 0.3s;
}

.services__item:nth-child(1) {
  animation-delay: 0.1s;
}

.services__item:nth-child(2) {
  animation-delay: 0.2s;
}

.services__item:nth-child(3) {
  animation-delay: 0.3s;
}

.services__item:nth-child(4) {
  animation-delay: 0.4s;
}

.services__item:nth-child(5) {
  animation-delay: 0.5s;
}

.services__item:nth-child(6) {
  animation-delay: 0.6s;
}

.our-approach__card:nth-child(1) {
  animation-delay: 0.1s;
}

.our-approach__card:nth-child(2) {
  animation-delay: 0.2s;
}

.our-approach__card:nth-child(3) {
  animation-delay: 0.3s;
}

.our-approach__card:nth-child(4) {
  animation-delay: 0.4s;
}