/*================================================== SERVICE HERO ==================================================*/
.service-hero {
  position: relative;
  padding: 80px 0 100px;
  background: #fff;
  overflow: hidden;
  z-index: 1;
}
.service-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 35, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 35, 92, 0.04) 1px, transparent 1px);
  background-size: 45px 45px;
  z-index: -2;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid rgba(26, 35, 92, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  color: #1a235c;
  font-weight: 600;
  margin-bottom: 20px;
}
.service-badge i {
  color: #fb0222;
  font-size: 18px;
}
.service-title {
  font-size: 56px;
  font-weight: 800;
  color: #1a235c;
  line-height: 1.15;
  margin-bottom: 20px;
}
.service-title span {
  color: #fb0222;
}
.service-desc {
  max-width: 560px;
  color: #666;
  line-height: 1.9;
  font-size: 17px;
}
.service-features1 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}
.service-features1 span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-weight: 500;
}
.service-features1 i {
  color: #fb0222;
  font-size: 18px;
}
.service-btn {
  background: #fb0222;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  transition: 0.35s;
  font-weight: 600;
  margin-right: 12px;
}
.service-btn:hover {
  background: #1a235c;
  color: #fff;
  transform: translateY(-4px);
}
.service-btn-outline {
  padding: 14px 32px;
  border: 2px solid #1a235c;
  color: #1a235c;
  border-radius: 10px;
  transition: 0.35s;
  font-weight: 600;
}
.service-btn-outline:hover {
  background: #1a235c;
  color: #fff;
  transform: translateY(-4px);
}
.service-image {
  position: relative;
  text-align: center;
}
.service-image img {
  max-width: 520px;
  animation: serviceFloat 5s ease-in-out infinite;
}
.floating-card {
  position: absolute;
  background: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1a235c;
  animation: floatCard 4s ease-in-out infinite;
}
.floating-card i {
  color: #fb0222;
}
.card-one {
  left: 0;
  top: 18%;
}
.card-two {
  right: 0;
  bottom: 18%;
  animation-delay: 2s;
}
.hero-dot {
  position: absolute;
  border-radius: 50%;
  background: #fb0222;
  opacity: 0.08;
}
.dot1 {
  width: 180px;
  height: 180px;
  left: -60px;
  top: 40px;
  animation: blobMove 8s infinite;
}
.dot2 {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: -80px;
  background: #1a235c;
}
.hero-ring {
  position: absolute;
  border: 2px dashed rgba(251, 2, 34, 0.15);
  border-radius: 50%;
  animation: rotateRing 25s linear infinite;
}
.ring1 {
  width: 220px;
  height: 220px;
  right: 10%;
  top: 10%;
}
.ring2 {
  width: 120px;
  height: 120px;
  left: 8%;
  bottom: 8%;
  animation-direction: reverse;
}
@keyframes serviceFloat {
  50% {
    transform: translateY(-15px);
  }
}
@keyframes floatCard {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes rotateRing {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blobMove {
  50% {
    transform: translateY(-20px);
  }
}

.service-content {
  position: relative;
  z-index: 5;
}
.service-image-wrapper {
  position: relative;
  text-align: center;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-bg-shape {
  position: absolute;
  width: 430px;
  height: 430px;
  background: linear-gradient(135deg, #eef3ff, #ffffff);
  border-radius: 35px;
  transform: rotate(-8deg);
  box-shadow: 0 30px 70px rgba(30, 35, 92, 0.2);
}
.service-image {
  position: relative;
  max-width: 480px;
  z-index: 2;
}
.hero-badge-card {
  position: absolute;
  background: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1e235c;
  z-index: 5;
}
.hero-badge-card i {
  color: #fb0222;
}
.badge-one {
  left: 0;
  top: 90px;
}
.badge-two {
  right: 0;
  bottom: 80px;
}

/*========================================= SERVICE FEATURES =========================================*/
.service-features-section {
  position: relative;
  padding: 100px 0;
  background: #f8faff;
  overflow: hidden;
}
.feature-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.08;
  pointer-events: none;
}
.shape-1 {
  width: 240px;
  height: 240px;
  background: #fb0222;
  left: -120px;
  top: 40px;
  animation: floatShape 7s infinite ease-in-out;
}
.shape-2 {
  width: 300px;
  height: 300px;
  background: #1e235c;
  right: -120px;
  bottom: -100px;
  animation: floatShape2 9s infinite ease-in-out;
}
.service-feature-image {
  position: relative;
  text-align: center;
}
.image-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 35px;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.06);
  transform-origin: center;
  animation: rotateBg 12s linear infinite;
}
.service-feature-image img {
  position: relative;
  z-index: 2;
  max-width: 470px;
  animation: serviceFloat 5s ease-in-out infinite;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed #ececec;
  transition: 0.35s;
}
.feature-row i {
  font-size: 22px;
  color: #fb0222;
  transition: 0.35s;
}
.feature-row span {
  font-weight: 600;
  color: #1e235c;
}
.feature-row:hover {
  padding-left: 10px;
}
.feature-row:hover i {
  transform: rotate(360deg) scale(1.15);
}
@keyframes rotateBg {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes floatShape {
  50% {
    transform: translateY(-25px);
  }
}
@keyframes floatShape2 {
  50% {
    transform: translateY(25px);
  }
}
/*============================== SERVICE FEATURES ==============================*/
.service-features {
  position: relative;
  padding: 70px 0 140px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #1e235c 0%, #2b2b7f 45%, #f60525 100%);
}
.service-features .container {
  padding-top: 160px;
}
.service-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 45px 45px;
}
.service-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: blobMove 8s infinite ease-in-out;
}
.blob-one {
  width: 280px;
  height: 280px;
  background: #ff5c72;
  left: -120px;
  top: -80px;
}
.blob-two {
  width: 350px;
  height: 350px;
  background: #5d6fff;
  right: -120px;
  bottom: -120px;
  animation-delay: 3s;
}
.feature-pill-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 20px auto 20px auto;
  max-width: 1000px;
}
.feature-pill {
  padding: 15px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.4s;
}
.feature-pill i {
  font-size: 20px;
  color: #ffd54f;
  transition: 0.4s;
}
.feature-pill:hover {
  transform: translateY(-8px);
  background: #fff;
  color: #1e235c;
}
.feature-pill:hover i {
  transform: rotate(360deg);
  color: #f60525;
}
.service-showcase {
  position: relative;
  text-align: center;
  margin-top: 40px;
}
.service-showcase img {
  max-width: 700px;
  animation: floatImage 5s infinite ease-in-out;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.3));
}
.floating-label {
  position: absolute;
  padding: 12px 22px;
  background: #fff;
  border-radius: 40px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  animation: floatCard 4s infinite ease-in-out;
}
.label-one {
  left: 5%;
  top: 25%;
}
.label-two {
  right: 5%;
  top: 35%;
  animation-delay: 1.5s;
}
.label-three {
  left: 50%;
  bottom: -37px;
  transform: translateX(-50%);
  animation-delay: 3s;
}
.service-divider-top,
.service-divider-bottom {
  position: absolute;
  left: 0;
  width: 100%;
}
.service-divider-top {
  top: 0;
}
.service-divider-bottom {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  z-index: 10;
}
.service-divider-top svg,
.service-divider-bottom svg {
  display: block;
  width: 100%;
}
@keyframes floatImage {
  50% {
    transform: translateY(-18px);
  }
}
@keyframes floatCard {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes blobMove {
  50% {
    transform: translateY(-35px);
  }
}

/*================================================== SERVICE PRICING ==================================================*/
.service-pricing {
  position: relative;
  padding: 100px 0;
  background: #f8faff;
  overflow: hidden;
  z-index: 2;
}
/* Grid */
.pricing-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 35, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 35, 92, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: -2;
}
/* Blur Shapes */
.pricing-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
}
.shape-one {
  width: 280px;
  height: 280px;
  background: #fb0222;
  left: -120px;
  top: 80px;
  animation: pricingFloat 7s ease-in-out infinite;
}
.shape-two {
  width: 330px;
  height: 330px;
  background: #1e235c;
  right: -140px;
  bottom: -120px;
  animation: pricingFloat2 9s ease-in-out infinite;
}
/* Pricing Card */
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 45px 35px;
  height: 100%;
  transition: 0.45s;
  border: 1px solid rgba(30, 35, 92, 0.08);
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}
/* Top Line */
.pricing-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #fb0222, #1e235c);
  transform: scaleX(0);
  transition: 0.45s;
}
.pricing-card:hover::before {
  transform: scaleX(1);
}
.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
/* Active Card */
.active-plan {
  transform: scale(1.04);
  border: 2px solid #fb0222;
  box-shadow: 0 25px 60px rgba(251, 2, 34, 0.15);
}
.active-plan:hover {
  transform: translateY(-12px) scale(1.04);
}
/* Ribbon */
.popular-badge {
  position: absolute;
  top: 18px;
  right: -38px;
  background: #fb0222;
  color: #fff;
  padding: 8px 45px;
  font-size: 13px;
  font-weight: 600;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}
/* Plan */
.plan-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fb0222;
  text-transform: uppercase;
  margin-bottom: 15px;
}
/* Price */
.price {
  font-size: 52px;
  font-weight: 800;
  color: #1e235c;
  line-height: 1;
  margin-bottom: 12px;
}
.price span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #777;
  margin-top: 12px;
}
/* Description */
.plan-desc {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}
/* List */
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}
.price-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #e8e8e8;
  font-size: 15px;
  color: #444;
}
.price-list li:last-child {
  border: none;
}
.price-list i {
  color: #10b981;
  font-size: 18px;
}
/* Button */
.pricing-btn {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  background: #1e235c;
  color: #fff;
  font-weight: 600;
  transition: 0.35s;
}
.pricing-btn:hover {
  background: #fb0222;
  color: #fff;
  transform: translateY(-3px);
}
/* Note */
.pricing-note {
  margin-top: 55px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #444;
}
.pricing-note a {
  color: #fb0222;
  text-decoration: none;
  margin-left: 8px;
  transition: 0.3s;
}
.pricing-note a:hover {
  letter-spacing: 0.5px;
}
/* Animations */
@keyframes pricingFloat {
  50% {
    transform: translateY(-25px);
  }
}
@keyframes pricingFloat2 {
  50% {
    transform: translateY(25px);
  }
}
/* Responsive */

/*========================================================= SEO PROCESS =========================================================*/
.seo-process-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: #f8faff;
}
.seo-process-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 35, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 35, 92, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.seo-process-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #f60525;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  left: -120px;
  top: -120px;
}
.seo-process-section::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: #1e235c;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  right: -150px;
  bottom: -150px;
}
.seo-timeline {
  position: relative;
  max-width: 1050px;
  margin: auto;
}
.seo-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(#f60525, #1e235c);
  border-radius: 20px;
}
.seo-step {
  width: 50%;
  position: relative;
  margin-bottom: 70px;
}
.seo-step.left {
  padding-right: 70px;
  text-align: right;
}
.seo-step.right {
  margin-left: 50%;
  padding-left: 70px;
}
.seo-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;
  color: #f60525;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.45s;
  z-index: 2;
}
.left .seo-icon {
  right: -37px;
}
.right .seo-icon {
  left: -37px;
}
.seo-content {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: 0.45s;
  position: relative;
  overflow: hidden;
}
.seo-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #f60525;
  transition: 0.45s;
}
.seo-content span {
  color: #f60525;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.seo-content h4 {
  margin: 12px 0;
  color: #1e235c;
  font-weight: 700;
}
.seo-content p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}
.seo-step:hover .seo-content {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.seo-step:hover .seo-icon {
  background: #f60525;
  color: #fff;
  transform: rotate(360deg) scale(1.08);
}
.seo-step:hover .seo-content::before {
  width: 100%;
  opacity: 0.08;
}
/* Floating */
.seo-step:nth-child(2) {
  animation: float1 4s ease-in-out infinite;
}
.seo-step:nth-child(3) {
  animation: float2 5s ease-in-out infinite;
}
.seo-step:nth-child(4) {
  animation: float1 6s ease-in-out infinite;
}
.seo-step:nth-child(5) {
  animation: float2 5.5s ease-in-out infinite;
}
@keyframes float1 {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float2 {
  50% {
    transform: translateY(10px);
  }
}

/*================================================== SEO PRICING ==================================================*/
.service-pricing {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: #f8faff;
  z-index: 1;
}
/*================ Background =================*/
.pricing-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  animation: pricingMove 10s ease-in-out infinite;
}
.shape-1 {
  width: 320px;
  height: 320px;
  background: rgba(246, 5, 37, 0.08);
  left: -120px;
  top: -80px;
}
.shape-2 {
  width: 420px;
  height: 420px;
  background: rgba(30, 35, 92, 0.08);
  right: -150px;
  bottom: -180px;
  animation-delay: 3s;
}
@keyframes pricingMove {
  50% {
    transform: translateY(-35px);
  }
}
/*================ Cards =================*/
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 40px 35px;
  height: 100%;
  overflow: hidden;
  transition: 0.45s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}
.pricing-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f60525, #1e235c);
  transform: scaleX(0);
  transition: 0.45s;
}
.pricing-card:hover::before {
  transform: scaleX(1);
}
.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}
/*================ Active Card =================*/
.active-plan {
  transform: translateY(-20px);
  border: 2px solid #f60525;
}
.active-plan::before {
  transform: scaleX(1);
}
/*================ Popular Badge =================*/
.popular-badge {
  position: absolute;
  right: -42px;
  top: 22px;
  background: #f60525;
  color: #fff;
  padding: 9px 55px;
  font-size: 13px;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 12px 30px rgba(246, 5, 37, 0.35);
  z-index: 5;
}
/*================ Top =================*/
.pricing-top {
  text-align: center;
  margin-bottom: 35px;
}
.pricing-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f60525, #1e235c);
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
  transition: 0.45s;
}
.pricing-card:hover .pricing-icon {
  transform: rotateY(360deg);
}
.pricing-top h4 {
  color: #1e235c;
  font-weight: 700;
  margin-bottom: 18px;
}
.pricing-top h2 {
  font-size: 46px;
  font-weight: 800;
  color: #f60525;
  margin-bottom: 8px;
}
.pricing-top h2 small {
  font-size: 17px;
  color: #666;
  font-weight: 500;
}
.pricing-top p {
  color: #777;
  line-height: 1.8;
  margin: 0;
}
/*============================== Pricing List ==============================*/
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}
.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  transition: 0.35s;
}
.pricing-list li i {
  color: #f60525;
  font-size: 18px;
  margin-top: 2px;
  transition: 0.35s;
}
/* Hover Effect */
.pricing-card:hover .pricing-list li {
  transform: translateX(8px);
}
.pricing-card:hover .pricing-list li i {
  transform: scale(1.25) rotate(360deg);
  color: #1e235c;
}
/*============================== Pricing Button ==============================*/
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 12px;
  background: #f60525;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.pricing-btn::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transition: 0.65s;
}
.pricing-btn:hover::before {
  left: 100%;
}
.pricing-btn:hover {
  background: #1e235c;
  color: #fff;
  /* transform: translateY(-3px); */
}
/*============================== Active Card Button ==============================*/
.active-plan .pricing-btn {
  background: #1e235c;
}
.active-plan .pricing-btn:hover {
  background: #f60525;
}
/*============================== Price Animation ==============================*/
.active-plan .pricing-top h2 {
  animation: pricePulse 2.5s infinite;
}
@keyframes pricePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/*============================== Floating Cards ==============================*/
.pricing-card {
  animation: pricingFloat 6s ease-in-out infinite;
}
.pricing-card:nth-child(2) {
  animation-delay: 1.5s;
}
.pricing-card:nth-child(3) {
  animation-delay: 3s;
}
@keyframes pricingFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Hover Priority */
.pricing-card:hover {
  animation: none;
}
/*============================== Card Glow ==============================*/
.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(246, 5, 37, 0.04),
    rgba(30, 35, 92, 0.04)
  );
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}
.pricing-card:hover::after {
  opacity: 1;
}
/*================================================== PRICING CTA ==================================================*/
.pricing-bottom-box {
  margin-top: 70px;
  padding: 50px;
  border-radius: 24px;
  background: linear-gradient(135deg, #1e235c, #2e3578);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(30, 35, 92, 0.18);
}
.pricing-bottom-box::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(246, 5, 37, 0.18);
  border-radius: 50%;
  left: -120px;
  top: -120px;
  filter: blur(30px);
}
.pricing-bottom-box::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  right: -100px;
  bottom: -100px;
}
.pricing-bottom-box h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}
.pricing-bottom-box p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
  font-size: 16px;
  margin: 0;
}
.pricing-bottom-box .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 12px;
  background: #f60525;
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
  text-decoration: none;
}
.pricing-bottom-box .hero-btn:hover {
  background: #fff;
  color: #1e235c;
  transform: translateY(-5px);
}
/*================================================== CARD ENTRY ANIMATION ==================================================*/
/* .pricing-card {
  animation: fadeUp 0.8s ease both;
} */
.col-lg-4:nth-child(2) .pricing-card {
  animation-delay: 0.15s;
}
.col-lg-4:nth-child(3) .pricing-card {
  animation-delay: 0.3s;
}
/* @keyframes fadeUp{
     from{
         opacity:0;
         transform:translateY(50px);
    }
     to{
         opacity:1;
         transform:translateY(0);
    }
}
 */
/*================================================== RESPONSIVE ==================================================*/

/*================================================== WORDPRESS BENEFITS SECTION ==================================================*/
.wp-benefits-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
}
/*================ Background =================*/
.wp-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}
.circle-1 {
  width: 320px;
  height: 320px;
  background: rgba(246, 5, 37, 0.08);
  top: -120px;
  left: -120px;
  animation: wpMove 10s ease-in-out infinite;
}
.circle-2 {
  width: 420px;
  height: 420px;
  background: rgba(30, 35, 92, 0.08);
  right: -150px;
  bottom: -150px;
  animation: wpMove 14s ease-in-out infinite reverse;
}
@keyframes wpMove {
  50% {
    transform: translateY(-35px) scale(1.08);
  }
}
/*================ Image =================*/
.wp-image-box {
  position: relative;
  z-index: 2;
  text-align: center;
}

.wp-image-box img {
  position: relative;
  max-width: 95%;
  border-radius: 30px;
  animation: wpFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.12));
}
@keyframes wpFloat {
  50% {
    transform: translateY(-15px);
  }
}
/*================ Grid =================*/
.wp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}
/*================ Card =================*/
.wp-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}
.wp-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background: #f60525;
  transition: 0.4s;
}
.wp-feature:hover::before {
  width: 100%;
}
.wp-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
/*================ Icon =================*/
.wp-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #f60525, #1e235c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: 0.4s;
}
.wp-feature:hover .wp-icon {
  transform: rotateY(360deg);
}
/*================ Content =================*/
.wp-feature h5 {
  font-size: 19px;
  color: #1e235c;
  font-weight: 700;
  margin-bottom: 8px;
}
.wp-feature p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}
/*================ Responsive =================*/

/*================================================== WORDPRESS PROCESS SECTION ==================================================*/
.wp-process-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
  overflow: hidden;
}
/* Background */
.wp-process-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(246, 5, 37, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  top: -120px;
  left: -120px;
}
.wp-process-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(30, 35, 92, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  right: -120px;
  bottom: -120px;
}
/*====================================*/
.process-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
}
/*====================================*/
.procs-item {
  width: 280px;
  flex-shrink: 0;
}
/*====================================*/
.process-box {
  background: #fff;
  border-radius: 22px;
  padding: 35px 28px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.45s;
  position: relative;
  overflow: hidden;
}
/* Top Border */
.process-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #f60525, #1e235c);
  transition: 0.45s;
}
.process-box:hover::before {
  width: 100%;
}
/*====================================*/
.procs-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f60525, #1e235c);
  color: #fff;
  font-size: 34px;
  margin-bottom: 25px;
  box-shadow: 0 15px 35px rgba(246, 5, 37, 0.25);
  transition: 0.45s;
}
.process-box h5 {
  color: #1e235c;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 700;
}
.process-box p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}
/*====================================*/
/* Connecting Line */
.process-line1 {
  flex: 1;
  height: 4px;
  background: #d9dde8;
  border-radius: 50px;
  position: relative;
  margin: 0 15px;
  overflow: hidden;
}
/*====================================*/
.process-down {
  text-align: center;
  margin: 45px 0;
}
.process-down i {
  font-size: 44px;
  color: #f60525;
}
/*====================================*/

/* timeline animation>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
/*========================= TIMELINE ANIMATION =========================*/
.process-line1 {
  position: relative;
  overflow: hidden;
}
/* Moving Glow */
.process-line1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -35%;
  width: 35%;
  height: 100%;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(246, 5, 37, 0.9),
    transparent
  );
  animation: processFlow 2.8s linear infinite;
}
/* Moving Dot */
.process-line1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #f60525;
  box-shadow:
    0 0 10px #f60525,
    0 0 20px rgba(246, 5, 37, 0.8),
    0 0 30px rgba(246, 5, 37, 0.5);
  animation: processDot 2.8s linear infinite;
}
@keyframes processFlow {
  0% {
    left: -35%;
  }
  100% {
    left: 120%;
  }
}
@keyframes processDot {
  0% {
    left: -12px;
  }
  100% {
    left: calc(100% + 12px);
  }
}
/* Hover */
.process-box:hover + .process-line::after,
.process-line:hover::after {
  animation-duration: 1.2s;
}
@media (max-width: 991px) {
  .process-line::before {
    width: 100%;
    height: 35%;
    left: 0;
    top: -35%;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(246, 5, 37, 0.9),
      transparent
    );
    animation: processFlowVertical 2.8s linear infinite;
  }
  .process-line::after {
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    animation: processDotVertical 2.8s linear infinite;
  }
  @keyframes processFlowVertical {
    from {
      top: -35%;
    }
    to {
      top: 120%;
    }
  }
  @keyframes processDotVertical {
    from {
      top: -10px;
    }
    to {
      top: calc(100% + 10px);
    }
  }
}
/*================================================== WORDPRESS PRICING ==================================================*/
.wp-pricing-section {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}
/* Background Shapes */
.wp-pricing-section::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(246, 5, 37, 0.05);
  top: -120px;
  left: -100px;
  filter: blur(70px);
}
.wp-pricing-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(30, 35, 92, 0.05);
  bottom: -150px;
  right: -120px;
  filter: blur(70px);
}
/* ======================= */
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 40px 35px;
  height: 100%;
  border: 1px solid #120d60;
  transition: 0.45s;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
}
/* Top Border */
.pricing-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f60525, #1e235c);
  transform: scaleX(0);
  transition: 0.45s;
}
.pricing-card:hover::before {
  transform: scaleX(1);
}
.pricing-card:hover {
  transform: translateY(-12px);
  border: 2px solid #fb0222;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}
/* Active Plan */
.active-plan {
  transform: scale(1.05);
  border: 2px solid #f60525;
}
.active-plan:hover {
  transform: scale(1.05) translateY(-12px);
}
/* Badge */
.popular-badge {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #f60525;
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  animation: pulseBadge 2s infinite;
}
@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
/* Plan */
.pricing-label {
  display: inline-block;
  padding: 8px 18px;
  background: #eef2ff;
  color: #1e235c;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}
.pricing-card h3 {
  font-size: 46px;
  font-weight: 800;
  color: #1e235c;
  margin-bottom: 12px;
}
.pricing-desc {
  color: #666;
  margin-bottom: 30px;
}
/* Features */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: #555;
  transition: 0.35s;
}
.pricing-list li:hover {
  transform: translateX(8px);
  color: #1e235c;
}
.pricing-list i {
  color: #f60525;
  font-size: 18px;
}
/* Button */
.pricing-btn {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: #1e235c;
  color: #fff;
  font-weight: 600;
  transition: 0.4s;
}
.pricing-btn:hover {
  background: #f60525;
  color: #fff;
  transform: translateY(-3px);
}
/* ========================= */

/*================================================== WORDPRESS CTA SECTION ==================================================*/
.wp-cta-section {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
  z-index: 1;
}
/*============================== Floating Bubbles ==============================*/
.wp-cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.08;
  animation: floatBubble 10s ease-in-out infinite;
  z-index: -1;
}
.blob-one {
  width: 320px;
  height: 320px;
  background: #f60525;
  top: -120px;
  left: -120px;
}
.blob-two {
  width: 260px;
  height: 260px;
  background: #1e235c;
  right: -90px;
  bottom: -80px;
  animation-delay: 2s;
}
@keyframes floatBubble {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.08);
  }
}
/*============================== Grid Background ==============================*/
.wp-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 35, 92, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 35, 92, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -2;
}
/*============================== Left Content ==============================*/
.wp-cta-title {
  font-size: 46px;
  font-weight: 700;
  color: #1e235c;
  line-height: 1.25;
}
.wp-cta-title span {
  color: #f60525;
}
.wp-cta-text {
  margin: 20px 0;
  color: #666;
  line-height: 1.8;
  font-size: 16px;
  max-width: 650px;
}
.wp-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.wp-cta-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1e235c;
  font-weight: 500;
}
.wp-cta-trust i {
  color: #f60525;
}
/*============================== Right Card ==============================*/
.wp-cta-box {
  background: #fff;
  border: 1px solid rgba(30, 35, 92, 0.08);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: 0.4s;
}
.wp-cta-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.wp-cta-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f60525;
  color: #fff;
  font-size: 30px;
  margin-bottom: 20px;
  animation: pulseIcon 2.5s infinite;
}
@keyframes pulseIcon {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.wp-cta-label {
  color: #777;
  margin-bottom: 8px;
}
.wp-cta-phone {
  display: block;
  text-decoration: none;
  color: #1e235c;
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s;
}
.wp-cta-phone:hover {
  color: #f60525;
}
/*============================== CTA Buttons ==============================*/
 .wp-cta-btns{
     margin-top:30px;
     display:flex;
     flex-direction:column;
     gap:14px;
}
 .wp-cta-btn-primary, .wp-cta-btn-outline{
     width:100%;
     padding:14px 24px;
     border-radius:12px;
     font-size:16px;
     font-weight:600;
     text-decoration:none;
     transition:.35s ease;
}
/* Primary Button */
 .wp-cta-btn-primary{
     background:#F60525;
     color:#fff;
     border:2px solid #F60525;
}
 .wp-cta-btn-primary:hover{
     background:#d70420;
     border-color:#d70420;
     color:#fff;
     transform:translateY(-3px);
     box-shadow:0 12px 28px rgba(246,5,37,.30);
}
/* Outline Button */
 .wp-cta-btn-outline{
     background:#fff;
     color:#1E235C;
     border:2px solid rgba(30,35,92,.12);
}
 .wp-cta-btn-outline:hover{
     background:#1E235C;
     color:#fff;
     border-color:#1E235C;
     transform:translateY(-3px);
     box-shadow:0 12px 28px rgba(30,35,92,.20);
}
 .wp-cta-btn-outline i{
     margin-right:8px;
}
/*============================== Responsive ==============================*/
 @media(max-width:991px){
     .wp-cta-section{
         padding:80px 0;
    }
     .wp-cta-title{
         font-size:36px;
         text-align:center;
    }
     .wp-cta-text{
         text-align:center;
         margin:18px auto 25px;
    }
     .wp-cta-trust{
         justify-content:center;
    }
     .wp-cta-box{
         margin-top:20px;
    }
}
 @media(max-width:767px){
     .wp-cta-title{
         font-size:30px;
    }
     .wp-cta-phone{
         font-size:20px;
    }
     .wp-cta-box{
         padding:28px 22px;
    }
     .wp-cta-trust{
         flex-direction:column;
         align-items:center;
         gap:12px;
    }
     .blob-one{
         width:220px;
         height:220px;
         top:-90px;
         left:-90px;
    }
     .blob-two{
         width:180px;
         height:180px;
         right:-70px;
         bottom:-70px;
    }
}
@media (max-width: 991px) {
  .service-hero {
    text-align: center;
    padding: 60px 0 80px;
  }
  .service-title {
    font-size: 42px;
  }
  .service-desc {
    margin: auto;
  }
  .service-features1 {
    justify-content: center;
  }
  .service-image {
    margin-top: 40px;
  }
  .floating-card {
    display: none;
  }
  .service-image img {
    max-width: 340px;
  }
}
@media (max-width: 576px) {
  .service-title {
    font-size: 32px;
  }
  .service-btn,
  .service-btn-outline {
    width: 100%;
    margin: 8px 0;
    display: block;
  }
  .service-badge {
    font-size: 14px;
  }
  .service-desc {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  .service-hero {
    padding: 70px 0 80px;
    text-align: center;
  }
  .service-image-wrapper {
    margin-top: 50px;
    min-height: auto;
  }
  .image-bg-shape {
    width: 300px;
    height: 300px;
  }
  .hero-badge-card {
    display: none;
  }
  .service-image {
    max-width: 330px;
  }
}
@media (max-width: 991px) {
  .service-features {
    padding: 90px 0;
  }
  .service-showcase img {
    max-width: 340px;
  }
  .floating-label {
    display: none;
  }
}
@media (max-width: 576px) {
  .feature-pill {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .active-plan {
    transform: none;
  }
  .active-plan:hover {
    transform: translateY(-10px);
  }
  .pricing-card {
    padding: 35px 28px;
  }
  .price {
    font-size: 44px;
  }
}
@media (max-width: 576px) {
  .service-pricing {
    padding: 70px 0;
  }
  .pricing-card {
    padding: 30px 22px;
  }
  .price {
    font-size: 38px;
  }
  .popular-badge {
    font-size: 11px;
    right: -42px;
    padding: 7px 42px;
  }
  .pricing-note {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .seo-line {
    left: 35px;
  }
  .seo-step {
    width: 100%;
    padding-left: 90px !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    text-align: left;
  }
  .left .seo-icon,
  .right .seo-icon {
    left: 0;
    right: auto;
  }
}
@media (max-width: 576px) {
  .seo-content {
    padding: 22px;
  }
  .seo-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .service-pricing {
    padding: 80px 0;
  }
  .active-plan {
    transform: none;
  }
  .pricing-card {
    animation: none;
  }
  .pricing-top h2 {
    font-size: 40px;
  }
  .pricing-bottom-box {
    padding: 40px 30px;
    text-align: center;
  }
  .pricing-bottom-box h3 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .pricing-card {
    padding: 30px 25px;
  }
  .popular-badge {
    right: -46px;
    font-size: 12px;
    padding: 8px 55px;
  }
  .pricing-top h2 {
    font-size: 34px;
  }
  .pricing-icon {
    width: 68px;
    height: 68px;
    font-size: 28px;
  }
  .pricing-btn {
    height: 52px;
  }
  .pricing-bottom-box {
    padding: 35px 25px;
  }
  .pricing-bottom-box h3 {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .service-pricing {
    padding: 70px 0;
  }
  .pricing-top h2 {
    font-size: 30px;
  }
  .pricing-list li {
    font-size: 14px;
  }
  .pricing-bottom-box {
    border-radius: 18px;
  }
  .pricing-bottom-box .hero-btn {
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 991px) {
  .wp-benefits-section {
    padding: 80px 0;
  }
  .wp-feature-grid {
    grid-template-columns: 1fr;
  }
  .wp-image-box {
    margin-bottom: 30px;
  }
  .wp-image-bg {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 576px) {
  .wp-feature {
    padding: 18px;
    gap: 15px;
  }
  .wp-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .wp-feature h5 {
    font-size: 17px;
  }
  .wp-feature p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .process-row {
    flex-direction: column;
    gap: 30px;
  }
  .process-line1 {
    width: 4px;
    height: 80px;
    margin: 0;
  }
  .procs-item {
    width: 100%;
    max-width: 380px;
  }
  .process-down {
    display: none;
  }
}
@media (max-width: 991px) {
  .active-plan {
    transform: scale(1);
  }
  .pricing-card {
    margin-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .wp-pricing-section {
    padding: 70px 0;
  }
  .pricing-card {
    padding: 30px 25px;
  }
  .pricing-card h3 {
    font-size: 36px;
  }
  .popular-badge {
    font-size: 12px;
    padding: 6px 15px;
  }
}
@media (max-width: 991px) {
  .wp-cta-section {
    text-align: center;
    padding: 70px 0;
  }
  .wp-cta-title {
    font-size: 30px;
  }
  .wp-cta-text {
    margin-inline: auto;
  }
  .wp-cta-trust {
    justify-content: center;
  }
  .wp-cta-box {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .wp-cta-title {
    font-size: 25px;
  }
  .wp-cta-trust {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}
