.devops-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 100px 0;
  position: relative;

  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--secondary) 100%
  );

  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  font-family: var(--font-main);
}

.devops-hero .hero-content {
  padding: 50px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
}

.hero-content p {
  color: var(--primary-light-2);
  line-height: var(--line-height);
}

.hero-btn {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

.feature-floating {
  margin-top: -120px;
  padding-bottom: 80px;
  font-family: var(--font-main);
}

.floating-grid {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.floating-card {
  background: var(--primary-light);
  padding: 25px;
  border-radius: 18px;
  width: 30%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  border: 1px solid var(--primary-light-3);
  z-index: 2;
}

.floating-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.floating-card h3 {
  color: var(--primary-dark);
  font-size: 22px;
}

.floating-card p {
  color: var(--secondary);
}

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

.timeline-section .section-title {
  font-family: var(--font-main);
  color: var(--primary-dark);
}

.timeline {
  position: relative;
  margin-left: 50px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  height: 100%;
  background: var(--secondary);
}

.timeline-item {
  width: 45%;
  padding: 25px;
  background: var(--primary-light);
  border-radius: 12px;
  margin-bottom: 50px;
  position: relative;
  border: 1px solid var(--primary-light-3);
}

.timeline-item.left {
  margin-right: auto;
  transform: translateX(-40px);
}

.timeline-item.right {
  margin-left: auto;
  transform: translateX(40px);
}

.timeline-item h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--font-main);
}

.timeline-item p {
  color: var(--secondary);
}

.devops-highlight {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  text-align: center;
  color: var(--white);
  border-radius: 0;
}

.devops-highlight h2 {
  font-family: var(--font-main);
  text-transform: capitalize;
}

.devops-highlight p {
  color: var(--primary-light);
}

.cta-parallax {
  background-image: url("../images/bg-2.jpg");
  background-attachment: fixed;
  background-size: cover;
  padding: 120px 0;
  position: relative;
}

.cta-overlay {
  background: rgba(28, 42, 64, 0.7);
  padding: 50px;
  text-align: center;
  color: var(--white);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.cta-overlay h2,
.cta-overlay p {
  font-family: var(--font-main);
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 20px rgba(28, 42, 64, 0.06);
  border: 1px solid var(--primary-light-2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 26px rgba(28, 42, 64, 0.12);
  border-color: var(--secondary);
}

/* Accent bar */
.service-card::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 40px;
  background: var(--secondary);
  top: 0;
  left: 32px;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.service-card:hover::before {
  width: 80px;
}

.service-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 600;
}

.service-card p,
.service-card ul li {
  font-size: 1rem;
  line-height: var(--line-height);
  color: var(--primary-dark);
}

.service-card ul {
  margin: 12px 0 0 0;
  padding-left: 18px;
}

.service-card ul li {
  margin-bottom: 6px;
}
