:root{
  --bg:#f7f9fc;
  --dark:#0b2d52;
  --accent:#ff7a18;
  --text:#2b3445;
  --muted:#262627;
  --white:#ffffff;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,sans-serif;
  background:var(--bg);
  color:var(--text);
}

.container{max-width:1240px;margin:auto;padding:0 20px}
.center{text-align:center}

/* HEADER */
.header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  z-index:100;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:80px;
}
.logo{font-weight:700;font-size:1.2rem}
.nav a{margin-left:20px;text-decoration:none;color:var(--text)}

/* BUTTONS */
/* BUTTONS – Premium Upgrade */
.btn{
  padding: .85rem 1.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  position: relative;
  overflow: hidden;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    color .35s ease,
    background .35s ease;
  will-change: transform;
}
.btn-primary{
  background: linear-gradient(135deg, var(--dark), var(--accent));
  color: #fff;
  box-shadow:
    0 10px 25px rgba(11,45,82,.25);
}

/* Hover */
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(11,45,82,.35);
}

/* Subtle shine sweep */
.btn-primary::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.35),
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .6s ease;
}

.btn-primary:hover::after{
  transform: translateX(120%);
}

/* Active */
.btn-primary:active{
  transform: translateY(-1px);
}


.btn-outline{
  border: 1.5px solid var(--dark);
  color: var(--dark);
  background: transparent;
}

/* Hover */
.btn-outline:hover{
  background: var(--dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11,45,82,.25);
}

/* Focus ring (accessibility + premium) */
.btn-outline:focus-visible,
.btn-primary:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255,122,24,.35),
    0 12px 30px rgba(11,45,82,.3);
}




/* HERO */
.hero{padding:50px 0 50px}
.hero-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:60px;
  align-items:center;
}
.eyebrow{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.8rem;
}
.hero h1{font-size:3rem;line-height:1.1}
.hero h1 span{color:var(--accent)}
.hero p{color:var(--muted);margin:20px 0 30px}
.hero-actions{display:flex;gap:16px;flex-wrap:wrap}
.hero-metrics{display:flex;gap:40px;margin-top:40px}
.hero-metrics strong{font-size:1.5rem;color:var(--accent)}
.hero-metrics span{font-size:.85rem;color:var(--muted)}

/* HERO VISUAL */
.hero-visual{position:relative}
.orbit{
  position:relative;
  width:280px;
  height:280px;
  border-radius:50%;
  margin:auto;
  background:#fff;
  box-shadow:0 30px 80px rgba(11,45,82,.25);
  animation:spin 22s linear infinite;
}
@keyframes spin{
  from{transform:rotate(0)}
  to{transform:rotate(360deg)}
}
.core{
  position:absolute;
  inset:50%;
  transform:translate(-50%,-50%);
  width:160px;
  height:160px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--dark),var(--accent));
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-align:center;
}
.core-badge-para{
 color:#fff;
}
.orb{
  position:absolute;
  padding:6px 14px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  font-size:.8rem;
  
}
.orb:nth-child(2){top:10%;left:50%}
.orb:nth-child(3){right:-10%;top:50%}
.orb:nth-child(4){bottom:10%;left:50%}
.orb:nth-child(5){left:-10%;top:50%}



/* SECTIONS */
.section{padding:50px 0}
.section-label{
  color:var(--accent);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.8rem;
}
.about-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:60px;
}
.about-card{
  background:#fff;
  padding:20px;
  border-radius:16px;
  box-shadow:0 16px 40px rgba(11,45,82,.15);
  margin-bottom:16px;
}

/* ===============================
   SERVICES – VERTICAL JOURNEY
================================ */


.services-split {
  padding: 10px 0;
  background: #ffffff;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
  align-items: flex-start;
}

/* LEFT */
.services-left {
  position: sticky;
  top: 120px;
}

.services-left h2 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 14px 0 20px;
  color: var(--dark);
}

.services-left p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 420px;
}

/* Arrow indicator */
.services-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.services-arrow span {
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.services-arrow i {
  font-size: 0.9rem;
  color: var(--accent);
  animation: arrowMove 1.8s infinite ease-in-out;
}

@keyframes arrowMove {
  0% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(6px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.4; }
}

/* RIGHT */
.services-right {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

/* Service row */
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(11, 45, 82, 0.1);
  transition: transform 0.35s ease;
}

.service-row:hover {
  transform: translateX(10px);
}

/* Icon */
.service-row i {
  font-size: 1.4rem;
  color: var(--accent);
  margin-top: 6px;
  flex-shrink: 0;
}

/* Text */
.service-row h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: var(--dark);
}

.service-row p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
}

/* Responsive */
@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .services-left {
    position: relative;
    top: auto;
    text-align: center;
  }

  .services-left p {
    margin-inline: auto;
  }

  .services-arrow {
    justify-content: center;
  }
}


/* INDUSTRIES */
.chips span{
  display:inline-block;
  padding:10px 18px;
  margin:6px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 10px 30px rgba(11,45,82,.15);
}




/* ===============================
   PREMIUM STATS CARD
================================ */

.premium-stats {
  margin-top: 32px;
  padding: 24px 26px;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0.65)
    );
  backdrop-filter: blur(18px);
  border: 1px solid rgba(11, 45, 82, 0.15);
  box-shadow:
    0 20px 60px rgba(11, 45, 82, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Header */
.stats-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.stats-header h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

/* Pulse dot */
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Individual stat */
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(11, 45, 82, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(11, 45, 82, 0.18);
}

/* Icon bubble */
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
}

.stat-icon.traffic {
  background: linear-gradient(135deg, #0b2d52, #3b82f6);
}

.stat-icon.leads {
  background: linear-gradient(135deg, #ff7a18, #f59e0b);
}

.stat-icon.roi {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

/* Text */
.stat-info span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.stat-info strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   ABOUT – EDITORIAL PREMIUM
================================ */

.about-section {
  padding: 10px 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
}

.about-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  margin-bottom: 12px;
  display: inline-block;
}

.about-title {
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}

.about-title span {
  color: var(--accent);
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 14px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
}

/* Highlights */
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.highlight-line {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-left: 20px;
  position: relative;
}

.highlight-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--accent),
    transparent
  );
}

.highlight-index {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.highlight-line h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--dark);
}

.highlight-line p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-text {
    margin-inline: auto;
  }

  .highlight-line {
    padding-left: 0;
  }

  .highlight-line::before {
    display: none;
  }
}
  .about-cta {
  padding: 70px 0;
  background: #ffffff;
}

.about-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.about-cta p {
  font-size: 1.05rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .about-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ===============================
   SCROLL STORY SERVICES
================================ */

.scroll-services {
  height: 320vh; /* long scroll */
  background:
    radial-gradient(circle at top right,
      rgba(255,122,24,0.25),
      transparent 60%),
    #0b2d52;
  color: #ffffff;
}

.scroll-wrap {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  padding: 0 8vw;
}

/* LEFT */
.scroll-left {
  position: relative;
}

.scroll-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.scroll-left h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 14px 0 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Progress line */
.scroll-progress {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.2);
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff7a18, #ffd08a);
  transition: width 0.4s ease;
}

/* RIGHT */
.scroll-right {
  display: flex;
  flex-direction: column;
  gap: 140px;
}

.service-step {
  opacity: 0;
  transform: translateY(40px);
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-step.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 900px) {
  .scroll-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .scroll-right {
    gap: 80px;
  }
}


/* ===============================
   TESTIMONIAL CTA – ENTERPRISE
================================ */

.testimonial-cta {
  padding: 10px 0;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fc 100%
    );
  border-top: 1px solid rgba(11, 45, 82, 0.08);
}

.testimonial-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Content */
.cta-content h2 {
  font-size: 2.4rem;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 14px;
}

.cta-content h2 span {
  color: var(--accent);
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

/* Actions */
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-content p {
    margin-inline: auto;
  }
}



.services-premium-center{
  background: var(--bg);
  padding: 50px 0;
}

/* Header */
.services-head{
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-label{
  color: var(--accent);
  font-size: .85rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
}

.services-head h2{
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--dark);
  margin: 18px 0 22px;
  line-height: 1.12;
}

.services-head h2 span{
  color: var(--accent);
}

.services-head p{
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Services list */
.services-list{
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

/* Service item */
.service-item{
  position: relative;
  transition: transform .4s ease;
}

.service-item:hover{
  transform: translateY(-8px);
}

/* Orange number */
.service-no{
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  transition: transform .4s ease;
}

.service-item:hover .service-no{
  transform: scale(1.1);
}

/* Icons */
.service-item i{
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 14px;
  transition: color .4s ease, transform .4s ease;
}

.service-item:hover i{
  color: var(--accent);
  transform: rotate(-6deg) scale(1.1);
}

.service-item h3{
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-item h4{
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
}

.service-item p{
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 6px;
}

.note{
  margin-top: 14px;
  font-weight: 500;
  color: var(--text);
}

/* Links */
.service-links{
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.service-links a{
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.service-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--accent);
  transition:.35s ease;
}

.service-links a:hover::after{
  width:100%;
}

/* Subtle divider line */
.service-item::after{
  content:"";
  display:block;
  width:60px;
  height:2px;
  background:rgba(11,45,82,.12);
  margin:40px auto 0;
}

/* Responsive */
@media(max-width:768px){
  .services-head h2{
    font-size: 2.2rem;
  }
  .services-list{
    gap: 70px;
  }
}




/* =========================================
   LUXURY WEB DEVELOPMENT SECTION
========================================= */

.webdev-luxury{
  padding: 120px 0;
  background:
    radial-gradient(circle at top left, var(--accent-soft), transparent 55%),
    var(--bg-dark);
}

/* MAIN FRAME */
.webdev-frame{
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 40px;
  background: var(--bg-light);
  border-radius: 32px;
  padding: 70px;
  box-shadow: 0 80px 200px rgba(0,0,0,.12);
  position: relative;
}

/* ================= IMAGE SIDE ================= */

.webdev-visual{
  position: relative;
}

.webdev-visual img{
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 26px;
  position: relative;
  z-index: 2;
}

/* premium glow */
.webdev-visual .visual-glow{
  position: absolute;
  inset: -30px;
  background: radial-gradient(
    circle,
    rgba(226,108,12,0.25) 0%,
    transparent 70%
  );
  z-index: 1;
  filter: blur(30px);
}

/* ================= CONTENT SIDE ================= */

.webdev-content h3{
  font-size: .9rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 22px;
}

.webdev-content h4{
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: var(--text-strong);
  line-height: 1.25;
  margin-bottom: 28px;
}

/* Intro */
.webdev-content .intro{
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 36px;
}

/* Feature list */
.webdev-content ul{
  list-style: none;
  padding: 0;
  margin: 0 0 42px;
  display: grid;
  gap: 18px;
}

.webdev-content ul li{
  font-size: 1.05rem;
  color: var(--text-main);
  padding-left: 34px;
  position: relative;
  line-height: 1.6;
}

/* premium tick */
.webdev-content ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--accent), var(--accent-2));
}

/* Closing */
.webdev-content .closing{
  font-size: 1.08rem;
  color: var(--text-strong);
  font-weight: 500;
  line-height: 1.85;
  padding-top: 26px;
  border-top: 1px solid rgba(0,0,0,.1);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1000px){
  .webdev-frame{
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px;
  }

  .webdev-visual img{
    height: 360px;
  }
}

/* =========================================================
   STICKY SERVICES – PREMIUM LAYOUT
========================================================= */

.sticky-services{
  padding: 100px 0;
  background: var(--bg-dark);
}

/* MAIN BOX */
.sticky-box{
  background: var(--bg-light);
  border-radius: 28px;
  box-shadow: 0 60px 160px rgba(0,0,0,.10);
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 560px;
  overflow: visible; /* IMPORTANT for sticky */
}

/* =========================================================
   LEFT SIDE – FIXED CONTENT
========================================================= */

.sticky-left{
  padding: 60px 46px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
  z-index: 2;
}

.sticky-left h2{
  font-size: 2.6rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 18px;
}

.sticky-left h2 span{
  color: var(--accent);
}

.sticky-left p{
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 34px;
  display: block;
  opacity: 1;
  visibility: visible;
}

.sticky-left img{
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* =========================================================
   RIGHT SIDE – SCROLLABLE SERVICES
========================================================= */

.sticky-right{
  padding: 46px;
  max-height: 560px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

/* Hide scrollbar (premium feel) */
.sticky-right::-webkit-scrollbar{
  width: 0;
}

/* =========================================================
   SERVICE CARD
========================================================= */

.service-card{
  position: relative;
  padding: 30px 32px;
  border-radius: 22px;
  background: var(--bg-surface);
  box-shadow: 0 22px 60px rgba(0,0,0,.07);
  overflow: hidden;
  cursor: pointer;
  transition: transform .35s ease;
  z-index: 0;
}

.service-card:hover{
  transform: translateY(-6px);
}

/* TEXT ABOVE EFFECT */
.service-card h3{
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.service-card p{
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* =========================================================
   PREMIUM CRACKER BLAST HOVER
========================================================= */

.service-card::before{
  content:"";
  position:absolute;
  inset:-45%;
  background: radial-gradient(
    circle,
    rgba(226,108,12,0.20) 0%,
    rgba(226,108,12,0.10) 30%,
    transparent 65%
  );
  opacity:0;
  transform: scale(.4);
  transition: opacity .55s ease, transform .55s ease;
  z-index: 1;
}

.service-card:hover::before{
  opacity:1;
  transform: scale(1);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 900px){

  .sticky-box{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sticky-left{
    position: relative;
    top: 0;
    padding: 50px 40px;
  }

  .sticky-right{
    max-height: none;
    padding: 40px;
  }
}













.services-rail{
  background: var(--bg);
  padding: 50px 0;
}

.rail-layout{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: flex-start;
}

/* LEFT RAIL */
.rail-nav{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.rail-item{
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color .3s ease, transform .3s ease;
}

.rail-item::before{
  content:"";
  position:absolute;
  left:-28px;
  top:50%;
  width:0;
  height:2px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: width .35s ease;
}

.rail-item:hover,
.rail-item.active{
  color: var(--dark);
  transform: translateX(6px);
}

.rail-item:hover::before,
.rail-item.active::before{
  width:18px;
}

/* RIGHT CONTENT */
.rail-content{
  position: relative;
}

.rail-panel{
  display: none;
  animation: fadeUp .5s ease forwards;
}

.rail-panel.active{
  display: block;
}

.rail-panel h3{
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.rail-panel h4{
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
}

.rail-panel p{
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 8px;
}

/* CTA */
.rail-cta{
  margin-top: 30px ;
  text-align: center;
}

.rail-cta a{
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  position: relative;
}

.rail-cta a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  background:var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.rail-cta a:hover::after{
  transform: scaleX(1);
}

/* Animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform: translateY(20px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

/* Responsive */
@media(max-width:900px){
  .rail-layout{
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rail-nav{
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }

  .rail-item::before{
    display:none;
  }
}
@media (max-width: 768px){

  .services-rail{
    padding: 30px 0;
  }

  .rail-layout{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Horizontal scroll rail */
  .rail-nav{
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 14px;
  }

  .rail-nav::-webkit-scrollbar{
    height: 6px;
  }

  .rail-nav::-webkit-scrollbar-thumb{
    background: var(--accent);
    border-radius: 10px;
  }

  .rail-item{
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 20px;
    background: #fff;
    font-size: 0.95rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    transform: none !important;
  }

  .rail-item.active{
    background: var(--accent);
    color: #fff;
  }

  .rail-item::before{
    display: none;
  }

  .rail-panel h3{
    font-size: 1.6rem;
  }

  .rail-panel h4{
    font-size: 1rem;
  }

  .rail-panel p{
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .rail-cta a{
    font-size: 1rem;
  }
}




.services-cards{
  padding: 50px 0;
  background:
    radial-gradient(800px 400px at top center, rgba(255,122,24,.12), transparent 60%),
    var(--bg);
}

/* Header */
.cards-head{
  max-width: 900px;
  margin: 0 auto 100px;
  text-align: center;
}

.section-label{
  color: var(--accent);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}

.cards-head h2{
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--dark);
  margin: 18px 0 22px;
  line-height: 1.15;
}

.cards-head h2 span{
  color: var(--accent);
}

.cards-head p{
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Grid */
.cards-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

/* Card */
.card{
  background: linear-gradient(180deg, #ffffff, #f9fafc);
  border-radius: 22px;
  padding: 42px 34px;
  text-align: left;
  position: relative;
  transition: all .45s ease;
  box-shadow:
    0 10px 30px rgba(11,45,82,.08),
    inset 0 0 0 1px rgba(11,45,82,.05);
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  background: linear-gradient(
    135deg,
    rgba(255,122,24,.35),
    transparent 60%
  );
  opacity:0;
  transition: opacity .45s ease;
}

.card:hover::before{
  opacity:1;
}

.card:hover{
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(11,45,82,.18);
}

/* Icon */
.card i{
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 18px;
}

/* Text */
.card h3{
  font-size: 1.45rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.card p{
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Responsive */
@media(max-width:768px){
  .services-cards{
    padding: 120px 0;
  }
}


.testimonials-premium{
  padding: 50px 0;
  background:
    radial-gradient(600px 300px at top center, rgba(255,122,24,.12), transparent 60%),
    var(--bg);
}

/* Header */
.testimonials-head{
  max-width: 900px;
  margin: 0 auto 100px;
  text-align: center;
}

.section-label{
  color: var(--accent);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
}

.testimonials-head h2{
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  color: var(--dark);
  margin: 18px 0 22px;
  line-height: 1.15;
}

.testimonials-head h2 span{
  color: var(--accent);
}

.testimonials-head p{
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Grid */
.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
}

/* Card */
.testimonial-card{
  position: relative;
  background: linear-gradient(180deg, #ffffff, #f9fafc);
  border-radius: 26px;
  padding: 46px 40px;
  box-shadow:
    0 12px 30px rgba(11,45,82,.08),
    inset 0 0 0 1px rgba(11,45,82,.05);
  transition: all .45s ease;
}

.testimonial-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(11,45,82,.18);
}

/* Quote icon */
.quote-icon{
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255,122,24,.25);
  pointer-events: none;
}

/* Text */
.testimonial-text{
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Author */
.testimonial-author strong{
  display: block;
  font-size: 1.05rem;
  color: var(--dark);
}

.testimonial-author span{
  font-size: .95rem;
  color: var(--muted);
}

/* Highlighted testimonial */
.testimonial-card.highlight{
  border: 2px solid rgba(255,122,24,.25);
}

/* Responsive */
@media(max-width:768px){
  .testimonials-premium{
    padding: 120px 0;
  }

  .testimonial-text{
    font-size: 1.1rem;
  }
}
/* ===== PREMIUM SECTION HEADING ===== */
.section-heading {
  padding: 90px 0 70px;
  background: #fff;
}

.heading-wrap {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Background ghost text */
.heading-bg {
  position: absolute;
  inset: 0;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  user-select: none;
}

/* Main title */
.heading-title {
  position: relative;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
  color: #0b1220;
  z-index: 2;
}

.heading-title span {
  color: #e26c0c; /* Accent color */
}

/* Minimal accent line */
.heading-accent {
  display: block;
  width: 46px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(
    90deg,
    #e26c0c,
    #ff974a
  );
  border-radius: 6px;
}




/* ================= CLIENTS MARQUEE ================= */
.clients-marquee {
  background: var(--bg-dark);
  overflow: hidden;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
  text-align: center;
  align-items: center;
}

/* Base marquee */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Track */
.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
}

/* Logos */
.marquee-track img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* LEFT → RIGHT */
.marquee-left .marquee-track {
  animation: marquee-left 5s linear infinite;
}

/* RIGHT → LEFT */
.marquee-right .marquee-track {
  animation: marquee-right 5s linear infinite;
}

/* ================= ANIMATIONS ================= */
@keyframes marquee-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .marquee-track img {
    height: 40px;
  }

  .marquee-track {
    gap: 2.5rem;
  }
}



/* ===============================
   INDUSTRIES WE SERVE
================================ */

.industries-section{
  padding:120px 0;
  background:var(--bg-dark);
  overflow:hidden;
}

.industries-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:80px;
  align-items:center;
}

/* LEFT CONTENT */
.industries-content{
  position:relative;
}
.industries-tag{
  font-size:.75rem;
  letter-spacing:2px;
  color:var(--accent);
  font-weight:600;
}
.industries-content h2{
  font-size:2.4rem;
  margin:12px 0 16px;
  color:var(--text-strong);
}
.industries-content h2 span{
  color:var(--accent);
}
.industries-content p{
  color:var(--text-muted);
  max-width:420px;
  margin-bottom:24px;
  line-height:1.6;
}

/* Industry list */
.industries-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  padding:0;
  list-style:none;
}
.industries-list li{
  font-size:.85rem;
  padding:6px 14px;
  border-radius:999px;
  background:var(--bg-surface);
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}

/* RIGHT VISUAL */
.industries-visual{
  display:flex;
  gap:24px;
  height:420px;
  overflow:hidden;
}

/* Columns */
.industry-column{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.industry-column img{
  width:220px;
  height:140px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.scroll-up{
  animation: scrollUp 5s linear infinite;
}
.scroll-down{
  animation: scrollDown 5s linear infinite;
}

@keyframes scrollUp{
  0%{ transform: translateY(0); }
  100%{ transform: translateY(-50%); }
}

@keyframes scrollDown{
  0%{ transform: translateY(-50%); }
  100%{ transform: translateY(0); }
}
.industry-column:hover{
  animation-play-state: paused;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:900px){
  .industries-container{
    grid-template-columns:1fr;
  }
  .industries-visual{
    justify-content:center;
    height:320px;
  }
}




.premium-testimonials {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f4f8ff, #ffffff);
  color: #000000;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  color: #080808;
  font-size: 18px;
  margin-bottom: 60px;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 33.3333%;
  padding: 30px;
  box-sizing: border-box;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  margin: 0 10px;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.35);
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 24px;
}

.client-info h4 {
  font-size: 18px;
  font-weight: 600;
}

.client-info span {
  font-size: 14px;
  color: #2b4cf2;
} 

/* DOTS */
.testimonial-dots {
  margin-top: 40px;
}

.testimonial-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #64748b;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dots span.active {
  background: #6366f1;
  transform: scale(1.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .testimonial-card {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    min-width: 100%;
  }
}




/* ===========================
   RESPONSIVE – HERO SECTION
=========================== */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {

  .hero {
    padding: 60px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-metrics {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .hero-visual {
    margin-top: 20px;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero-metrics {
    gap: 20px;
  }

  .hero-metrics strong {
    font-size: 1.3rem;
  }

  /* Orbit scaling */
  .orbit {
    width: 220px;
    height: 220px;
  }

  .core {
    width: 130px;
    height: 130px;
    font-size: 0.85rem;
  }

  .orb {
    font-size: 0.75rem;
    padding: 5px 12px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {

  .hero h1 {
    font-size: 1.9rem;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .hero-metrics {
    flex-direction: column;
    align-items: center;
  }

  .orbit {
    width: 190px;
    height: 190px;
  }

  .core {
    width: 110px;
    height: 110px;
  }

  .stats-card {
    margin-top: 20px;
  }
}
