
    .slide-box {
  display: none;
  animation: fadeSlide 0.8s ease;
}

.slide-box.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===============================
   HERO STATS (NO IMAGES)
================================ */
.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-top:40px;
}

.hero-stats .stat-box{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  border-radius:12px;
  padding:18px 10px;
  text-align:center;
  transition:all .3s ease;
}

.hero-stats .stat-box:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,0.08);
}

.hero-stats h3{
  font-size:28px;
  font-weight:700;
  color:var(--theme-color);
  margin-bottom:4px;
}

.hero-stats p{
  font-size:13px;
  color:#d1d5db;
  margin:0;
}

@media (max-width:576px){
  .hero-stats{
    display: none;
  }
}
@media (max-width:991px){
  .hero-stats{
    display: none;
  }
}
/* DEMO BUTTON */
.open-btn{
  padding:12px 22px;
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}

/* OVERLAY */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

/* POPUP BOX */
.popup-box{
  background:linear-gradient(45deg, #0a0a0a, #029b9b6e, #035e5e8c);
  color:#fff;
  width:900px;
  max-width:95%;
  backdrop-filter:blur(10px);
  border-radius:14px;
  padding:30px;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.6);
  animation:scaleIn .35s ease;
}

/* CLOSE */
.popup-close{
  position:absolute;
  right:16px;
  top:16px;
  background:none;
  border:none;
  color:#94a3b8;
  font-size:22px;
  cursor:pointer;
}

/* HEADER */
.popup-header{
  display:flex;
  gap:15px;
  align-items:center;
  margin-bottom:25px;
}

.icon-box{
  width:42px;
  height:42px;
  background:#2563eb;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.popup-header h2{
  margin:0;
  font-size:22px;
}

.popup-header p{
  margin:4px 0 0;
  font-size:14px;
  color:#cbd5f5;
}

/* BODY */
.popup-body_2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.popup-body h4{
  margin-bottom:10px;
  font-size:16px;
}

/* LIST */
.check-list{
  list-style:none;
  padding:0;
  margin:0;
}

.check-list li{
  margin-bottom:8px;
  padding-left:22px;
  position:relative;
  font-size:14px;
  color:#e5e7eb;
}

.check-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#22c55e;
}

.check-list.blue li::before{
  color:#3b82f6;
}

/* RESULT BOX */
.result-box{
  margin-top:20px;
  background:rgba(255,255,255,0.05);
  padding:14px;
  border-radius:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.badge_0{
  background:#2563eb;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
}

/* FOOTER */
.popup-footer{
  display:flex;
  justify-content:space-between;
  margin-top:30px;
}

.btn-primary{
  background:linear-gradient(45deg,#6366f1,#9333ea);
  border:none;
  padding:12px 24px;
  color:#fff;
  border-radius:10px;
  cursor:pointer;
}


/* ANIMATION */
@keyframes scaleIn{
  from{transform:scale(.9);opacity:0}
  to{transform:scale(1);opacity:1}
}

/* RESPONSIVE */
@media(max-width:768px){
  .popup-body{
    grid-template-columns:1fr;
  }
}

  .popup-box{
    max-height:calc(100vh - 40px);
    padding:20px;
  }

  .popup-body{
    grid-template-columns:1fr;
  }

  .popup-footer{
    flex-direction:column;
    gap:12px;
  }

  .btn-primary{
    width:100%;
  }
}
/* Explore More Services Button */
.explore-more-btn{
  background:linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  color:#fff;
  padding:20px;
  border-radius:15px;
  font-size:15px;
  font-weight:600;
  letter-spacing:.4px;
  box-shadow:0 10px 30px rgba(9, 241, 199, 0.94);
  transition:all .35s ease;
}

.explore-more-btn:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 45px rgba(6, 239, 220, 0.45);
  color:#fff;
}
/* ======================================
   PORTFOLIO CARD – FULL CSS
====================================== */

/* Card wrapper */
.portfolio-card{
 background: #22676b;
background: linear-gradient(0deg,rgba(34, 103, 107, 1) 0%, rgba(28, 16, 16, 1) 100%);
  border-radius:18px;
  overflow:hidden;
  position:relative;
  height:100%;
  transition:all .4s ease;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}

.portfolio-card:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 70px rgba(79,70,229,.45);
}

/* Image section */
.portfolio-img{
  position:relative;
  overflow:hidden;
}

.portfolio-img img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .5s ease;
}

.portfolio-card:hover .portfolio-img img{
  transform:scale(1.08);
}

/* Category badge (from your old portfolio-info) */
.portfolio-img .portfolio-info{
  position:absolute;
  top:14px;
  left:14px;
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(6px);
  padding:6px 14px;
  border-radius:50px;
}

.portfolio-img .portfolio-info h4{
  margin:0;
  font-size:12px;
  font-weight:500;
  color:#60a5fa;
}

/* Card body */
.portfolio-body{
  padding:22px;
}

.portfolio-body h4{
  font-size:18px;
  font-weight:600;
  color:#ffffff;
  margin-bottom:10px;
}

.portfolio-body p{
  font-size:14px;
  line-height:1.6;
  color:#cbd5e1;
  margin-bottom:18px;
}

/* Tech tags container */
.portfolio-tags{
  display:flex;
  gap:8px;
  flex-wrap:nowrap; /* desktop = one line */
  overflow:hidden;
}

/* Tag style */
.portfolio-tags span{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  padding:5px 10px;
  font-size:9px;
  border-radius:20px;
  color:#e5e7eb;
  white-space:nowrap;
}

/* +2 badge */
.portfolio-tags .more{
  background:linear-gradient(135deg,#2563eb,#9333ea);
  color:#ffffff;
  font-weight:600;
}

/* Tablet – minimum 3 per row */
@media(max-width:992px){
  .portfolio-tags{
    flex-wrap:wrap;
  }

  .portfolio-tags span{
    flex:0 0 calc(33.333% - 6px);
    text-align:center;
  }
}

/* Mobile – auto (2 per row) */
@media(max-width:576px){
  .portfolio-img img{
    height:190px;
  }

  .portfolio-tags span{
    flex:0 0 calc(50% - 6px);
  }
}
.portfolio-img{
  position: relative;
  overflow: hidden;
}

.portfolio-img img{
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Common tag style */
.img-tag{
  position: absolute;
  padding: 6px 8px;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.4px;
  border-radius: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  text-transform: uppercase;
  z-index: 2;
}

/* Bottom-left tag */
.tag-bottom-left{
  left: 12px;
  bottom: 12px;
}

/* Top-right tag */
.tag-top-right{
  right: 12px;
  top: 12px;
}
.card-details {
  display: none;
  margin-top: 15px;
}

.view-more-btn {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  background: transparent;
  border: 1px solid #6a7cff;
  color: #6a7cff;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background: #6a7cff;
  color: #fff;
}
/* ================= SECTION ================= */
.tech-section {
  padding: 90px 20px;
  background: radial-gradient(circle at top, #0b1530, #050b18);
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* ================= BADGE ================= */
.badge_1 {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  background: linear-gradient(90deg, #7f5bff, #9a7cff);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ================= TITLE ================= */
.title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
}

.title span {
  background: linear-gradient(90deg, #9a7cff, #4fd1ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #b8c1ec;
  font-size: 16px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 70px;
}

.logo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-card:hover{
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(4, 202, 165, 0.982) 0px 12px 13px, rgba(189, 8, 8, 0.416) 0px -3px 5px;
}
.logo-card img {
  max-width: 120px;
  max-height: 110px;

  filter: grayscale(100%) brightness(1.1) drop-shadow(0 0 0 rgb(255, 255, 255));

  opacity: 0.75;
  transition: all 0.35s ease;
}
.logo-card:hover img {
  filter: grayscale(0%) brightness(1)
          drop-shadow(0 0 10px rgb(255, 255, 255));
  opacity: 1;
  transform: scale(1.05);
}

.logo-card:hover img {
  filter: grayscale(0%);
  opacity: 9;
  transform: scale(1.05);
}


/* ================= TECH CARDS ================= */
.tech-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.tech-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 25px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  text-align: left;
}

.tech-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.tech-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-card .tags span {
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: rgba(255, 253, 253, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(255, 255, 255, 0.263) 0px 4px 6px, rgba(255, 254, 254, 0.267) 0px 12px 13px, rgba(250, 250, 250, 0.084) 0px -3px 5px;
}

/* ================= COLORS ================= */
.blue_2 { color: #4fd1ff;font-size:22px;font-weight:600; }
.purple { color: #9a7cff;font-size:22px;font-weight:600; }
.pink_2 { color: #ff7ad9; font-size:22px;font-weight:600;}



/* OVERLAY */
.quote-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(8px);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* MODAL */
.quote-modal{
  width:520px;
  max-height:85vh;
  background:#0f172a;
  border-radius:18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* HEADER */
.quote-header{
  background:linear-gradient(90deg,#6366f1,#a855f7);
  padding:18px 22px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  color:#fff;
}
.close-btn{
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* STEP SLIDER */
.step-indicators{
  display:flex;
  gap:8px;
  margin-top:10px;
}
.step-dot{
  width:22px;
  height:4px;
  border-radius:4px;
  background:rgba(255,255,255,.35);
}
.step-dot.active{
  background:#fff;
}

/* BODY */
.quote-body{
  padding:22px;
  overflow-y:auto;
}

/* STEPS */
.quote-step{display:none}
.quote-step.active{display:block}

/* FORM */
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.1);
  background:#020617;
  color:#fff;
}
textarea{margin-top:14px;min-height:90px}

/* LABEL */
label{
  font-size:13px;
  color:#cbd5e1;
}
.req{color:#ef4444}

/* CHIPS */
.chip-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.chip-grid label{
  background:#020617;
  border:1px solid rgba(255,255,255,.08);
  padding:10px;
  border-radius:10px;
  cursor:pointer;
}

/* FOOTER */
.quote-footer{
  padding:16px;
  display:flex;
  justify-content:space-between;
}
.back-btn,.next-btn{
  padding:10px 22px;
  border-radius:10px;
  border:none;
  cursor:pointer;
}
.next-btn{background:#6366f1;color:#fff}
.back-btn{background:#1e293b;color:#fff}
/* OPTION BUTTONS (PAGES) */
.option-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:10px;
}

.option-box{
  position:relative;
  background:#020617;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  padding:12px;
  cursor:pointer;
  text-align:center;
  font-size:14px;
  color:#e5e7eb;
}

.option-box input{
  position:absolute;
  inset:0;
  opacity:0;
}

.option-box input:checked + span{
  color:#fff;
}

.option-box:has(input:checked){
  border-color:#6366f1;
  background:#0f172a;
}

/* CHECKBOX GRID */
.check-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:10px;
}

.check-grid label{
  background:#020617;
  border:1px solid rgba(255,255,255,.08);
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;
  color:#cbd5e1;
  display:flex;
  gap:10px;
  align-items:center;
}

.check-grid input{
  accent-color:#6366f1;
}

/* ================= OVERLAY ================= */
.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;            /* 🔥 hidden by default */
  align-items:center;
  justify-content:center;
  z-index:999;
}

/* ================= POPUP ================= */
.popup{
  width:900px;
  height:85vh;
  background:linear-gradient(180deg,#0b1220,#060b18);
  border-radius:18px;
  overflow:hidden;
  color:#fff;
  position:relative;
  display:flex;
  flex-direction:column;
}

/* IMAGE HEADER */
.popup-img{
  height:220px;
  position:relative;
  flex-shrink:0;
}
.popup-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.popup-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(5,11,24,.2),rgba(5,11,24,.95));
}

/* CLOSE */
.close{
  position:absolute;
  top:18px;
  right:18px;
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  border:none;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  z-index:10;
}

/* SCROLL BODY */
/*.popup-body_2{*/
/*  padding:32px;*/
/*  overflow-y:auto;*/
/*}*/
/*.popup-body::-webkit-scrollbar{width:8px}*/
/*.popup-body::-webkit-scrollbar-thumb{*/
/*  background:#3b4cff;*/
/*  border-radius:10px;*/
/*}*/

/* CONTENT */
.tags{display:flex;gap:10px}
.tag{padding:6px 14px;border-radius:20px;font-size:12px}
.tag.blue{background:#1f4cff}
.tag.purple{background:#6b4eff}

h1{margin-top:14px;font-size:28px}
.subtitle{margin-top:8px;color:#b5c0ff}

.content{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:32px;
  margin-top:28px;
}

.features li{
  list-style:none;
  background:#0f172a;
  padding:14px;
  border-radius:12px;
  margin-bottom:10px;
}

.tech span{
  display:inline-block;
  background:#0f172a;
  padding:8px 14px;
  border-radius:20px;
  margin:6px 6px 0 0;
  font-size:13px;
}

.stats{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.stat{
  background:#0f172a;
  padding:16px;
  border-radius:14px;
  text-align:center;
}
.stat strong{color:#4f7cff;font-size:22px;display:block}

.btn-outline{
  margin-top:18px;
  width:100%;
  padding:14px;
  background:transparent;
  border:1px solid #3b4cff;
  color:#9aa8ff;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){
  .popup{width:95%;height:90vh}
  .content{grid-template-columns:1fr}
  .popup-img{height:160px}
}

/* ================= OVERLAY ================= */
.popup_3-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:none;            /* 🔥 hidden by default */
  align-items:center;
  justify-content:center;
  z-index:999;
}

/* ================= POPUP ================= */
.popup_3{
  width:900px;
  height:85vh;
  background:linear-gradient(180deg,#0b1220,#060b18);
  border-radius:18px;
  overflow:hidden;
  color:#fff;
  position:relative;
  display:flex;
  flex-direction:column;
}

/* IMAGE HEADER */
.popup_3-img{
  height:220px;
  position:relative;
  flex-shrink:0;
}
.popup_3-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.popup_3-img::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(5,11,24,.2),rgba(5,11,24,.95));
}

/* close_3 */
.close_3{
  position:absolute;
  top:18px;
  right:18px;
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  border:none;
  color:#fff;
  font-size:20px;
  cursor:pointer;
  z-index:10;
}

/* SCROLL BODY */
.popup_3-body{
  padding:32px;
  overflow-y:auto;
}
.popup_3-body::-webkit-scrollbar{width:8px}
.popup_3-body::-webkit-scrollbar-thumb{
  background:#3b4cff;
  border-radius:10px;
}

/* content_3 */
.tags_3{display:flex;gap:10px}
.tag_3{padding:6px 14px;border-radius:20px;font-size:12px}
.tag_3.blue_3{background:#1f4cff}
.tag_3.purple_3{background:#6b4eff}

h1{margin-top:14px;font-size:28px}
.subtitle{margin-top:8px;color:#b5c0ff}

.content_3{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:32px;
  margin-top:28px;
}

.features li{
  list-style:none;
  background:#0f172a;
  padding:14px;
  border-radius:12px;
  margin-bottom:10px;
}

.tech span{
  display:inline-block;
  background:#0f172a;
  padding:8px 14px;
  border-radius:20px;
  margin:6px 6px 0 0;
  font-size:13px;
}

.stats{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.stat{
  background:#0f172a;
  padding:16px;
  border-radius:14px;
  text-align:center;
}
.stat strong{color:#4f7cff;font-size:22px;display:block}

.btn-outline{
  margin-top:18px;
  width:100%;
  padding:14px;
  background:transparent;
  border:1px solid #3b4cff;
  color:#9aa8ff;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:768px){
  .popup_3{width:95%;height:90vh}
  .content_3{grid-template-columns:1fr}
  .popup_3-img{height:160px}
}
