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

:root{
  --primary:#2563eb;
  --primary-dark:#1d4ed8;
  --secondary:#0f172a;
  --accent:#f97316;
  --bg:#f8fafc;
  --card:#ffffff;
  --text:#0f172a;
  --text-light:#64748b;
  --border:#e2e8f0;
  --gradient:linear-gradient(135deg,#2563eb 0%,#7c3aed 100%);
  --shadow:0 10px 40px rgba(15,23,42,0.08);
  --radius:24px;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
  line-height:1.7;
}

/* ========= Background ========= */

.bg-shape{
  position:fixed;
  border-radius:50%;
  filter:blur(90px);
  z-index:-1;
  opacity:.25;
}

.shape1{
  width:300px;
  height:300px;
  background:#60a5fa;
  top:-100px;
  left:-100px;
}

.shape2{
  width:350px;
  height:350px;
  background:#c084fc;
  bottom:-120px;
  right:-120px;
}

/* ========= Section ========= */

section{
  padding:100px 20px;
  position:relative;
}

.container{
  max-width:1300px;
  margin:auto;
}

/* ========= Heading ========= */

.section-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
  gap:40px;
  margin-bottom:70px;
}

.section-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  background:rgba(37,99,235,.1);
  color:var(--primary);
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
	margin-bottom: 11px;
  margin-top: 21px;
  text-transform:uppercase;
  margin-bottom:22px;
}

.section-label::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--primary);
}

.section-title{
  font-family:'Outfit',sans-serif;
  font-size:clamp(2.5rem,5vw,4.8rem);
  font-weight:800;
  line-height:1.05;
  color:var(--secondary);
  max-width:760px;
  letter-spacing:-2px;
	font-size: 48px;
}

.section-title span{
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.section-desc{
  max-width:520px;
  color:var(--text-light);
  font-size:1.05rem;
}

/* ========= Services ========= */

.services{
  display:flex;
  flex-direction:column;
  gap:40px;
}

/* ========= Card ========= */

.service-card{
  position:relative;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.5);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.4s ease;
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 70px rgba(15,23,42,.14);
}

.service-card.reverse{
  grid-template-columns:1fr 1.1fr;
}

.service-card.reverse .service-image{
  order:2;
}

.service-card.reverse .service-content{
  order:1;
}

/* ========= Image ========= */

.service-image{
  position:relative;
  min-height:430px;
  overflow:hidden;
}

.service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.service-card:hover .service-image img{
  transform:scale(1.08);
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(15,23,42,.75),transparent 55%);
}

.badge{
  position:absolute;
  top:24px;
  left:24px;
  padding:10px 18px;
  border-radius:999px;
  background:rgb(255 255 255);
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(10px);
  color:#0005b1;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
}

/* ========= Content ========= */

.service-content{
  padding:55px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
}

.number{
  position:absolute;
  top:25px;
  right:35px;
  font-size:5rem;
  font-weight:800;
  font-family:'Outfit',sans-serif;
  color:rgba(148,163,184,.12);
  line-height:1;
}

.service-content h3{
  font-family:'Outfit',sans-serif;
  font-size:2rem;
  line-height:1.15;
  margin-bottom:20px;
  color:#002478;
}

.service-content h3 span{
  color:#b500cd;
}

.service-content p{
  color:#000000;
  margin-bottom:28px;
  font-size:15px;
	letter-spacing: 0.1px;
}

/* ========= Tags ========= */

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:30px;
}

.tag{
  padding:10px 16px;
  background:#eff6ff;
  color:var(--primary);
  border-radius:999px;
  font-size:.82rem;
  font-weight:600;
}

/* ========= Features ========= */

.features{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 18px;
  margin-bottom:35px;
}

.features li{
  position:relative;
  padding-left:28px;
  color:#000000;
  font-size:.95rem;
}

.features li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:20px;
  height:20px;
  border-radius:50%;
  background:rgba(37,99,235,.12);
  color:var(--primary);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.75rem;
  font-weight:700;
}

/* ========= Button ========= */

.btn{
  width:max-content;
  padding:12px 18px;
  border-radius:14px;
  background:var(--gradient);
  color:white;
  text-decoration:none;
  font-weight:600;
  transition:.3s ease;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 25px rgba(37,99,235,.25);
}

/* ========= Responsive ========= */

@media(max-width:1100px){

  .service-card,
  .service-card.reverse{
    grid-template-columns:1fr;
  }

  .service-card.reverse .service-image,
  .service-card.reverse .service-content{
    order:unset;
  }

  .service-image{
    min-height:320px;
  }

}

@media(max-width:768px){

  section{
    padding:70px 16px;
  }

  .section-top{
    margin-bottom:50px;
  }

  .service-content{
    padding:35px 24px;
  }

  .service-content h3{
    font-size:1.6rem;
  }

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

  .number{
    font-size:3.5rem;
    top:15px;
    right:20px;
  }

  .service-image{
    min-height:250px;
  }

}

@media(max-width:480px){

  .section-title{
    font-size:2rem;
  }

  .service-content{
    padding:28px 20px;
  }

  .btn{
    width:100%;
    text-align:center;
  }

}
