/* ========================================
   SERVICE PAGE STYLES
   Infutive Technology
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ===== STICKY SIDEBAR STYLES ===== */
.services-details {
  background: #f8f9fc;
}

.service-sidebar {
  position: sticky;
  z-index: 10;
}

.service-sidebar__widget {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 30px rgba(18, 28, 39, 0.06);
  border: 1px solid rgba(18, 28, 39, 0.06);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-sidebar__widget:hover {
  box-shadow: 0 8px 40px rgba(18, 28, 39, 0.1);
}

.service-sidebar__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #121C27;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #121C27;
  position: relative;
}

.service-sidebar__title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #2563eb;
}

.service-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-sidebar__list li {
  margin-bottom: 2px;
}

.service-sidebar__list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: #4a5568;
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1.4;
}

.service-sidebar__list li a:hover {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
  transform: translateX(4px);
}

.service-sidebar__list li.active a {
  background: #121C27;
  color: #ffffff;
  font-weight: 600;
}

.service-sidebar__list li a .sidebar-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.08);
  font-size: 12px;
  color: #2563eb;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.service-sidebar__list li.active a .sidebar-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.service-sidebar__list li a:hover .sidebar-icon {
  background: rgba(37, 99, 235, 0.15);
}

/* ===== SIDEBAR CTA WIDGET ===== */
.sidebar-cta {
  background: linear-gradient(135deg, #121C27 0%, #1e3a5f 100%);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sidebar-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.sidebar-cta__icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 24px;
  color: #60a5fa;
}

.sidebar-cta h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.sidebar-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.6;
}

.sidebar-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-cta .cta-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* ===== BREADCRUMB SECTION ===== */
.breadcrumb-custom {
  background: linear-gradient(135deg, #121C27 0%, #1e3a5f 50%, #0f172a 100%);
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.breadcrumb-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg/pattern-dot.png') repeat;
  opacity: 0.05;
}

.breadcrumb-custom__glow-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumb-custom__glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumb-custom__content {
  position: relative;
  z-index: 2;
}

.breadcrumb-custom__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.breadcrumb-custom__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-custom__nav li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.breadcrumb-custom__nav li a:hover {
  color: #ffffff;
}

.breadcrumb-custom__nav li .separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.breadcrumb-custom__nav li .current {
  color: #60a5fa;
  font-size: 14px;
  font-weight: 600;
}

/* ===== CONTENT HEADING STYLES ===== */
.about-two-left h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 35px;
  font-weight: 800;
  color: #123254;
  margin-bottom: 8px;
}

.about-two-left .heading5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0b2c4f;
  margin-bottom: 10px;
  padding: 0px 0;
}

.about-two-left p,
.about-two__content p {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 12px;
}

.about-two__image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(18, 28, 39, 0.12);
}

.about-two__image img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
}

.about-two__image:hover img {
  transform: scale(1.02);
}

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: 8px;
}

.section-header h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #121C27;
  position: relative;
  padding-bottom: 14px;
}

.section-header h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #0b2c4f;
  border-radius: 2px;
}

/* ===== FEATURE ITEMS ===== */
.feature-two__item {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
  border: 1px solid rgba(18, 28, 39, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-two__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-two__item:hover::before {
  transform: scaleX(1);
}

.feature-two__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(18, 28, 39, 0.1);
  border-color: rgba(37, 99, 235, 0.15);
}

.feature-two__item .feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(96, 165, 250, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: #0b2c4f;
}

.feature-two__item h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #121C27;
  margin-bottom: 10px;
}

.feature-two__item h5 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.feature-two__item:hover h5 a {
  color: #2563eb;
}

.feature-two__item p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== CHECKLIST STYLES ===== */
.about-two__content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-two__content ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 28, 39, 0.06);
  font-size: 14.5px;
  color: #4a5568;
  line-height: 1.7;
}

.about-two__content ul li:last-child {
  border-bottom: none;
}

.about-two__content ul li i {
  display: none;
  color: #0b2c4f;
  font-size: 25px;
  margin-top: 4px;
  flex-shrink: 0;
}

.about-two__content ul li b {
  color: #121C27;
  font-weight: 600;
  font-size: 18px;
}

/* ===== PROCESS STEPS ===== */
.process-list {
  display: grid;
  gap: 24px;
}

.steps__item-new {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(18, 28, 39, 0.06);
  transition: all 0.35s ease;
  position: relative;
}

.steps__item-new:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(18, 28, 39, 0.08);
  border-color: rgba(37, 99, 235, 0.15);
}

.steps__item-new .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #121C27, #1e3a5f);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.steps__item-new .icon svg {
  width: 34px;
  height: 34px;
}

.steps__item-new .icon svg path {
  fill: #ffffff;
}

.steps__item-new .icon .number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: #0b2c4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.steps__item-new .content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #121C27;
  margin-bottom: 6px;
}

.steps__item-new .content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== TECH STACK GRID ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 16px;
}

.tech-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(18, 28, 39, 0.06);
  transition: all 0.35s ease;
}

.tech-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(18, 28, 39, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.tech-item .tech-icon {
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}

.tech-item .tech-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #121C27;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, #121C27 0%, #1e3a5f 100%);
  border-radius: 20px;
  padding: 40px 30px;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.stats-bar .stat-item {
  text-align: center;
  padding: 10px;
}

.stats-bar .stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.stats-bar .stat-number span {
  color: #60a5fa;
}

.stats-bar .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ===== SERVICE CTA SECTION ===== */
.service-cta-section {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 100%);
  border-radius: 20px;
  padding: 50px 40px;
  margin-top: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.service-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #60a5fa, #2563eb);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.service-cta-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #121C27;
  margin-bottom: 12px;
}

.service-cta-section p {
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.service-cta-section .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  color: #ffffff;
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #121C27;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(18, 28, 39, 0.15);
}

.btn-secondary-custom:hover {
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-2px);
}

/* ===== FAQ SECTION ===== */
.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(18, 28, 39, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.15);
}

.faq-item.active {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(37, 99, 235, 0.02);
}

.faq-question h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #121C27;
  margin: 0;
}

.faq-question .faq-toggle {
  width: 32px;
  height: 32px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  color: #2563eb;
  font-size: 14px;
}

.faq-item.active .faq-toggle {
  background: #2563eb;
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1199px) {
  .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .about-two-left h3 {
    font-size: 26px;
  }

  .about-two-left .heading5 {
    font-size: 17px;
  }

  .section-header h4 {
    font-size: 22px;
  }

  .breadcrumb-custom {
    padding: 80px 0 60px;
  }

  .breadcrumb-custom__title {
    font-size: 30px;
  }

  .service-cta-section {
    padding: 36px 24px;
  }

  .service-cta-section h3 {
    font-size: 22px;
  }

  .stats-bar .stat-number {
    font-size: 28px;
  }

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .tech-item {
    padding: 16px 10px;
  }

  .tech-item .tech-icon {
    font-size: 26px;
  }

  .tech-item .tech-name {
    font-size: 11px;
  }

  .steps__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cta-section .cta-buttons {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
}

li.current {
    color: #fff;
}



/* ===== WHY CHOOSE SECTION - HORIZONTAL LAYOUT ===== */
.why-choose-grid {
  display: grid;
  gap: 16px;
}

.benefit-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 24px;
  border: 1px solid rgba(18, 28, 39, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* display: flex; */
  align-items: flex-start;
  gap: 18px;
}

.benefit-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #0b2c4f, #2563eb);
  transition: height 0.5s ease;
  border-radius: 0 4px 4px 0;
}

.benefit-item:hover::after {
  height: 100%;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(18, 28, 39, 0.08);
  border-color: rgba(11, 44, 79, 0.1);
}

.benefit-item .benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, rgba(11, 44, 79, 0.07), rgba(37, 99, 235, 0.07));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0b2c4f;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.benefit-item:hover .benefit-icon {
  background: linear-gradient(135deg, #0b2c4f, #1e3a5f);
  color: #ffffff;
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 6px 18px rgba(11, 44, 79, 0.25);
}

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

.benefit-item .benefit-content h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #121C27;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.benefit-item:hover .benefit-content h5 {
  color: #0b2c4f;
}

.benefit-item .benefit-content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 0;
}

/* 3-column grid for Why Choose */
.why-choose-grid.cols-3 {
  grid-template-columns: repeat(2, 1fr);
}

/* 2-column grid for Why Choose */
.why-choose-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ===== SERVICE CARDS - NUMBERED BADGE VARIANT ===== */
.service-card-numbered {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px 24px 24px;
  height: 100%;
  border: 1px solid rgba(18, 28, 39, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card-numbered::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-numbered:hover::before {
  transform: scaleX(1);
}

.service-card-numbered:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 44px rgba(18, 28, 39, 0.1);
  border-color: rgba(37, 99, 235, 0.12);
}

.service-card-numbered .service-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.service-card-numbered .service-card-num {
  width: 36px;
  height: 36px;
  background: #0b2c4f;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.service-card-numbered:hover .service-card-num {
  background: #2563eb;
  transform: rotate(-6deg) scale(1.1);
}

.service-card-numbered .service-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(11, 44, 79, 0.08), rgba(37, 99, 235, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0b2c4f;
  transition: all 0.4s ease;
}

.service-card-numbered:hover .service-card-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.12));
  color: #2563eb;
  transform: scale(1.08);
}

.service-card-numbered h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #121C27;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-card-numbered h5 a {
  text-decoration: none;
  color: inherit;
}

.service-card-numbered:hover h5 a {
  color: #2563eb;
}

.service-card-numbered p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Full-width last card */
.service-card-numbered.full-width {
  grid-column: 1 / -1;
}

/* ===== SECTION BACKGROUND VARIANTS ===== */
.section-bg-light {
  background: linear-gradient(135deg, #f7f7f7 0%, #f7f7f7 100%);
  border-radius: 10px;
  padding: 20px 12px;
  margin-bottom: 8px;
}

.section-bg-light .section-header {
  margin-bottom: 24px;
}

.section-bg-light .section-header h4::after {
  background: #2563eb;
}

/* ===== MOBILE RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 991px) {
  .why-choose-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .why-choose-grid.cols-3,
  .why-choose-grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    padding: 18px 20px;
    gap: 14px;
  }

  .benefit-item .benefit-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 18px;
  }

  .benefit-item .benefit-content h5 {
    font-size: 14px;
  }

  .benefit-item .benefit-content p {
    font-size: 12.5px;
  }

  .section-bg-light {
    padding: 28px 20px;
  }
}

@media (max-width: 575px) {
  .service-card-numbered {
    padding: 22px 18px 20px;
  }
}




/* ===== WHY INFITIVE SECTION - CIRCULAR NUMBER STYLE ===== */
.reason-grid {
  display: grid;
  gap: 16px;
}

.reason-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(18, 28, 39, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: block;
  align-items: center;
  gap: 20px;
}

.reason-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #2563eb, #0b2c4f);
  transition: height 0.5s ease;
  border-radius: 0 4px 4px 0;
}

.reason-item:hover::after {
  height: 100%;
}

.reason-item:hover {
  transform: translateX(-4px);
  box-shadow: 0 10px 32px rgba(18, 28, 39, 0.08);
  border-color: rgba(37, 99, 235, 0.12);
}

.reason-item .reason-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, #121C27, #1e3a5f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.reason-item .reason-num::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px dashed rgb(11 44 79);
  animation: reasonNumSpin 12s linear infinite;
}

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

.reason-item:hover .reason-num {
  background: linear-gradient(135deg, #0b2c4f, #2563eb);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(11, 44, 79, 0.3);
}

.reason-item .reason-num::after {
  display: none;
}

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

.reason-item .reason-content h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #121C27;
  margin-bottom: 5px;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.reason-item:hover .reason-content h5 {
  color: #0b2c4f;
}

.reason-item .reason-content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 0;
}

/* 3-column for Why Infutive */
.reason-grid.cols-3 {
  grid-template-columns: repeat(2, 1fr);
}

/* 2-column for Why Infutive */
.reason-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* ===== LET'S BUILD CTA - FULL WIDTH BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #121C27 0%, #0f2027 40%, #1e3a5f 100%);
  border-radius: 20px;
  padding: 50px 40px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 120%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(96, 165, 250, 06) 0%, transparent 55%);
  pointer-events: none;
  animation: ctaGlowMove 10s ease-in-out infinite alternate;
}

@keyframes ctaGlowMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-5%, 8%); }
}

.cta-banner .cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-banner .cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner .btn-primary-custom {
  background: #ffffff;
  color: #121C27;
}

.cta-banner .btn-primary-custom:hover {
  background: #60a5fa;
  color: #121C27;
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.35);
}

.cta-banner .btn-secondary-custom {
  border-color: rgba(255, 255, 255, 0.3);
  color: #131f2a;
}

.cta-banner .btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

/* ===== MOBILE RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 991px) {
  .reason-grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .reason-grid.cols-3,
  .reason-grid.cols-2 {
    grid-template: 1fr;
  }

  .reason-item {
    padding: 20px;
    gap: 16px;
  }

  .reason-item .reason-num {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 14px;
  }

  .reason-item .reason-content h5 {
    font-size: 14px;
  }

  .reason-item .reason-content p {
    font-size: 12.5px;
  }

  .cta-banner {
    padding: 36px 24px;
  }

  .cta-banner h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .cta-banner .cta-buttons {
    flex-direction: column;
  }

  .cta-banner .btn-primary-custom,
  .cta-banner .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
}
.d-flex.man {
    gap: 14px;
    margin-bottom: 10px;
}
.d-flex.man h5 {
    font-size: 18px;
}


      /* ===== About Two Left (Intro) ===== */
      .about-two-left.page h3 {
        font-size: 28px;
        font-weight: 700;
        color: #111827;
        margin-bottom: 8px;
            margin-top: 10px;
      }
      .about-two-left .heading-page {
        font-size: 18px;
        font-weight: 600;
        color: #0b2c4f;
        margin-bottom: 10px;
      }
      .about-two-left p {
        font-size: 16px;
        color: #6b7280;
        line-height: 1.7;
        margin-bottom: 12px;
      }

      /* ===== Section Header ===== */
      .section-header {
        margin-bottom: 24px;
      }
      .section-header h4 {
        font-size: 22px;
        font-weight: 700;
        color: #111827;
        position: relative;
      }
    

      /* =============================================
         SECTION 1: Why Cloud Migration with Infutive?
         STYLE: Left Accent Border List
         ============================================= */
      .accent-list {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .accent-list-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 20px 0 20px 24px;
        border-left: 3px solid #e5e7eb;
        position: relative;
        transition: all 0.3s ease;
      }
      .accent-list-item::before {
        content: '';
        position: absolute;
        left: -3px;
        top: 20px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #e5e7eb;
        border: 3px solid #ffffff;
        box-shadow: 0 0 0 1px #e5e7eb;
        transition: all 0.3s ease;
      }
      .accent-list-item:hover {
        border-left-color: #0b2c4f;
      }
      .accent-list-item:hover::before {
        background: #0b2c4f;
        box-shadow: 0 0 0 1px #0b2c4f, 0 0 12px rgba(59, 130, 246, 0.3);
      }
      .accent-list-item + .accent-list-item {
        border-top: 1px solid #f3f4f6;
      }
      .accent-list-num {
        font-size: 13px;
        font-weight: 700;
        color: #0b2c4f;
        background: rgba(59, 130, 246, 0.08);
        padding: 4px 10px;
        border-radius: 6px;
        flex-shrink: 0;
        margin-top: 2px;
        transition: all 0.3s ease;
      }
      .accent-list-item:hover .accent-list-num {
        background: #0b2c4f;
        color: #ffffff;
      }
      .accent-list-content h5 {
        font-size: 18px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 4px;
      }
      .accent-list-content p {
        font-size: 16px;
        color: #6b7280;
        line-height: 1.6;
        margin: 0;
      }

      /* =============================================
         SECTION 2: Our Cloud Migration Services
         STYLE: Horizontal Icon-Left Cards (stacked)
         ============================================= */
      .service-horiz {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .service-horiz-item {
        display: flex;
        align-items: flex-start;
        gap: 24px;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        padding: 28px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .service-horiz-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(99, 102, 241, 0.03));
        transition: width 0.4s ease;
      }
      .service-horiz-item:hover {
        border-color: rgba(59, 130, 246, 0.3);
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.08);
        transform: translateX(4px);
      }
      .service-horiz-item:hover::after {
        width: 100%;
      }
      .service-horiz-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #0b2c4f, #0b2c4f);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 24px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
      }
      .service-horiz-icon .sh-num {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 24px;
        height: 24px;
        background: #ffffff;
        border: 2px solid #0b2c4f;
        border-radius: 50%;
        font-size: 11px;
        font-weight: 700;
        color: #0b2c4f;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .service-horiz-body {
        flex: 1;
        position: relative;
        z-index: 1;
      }
      .service-horiz-body h5 {
        font-size: 18px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 8px;
      }
      .service-horiz-body h5 a {
        color: #111827;
        text-decoration: none;
        transition: color 0.3s;
      }
      .service-horiz-body h5 a:hover {
        color: #3b82f6;
      }
      .service-horiz-body p {
        font-size: 16px;
        color: #6b7280;
        line-height: 1.65;
        margin: 0;
      }

      /* =============================================
         SECTION 3: Industries We Serve
         STYLE: Compact Icon Grid (small tiles)
         ============================================= */
      .industry-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
      .industry-tile {
        text-align: center;
        padding: 28px 12px;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .industry-tile::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6, #6366f1);
        transform: scaleX(0);
        transition: transform 0.3s ease;
      }
      .industry-tile:hover {
        border-color: rgb(58 133 255 / 30%);
        box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
        transform: translateY(-4px);
      }
      .industry-tile:hover::before {
        transform: scaleX(1);
      }
      .industry-tile-icon {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0b2c4f;
        font-size: 22px;
        margin: 0 auto 14px;
        transition: all 0.3s ease;
      }
      .industry-tile:hover .industry-tile-icon {
        background: linear-gradient(135deg, #0b2c4f, #0b2c4f);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
      }
      .industry-tile h5 {
        font-size: 18px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 6px;
        line-height: 1.3;
      }
      .industry-tile p {
        font-size: 16px;
        color: #9ca3af;
        line-height: 1.5;
        margin: 0;
      }

      /* =============================================
         SECTION 4: Why Choose Infutive
         STYLE: Clean Checklist Rows (soft bg container)
         ============================================= */
      .checklist-section {
        background: linear-gradient(135deg, #f0f4ff 0%, #f5f3ff 100%);
        border-radius: 14px;
        padding: 32px;
        border: 1px solid rgba(59, 130, 246, 0.1);
      }
      .checklist-rows {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .checklist-row {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 18px 0;
        border-bottom: 1px dashed #d1d5db;
      }
      .checklist-row:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .checklist-row:first-child {
        padding-top: 0;
      }
      .checklist-icon {
        width: 50px;
        height: 50px;
        background: #ffffff;
        border: 1px solid rgba(59, 130, 246, 0.15);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0b2c4f;
        font-size: 15px;
        flex-shrink: 0;
        margin-top: 2px;
        transition: all 0.3s ease;
      }
      .checklist-row:hover .checklist-icon {
        background: linear-gradient(135deg, #0b2c4f, #0b2c4f);
        color: #ffffff;
        border-color: transparent;
        box-shadow: 0 3px 10px rgba(59, 130, 246, 0.25);
      }
      .checklist-text h5 {
        font-size: 18px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 3px;
      }
      .checklist-text p {
        font-size: 16px;
        color: #6b7280;
        line-height: 1.55;
        margin: 0;
      }

      /* =============================================
         SECTION 5: Our Process (Timeline)
         ============================================= */
      .process-list {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .steps__item-new {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 24px 25px;
        border-bottom: 1px solid #e5e7eb;
        position: relative;
        margin: 5px 0;
      }
      .steps__item-new:last-child {
        border-bottom: none;
      }
      .steps__item-new .icon {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, #0b2c4f, #0b2c4f);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-shrink: 0;
      }
      .steps__item-new .icon svg {
        width: 28px;
        height: 28px;
      }
      .steps__item-new .icon .number {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 22px;
        height: 22px;
        background: #ffffff;
        border: 2px solid #0b2c4f;
        border-radius: 50%;
        font-size: 11px;
        font-weight: 700;
        color: #0b2c4f;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .steps__item-new .content {
        flex: 1;
      }
      .steps__item-new .title {
        font-size: 16px;
        font-weight: 600;
        color: #111827;
        margin-bottom: 6px;
      }
      .steps__item-new .text {
        font-size: 14px;
        color: #6b7280;
        line-height: 1.6;
        margin: 0;
      }

      /* ===== CTA Banner ===== */
      .cta-banner {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border-radius: 16px;
        padding: 48px;
        position: relative;
        overflow: hidden;
      }
      .cta-banner::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
      }
      .cta-banner::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -10%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
      }
      .cta-banner-content {
        position: relative;
        z-index: 2;
      }
      .cta-banner-content h3 {
        font-size: 26px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 14px;
      }
      .cta-banner-content p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
        margin-bottom: 28px;
        max-width: 640px;
      }
      .cta-buttons {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
      }
      .btn-primary-custom {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 32px;
        background: linear-gradient(135deg, #3b82f6, #6366f1);
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        border-radius: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
      }
      .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
        color: #ffffff;
      }
      .btn-secondary-custom {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 32px;
        background: transparent;
        color: #ffffff;
        font-size: 15px;
        font-weight: 600;
        border-radius: 10px;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.25);
        transition: all 0.3s ease;
        cursor: pointer;
      }
      .btn-secondary-custom:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.4);
        color: #ffffff;
      }

      /* ===== Responsive ===== */
      @media (max-width: 1199px) {
        .industry-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      @media (max-width: 991px) {
        .offer__wrp {
          padding: 24px;
        }
        .breadcrumb-custom__title {
          font-size: 34px;
        }
        .industry-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      @media (max-width: 767px) {
        .industry-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .breadcrumb-custom {
          padding: 100px 0 60px;
        }
        .breadcrumb-custom__title {
          font-size: 28px;
        }
        .cta-banner {
          padding: 32px 24px;
        }
        .cta-banner-content h3 {
          font-size: 22px;
        }
        .cta-buttons {
          flex-direction: column;
          align-items: flex-start;
        }
        .steps__item-new {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }
        .service-horiz-item {
          flex-direction: column;
          align-items: center;
          text-align: center;
        }
        .service-horiz-item:hover {
          transform: translateY(-2px);
        }
        .accent-list-item {
          flex-direction: column;
          align-items: flex-start;
          padding-left: 28px;
        }
        .checklist-section {
          padding: 24px 18px;
        }
      }
      @media (max-width: 480px) {
        .industry-grid {
          grid-template-columns: 1fr 1fr;
          gap: 10px;
        }
        .industry-tile {
          padding: 20px 8px;
        }
        .industry-tile-icon {
          width: 44px;
          height: 44px;
          font-size: 18px;
        }
      }
    


/* =============================================
   app-modernization.css
   Unique styles for Application Modernization page
   No class names overlap with service-page.css
   ============================================= */

/* =============================================
   SECTION 1: Objectives
   STYLE: Watermark Number Blocks (2-col grid)
   ============================================= */
.obj-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.obj-block {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 20px 15px 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  /* gap: 14px; */
}

.obj-block__watermark {
  position: absolute;
  top: -5px;
  right: 2px;
  font-size: 72px;
  font-weight: 900;
  color: rgb(11 44 79 / 3%);
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s ease;
}

.obj-block:hover {
  border-color: rgb(11 44 79 / 42%);
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.08);
  transform: translateY(-3px);
}

.obj-block:hover .obj-block__watermark {
  color: rgba(59, 130, 246, 0.08);
}

.obj-block__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1b3a5b, #0b2c4f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.obj-block__body {
  position: relative;
  z-index: 1;
}

.obj-block__body h5 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.obj-block__body p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   SECTION 2: Resources Required
   STYLE: Expandable Accordion Panels
   ============================================= */
.res-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
}

.res-acc-item {
  border-bottom: 1px solid #e5e7eb;
}

.res-acc-item:last-child {
  border-bottom: none;
}

.res-acc-item--open {
  background: #f8fafc;
}

.res-acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  transition: background 0.3s ease;
  user-select: none;
}

.res-acc-head:hover {
  background: rgba(59, 130, 246, 0.03);
}

.res-acc-item--open .res-acc-head {
  background: rgba(59, 130, 246, 0.03);
  border-bottom: 1px solid #e5e7eb;
}

.res-acc-head__left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.res-acc-num {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #0b2c4f, #0b2c4f);
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.res-acc-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.res-acc-arrow {
  font-size: 12px;
  color: #9ca3af;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.res-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.res-acc-body > p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 12px 0;
  padding: 16px 24px 0 66px;
}

.res-acc-list {
  list-style: none;
  padding: 0;
  margin: 0 24px 20px 66px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.res-acc-list li {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.res-acc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b2c4f, #0b2c4f);
}

.res-acc-list li strong {
  color: #374151;
}

/* =============================================
   SECTION 3: Approaches
   STYLE: Labeled Badge Cards (centered)
   ============================================= */
.approach-intro {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 24px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.approach-card {
  position: relative;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px 20px 20px;
  text-align: justify;
  transition: all 0.35s ease;
  overflow: hidden;
}

.approach-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b2c4f, #0b2c4f);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.approach-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.approach-card:hover::after {
  opacity: 1;
}

.approach-card--center {
  grid-column: 1 / -1;
  max-width: 50%;
  justify-self: flex-start;
}

.approach-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.approach-card__badge--blue {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.approach-card__badge--purple {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.approach-card__badge--green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.approach-card__icon-wrap {
  margin-bottom: 16px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.approach-card__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b2c4f;
  font-size: 22px;
  transition: all 0.3s ease;
}

.approach-card:hover .approach-card__icon {
  background: linear-gradient(135deg, #0b2c4f, #0b2c4f);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.approach-card__body h5 {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.approach-card__body p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .obj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .obj-grid {
    grid-template-columns: 1fr;
  }
  .approach-grid {
    grid-template-columns: 1fr;
  }
  .approach-card--center {
    grid-column: auto;
    max-width: 100%;
  }
  .res-acc-head {
    padding: 16px 18px;
  }
  .res-acc-body > p {
    padding: 14px 18px 0 18px;
  }
  .res-acc-list {
    margin-left: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 480px) {
  .obj-block {
    padding: 22px 18px 20px;
  }
  .obj-block__watermark {
    font-size: 56px;
  }
  .res-acc-title {
    font-size: 14px;
  }
  .approach-card {
    padding: 26px 18px 22px;
  }
}


/* =============================================
   cloud-development.css
   Editorial magazine-style layout for
   simple text content pages
   ============================================= */

.editorial-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- Shared block base ---- */
.ed-block {
  position: relative;
}

.ed-block p {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin: 0;
}

/* =============================================
   BLOCK 1: Hero Paragraph
   Full-width with large ghost icon watermark
   ============================================= */
.ed-block--hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f3ff 100%);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 18px;
  padding: 30px 30px;
  overflow: hidden;
}

.ed-block--hero .ed-block__deco {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 160px;
  color: rgba(59, 130, 246, 0.04);
  line-height: 1;
  pointer-events: none;
}

.ed-block--hero p {
  position: relative;
  z-index: 1;
  font-size: 16px;
}

/* =============================================
   BLOCK 2 & 3: Split paragraphs
   Icon visual on one side, text on other
   Alternating direction
   ============================================= */
.ed-block--split {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 8px 0;
}

.ed-block--reverse {
  flex-direction: row-reverse;
}

.ed-block__visual {
  flex-shrink: 0;
  position: relative;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
  top: 14px;
}

.ed-block__num {
  font-size: 64px;
  font-weight: 900;
  color: rgba(59, 130, 246, 0.05);
  line-height: 1;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.ed-block--reverse .ed-block__num {
  color: rgba(99, 102, 241, 0.05);
}

.ed-block__icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2);
}

.ed-block__icon-circle--indigo {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
}

.ed-block__text {
  flex: 1;
  padding-top: 8px;
}

/* Dotted connector line between split blocks */
.ed-block--split + .ed-block--reverse {
  margin-top: -8px;
  padding-top: 8px;
}

.ed-block--split:not(.ed-block--reverse) + .ed-block--reverse::before {
  content: '';
  position: absolute;
  left: 35px;
  top: -24px;
  width: 2px;
  height: 24px;
  /* border-left: 2px dashed #d1d5db; */
}

.ed-block--reverse + .ed-block--close {
  margin-top: -8px;
}

.ed-block--reverse::after {
  content: '';
  position: absolute;
  right: 35px;
  bottom: -24px;
  width: 2px;
  height: 24px;
  /* border-left: 2px dashed #d1d5db; */
}

/* =============================================
   BLOCK 4: Closing Paragraph
   Full-width with right-aligned ghost icon
   ============================================= */
.ed-block--close {
  background: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 100%);
  border: 1px solid rgba(99, 102, 241, 0.08);
  border-radius: 18px;
  padding: 30px 30px;
  overflow: hidden;
}

.ed-block--close .ed-block__deco--right {
  position: absolute;
  bottom: -20px;
  left: -10px;
  font-size: 140px;
  color: rgba(99, 102, 241, 0.04);
  line-height: 1;
  pointer-events: none;
}

.ed-block--close p {
  position: relative;
  z-index: 1;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 767px) {
  .ed-block--hero {
    padding: 32px 24px;
  }

  .ed-block--hero .ed-block__deco {
    font-size: 100px;
    top: -12px;
    right: -6px;
  }

  .ed-block--split {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .ed-block--reverse {
    flex-direction: column;
  }

  .ed-block__visual {
    width: auto;
    padding-top: 0;
  }

  .ed-block__num {
    top: -6px;
    font-size: 50px;
  }

  .ed-block__icon-circle {
    width: 54px;
    height: 54px;
    font-size: 20px;
  }

  .ed-block--close {
    padding: 32px 24px;
  }

  .ed-block--close .ed-block__deco--right {
    font-size: 90px;
    bottom: -12px;
    left: -6px;
  }

  /* Hide dashed connectors on mobile */
  .ed-block--split:not(.ed-block--reverse) + .ed-block--reverse::before,
  .ed-block--reverse::after {
    display: none;
  }
}

/* ===== NEW SERVICE PAGE STYLES (moved out of site.bundle.css) ===== */
/*services page new*/

/* =========================================
   WEBSITE DEVELOPMENT SERVICE PAGE
========================================= */

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #111b27;
    color: #fff;
}

.service-eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d7a94a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.service-eyebrow:before {
    content: "";
    width: 28px;
    height: 1px;
    background: #d7a94a;
}

.service-hero h1 {
    max-width: 760px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -2px;
    font-weight: 800;
    margin-bottom: 25px;
}

.service-hero h1 span,
.section-title h2 span,
.why-service-section h2 span,
.industry-section h2 span,
.faq-section h2 span,
.service-cta h2 span {
    color: #d7a94a;
}

.service-hero p {
    max-width: 700px;
    color: #b9c4cf;
    font-size: 16px;
}

.service-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.service-hero-btns .btn,
.why-service-section .btn,
.service-cta .btn {
    padding: 13px 23px;
    border-radius: 0;
    font-weight: 700;
}

.service-visual {
    position: relative;
    min-height: 420px;
    padding: 45px;
    background:
        linear-gradient(145deg, #1d2b3a, #101923);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.service-visual-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d7a94a;
    color: #111b27;
    font-size: 30px;
    margin-bottom: 55px;
}

.service-visual-content > span {
    color: #8997a5;
    font-size: 10px;
    letter-spacing: 2px;
}

.service-visual-content h3 {
    font-size: 32px;
    line-height: 1.15;
    margin: 12px 0 25px;
}

.service-visual-content h3 b {
    color: #d7a94a;
}

.visual-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.12);
    margin-bottom: 25px;
}

.visual-stats {
    display: flex;
    gap: 35px;
}

.visual-stats strong,
.visual-stats small {
    display: block;
}

.visual-stats strong {
    color: #fff;
    font-size: 17px;
}

.visual-stats small {
    color: #8794a0;
    font-size: 10px;
}


/* COMMON SECTION */

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

.section-title {
    max-width: 720px;
    margin: 0 auto 55px;
}

.section-title .section-label {
    justify-content: center;
}

.section-title h2,
.why-service-section h2,
.faq-section h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.section-title p,
.why-service-section > .container p,
.faq-section > .container p {
    color: #727c86;
    font-size: 15px;
}


/* SERVICE CARDS */

.service-card {
    position: relative;
    height: 100%;
    padding: 30px 25px;
    border: 1px solid #e5e8eb;
    background: #fff;
    transition: .35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: #d7a94a;
    box-shadow: 0 20px 45px rgba(20,30,40,.08);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f1e3;
    color: #b1842e;
    font-size: 19px;
    margin-bottom: 25px;
}

.service-number {
    position: absolute;
    top: 22px;
    right: 20px;
    color: #c9ced3;
    font-size: 12px;
    font-weight: 800;
}

.service-card h3 {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 12px;
}

.service-card p {
    color: #75808a;
    font-size: 13px;
    margin: 0;
}


/* BENEFITS */

.benefits-section {
    padding: 100px 0;
    background: #111b27;
    color: #fff;
}

.benefits-section h2 {
    max-width: 700px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.benefits-section > .container > .row p {
    color: #aab5c0;
    font-size: 14px;
}

.benefit-list {
    border-top: 1px solid rgba(255,255,255,.12);
}

.benefit-item {
    display: grid;
    grid-template-columns: 65px 1fr 30px;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
    transition: .3s ease;
}

.benefit-item:hover {
    padding-left: 12px;
    background: rgba(255,255,255,.02);
}

.benefit-item > span {
    color: #d7a94a;
    font-size: 12px;
    font-weight: 800;
}

.benefit-item h3 {
    font-size: 19px;
    margin-bottom: 4px;
}

.benefit-item p {
    color: #929eaa;
    font-size: 13px;
    margin: 0;
}

.benefit-item > i {
    color: #d7a94a;
}


/* PROCESS */

.process-section {
    background: #f7f8f8;
}

.process-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-item {
    position: relative;
    text-align: center;
    z-index: 2;
}

.process-number {
    color: #a17b36;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 10px;
}

.process-icon {
    width: 62px;
    height: 62px;
    margin: auto auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111b27;
    color: #d7a94a;
    border-radius: 50%;
    border: 6px solid #f7f8f8;
}

.process-item h3 {
    font-size: 16px;
    line-height: 1.35;
}

.process-item p {
    color: #737e88;
    font-size: 13px;
}


/* WHY INFUTIVE */

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

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.why-grid > div {
    padding: 32px;
    border: 1px solid #e5e8eb;
}

.why-grid i {
    color: #b1842e;
    font-size: 22px;
    margin-bottom: 17px;
}

.why-grid h3 {
    font-size: 17px;
    margin-bottom: 7px;
}

.why-grid p {
    color: #75808a;
    font-size: 13px;
    margin: 0;
}


/* INDUSTRIES */

.industry-section {
    background: #f7f8f8;
}

.industry-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 125px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e3e7e9;
    transition: .3s ease;
}

.industry-card:hover {
    background: #111b27;
    color: #fff;
    transform: translateY(-4px);
}

.industry-card i {
    color: #bd8d36;
    font-size: 22px;
}

.industry-card h3 {
    font-size: 15px;
    margin: 0;
}


/* CTA */

.service-cta {
    padding: 0 0 100px;
}

.cta-inner {
    background: #d7a94a;
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-inner .section-label {
    color: #25303a;
}

.cta-inner .section-label:before {
    background: #25303a;
}

.service-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin: 0 0 12px;
    font-weight: 800;
}

.service-cta h2 span {
    color: #fff;
}

.cta-inner p {
    max-width: 650px;
    margin: 0;
    color: #3c464f;
}

.service-cta .btn {
    background: #111b27;
    color: #fff;
}


/* FAQ */

.faq-section {
    background: #f7f8f8;
}

.faq-section .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #dfe3e6;
}

.faq-section .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 22px 0;
    font-weight: 700;
    color: #17202b;
}

.faq-section .accordion-body {
    padding: 0 30px 22px 0;
    color: #6e7882;
    font-size: 14px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .service-hero {
        padding: 75px 0;
    }

    .process-wrapper {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .why-grid {
        margin-top: 20px;
    }

}

@media (max-width: 767px) {

    .service-section,
    .benefits-section,
    .why-service-section {
        padding: 70px 0;
    }

    .service-hero h1 {
        font-size: 40px;
    }

    .service-visual {
        min-height: 350px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        padding: 40px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 575px) {

    .service-hero h1 {
        font-size: 36px;
    }

    .service-hero-btns {
        flex-direction: column;
    }

    .service-hero-btns .btn {
        width: 100%;
    }

    .visual-stats {
        gap: 15px;
    }

    .benefit-item {
        grid-template-columns: 40px 1fr 20px;
    }

}


.footer-four__item.fifty-logo {
    height: 140px;
    min-height: 70px;
    display: flex;
}

.footer-fifty-logo {
    height: auto;
    width: auto;
}
.footer-fifty-logo.footer-fifty-content {
    display: flex;
    color: #fff;
    gap: 12px
}
.footer-fifty-logo.footer-fifty-content p {
    color: #fff;
    
}
@media (max-width: 767px) {

    .footer-fifty-logo.footer-fifty-content img {
    height: 60px;
    margin-bottom: 10px;
	}
	.footer-fifty-logo.footer-fifty-content {
    display: block;
    color: #fff;
    gap: 16px;
 }
 .footer-four__item.fifty-logo {
    height: 225px;
    min-height: 70px;
    display: flex;
}
}


