/* =========================================================
   BUILDDEPLOY TECH
   PREMIUM SERVICE DETAIL PAGE CSS
========================================================= */

.service-page{

  background:
  linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%
  );

  overflow-x:hidden;

  position:relative;

}

/* =========================================================
   CONTAINER
========================================================= */

.container{

  width:100%;

  max-width:1280px;

  margin:auto;

  padding:
  0 20px;

}

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

.service-hero{

  position:relative;

  overflow:hidden;

  padding:
  190px 0 130px;

  background:
  linear-gradient(
    135deg,
    #f8fbff 0%,
    #eef4ff 45%,
    #ffffff 100%
  );

}

.service-hero::before{

  content:"";

  position:absolute;

  top:-120px;
  right:-120px;

  width:360px;
  height:360px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(37,99,235,0.16),
    transparent 70%
  );

  filter:blur(80px);

}

.service-hero::after{

  content:"";

  position:absolute;

  bottom:-140px;
  left:-120px;

  width:340px;
  height:340px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(124,58,237,0.16),
    transparent 70%
  );

  filter:blur(80px);

}

.service-hero-content{

  position:relative;

  z-index:2;

  max-width:960px;

  margin:auto;

  text-align:center;

}

/* =========================================================
   SECTION TAG
========================================================= */

.section-tag{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:
  12px 22px;

  border-radius:999px;

  background:
  rgba(37,99,235,0.08);

  border:
  1px solid rgba(37,99,235,0.10);

  color:#2563eb;

  font-size:13px;

  font-weight:700;

  letter-spacing:0.5px;

  text-transform:uppercase;

}

/* =========================================================
   HERO CONTENT
========================================================= */

/* =========================================================
   HERO HEADING
========================================================= */

.service-hero-content h1{

  font-size:76px;

  line-height:1.08;

  font-weight:900;

  margin:
  30px 0;

  background:
  linear-gradient(
    135deg,
    #0f172a 0%,
    #2563eb 35%,
    #7c3aed 70%,
    #0ea5e9 100%
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

  background-clip:text;

}

.service-hero-content h1 span{

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #7c3aed,
    #0ea5e9
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

}

.service-hero-content p{

  max-width:760px;

  margin:auto;

  color:#64748b;

  font-size:20px;

  line-height:2;

}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons{

  display:flex;

  align-items:center;
  justify-content:center;

  gap:18px;

  flex-wrap:wrap;

  margin-top:46px;

}

/* =========================================================
   BUTTONS
========================================================= */

.primary-btn{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:
  18px 36px;

  border-radius:18px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #0ea5e9
  );

  color:#ffffff;

  text-decoration:none;

  font-size:16px;

  font-weight:700;

  box-shadow:
  0 20px 40px rgba(37,99,235,0.22);

  transition:
  transform 0.35s ease,
  box-shadow 0.35s ease;

}

.primary-btn:hover{

  transform:
  translateY(-6px);

  box-shadow:
  0 30px 70px rgba(37,99,235,0.30);

}

.secondary-btn{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:
  18px 36px;

  border-radius:18px;

  background:#ffffff;

  border:
  1px solid rgba(15,23,42,0.08);

  color:#0f172a;

  text-decoration:none;

  font-size:16px;

  font-weight:700;

  transition:
  transform 0.35s ease,
  background 0.35s ease,
  color 0.35s ease;

}

.secondary-btn:hover{

  transform:
  translateY(-6px);

  background:#0f172a;

  color:#ffffff;

}

/* =========================================================
   STATS SECTION
========================================================= */

.service-stats-section{

  padding:
  20px 0 90px;

}

.stats-grid{

  display:grid;

  grid-template-columns:
  repeat(4,1fr);

  gap:28px;

}

.stat-card{

  background:#ffffff;

  border-radius:30px;

  padding:42px 30px;

  text-align:center;

  border:
  1px solid rgba(37,99,235,0.06);

  box-shadow:
  0 20px 60px rgba(15,23,42,0.05);

  transition:
  transform 0.35s ease,
  box-shadow 0.35s ease;

}

.stat-card:hover{

  transform:
  translateY(-10px);

  box-shadow:
  0 40px 90px rgba(37,99,235,0.14);

}

.stat-card h3{

  font-size:52px;

  font-weight:900;

  margin-bottom:14px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
  );

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

}

.stat-card p{

  color:#64748b;

  font-size:17px;

  font-weight:600;

}

/* =========================================================
   SECTION HEADER
========================================================= */

.section-header{

  text-align:center;

  max-width:760px;

  margin:
  0 auto 70px;

}

.section-header h2{

  font-size:58px;

  line-height:1.2;

  font-weight:900;

  color:#0f172a;

  margin:
  24px 0;

}

.section-header p{

  color:#64748b;

  line-height:1.9;

  font-size:18px;

}

/* =========================================================
   FEATURES
========================================================= */

.service-features{

  padding:
  40px 0 70px;

}

.features-grid{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:32px;

}

.feature-card{

  position:relative;

  overflow:hidden;

  background:#ffffff;

  border-radius:34px;

  padding:42px;

  border:
  1px solid rgba(37,99,235,0.06);

  box-shadow:
  0 20px 60px rgba(15,23,42,0.05);

  transition:
  transform 0.35s ease,
  box-shadow 0.35s ease;

}

.feature-card::before{

  content:"";

  position:absolute;

  top:0;
  left:0;

  width:100%;
  height:5px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #7c3aed,
    #0ea5e9
  );

}

.feature-card:hover{

  transform:
  translateY(-12px);

  box-shadow:
  0 40px 90px rgba(37,99,235,0.14);

}

.feature-icon{

  width:86px;
  height:86px;

  display:flex;

  align-items:center;
  justify-content:center;

  border-radius:24px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
  );

  color:#ffffff;

  font-size:38px;

  margin-bottom:30px;

  box-shadow:
  0 20px 40px rgba(37,99,235,0.18);

}

.feature-card h3{

  font-size:30px;

  line-height:1.3;

  font-weight:800;

  color:#0f172a;

  margin-bottom:18px;

}

.feature-card p{

  color:#64748b;

  line-height:1.9;

  font-size:16px;

}
/* =========================================================
   CONTENT SECTION
========================================================= */

.service-content{

  padding:
  40px 0 120px;

}

.service-content-box{

  background:#ffffff;

  border-radius:42px;

  padding:
  75px 65px;

  border:
  1px solid rgba(37,99,235,0.06);

  box-shadow:
  0 20px 70px rgba(15,23,42,0.05);

}

.service-content-box h2{

  font-size:54px;

  line-height:1.2;

  font-weight:900;

  color:#0f172a;

  margin:
  24px 0 34px;

}

.service-content-box p{

  color:#64748b;

  line-height:2;

  font-size:18px;

  margin-bottom:24px;

}

/* =========================================================
   PROCESS SECTION
========================================================= */

.process-section{

  padding:
  20px 0 120px;

}

.process-grid{

  display:grid;

  grid-template-columns:
  repeat(4,1fr);

  gap:28px;

}

.process-card{

  background:#ffffff;

  border-radius:32px;

  padding:42px 34px;

  border:
  1px solid rgba(37,99,235,0.06);

  box-shadow:
  0 20px 60px rgba(15,23,42,0.05);

  transition:
  transform 0.35s ease,
  box-shadow 0.35s ease;

}

.process-card:hover{

  transform:
  translateY(-10px);

  box-shadow:
  0 40px 90px rgba(37,99,235,0.14);

}

.process-number{

  width:74px;
  height:74px;

  display:flex;

  align-items:center;
  justify-content:center;

  border-radius:22px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
  );

  color:#ffffff;

  font-size:24px;

  font-weight:800;

  margin-bottom:26px;

}

.process-card h3{

  font-size:28px;

  line-height:1.3;

  font-weight:800;

  color:#0f172a;

  margin-bottom:18px;

}

.process-card p{

  color:#64748b;

  line-height:1.9;

}

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section{

  padding:
  10px 0 120px;

}

.faq-grid{

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:30px;

}

.faq-card{

  background:#ffffff;

  border-radius:30px;

  padding:38px;

  border:
  1px solid rgba(37,99,235,0.06);

  box-shadow:
  0 20px 60px rgba(15,23,42,0.05);

  transition:
  transform 0.35s ease,
  box-shadow 0.35s ease;

}

.faq-card:hover{

  transform:
  translateY(-8px);

  box-shadow:
  0 35px 80px rgba(37,99,235,0.12);

}

.faq-card h3{

  font-size:24px;

  line-height:1.5;

  font-weight:800;

  color:#0f172a;

  margin-bottom:18px;

}

.faq-card p{

  color:#64748b;

  line-height:1.9;

  font-size:16px;

}

/* =========================================================
   CTA SECTION
========================================================= */

.service-cta{

  padding:
  20px 0 140px;

}

.cta-box{

  position:relative;

  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    #020617 0%,
    #0f172a 40%,
    #111827 100%
  );

  border-radius:42px;

  padding:
  100px 70px;

  text-align:center;

  isolation:isolate;

  box-shadow:
  0 40px 120px rgba(15,23,42,0.22);

}

/* =========================================================
   CTA GLOW EFFECTS
========================================================= */

.cta-box::before{

  content:"";

  position:absolute;

  top:-180px;
  right:-180px;

  width:420px;
  height:420px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(37,99,235,0.20),
    transparent 70%
  );

  filter:blur(20px);

  z-index:0;

}

.cta-box::after{

  content:"";

  position:absolute;

  bottom:-180px;
  left:-180px;

  width:380px;
  height:380px;

  border-radius:50%;

  background:
  radial-gradient(
    circle,
    rgba(124,58,237,0.18),
    transparent 70%
  );

  filter:blur(20px);

  z-index:0;

}

/* =========================================================
   CTA TAG
========================================================= */

.cta-box .section-tag{

  position:relative;

  z-index:2;

  background:
  rgba(37,99,235,0.12);

  border:
  1px solid rgba(37,99,235,0.18);

  color:#60a5fa;

}

/* =========================================================
   CTA HEADING
========================================================= */

.cta-box h2{

  position:relative;

  z-index:2;

  font-size:64px;

  line-height:1.15;

  font-weight:900;

  color:#ffffff;

  margin:
  30px 0;

  letter-spacing:-2px;

}

/* =========================================================
   CTA PARAGRAPH
========================================================= */

.cta-box p{

  position:relative;

  z-index:2;

  max-width:850px;

  margin:
  0 auto 42px;

  color:
  rgba(255,255,255,0.78);

  line-height:2;

  font-size:19px;

}

/* =========================================================
   CTA BUTTONS
========================================================= */

.cta-box .hero-buttons{

  position:relative;

  z-index:2;

}

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

@media(max-width:1200px){

  .features-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

  .process-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

}

@media(max-width:992px){

  .stats-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

  .faq-grid{

    grid-template-columns:1fr;

  }

  .service-hero-content h1{

    font-size:56px;

  }

  .section-header h2,
  .service-content-box h2,
  .cta-box h2{

    font-size:44px;

  }

}

@media(max-width:768px){

  .service-hero{

    padding:
    160px 0 100px;

  }

  .service-hero-content h1{

    font-size:42px;

  }

  .service-hero-content p{

    font-size:17px;

  }

  .stats-grid,
  .features-grid,
  .process-grid{

    grid-template-columns:1fr;

  }

  .feature-card,
  .process-card,
  .faq-card{

    padding:34px;

  }

  .service-content-box,
  .cta-box{

    padding:
    55px 30px;

  }

  .cta-box h2{

    font-size:38px;

  }

}

@media(max-width:480px){

  .service-hero-content h1{

    font-size:34px;

  }

  .section-header h2,
  .service-content-box h2,
  .cta-box h2{

    font-size:30px;

  }

}