/* ==========================
   style.css — S&B Techverse
   Vibrant / energetic animations
   ========================== */
/* ---------------------------------
       OUR BRANDS (from our.html)
       --------------------------------- */
            html, body { overflow-x: hidden; }
    .our-brands-section {
      /* Overriding body styles from our.html for this section */
      background: #000;
      padding: 80px 5%;
      min-height: auto;
    }
    .card-bg {
        background-color: #141724; /* Very dark blue/gray */
    }

     /* Image Sliders (from new.html) */
     .scroll-container, .scroll-container-2 {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.scroll-container-header {
  position: relative;
  z-index: 3;
  box-shadow: inset 20px 0 20px -5px #4c0f0f99;

}
.scroll-container {
  position: relative;
  z-index: 1;
  box-shadow: inset 10px 0 20px -5px rgba(0, 0, 0, 0.6);
}



/* --- Left to Right Scrolling --- */
.scroll-content {
  display: flex;
  width: 200%;
  animation: scrollLeft 15s linear infinite;
}

.scroll-content img {
  width: 50%;
  height: 200px;
  object-fit: cover;
}

/* --- Right to Left Scrolling --- */
.scroll-content-2 {
  display: flex;
  width: 200%;
  animation: scrollRight 15s linear infinite;
}

.scroll-content-2 img {
  width: 50%;
  height: 200px;
  object-fit: cover;
}
/*---logo product ---*/
.scroll-containers {
  position: relative;
  z-index: 1;
  box-shadow: inset 10px 0 20px -5px  rgba(239, 235, 235, 0.6);
}
.scroll-contents {
  display: flex;
  width: 200%;
  animation: scrollLeft 15s linear infinite;
}

.scroll-contents img {
  width: 50%;
  height: 200px;
  object-fit: cover;
}
/* --- Keyframes --- */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --cyan:#00ffc8;
  --blue:#2d4bff;
  --muted:#aaa;
  --glass: rgba(255,255,255,0.04);
  --card:#0d1117;
  --transition: cubic-bezier(.2,.9,.3,1);
}

html { scroll-behavior: smooth; }

body{
  background:#000;
  color: #fff;
  font-family: 'Poppins', Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

/* --------------------------
   Navbar
   -------------------------- */
.navbar{
  position: sticky;
  top: 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 28px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  backdrop-filter: blur(6px);
  z-index: 1200;
}
 /* .logo-text{
  background: linear-gradient(90deg,var(--cyan),#ff4d6d,var(--blue));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-size:100%;
  animation: gradientMove 6s linear infinite;
  font-weight:700; */
  
   .logo {
      display: flex;
      align-items: center;
      font-size: 20px;
      font-weight: bold;
      color: white;
      text-decoration: none;
      /* Animation for the logo text */
      background: linear-gradient(90deg,#00ffc8,#ff4d6d,#007bff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200%;
      animation: gradientMove 4s linear infinite;
    }
 
.nav-links a, .mobile-nav a { color: #ddd; text-decoration:none; font-weight:500; transition: color .2s ease; }
.nav-links a:hover, .mobile-nav a:hover { color: #fff; }

/* Buttons */
.new-badge {
      background: #2d4bff;
      color: white;
      font-size: 12px;
      padding: 2px 6px;
      border-radius: 5px;
      margin-left: 5px;
    }
.btn{ padding: 10px 16px; border-radius:10px; cursor:pointer; font-weight:600; transition: transform .18s var(--transition), box-shadow .18s var(--transition); }
.btn-dark{ background:#0b0b0b; color:#fff; box-shadow: 0 6px 24px rgba(11,11,11,0.35);}
.btn-light{ background:#fff; color:#000; }
.btn-primary{ background: linear-gradient(90deg,var(--blue),var(--cyan)); color:#fff; padding:12px 20px; border-radius:12px; font-weight:700; box-shadow: 0 12px 40px rgba(45,75,255,0.12); transition: transform .22s var(--transition), box-shadow .22s var(--transition); }
.btn-primary:hover{ transform: translateY(-4px); box-shadow: 0 20px 60px rgba(45,75,255,0.16); }

/* --------------------------
   Hero
   -------------------------- */
.hero {
  display: flex;
  align-items: flex-start; /* 🔥 KEY FIX */
  justify-content: space-between;
  padding: 80px 18px 60px; /* add vertical breathing room */
  max-width: 1200px;
  margin: 0 auto;
}
           
           .hero-note {
  margin-top: 10px;
  font-size: 13px;
  color: #7f8792;
  font-weight: 500;
}
    
.hero-text{ max-width:50%; }
.hero-title{ font-size:44px; line-height:1.06; letter-spacing:-0.02em; margin-top:6px; margin-bottom:12px; text-shadow: 0 6px 30px rgba(45,75,255,0.06); }
.subtle{ color:#aaa; font-weight:600; }
.lead{ color:#d1d6df; font-size:18px; }

/* Hero image scrolls */
.scroll-container,
.scroll-container-2 {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  position: relative; /* keeps absolute images contained */
}

.scroll-image, .scroll-image-2 { position:absolute; height:200px; object-fit:cover; }
.scroll-image{ animation: scrollLeft 16s linear infinite; }
.scroll-image-2{ left:-100%; animation: scrollLeftToRight 16s linear infinite; }
.scroll-container-header {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* --------------------------
   Stats
   -------------------------- */
.stats{ text-align:center; padding:60px 5%; border-top:1px solid #222; border-bottom:1px solid #222; }
.stats-title{ font-size:28px; font-weight:800; text-shadow: 0 6px 30px rgba(0,255,200,0.03); margin-bottom:12px; }
/* trust row */
.trust{ display:flex; align-items:center; justify-content:center; gap:10px; color:var(--muted); margin-bottom:28px; }
.trust-badge{ color: #0f9d58; font-weight:800; }

/* features */
.features{ display:flex; gap:20px; justify-content:center; flex-wrap:wrap; margin-top:16px; }
.feature{ background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02)); padding:20px; border-radius:12px; width:280px; position:relative; border-top:1px solid rgba(255,255,255,0.03); box-shadow: 0 10px 40px rgba(3,7,18,0.7); transition: transform .18s var(--transition), box-shadow .18s var(--transition); }
.feature:hover{ transform: translateY(-8px); box-shadow: 0 26px 80px rgba(0,85,255,0.12); }
/* bold arrow */
.feature::after{ content:"↗"; position:absolute; right:16px; top:12px; font-weight:900; font-size:18px; color:rgba(45,75,255,0.9); text-shadow: 0 6px 20px rgba(45,75,255,0.08); transform-origin:center; animation: arrowFloat 2.6s ease-in-out infinite; }
/* ==========================
   Approach / Systems Section
   ========================== */

.approach-section {
  padding: 90px 5% 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* subtle background system glow */
.approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 20%,
    rgba(0, 255, 200, 0.08),
    transparent 60%
  );
  z-index: 0;
}

/* Section label */
.section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6fffd6;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Main heading */
.stats-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

/* Subtitle */
.stats-subtitle {
  font-size: 16px;
  color: #9aa0aa;
  max-width: 760px;
  margin: 0 auto 60px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ==========================
   Grid Layout (Fixes 4th card issue)
   ========================== */

.approach-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 26px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ==========================
   Cards
   ========================== */

.approach-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  padding: 34px 30px;
  border-radius: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 45px rgba(3, 7, 18, 0.65);
  text-align: left;
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

/* Step number */
.step {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 46px;
  font-weight: 800;
  color: rgba(0, 255, 200, 0.09);
  pointer-events: none;
}

/* Card title */
.approach-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Card text */
.approach-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #d1d6df;
  max-width: 95%;
}

/* Hover interaction */
.approach-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 32px 90px rgba(0, 255, 200, 0.18);
}

/* Dim others on hover for focus */
.approach-grid:hover .approach-card {
  opacity: 0.6;
}

.approach-grid:hover .approach-card:hover {
  opacity: 1;
}

/* Highlight first card (Strategy) */
.approach-card:first-child {
  border: 1px solid rgba(0, 255, 200, 0.25);
  box-shadow: 0 28px 85px rgba(0, 255, 200, 0.2);
}

/* ==========================
   Responsive Adjustments
   ========================== */

@media (max-width: 1100px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-card {
    text-align: center;
  }

  .step {
    right: 50%;
    transform: translateX(50%);
  }
}

/* RESPONSIVE FIXES */
@media (max-width: 1024px) {
  .approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-card {
    text-align: center;
  }
}

/* --------------------------
   Purpose & Approach
   -------------------------- */
.purpose-approach { 
    background: url('/image/seven.jpeg') no-repeat center center; 
    background-size: cover; 
    color: #fff; 
    padding: 56px 5%; 
    border-radius: 14px; 
    margin: 48px auto; 
    max-width: 1200px; 
    box-shadow: 0 30px 80px rgba(2,6,23,0.7); 
}
.purpose-approach h2{ font-size:26px; margin-bottom:10px; font-weight:800; color:yellow; text-shadow:none; }
.purpose-approach p{ color:white; margin-bottom:14px; }
.content{ display:flex; gap:36px; align-items:flex-start; flex-wrap:wrap; }
.text{ flex:1 1 48%; min-width:260px; }

/* Approach list (up-to-down anim) */
.approach-list li{ display:flex; gap:12px; align-items:center; margin-bottom:10px; font-weight:600; color:white; }

/* Cards (left→right anim) */
.cards{ flex:1 1 40%; display:grid; grid-template-columns:repeat(2,1fr); gap:18px; align-items:start; }
.card{ background:var(--card); color:#fff; border-radius:12px; padding:18px; box-shadow: 0 10px 40px rgba(2,7,18,0.6); transform: translateX(-22px); opacity:0; transition: transform .6s var(--transition), opacity .6s var(--transition); }
.card img{ width:36px; margin-bottom:12px; }

/* --------------------------
   Brand cards (tilt + glow pulse)
   -------------------------- */
.our-brands-section{ padding:56px 5%; max-width:1200px; margin:40px auto; }
.brand-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch; }
.brand-card{ background: linear-gradient(180deg,#0b0d12,#0f1220); border-radius:14px; padding:20px; box-shadow: 0 18px 60px rgba(3,7,18,0.8); transition: transform .18s var(--transition), box-shadow .2s var(--transition); transform-origin:center; will-change:transform; }
.brand-card.hovering, .brand-card:hover{ transform: translateY(-8px) perspective(900px) rotateX(0.6deg) rotateY(0.6deg) scale(1.02); box-shadow: 0 30px 90px rgba(45,75,255,0.12); }
.brand-title{ font-size:22px; font-weight:800; margin-bottom:8px; }
.brand-desc{ color:#bfc8d6; margin-bottom:12px; }
.brand-tags span{ display:inline-block; margin-right:8px; font-size:12px; padding:6px 8px; border-radius:999px; border:1px solid rgba(255,255,255,0.04); color:#cbd5e1; }

/* breathing glow */
.interactive-card.hovering::after{
  content: "";
  position:absolute;
  inset:0;
  border-radius:14px;
  pointer-events:none;
  box-shadow: 0 0 60px rgba(45,75,255,0.16), inset 0 0 18px rgba(0,255,200,0.02);
  animation: breath 2s ease-in-out infinite;
}

/* CTA */
.btn-ghost{ margin-top:14px; background: linear-gradient(90deg,var(--blue),var(--cyan)); color:#000; padding:12px; border-radius:10px; font-weight:800; }

/* --------------------------
   Contact
   -------------------------- */
.contact{ padding:56px 5%; max-width:1200px; margin:40px auto; }
.contact-container{ display:flex; gap:28px; align-items:flex-start; justify-content:center; flex-wrap:wrap; }
.contact-form, .contact-info{ background:var(--card); border-radius:14px; padding:26px; box-shadow: 0 20px 60px rgba(0,0,0,0.7); min-width:320px; opacity:0; transform: translateY(22px); transition: transform .6s var(--transition), opacity .6s var(--transition); }
.contact-form input, .contact-form textarea{ width:100%; padding:12px 14px; border-radius:10px; border:1px solid rgba(255,255,255,0.04); background:#0b0b0d; color:#fff; margin-top:8px; }
.contact-form label{ color:#cbd5e1; font-weight:600; }
.btn-submit{ width:100%; margin-top:12px; padding:12px; border-radius:10px; font-weight:800; color:#000; background: linear-gradient(90deg,var(--cyan),var(--blue)); box-shadow: 0 18px 60px rgba(0,255,200,0.06); transition: transform .2s var(--transition); }
.btn-submit:hover{ transform: translateY(-6px) scale(1.01); box-shadow: 0 30px 100px rgba(0,255,200,0.08); }

/* Contact info styles (attractive text + accent) */
.contact-info .accent{ color:var(--cyan); font-weight:900; font-size:20px; margin-bottom:8px; text-shadow: 0 10px 40px rgba(0,255,200,0.06); }
.lead-contrast{ color:#d6eaf0; margin:8px 0; font-weight:700; }

/* social icons */
.social-links .social{ display:inline-flex; width:42px; height:42px; align-items:center; justify-content:center; border-radius:999px; background: linear-gradient(45deg,var(--cyan),var(--blue)); color:#000; font-weight:800; margin-right:8px; transition: transform .18s var(--transition); }
.social-links .social:hover{ transform: translateY(-6px) scale(1.06); box-shadow: 0 14px 50px rgba(0,255,200,0.08); }

/* Footer */
.site-footer{ background:#070812; color:#bfc8d6; padding:40px 5%; border-top:1px solid rgba(255,255,255,0.03); margin-top:36px; }

/* --------------------------
   Animations (entrance & helper)
   -------------------------- */
@keyframes gradientMove{ 0%{background-position:0%} 100%{background-position:200%} }
@keyframes arrowFloat{ 0%{ transform: translateY(0) } 50%{ transform: translateY(-6px) } 100%{ transform: translateY(0) } }
@keyframes breath{ 0%{ opacity:0.6 } 50%{ opacity:1 } 100%{ opacity:0.6 } }

/* anim classes used by JS (add .animate to start) */
/* general fade-up */
[data-animate="fade-up"]{ opacity:0; transform: translateY(18px); transition: transform .7s var(--transition), opacity .7s var(--transition); }
[data-animate="fade-up"].animate{ opacity:1; transform: translateY(0); }

/* slide-up */
[data-animate="slide-up"]{ opacity:0; transform: translateY(28px); transition: transform .7s var(--transition), opacity .7s var(--transition); }
[data-animate="slide-up"].animate{ opacity:1; transform: translateY(0); }

/* slide-down (purpose text): enter from above => up-to-down effect */
[data-animate="slide-down"]{ opacity:0; transform: translateY(-26px); transition: transform .7s cubic-bezier(.2,.9,.25,1), opacity .7s cubic-bezier(.2,.9,.25,1); }
[data-animate="slide-down"].animate{ opacity:1; transform: translateY(0); }

/* slide-left (cards): left->right */
[data-animate="slide-left"]{ opacity:0; transform: translateX(-30px); transition: transform .62s cubic-bezier(.2,.9,.25,1), opacity .62s cubic-bezier(.2,.9,.25,1); }
[data-animate="slide-left"].animate{ opacity:1; transform: translateX(0); }

/* fade-in */
[data-animate="fade-in"]{ opacity:0; transform: scale(.995); transition: transform .8s var(--transition), opacity .8s var(--transition); }
[data-animate="fade-in"].animate{ opacity:1; transform: scale(1); }

/* stagger helpers for multiple children */
.stagger{ opacity:0; transform: translateY(20px); transition: transform .58s var(--transition), opacity .58s var(--transition); }
.stagger.animate{ opacity:1; transform: translateY(0); }

/* cards left→right (JS sets animationDelay inline) */
.card.animate{ opacity:1; transform: translateX(0); transition-delay: var(--delay); text-align:center;}

/* brand-card animations (slightly pop in) */
.brand-card{ opacity:0; transform: translateY(14px) scale(.995); transition: transform .6s var(--transition), opacity .6s var(--transition); }
.brand-card.animate{ opacity:1; transform: translateY(0) scale(1); }

/* contact reveal (JS sets delays) */
.contact-form.animate, .contact-info.animate{ opacity:1; transform: translateY(0); }

/* responsive */
@media (max-width: 980px){
  .hero{ flex-direction:column; }
  .hero-text{ max-width:100%; text-align:center; }
  .cards{ grid-template-columns:1fr 1fr; }
  .brand-grid{ grid-template-columns:1fr; }
  .nav-links{ display:none; }
  .nav-actions{ display:none; }
  .mobile-nav{ display:block; }
}

/* small tweaks */
.divider{ border:none; border-top:1px solid rgba(255,255,255,0.04); margin:28px auto; max-width:1200px; }

/* subtle micro interactions */
.brand-cta{ font-weight:800; padding:10px 12px; border-radius:10px; transition: transform .18s var(--transition); }
.brand-cta:hover{ transform: translateY(-6px); box-shadow: 0 20px 70px rgba(45,75,255,0.12); }

/* --------------------------
   END style.css
   -------------------------- */


.horizontal-scroll-container {
  width: 100%;
  height: 132px;
  overflow: hidden;
  position: relative;
  padding: 5px;
  background-color: white;
  z-index: 1;
  box-shadow: inset 10px 0 20px -5px rgba(0, 0, 0, 0.6);
}


/* --- Left to Right Scrolling --- */
.horizontal-scroll-content {
  display: flex;
  width: 100%;
  animation: scrollLeft 30s linear infinite;
  gap: 46px;
}

.horizontal-scroll-content img {
  width: 25%;
  height: 120px;
  object-fit: cover;
}

/*---- footer-----*/

.footer {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
padding: 60px 100px;
background-color: #2c2c2c;
}
.footer-section {
flex: 1;
min-width: 210px;
margin: 20px;
}
.footer h2, .footer h3 {
font-size: 22px;
color: white;
}
.footer p, .footer a, .footer li {
color: #ccc;
text-decoration: none;
font-size: 16px;
line-height: 1.8;
}
.footer a:hover {
color: #ff7f66;
}
.footer-logo {
display: flex;
align-items: center;
gap: 10px;
}
.footer-logo img {
width: 40px;
}
.footer-socials {
display: flex;
gap: 20px;
margin-top: 30px;
}
.footer-socials a {
display: flex;
justify-content: center;
align-items: center;
width: 50px;
height: 50px;
background: white;
border-radius: 50%;
color: black;
font-size: 20px;
transition: 0.3s;
}
.footer-socials a:hover {
background-color: #ff7f66;
color: white;
}
/* ==============================
   SB TECHVERSE SERVICES SECTION
================================ */
.sb-services {
  padding: 80px 20px;
  background: #0b0f14;
  color: #fff;
  font-family: Arial, sans-serif;
}

.sb-services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.sb-services-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.sb-services-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.sb-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.sb-service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: left;
  transition: 0.25s ease;
  min-height: 175px;
}

.sb-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 200, 0.25);
  box-shadow: 0px 20px 45px rgba(0, 255, 200, 0.05);
}

.sb-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 255, 200, 0.15), rgba(0, 140, 255, 0.15));
  border: 1px solid rgba(0, 255, 200, 0.15);
  margin-bottom: 16px;
}

.sb-service-icon i {
  font-size: 22px;
  color: #ffffff;
}

.sb-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sb-service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .sb-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 550px) {
  .sb-services-title {
    font-size: 34px;
  }

  .sb-services-grid {
    grid-template-columns: 1fr;
  }

  .sb-service-card {
    min-height: auto;
  }
}

/* ===========================
   SB Recent Work Section
=========================== */
.sb-recentwork {
  padding: 85px 20px;
  background: #0b0f14;
  color: #fff;
  font-family: Arial, sans-serif;
}

.sb-recentwork-container {
  max-width: 1250px;
  margin: 0 auto;
}

 /* RECENT WORK HEADER (CENTERED)
   (RECENT WORK ... ending at scale)
=========================== */ 
.sb-recentwork-head {
  width: 100%;
  margin: 0 auto 40px;
}
/* Centered Heading */
.sb-recentwork-left {
  text-align: center;
  padding-top: 10px;
  max-width: 980px;
  margin: 0 auto;
}
/* Tag */
.sb-recentwork-tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  font-weight: 800;
  color: rgba(0, 255, 180, 0.9);
  margin-bottom: 18px;
  text-transform: uppercase;
}
/* Title */
.sb-recentwork-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
  color: #FFFFFF;
}
/* Gradient highlight for "live products" */
.sb-recentwork-highlight {
  background: linear-gradient(90deg, #00FFD1, #00D2FF, #8BFF6A);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Glow Divider line */
.sb-recentwork-line {
  width: min(720px, 85%);
  height: 2px;
  margin: 22px auto 20px;
  border-radius: 100px;
  background: linear-gradient(
    90deg,
    rgba(0, 210, 255, 0),
    rgba(0, 255, 180, 0.85),
    rgba(0, 210, 255, 0.85),
    rgba(0, 210, 255, 0)
  );
  box-shadow: 0 0 30px rgba(0, 210, 255, 0.25);
}
/* Description */
.sb-recentwork-desc {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}
/* Grid */
.sb-recentwork-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Work Card */
.sb-workcard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
}

.sb-workcard:hover {
  transform: translateY(-6px);
  border-color: rgba(0,255,200,0.25);
  box-shadow: 0 18px 50px rgba(0,255,200,0.06);
}

.sb-workcard-thumb {
  height: 160px;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sb-workcard-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.sb-workcard-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sb-workcard-label {
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(0, 160, 255, 0.9);
  display: inline-block;
  margin-bottom: 10px;
}

.sb-workcard h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}

.sb-workcard-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  line-height: 1.6;
}

.sb-workcard-link {
  color: rgba(0,255,200,0.9);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0,255,200,0.35);
}

.sb-workcard-link:hover {
  color: rgba(0,255,200,1);
}

.sb-workcard-points {
  padding-left: 18px;
  margin: 0 0 20px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.75;
}

.sb-workcard-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  gap: 15px;
  flex-wrap: wrap;
}

/* Button */
.sb-workcard-btn {
  margin-top: 16px;
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 11px 14px;
  border-radius: 12px;
  color: #001114;
  background: linear-gradient(90deg, rgba(0,255,200,0.95), rgba(0,140,255,0.95));
  width: fit-content;
  transition: 0.2s ease;
}

.sb-workcard-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,255,200,0.12);
}

/* Wide card */
.sb-workcard-wide {
  grid-column: span 3;
}

/* CTA */
.sb-recentwork-cta {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.sb-recentwork-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin: 0;
}

.sb-recentwork-btn {
  background: linear-gradient(90deg, rgba(0,255,200,0.95), rgba(0,140,255,0.95));
  color: #001114;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.sb-recentwork-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 255, 200, 0.12);
}

/* Scroll reveal animation */
.sb-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sb-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1000px) {
  .sb-recentwork-head { flex-direction: column; }
  .sb-recentwork-title { font-size: 36px; }

  .sb-recentwork-grid {
    grid-template-columns: 1fr;
  }

  .sb-workcard-wide {
    grid-column: auto;
  }
}

/* ===========================
   SBTechVerse Services Section
=========================== */
.sb-services {
  padding: 95px 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(0, 210, 255, 0.16), transparent 55%),
    radial-gradient(circle at 85% 65%, rgba(0, 255, 180, 0.12), transparent 55%),
    linear-gradient(180deg, #070B11 0%, #0B0F14 65%, #070B11 100%);
  color: #EAF0FF;
}
.sb-services::before {
  content: "";
  position: absolute;
  inset: -200px;
  background: radial-gradient(circle, rgba(0, 255, 180, 0.10), transparent 60%);
  filter: blur(40px);
  animation: sbFloatGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes sbFloatGlow {
  from { transform: translate(-30px, -20px); opacity: .6; }
  to { transform: translate(35px, 25px); opacity: .95; }
}
.sb-services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sb-services-heading {
  text-align: center;
  margin-bottom: 55px;
}
.sb-services-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  background: linear-gradient(90deg, #00FFD1, #00D2FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sb-services-heading p {
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.65;
  font-size: 1.05rem;
}
/* Grid */
.sb-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
/* Card */
.sb-service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 26px 22px;
  min-height: 190px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
}
/* animated shimmer line */
.sb-service-card::after {
  content: "";
  position: absolute;
  top: -150%;
  left: -50%;
  width: 200%;
  height: 250%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(0, 210, 255, 0.10) 50%,
    transparent 60%
  );
  transform: rotate(15deg);
  opacity: 0;
  transition: opacity .25s ease;
}
.sb-service-card:hover::after {
  opacity: 1;
  animation: sbShimmer 1.2s linear forwards;
}
@keyframes sbShimmer {
  from { transform: translateX(-30%) rotate(15deg); }
  to { transform: translateX(30%) rotate(15deg); }
}
/* gradient border */
.sb-service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,255,180,0.22), rgba(0,210,255,0.22), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.sb-service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 210, 255, 0.40);
  box-shadow:
    0 22px 55px rgba(0, 210, 255, 0.12),
    0 10px 30px rgba(0, 255, 180, 0.08);
}
/* Icon */
.sb-service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #00FFD1, #00D2FF);
  margin-bottom: 18px;
  box-shadow: 0 18px 40px rgba(0, 210, 255, 0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.sb-service-card:hover .sb-service-icon {
  transform: scale(1.05);
  box-shadow: 0 22px 60px rgba(0, 255, 180, 0.18);
}
.sb-service-icon svg {
  width: 27px;
  height: 27px;
  color: #061019;
}
/* Typography */
.sb-service-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.sb-service-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.80;
}
/* Responsive */
@media (max-width: 1100px) {
  .sb-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .sb-services-grid { grid-template-columns: 1fr; }
}
 
html {
  scroll-behavior: smooth;
}

/* ===========================
   Floating WhatsApp Button
=========================== */

.sb-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ffd1, #00d2ff);
  display: grid;
  place-items: center;
  z-index: 9999;
  text-decoration: none;

  box-shadow:
    0 16px 45px rgba(0, 210, 255, 0.18),
    0 10px 25px rgba(0, 255, 180, 0.10);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sb-whatsapp-float:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 22px 70px rgba(0, 210, 255, 0.28),
    0 12px 30px rgba(0, 255, 180, 0.18);
}

/* Icon */
.sb-whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: #061019;
}

/* Tooltip */
.sb-wa-tooltip {
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%);
  background: rgba(10, 16, 24, 0.90);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sb-whatsapp-float:hover .sb-wa-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(-6px);
}
/* =========================================================
   SOCIAL WORKCARD (FIX MERGING SECTIONS)
========================================================= */
.sb-workcard-social{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;

  padding: 40px;
  border-radius: 24px;

  background: rgba(10, 15, 20, 0.65);
  border: 1px solid rgba(0, 255, 210, 0.12);

  /* ✅ critical: prevents next sections from merging */
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

/* Responsive */
@media (max-width: 992px){
  .sb-workcard-social{
    grid-template-columns: 1fr;
    padding: 28px;
    min-height: auto;
  }
}


/* =========================================================
   PHONE CAROUSEL (MATCHING YOUR /image/ PATH)
========================================================= */
.sb-phone-carousel-wrap{
  position: relative;
  width: 100%;
  height: 560px;              /* ✅ gives real space */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (max-width: 992px){
  .sb-phone-carousel-wrap{
    height: 520px;            /* slightly smaller on mobile */
  }
}

.sb-phone-carousel{
  position: relative;
  width: 320px;
  height: 560px;              /* ✅ must match wrap height */
}

@media (max-width: 992px){
  .sb-phone-carousel{
    height: 520px;
  }
}


/* Slides */
.sb-phone-slide{
  position: absolute;
  inset: 0;

  opacity: 0;
  transform: translateX(25px) scale(0.98);
  transition: all 0.45s ease;

  pointer-events: none;
}

.sb-phone-slide.active{
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}


/* =========================================================
   PHONE FRAME
   IMPORTANT: use your folder "/image/"
========================================================= */
.sb-phone-frame{
  width: 300px;
  height: 560px;
  margin: auto;
  position: relative;

  /* ✅ your phone mock should be in /image/ folder */
  background: url("/image/phone-mock.png") center/contain no-repeat;

  filter: drop-shadow(0px 20px 45px rgba(0,0,0,0.75));
}

@media (max-width: 992px){
  .sb-phone-frame{
    width: 280px;
    height: 520px;
  }
}


/* =========================================================
   SCREEN INSIDE PHONE
   (This is the most important alignment part)
========================================================= */
.sb-phone-screen{
  position: absolute;

  /* ✅ adjust these if needed depending on mock */
  top: 52px;
  left: 22px;
  width: 256px;
  height: 410px;

  border-radius: 28px;
  object-fit: cover;
}

@media (max-width: 992px){
  .sb-phone-screen{
    top: 48px;
    left: 20px;
    width: 240px;
    height: 390px;
    border-radius: 26px;
  }
}


/* =========================================================
   DOTS
========================================================= */
.sb-carousel-dots{
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
}

.sb-carousel-dots .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);

  cursor: pointer;
  transition: 0.25s ease;
}

.sb-carousel-dots .dot.active{
  width: 26px;
  border: none;
  background: linear-gradient(90deg, #00ffd5, #00a3ff);
}
/* =========================================================
   FINAL RECENT WORK FIXES (SAFE OVERRIDES)
   Place ONLY at the bottom of CSS
========================================================= */

/* Fix bullet alignment + remove default padding clash */
.sb-workcard-points {
  list-style: none;
  padding-left: 0;
  margin: 0 0 22px;
}

.sb-workcard-points li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.65;
}

.sb-workcard-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-size: 18px;
}

/* Force equal height cards */
.sb-workcard {
  height: 100%;
}

/* Fix CTA alignment */
.sb-workcard-cta {
  margin-top: auto;
}

/* Prevent wide social card from breaking layout */
.sb-workcard-wide {
  grid-column: span 3;
}

/* Proper mobile collapse */
@media (max-width: 1000px) {
  .sb-recentwork-grid {
    grid-template-columns: 1fr;
  }

  .sb-workcard-wide {
    grid-column: auto;
  }
}

/* Prevent section overlap bug */
.sb-recentwork {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.sb-recentwork-desc:last-of-type {
  opacity: 0.7;
}

