﻿:root {
  --ink: #050d35;
  --text: #07123b;
  --muted: #33405f;
  --blue: #0066ff;
  --blue-2: #12c6ff;
  --panel: rgba(255, 255, 255, 0.72);
  --line: rgba(31, 99, 255, 0.14);
  --shadow: 0 18px 46px rgba(23, 80, 180, 0.14);
  --soft-shadow: 0 12px 30px rgba(17, 67, 160, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body{
    background:#f5faff;
    color:var(--text);
    transition:
        background .3s ease,
        color .3s ease;
}
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5faff;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 21% 8%, rgba(0, 102, 255, 0.10), transparent 22%),
    radial-gradient(circle at 78% 12%, rgba(70, 184, 255, 0.18), transparent 34%),
    linear-gradient(180deg, 180deg,
      #f5faff 0%,
      #eef5ff 100%);
}
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .52;
  background-image: radial-gradient(rgba(0,102,255,.18) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 74%, transparent);
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.bubble { position: fixed; z-index: -1; border-radius: 999px; background: radial-gradient(circle at 28% 20%, #fff, #c4ddff 34%, #7eaaff 68%, transparent 72%); box-shadow: inset -8px -10px 18px rgba(0, 74, 255, .18), 0 14px 32px rgba(0, 85, 255, .16); animation: bob 6s ease-in-out infinite; pointer-events: none; }
.bubble-a { width: 34px; height: 34px; left: 46%; top: 18%; }
.bubble-b { width: 28px; height: 28px; right: 5%; top: 11%; animation-delay: -1.7s; }
.bubble-c { width: 42px; height: 42px; right: 6%; top: 45%; animation-delay: -3s; }

.site-header {
  width:min(1180px, calc(100% - 64px));
  margin:20px auto 0;

  display:grid;
  grid-template-columns:auto 1fr auto;

  align-items:center;
  gap:28px;

  position:sticky;
  top:16px;

  z-index:1000;

  padding:10px 20px;
  border-radius:20px;

  transition:all .35s ease;
}
.site-header.scrolled{

  background:rgba(255,255,255,.92);

  backdrop-filter:blur(20px);

  -webkit-backdrop-filter:blur(20px);

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

  box-shadow:
    0 10px 30px rgba(15,23,42,.08);
}
.brand { display: inline-flex; align-items: center; min-width: 258px; }
.brand-logo {
  display: block;
  width: 255px;
  height: auto;
  object-fit: contain;
}.brand-icon { position: relative; width: 74px; height: 58px; display: inline-block; }
.brand-icon span:first-child { position: absolute; left: 3px; top: 0; font-size: 58px; line-height: 1; font-weight: 900; color: var(--ink); transform: skewX(-10deg); }
.brand-icon span:last-child { position: absolute; left: 28px; top: 8px; width: 43px; height: 43px; display: grid; place-items: center; border: 8px solid var(--blue); border-left-color: transparent; border-radius: 50%; color: transparent; transform: rotate(38deg); }
.brand-text strong { display: block; font-size: 1rem; letter-spacing: .42em; color: var(--ink); line-height: 1; }
.brand-text strong span { color: var(--blue); }
.brand-text small { display: block; margin-top: 5px; font-size: .46rem; font-weight: 900; letter-spacing: .08em; color: var(--ink); }
.nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 3vw, 43px); font-size: .92rem; font-weight: 800; }
.nav a { position: relative; padding: 10px 0; color: #0F172A; font-size: 15px; font-weight: 600; transition: .3s ease;}
.nav a::after{content:""; position:absolute; left:50%; bottom:-4px; width:0; height:2px; background:#7C5CFF; transform:translateX(-50%); transition:.3s ease; }
.nav a:hover::after{width:100%; }
.nav a:hover{color:#7C5CFF; }
.nav a.active, .nav a:hover { color: var(--blue); }
.nav a.active::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 22px; height: 3px; background: var(--blue); border-radius: 999px; transform: translateX(-50%); }

.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid #d7e5ff; border-radius: 14px; background: white; box-shadow: var(--soft-shadow); }
.menu-btn i { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--blue); border-radius: 999px; }

.hero { width: min(1180px, calc(100% - 64px)); margin: 58px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; min-height: 520px; }
.hero-badge{ display:inline-flex; align-items:center; gap:8px; padding:10px 18px; border-radius:999px; background:#ffffff; border:1px solid rgba(37,99,235,.12); box-shadow: 0 8px 25px rgba(15,23,42,.06); color:#2563EB; font-size:14px; font-weight:600; margin-bottom:24px;}
.hero h1 { margin: 0; color: var(--ink); font-size: clamp(3rem, 5vw, 5rem); max-width: 700px; line-height: 1.12; letter-spacing: -0.04em; }
.hero h1 span { color: var(--blue); }
.hero p { max-width: 600px; margin: 24px 0 0; color: #64748B; font-size: 1.1rem; line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.btn { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border-radius: 15px; padding: 0 25px; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.primary { color: #fff; background: linear-gradient(135deg, #0083ff, #004cff); box-shadow: 0 18px 30px rgba(0, 96, 255, .28); }
.secondary { color: var(--blue); background: rgba(255,255,255,.72); border-color: #cbdcff; box-shadow: var(--soft-shadow); }
.stats-panel { margin-top: 62px; width: min(520px, 100%); display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 16px 18px; border-radius: 14px; }
.stats-panel div { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: start; }
.stats-panel .mini-icon { grid-row: span 2; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: #f1f6ff; box-shadow: inset 0 0 0 1px #d8e8ff; font-size: .86rem; }
.stats-panel strong { color: var(--ink); font-size: 1.45rem; line-height: 1; }
.stats-panel small { color: var(--muted); font-size: .72rem; font-weight: 600; }
.glass { background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.9); backdrop-filter: blur(18px); }

.hero-art { position: relative; min-height: 650px; display:flex; justify-content:center; align-items:center; overflow: visible; }

.card-section, .wide-panel, .cta-panel { width: min(1200px, calc(100% - 64px)); margin: 28px auto 0; }
.card-section { padding: 18px 28px 34px; border-radius: 24px; background: rgba(255,255,255,.58); border: 1px solid rgba(80,137,255,.12); box-shadow: var(--soft-shadow), inset 0 1px 0 #fff; }
.section-kicker { margin: 0 0 5px; text-align: center; color: var(--blue); font-size: .72rem; font-weight: 900; letter-spacing: .04em; }
h2 { margin: 0 0 24px; color: var(--ink); text-align: center; font-size: clamp(1.55rem, 2.35vw, 2.3rem); line-height: 1.1; letter-spacing: -0.03em; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { display: grid; grid-template-columns: 78px 1fr 44px; align-items: center; gap: 18px; min-height: 132px; padding: 22px; border-radius: 14px; }
.service-icon, .why-card div, .process-icon { display: grid; place-items: center; color: var(--blue); background: linear-gradient(145deg, #f5f9ff, #e8f2ff); border: 1px solid #dceaff; box-shadow: inset 0 1px 0 #fff, 0 16px 24px rgba(24,91,201,.13); }
.service-icon { width: 64px; height: 64px; border-radius: 15px; font-size: 1.9rem; font-weight: 900; }
.service-card h3 { margin: 0 0 7px; color: var(--ink); font-size: 1.08rem; }
.service-card p { margin: 0; color: #1f2a4c; font-size: .9rem; }
.service-card a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #fff, #edf5ff); border: 1px solid #d9e8ff; box-shadow: var(--soft-shadow); color: var(--ink); font-weight: 900; }

.tech-section { position: relative; width: min(1100px, calc(100% - 64px)); margin: 28px auto 0; padding: 0 0 20px; }
.tech-section::before, .tech-section::after { content: ""; position: absolute; bottom: -4px; width: 38%; height: 80px; opacity: .35; background-image: radial-gradient(rgba(0,102,255,.45) 1px, transparent 1px); background-size: 8px 8px; transform: skewY(-8deg); }
.tech-section::before { left: -90px; border-radius: 55% 45% 0 0; }
.tech-section::after { right: -90px; border-radius: 45% 55% 0 0; transform: skewY(8deg); }
.tech-cloud { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; }
.tech-cloud span { min-width: 138px; height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 18px; border-radius: 999px; background: rgba(255,255,255,.78); border: 1px solid #d9e8ff; box-shadow: var(--soft-shadow), inset 0 1px 0 #fff; color: var(--ink); font-weight: 900; }
.tech-cloud b { min-width: 26px; text-align: center; font-size: 1.25rem; }
.java { color: #ff5b2d; } .spring { color: #48b649; } .angular { color: #dd1835; } .react { color: #009dff; } .node { color: #46b84b; } .aws { color: #111; font-size: .9rem !important; } .devops { color: #007cff; } .salesforce { color: #18a6e8; } .selenium { color: #198c42; } .sql { color: #184b93; } .python { color: #3572a5; } .linux { color: #111; } .shell { color: white; background: #111; border-radius: 4px; padding: 2px 4px; font-size: .78rem !important; } .power { color: #f1b400; } .dotnet { color: white; background: #6724b8; border-radius: 4px; padding: 2px 4px; font-size: .74rem !important; }

.wide-panel { padding: 18px 34px 30px; border-radius: 24px; background: rgba(255,255,255,.63); border: 1px solid rgba(80,137,255,.13); box-shadow: var(--soft-shadow), inset 0 1px 0 #fff; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.why-card { display: grid; grid-template-columns: 68px 1fr; gap: 16px; align-items: center; }
.why-card div { grid-row: span 2; width: 62px; height: 62px; border-radius: 50%; font-size: 2rem; }
.why-card h3, .process-step h3 { margin: 0 0 6px; color: var(--ink); font-size: .85rem; }
.why-card p, .process-step p { margin: 0; color: #2e3a5c; font-size: .76rem; }
.process-panel { margin-top: 0; border-radius: 0 0 0 0; }
.process-line { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: start; position: relative; }
.process-step { position: relative; display: grid; grid-template-columns: 70px 1fr; column-gap: 14px; align-items: center; }
.process-step::after { content: ""; position: absolute; top: 32px; left: calc(100% - 28px); width: 55px; height: 2px; background: var(--blue); opacity: .8; }
.process-step:last-child::after { display: none; }
.process-icon { grid-row: span 3; width: 64px; height: 64px; border-radius: 50%; font-size: 1.7rem; }
.process-step span { color: var(--blue); font-weight: 900; }

.cta-panel { position: relative; display: grid; grid-template-columns: 1.3fr repeat(3, 1fr) auto; align-items: center; gap: 16px; min-height: 156px; margin-top: 10px; padding: 26px 28px; overflow: hidden; border-radius: 8px; background: radial-gradient(circle at 22% 110%, #00c6ff 0 3%, transparent 26%), radial-gradient(circle at 87% 105%, #00b7ff 0 3%, transparent 28%), linear-gradient(135deg, #001b68, #001153 55%, #00308f); color: white; box-shadow: 0 22px 45px rgba(0,33,117,.28); }
.wave { position: absolute; inset: 0; opacity: .38; background-image: radial-gradient(rgba(48,204,255,.8) 1px, transparent 1px); background-size: 12px 12px; mask-image: linear-gradient(to top, black 0 34%, transparent 72%); }
.cta-copy, .contact-tile, .cta-button { position: relative; z-index: 1; }
.cta-copy h2 { margin: 0 0 12px; color: white; text-align: left; font-size: 1.65rem; }
.cta-copy p { margin: 0; color: #ddebff; font-size: .9rem; }
.contact-tile { min-height: 76px; display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: center; padding: 13px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.19); background: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.18); }
.contact-tile span { width: 38px; height: 38px; display: grid; place-items: center; color: #fff; font-size: 1.35rem; }
.contact-tile strong { display: block; font-size: .8rem; }
.contact-tile small { color: #bcd4ff; font-size: .7rem; }
.cta-button { white-space: nowrap; min-width: 185px; }

.footer { width: min(1180px, calc(100% - 64px)); margin: 28px auto 0; padding: 0 0 28px; display: grid; grid-template-columns: 1.55fr repeat(5, 1fr); gap: 40px; color: #1a274c; }
.footer .brand { min-width: 210px; transform: none; }
.footer .brand-logo { width: 218px; }
.footer p { margin: 15px 0 0; color: #2c385b; font-size: .82rem; }
.footer h3 { margin: 0 0 12px; color: var(--ink); font-size: .9rem; }
.footer a:not(.brand) { display: block; margin: 8px 0; color: #1a274c; font-size: .82rem; }
.socials { display: flex; gap: 12px; }
.socials a { width: 30px; height: 30px; display: grid !important; place-items: center; margin: 0 !important; border-radius: 50%; color: #fff !important; background: #0a7bce; font-weight: 900; }
.socials a:nth-child(2) { background: #1da1f2; } .socials a:nth-child(3) { background: #3158bd; } .socials a:nth-child(4) { background: linear-gradient(135deg, #ffb000, #ff0068, #7228ff); font-size: .68rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes rotate { to { transform: rotate(360deg); } }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: auto auto auto; }
  .menu-btn { display: block; justify-self: end; }
  .nav { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 16px; border-radius: 20px; background: rgba(255,255,255,.94); border: 1px solid #dbe8ff; box-shadow: var(--shadow); backdrop-filter: blur(18px); }
  .nav.open { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .nav a { text-align: center; padding: 12px; border-radius: 12px; background: #f4f8ff; }
  .hero { grid-template-columns: 1fr; margin-top: 40px; }
  .hero-art { min-height: 520px; }
  .cta-panel { grid-template-columns: 1fr 1fr; }
  .cta-copy, .cta-button { grid-column: span 2; }
}
@media (max-width: 900px) {
  .service-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .footer { grid-template-columns: repeat(2, 1fr); }
  .hero { width: min(1180px, calc(100% - 36px)); }
  .card-section, .wide-panel, .cta-panel, .tech-section, .footer, .site-header { width: min(1180px, calc(100% - 36px)); }
}
@media (max-width: 640px) {
  .site-header { margin-top: 14px; gap: 12px; }
  .brand { min-width: 0; }
  .brand-logo { width: 190px; height: auto; }
  .brand-icon { width: 54px; height: 42px; }
  .brand-icon span:first-child { font-size: 42px; }
  .brand-icon span:last-child { left: 21px; top: 6px; width: 32px; height: 32px; border-width: 6px; }
  .brand-text strong { font-size: .72rem; letter-spacing: .24em; }
  .brand-text small { font-size: .38rem; }
  .theme-pills { display: none; }
  .nav.open { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.55rem; }
  .hero p { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .stats-panel { grid-template-columns: repeat(2, 1fr); margin-top: 36px; }
  .hero-art { min-height: 390px; }
  .service-grid, .why-grid, .cta-panel, .footer { grid-template-columns: 1fr; }
  .cta-copy, .cta-button { grid-column: auto; }
  .service-card { grid-template-columns: 60px 1fr 38px; padding: 16px; }
  .service-icon { width: 52px; height: 52px; }
  .tech-cloud span { min-width: 132px; }
}

/* ==========================
   Navbar Actions
========================== */

.nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.nav-cta{
  background:linear-gradient(
    135deg,
    #2563EB,
    #06B6D4
  );

  color:white;

  padding:12px 22px;

  border-radius:14px;

  font-weight:600;

  box-shadow:
    0 10px 25px rgba(37,99,235,.18);
}

/* .nav-cta{
    text-decoration:none;
    color:#fff;
    padding:12px 22px;
    border-radius:999px;
    background:linear-gradient(
        135deg,
        #6C63FF,
        #00D4FF
    );
    font-weight:600;
    transition:all .3s ease;
} */

.nav-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(108,99,255,.35);
}

.hero-art{
    position:relative;
    min-height:520px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.orbit-container{
    position:relative;
    width:700px;
    height:700px;
    margin:auto;
}

.center-circle{
    
   position:absolute;

    width:420px;
    height:420px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:
      radial-gradient(
        #ffffff,
        #f4f8ff
      );

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

    box-shadow:
      0 30px 80px rgba(37,99,235,.12);
}


.orbit{
    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    border:2px dashed rgba(37,99,235,.15);

    animation:spin 30s linear infinite;
}

.orbit-item{
     position:absolute;

    width:120px;
    height:120px;

    background:#fff;

    border-radius:50%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

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

    box-shadow:
      0 15px 40px rgba(15,23,42,.08);

    transition:.3s ease;

}

.orbit-item:hover{
    transform:scale(1.08);

    box-shadow:
      0 20px 50px rgba(37,99,235,.15);
}


.orbit-item span{
    font-size:26px;
}

.orbit-item h4{
    font-size:18px;
    line-height:1.2;
    margin:8px 0 4px;
}

.item-1{
    top:20px;
    left:40%;
    /* transform:translateX(-20%); */
}

.item-2{
    top:160px;
    right:20px;
}

.item-4{
    bottom:20px;
    left:40%;
/*     transform:translateX(-20%);
 */}

.item-5{
    bottom:160px;
    left:20px;
}

.item-6{
    top:160px;
    left:20px;
}

@keyframes spin{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

.hero-copy{
    width:100%;
}

.hero-art{
    width:100%;
}

.hero{
    display:grid !important;
    grid-template-columns: 1fr 1fr !important;
    align-items:center;
    gap:60px;
}

.hero-copy{
    width:100%;
}

.hero-art{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.orbit-container::before{
    content:"";

    position:absolute;

    width:260px;
    height:260px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

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

    filter:blur(30px);

    z-index:-1;
}





.center-circle::before{
    content:"";

    position:absolute;

    inset:-40px;

    border-radius:50%;

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

    z-index:-1;
}

.center-circle{
    position:absolute;

    width:380px;
    height:380px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    border-radius:50%;

    background:
      radial-gradient(
        #f8fbff,
        #eef5ff
      );

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

    box-shadow:
      0 30px 80px rgba(37,99,235,.10);
}

.hero-tech-image{
    width:340px;

    max-width:100%;

    object-fit:contain;

    animation:floatImage 6s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-top:40px;
    max-width:500px;
}

.stat-card{
    background:#fff;

    padding:24px;

    border-radius:18px;

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

    box-shadow:
      0 10px 30px rgba(15,23,42,.06);

    transition:.3s ease;
}

.stat-card:hover{
    transform:translateY(-5px);
}

.stat-card h3{
    margin:0;
    font-size:32px;
    color:#2563EB;
    font-weight:700;
}

.stat-card p{
    margin-top:8px;
    color:#64748B;
    font-size:14px;
}

.orbit-item{
    position:absolute;

    width:140px;
    height:140px;

    background:#fff;

    border-radius:50%;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    box-shadow:
      0 20px 50px rgba(15,23,42,.08);

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

    overflow:hidden;
}

.top-accent{
    position:absolute;

    top:0;

    width:70px;
    height:8px;

    border-radius:0 0 50px 50px;
}

.accent-blue{
    background:#2563EB;
}

.accent-purple{
    background:#7C3AED;
}

.accent-green{
    background:#16A34A;
}

.accent-orange{
    background:#F97316;
}

.accent-pink{
    background:#EC4899;
}

.accent-teal{
    background:#14B8A6;
}

.orbit-icon{
    font-size:34px;
    margin-bottom:10px;
}

.orbit-item h4{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#0F172A;
}

.orbit-item p{
    font-size:12px;
    line-height:1.3;
    text-align:center;
}

.orbit-container::before,
.orbit-container::after{
    content:"";

    position:absolute;

    border-radius:50%;

    border:2px dashed rgba(37,99,235,.18);
}

.orbit-container::before{
    inset:40px;
}

.orbit-container::after{
    inset:100px;
}

.orbit-dot{
    position:absolute;

    width:18px;
    height:18px;

    border-radius:50%;

    background:#2563EB;

    box-shadow:
      0 0 0 5px rgba(37,99,235,.15);
}

.dot1{top:90px;left:180px;}
.dot2{top:150px;right:120px;}

.dot4{bottom:120px;right:170px;}
.dot5{bottom:90px;left:180px;}
.dot6{left:70px;top:50%;}

.orbit-ring{
    position:absolute;
    border-radius:50%;
    border:2px dashed rgba(37,99,235,.18);
}

.outer-ring{
    width:650px;
    height:650px;
    top:25px;
    left:25px;
}

.inner-ring{
    width:500px;
    height:500px;
    top:100px;
    left:100px;
    border-color:rgba(37,99,235,.10);
}

.orbit-rotator{
    position:absolute;
    width:100%;
    height:100%;
    animation:orbitRotate 40s linear infinite;
}
.orbit-item{
    animation:keepStraight 40s linear infinite;
}

@keyframes orbitRotate{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@keyframes keepStraight{
    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(-360deg);
    }
}

.orbit-dot{
    position:absolute;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#2563eb;
    box-shadow:0 0 15px rgba(37,99,235,.5);
}

/* OUR TECH STACK */
.tech-stack-section{padding:100px 0;}
.tech-stack-wrap{position:relative;height:420px;display:flex;align-items:center;justify-content:center;}
.stack-card{
position:absolute;width:240px;height:320px;border-radius:24px;
background:linear-gradient(180deg,#f8fbff,#eef5ff);
border:1px solid rgba(37,99,235,.12);
box-shadow:0 20px 50px rgba(37,99,235,.10);
padding:24px;transition:.4s ease;cursor:pointer;
}
.stack-card:hover{transform:translateY(-20px) scale(1.05)!important;z-index:99;box-shadow:0 30px 80px rgba(37,99,235,.20);}
.stack-index{opacity:.4;font-weight:700;}
.card-1{transform:rotate(-10deg) translateX(-280px);}
.card-2{transform:rotate(-5deg) translateX(-140px);}
.card-3{transform:rotate(0deg);}
.card-4{transform:rotate(5deg) translateX(140px);}
.card-5{transform:rotate(10deg) translateX(280px);}


.tech-stack-wrap{perspective:1200px;}
.stack-card{
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
background:linear-gradient(180deg,rgba(255,255,255,.75),rgba(240,247,255,.55));
border:1px solid rgba(255,255,255,.55);
box-shadow:
0 20px 60px rgba(37,99,235,.12),
inset 0 1px 0 rgba(255,255,255,.65);
overflow:hidden;
}
.stack-card::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(135deg,
rgba(255,255,255,.35),
transparent 40%);
pointer-events:none;
}
.stack-card h3{
font-size:2rem;
margin-top:80px;
color:#0f172a;
}
.stack-card p{
color:#64748b;
}


/* Tech stack refinement */
.section-heading h2{
  max-width:none;
}

.stack-card{
  width:280px !important;
  height:360px !important;
}

.tech-logo{
  font-size:72px;
  text-align:center;
  margin-top:25px;
  margin-bottom:10px;
}

.stack-card h3{
  margin-top:20px !important;
  text-align:center;
}

.stack-card p{
  text-align:center;
}

.stack-index{
  display:block;
  margin-bottom:10px;
}


/* FINAL TECH STACK HEADING */
.tech-stack-section .section-heading{
    text-align:center !important;
    margin-bottom:90px !important;
}

.tech-stack-section .section-tag{
    display:none !important;
}

.tech-title,
.tech-stack-section h2{
    text-align:center !important;
    font-size:72px !important;
    font-weight:800 !important;
    width:100%;
    display:block;
    margin:0 auto 40px auto !important;
    letter-spacing:-2px;
}

.tech-stack-section h2{
    background:linear-gradient(135deg,#2563EB,#06B6D4,#7C3AED);
    -webkit-background-clip:text;
    /* -webkit-text-fill-color:transparent; */
    background-clip:text;
    position:relative;
}

.tech-stack-section h2::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-14px;
    transform:translateX(-50%);
    width:220px;
    height:16px;
    background:rgba(37,99,235,.20);
    filter:blur(16px);
    border-radius:999px;
}

@media(max-width:768px){
 .tech-stack-section h2{
   font-size:46px !important;
 }
}

.tech-title{
    text-align:center;
    font-size:72px;
    font-weight:800;
    margin:0 auto 60px;
    display:block;
    width:100%;
    letter-spacing:-2px;
}

.tech-title span{
    background:linear-gradient(
        135deg,
        #2563EB,
        #06B6D4,
        #7C3AED
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
    position:relative;
}

.tech-title span::after{
    content:'';

    position:absolute;

    left:50%;
    bottom:-12px;

    width:100%;
    height:14px;

    transform:translateX(-50%);

    background:rgba(37,99,235,.18);

    filter:blur(14px);

    border-radius:999px;
}

.section-heading{
    text-align:center;
    margin-bottom:35px;
}

/* ===== Unified Section Headings ===== */
.section-gradient-title,
.tech-title{
 text-align:center !important;
 font-size:48px !important;
 font-weight:800 !important;
 line-height:1.1;
 margin:0 auto 60px !important;
 letter-spacing:-1px;
}

.section-gradient-title span,
.tech-title span{
 background:linear-gradient(135deg,#2563EB,#06B6D4,#7C3AED);
 -webkit-background-clip:text;
 -webkit-text-fill-color:transparent;
 background-clip:text;
}

.tech-stack-section{
 padding:40px 0 15px;
}

.tech-stack-wrap{
 max-width:1000px;
 margin:auto;
 height:380px;
}

.stack-card{
 width:220px !important;
 height:300px !important;
}

.tech-logo{
 font-size:56px !important;
}

.stack-card h3{
 font-size:28px !important;
}

.stack-card p{
 font-size:14px;
}

/* Why Choose Us */
.why-grid{
 grid-template-columns:repeat(4,1fr) !important;
 gap:28px;
}

.why-card{
 background:rgba(255,255,255,.7);
 border:1px solid rgba(37,99,235,.08);
 border-radius:24px;
 padding:24px;
 display:flex;
 flex-direction:column;
 align-items:center;
 text-align:center;
 backdrop-filter:blur(16px);
 box-shadow:0 15px 40px rgba(37,99,235,.08);
 transition:.35s ease;
}

.why-card:hover{
 transform:translateY(-8px);
 box-shadow:0 20px 50px rgba(37,99,235,.15);
}

.why-card div{
 width:82px !important;
 height:82px !important;
 border-radius:50%;
 font-size:34px !important;
 margin-bottom:18px;
}

.why-card h3{
 font-size:20px !important;
 margin-bottom:10px !important;
}

.why-card p{
 font-size:14px !important;
 line-height:1.7;
}

@media(max-width:900px){
 .why-grid{grid-template-columns:repeat(2,1fr)!important;}
}

@media(max-width:640px){
 .section-gradient-title,.tech-title{font-size:36px !important;}
 .why-grid{grid-template-columns:1fr!important;}
}

.logo,
.footer-logo{
    height: 65px;
    width: auto;
    object-fit: contain;
}
.stat-card i{font-size:28px;color:#2563eb;margin-bottom:10px;display:block}
#scrollTopBtn{position:fixed;bottom:24px;right:24px;width:52px;height:52px;border:none;border-radius:50%;background:linear-gradient(135deg,#2563EB,#7C3AED);color:#fff;display:none;z-index:999;cursor:pointer;box-shadow:0 15px 35px rgba(37,99,235,.3)}
.tech-stack,.tech-section{margin-top:10px}


/* Phase 1 Home Page Overrides */
.service-grid{
  display:grid !important;
  grid-template-columns:repeat(4,1fr) !important;
  gap:28px !important;
}

.service-card{
  background:rgba(255,255,255,.72) !important;
  border:1px solid rgba(37,99,235,.08) !important;
  border-radius:24px !important;
  padding:24px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  text-align:center !important;
  backdrop-filter:blur(18px);
  min-height:280px !important;
}

.service-card:hover{
  transform:translateY(-8px);
}

.service-card a{
  display:none !important;
}


/* ===============================
   PHASE 1 MASTER STANDARDIZATION
================================= */

.site-header{
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(37,99,235,.08);
  box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.logo,
.footer-logo{
  height:56px !important;
  width:auto;
  object-fit:contain;
}

.footer{
  padding-top:40px;
  border-top:1px solid rgba(37,99,235,.08);
}

.footer-whatsapp{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:12px;
   background:linear-gradient(135deg, #2563EB, #06B6D4);  
  /* background:rgba(255,255,255,.7); */
  border:1px solid rgba(37,99,235,.08);
  color:#ffffff !important; 
}

.glass,
.feature-card,
.bento-card,
.tech-card,
.cert-card .front,
.cert-card .back,
.contact-form-card{
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:0 20px 60px rgba(37,99,235,.12);
}

#scrollTopBtn{
  display:none;
  border:0;
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  transition:.3s ease;
}

#scrollTopBtn:hover{
  transform:translateY(-4px);
}

.tech-stack-section{
  padding-top:20px !important;
}

.tech-stack-section .section-heading{
  margin-bottom:20px !important;
}

/* mobile adjustments */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 720px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
    }
}