/* ============================================================
   AAYUSOFT CLOUD — COMPLETE STYLESHEET v3
   All class names verified against HTML exactly
============================================================ */
:root {
  --navy:      #0a1628;
  --navy-mid:  #0f2044;
  --navy-lt:   #162a52;
  --teal:      #00c6a7;
  --teal-dark: #00a88e;
  --teal-glow: rgba(0,198,167,0.15);
  --purple:    #7c3aed;
  --white:     #ffffff;
  --gray-100:  #f8f9fc;
  --gray-200:  #e8ecf4;
  --gray-400:  #9ba8c0;
  --text-dark: #1a2638;
  --text-muted:#6b7a94;
  --font:      'Inter','Segoe UI',system-ui,sans-serif;
  --t:         all 0.3s ease;
  --shadow:    0 4px 24px rgba(10,22,40,0.12);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
  --r:         12px;
  --r-sm:      8px;
}
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth }
body { font-family:var(--font); color:var(--text-dark); background:var(--white); line-height:1.6 }
a    { text-decoration:none; color:inherit }
ul   { list-style:none }
img  { max-width:100%; display:block }

/* ── GLOBAL SVG — no fill, constrained by parent ── */
svg { fill:none; overflow:visible }

/* ── TYPOGRAPHY ── */
h1 { font-size:clamp(2rem,5vw,3.5rem); font-weight:800; line-height:1.15 }
h2 { font-size:clamp(1.6rem,3.5vw,2.6rem); font-weight:700; line-height:1.25 }
h3 { font-size:1.2rem; font-weight:600 }
h4 { font-size:1rem; font-weight:600 }
p  { color:var(--text-muted); line-height:1.8 }
.section-label {
  display:inline-block; font-size:.75rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase; color:var(--teal);
  background:var(--teal-glow); border:1px solid rgba(0,198,167,.3);
  padding:6px 14px; border-radius:30px; margin-bottom:1rem;
}
.section-title    { margin-bottom:.75rem }
.section-subtitle { font-size:1.05rem; color:var(--text-muted); max-width:600px }
.text-center      { text-align:center }
.mb-48            { margin-bottom:48px }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:8px; padding:13px 28px;
  border-radius:var(--r-sm); font-weight:600; font-size:.95rem; cursor:pointer;
  border:none; transition:var(--t); white-space:nowrap; font-family:var(--font);
}
.btn svg { width:17px; height:17px; flex-shrink:0; stroke:currentColor; stroke-width:2.5 }
.btn-primary { background:var(--teal); color:var(--navy) }
.btn-primary:hover { background:var(--teal-dark); transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,198,167,.35) }
.btn-outline { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,.4) }
.btn-outline:hover { border-color:var(--teal); color:var(--teal); transform:translateY(-2px) }
.btn-dark { background:var(--navy); color:var(--white) }
.btn-dark:hover { background:var(--navy-lt); transform:translateY(-2px) }
.arrow-link { display:inline-flex; align-items:center; gap:6px; color:var(--teal); font-weight:600; font-size:.9rem; transition:var(--t) }
.arrow-link:hover { gap:10px }
.arrow-link svg { width:16px; height:16px; stroke:var(--teal); stroke-width:2.5 }

/* ── LAYOUT ── */
.container   { max-width:1200px; margin:0 auto; padding:0 24px }
.section     { padding:96px 0 }
.section-alt { background:var(--gray-100) }
.section-dark { background:var(--navy); color:var(--white) }
.section-dark p { color:var(--gray-400) }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px }

/* ── NAVBAR ── */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000; padding:0 24px;
  background:rgba(10,22,40,.95); backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06); transition:var(--t);
}
.navbar.scrolled { background:rgba(10,22,40,.99); box-shadow:0 4px 24px rgba(0,0,0,.3) }
.nav-inner {
  max-width:1280px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; height:72px;
}
.nav-logo { display:flex; align-items:center; gap:10px }
.nav-logo-icon {
  width:40px; height:40px; border-radius:8px; flex-shrink:0;
  background:linear-gradient(135deg,var(--teal),var(--purple));
  display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:14px; color:var(--navy);
}
.nav-logo-text { font-size:1.2rem; font-weight:800; color:var(--white); white-space:nowrap }
.nav-logo-text span { color:var(--teal) }
.nav-menu { display:flex; align-items:center; gap:4px }
.nav-item { position:relative }
.nav-link {
  display:flex; align-items:center; gap:4px; padding:8px 14px;
  color:rgba(255,255,255,.8); font-size:.9rem; font-weight:500;
  border-radius:var(--r-sm); transition:var(--t); cursor:pointer;
}
.nav-link:hover,.nav-link.active { color:var(--teal); background:var(--teal-glow) }
.nav-link svg { width:13px; height:13px; stroke:currentColor; stroke-width:2.5; transition:transform .2s }
.nav-item:hover .nav-link svg { transform:rotate(180deg) }
.dropdown {
  position:absolute; top:calc(100% + 8px); left:0; min-width:280px;
  background:var(--navy-mid); border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r); padding:8px; opacity:0; visibility:hidden;
  transform:translateY(-8px); transition:var(--t); box-shadow:var(--shadow-lg);
}
.nav-item:hover .dropdown { opacity:1; visibility:visible; transform:translateY(0) }
.dropdown-item { display:flex; align-items:flex-start; gap:12px; padding:10px 14px; border-radius:var(--r-sm); transition:var(--t) }
.dropdown-item:hover { background:var(--teal-glow) }
.dropdown-icon {
  width:36px; height:36px; background:var(--teal-glow); border-radius:8px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.dropdown-icon svg { width:18px; height:18px; stroke:var(--teal); stroke-width:1.5 }
.dropdown-item-text  {}
.dropdown-item-title { font-size:.9rem; font-weight:600; color:var(--white) }
.dropdown-item-desc  { font-size:.78rem; color:var(--gray-400); margin-top:2px }
.nav-cta { margin-left:12px }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px }
.hamburger span { display:block; width:24px; height:2px; background:var(--white); border-radius:2px }
.mobile-nav {
  display:none; position:fixed; inset:0; background:var(--navy); z-index:999;
  padding:88px 24px 24px; overflow-y:auto; flex-direction:column; gap:8px;
}
.mobile-nav.open { display:flex }
.mobile-nav-link {
  padding:14px 16px; color:rgba(255,255,255,.85); font-size:1rem;
  font-weight:500; border-radius:var(--r-sm); border-bottom:1px solid rgba(255,255,255,.06);
}
.mobile-nav-link:hover { color:var(--teal); background:var(--teal-glow) }

/* ── HERO ── */
.hero {
  min-height:100vh; background:var(--navy); display:flex; align-items:center;
  position:relative; overflow:hidden; padding-top:72px;
}
.hero-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse 60% 50% at 70% 50%,rgba(0,198,167,.08) 0%,transparent 70%),
             radial-gradient(ellipse 40% 40% at 20% 80%,rgba(124,58,237,.08) 0%,transparent 60%);
}
.hero-grid-overlay {
  position:absolute; inset:0;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:60px 60px;
}
.hero-content {
  position:relative; z-index:1; max-width:1200px; margin:0 auto; padding:80px 24px;
  display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px; background:rgba(0,198,167,.12);
  border:1px solid rgba(0,198,167,.3); border-radius:30px; padding:6px 16px;
  font-size:.8rem; color:var(--teal); font-weight:600; margin-bottom:24px;
}
.hero-badge-dot { width:6px; height:6px; background:var(--teal); border-radius:50%; animation:pulse 2s infinite }
.hero-h1   { color:var(--white); margin-bottom:20px }
.grad {
  background:linear-gradient(135deg,var(--teal) 0%,#6ee7e7 50%,var(--purple) 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-sub    { font-size:1.1rem; color:rgba(255,255,255,.65); margin-bottom:36px; max-width:520px }
.hero-btns   { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:48px }
.hero-metrics{ display:flex; gap:32px; padding-top:32px; border-top:1px solid rgba(255,255,255,.08) }
.hm-num      { font-size:1.8rem; font-weight:800; color:var(--teal); line-height:1 }
.hm-label    { font-size:.8rem; color:rgba(255,255,255,.5); margin-top:4px }
.hero-right  { position:relative }
.hero-card {
  background:var(--navy-mid); border:1px solid rgba(255,255,255,.1);
  border-radius:20px; padding:32px; position:relative; overflow:hidden;
}
.hero-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--teal),var(--purple));
}
.floating-badge {
  background:var(--teal); color:var(--navy); font-size:.75rem; font-weight:700;
  padding:8px 16px; border-radius:30px; box-shadow:0 8px 24px rgba(0,198,167,.4);
}
.st-icon {
  width:38px; height:38px; background:var(--teal-glow); border-radius:9px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.st-icon svg { width:18px; height:18px; stroke:var(--teal); stroke-width:1.5 }

/* ── TRUSTED BAR ── */
.trusted-section {
  padding:40px 0; background:var(--navy-mid);
  border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06);
}
.trusted-label { font-size:.8rem; color:var(--gray-400); text-transform:uppercase; letter-spacing:.1em; text-align:center; margin-bottom:24px }
.logo-scroll   { display:flex; align-items:center; justify-content:center; gap:48px; flex-wrap:wrap }
.logo-item     { font-size:.95rem; font-weight:700; color:rgba(255,255,255,.3); letter-spacing:.05em; text-transform:uppercase; transition:var(--t) }
.logo-item:hover { color:rgba(255,255,255,.7) }

/* ── STATS ── */
.stats-section { background:var(--teal); padding:64px 0 }
.stats-grid    { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center }
.stat-num      { font-size:3rem; font-weight:900; color:var(--navy); line-height:1 }
.stat-label    { font-size:.95rem; font-weight:600; color:var(--navy); opacity:.8; margin-top:6px }

/* ── SERVICE CARDS ── */
.service-card {
  background:var(--white); border:1px solid var(--gray-200); border-radius:var(--r);
  padding:32px 28px; transition:var(--t); position:relative; overflow:hidden;
}
.service-card::before {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg,var(--teal),var(--purple));
  transform:scaleX(0); transition:var(--t);
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:rgba(0,198,167,.2) }
.service-card:hover::before { transform:scaleX(1) }
.service-card-icon {
  width:56px; height:56px; background:var(--teal-glow); border-radius:14px;
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.service-card-icon svg { width:28px; height:28px; stroke:var(--teal); stroke-width:1.5 }
.service-card h3 { color:var(--text-dark); margin-bottom:10px }
.service-card p  { font-size:.9rem; margin-bottom:20px }

/* ── ABOUT ── */
.about-text  {}
.about-visual { position:relative }
.about-image-wrap {
  border-radius:20px; overflow:hidden; background:var(--navy);
  aspect-ratio:4/3; display:flex; align-items:center; justify-content:center;
}
.about-image-placeholder {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  padding:40px; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-lt) 100%);
  position:relative; overflow:hidden;
}
.about-image-placeholder::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 60% 40%,rgba(0,198,167,.12) 0%,transparent 60%);
}
.about-grid-mini  { display:grid; grid-template-columns:1fr 1fr; gap:16px; width:100%; position:relative }
.about-mini-card  { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:12px; padding:20px; text-align:center }
.about-mini-num   { font-size:2rem; font-weight:800; color:var(--teal) }
.about-mini-label { font-size:.75rem; color:rgba(255,255,255,.5); margin-top:4px }
.about-badge {
  position:absolute; bottom:-16px; right:-16px; background:var(--teal); color:var(--navy);
  border-radius:50%; width:90px; height:90px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-weight:800; font-size:.75rem; text-align:center; line-height:1.3;
  box-shadow:0 8px 24px rgba(0,198,167,.4);
}
.about-badge .big-num { font-size:1.4rem; line-height:1 }
.check-list { display:flex; flex-direction:column; gap:12px; margin:24px 0 32px }
.check-item { display:flex; align-items:flex-start; gap:12px; font-size:.95rem; color:var(--text-muted) }
.check-item svg { width:20px; height:20px; stroke:var(--teal); stroke-width:2.5; flex-shrink:0; margin-top:2px }

/* ── CONTACT ── */
.contact-wrap { display:grid; grid-template-columns:1fr 1.4fr; gap:64px; align-items:start }
.contact-info-item { display:flex; gap:16px; margin-bottom:28px }
.contact-info-icon {
  width:48px; height:48px; background:var(--teal-glow); border-radius:12px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-info-icon svg { width:22px; height:22px; stroke:var(--teal); stroke-width:1.5 }
.contact-info-title { font-weight:600; color:var(--text-dark); font-size:.9rem }
.contact-info-text  { font-size:.88rem; color:var(--text-muted); margin-top:2px }
.contact-form { background:var(--white); border:1px solid var(--gray-200); border-radius:20px; padding:40px; box-shadow:var(--shadow) }
.form-row     { display:grid; grid-template-columns:1fr 1fr; gap:20px }
.form-group   { margin-bottom:20px }
.form-group label { display:block; font-size:.85rem; font-weight:600; color:var(--text-dark); margin-bottom:6px }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:12px 16px; border:1.5px solid var(--gray-200);
  border-radius:var(--r-sm); font-family:var(--font); font-size:.9rem;
  color:var(--text-dark); background:var(--white); transition:var(--t); outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(0,198,167,.1) }
.form-group textarea { resize:vertical; min-height:120px }
.form-submit { display:flex; align-items:center; gap:16px; flex-wrap:wrap }
.form-submit .btn svg { width:17px; height:17px; stroke:currentColor; stroke-width:2.5 }
.form-note   { font-size:.8rem; color:var(--text-muted) }
.form-success {
  display:none; padding:16px; background:rgba(0,198,167,.1);
  border:1px solid rgba(0,198,167,.3); border-radius:var(--r-sm);
  color:var(--teal); font-size:.9rem; font-weight:500; margin-top:16px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero { background:var(--navy); padding:140px 0 80px; position:relative; overflow:hidden }
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 50% 60% at 80% 50%,rgba(0,198,167,.08) 0%,transparent 70%);
}
.page-hero-content { position:relative }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:.85rem; color:var(--gray-400); margin-bottom:16px }
.breadcrumb a    { color:var(--teal) }
.breadcrumb span { color:var(--gray-400) }
.page-hero h1 { color:var(--white); margin-bottom:16px }
.page-hero p  { color:rgba(255,255,255,.65); font-size:1.1rem; max-width:600px }

/* ── FOOTER ── */
.footer { background:var(--navy); color:var(--white); padding:72px 0 0; border-top:1px solid rgba(255,255,255,.06) }
.footer-grid {
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px;
  padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-logo  { display:flex; align-items:center; gap:10px; margin-bottom:16px }
.footer-brand p { font-size:.88rem; color:var(--gray-400); max-width:280px }
.footer-social  { display:flex; gap:10px; margin-top:20px }
.social-btn {
  width:38px; height:38px; background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08); border-radius:8px;
  display:flex; align-items:center; justify-content:center; transition:var(--t);
}
.social-btn:hover { background:var(--teal-glow); border-color:rgba(0,198,167,.3) }
.social-btn svg { width:16px; height:16px; stroke:var(--gray-400); stroke-width:1.5 }
.social-btn:hover svg { stroke:var(--teal) }
.footer-col h4 { font-size:.85rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--white); margin-bottom:16px }
.footer-links  { display:flex; flex-direction:column; gap:10px }
.footer-links a { font-size:.88rem; color:var(--gray-400); transition:var(--t) }
.footer-links a:hover { color:var(--teal); padding-left:4px }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding:20px 0 }
.footer-bottom p { font-size:.82rem; color:var(--gray-400) }
.footer-bottom a { color:var(--teal) }

/* ── ANIMATIONS ── */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .stats-grid  { grid-template-columns:repeat(2,1fr) }
  .footer-grid { grid-template-columns:1fr 1fr }
}
@media(max-width:768px) {
  .nav-menu,.nav-cta { display:none }
  .hamburger         { display:flex }
  .dropdown          { display:none !important }
  .hero-content      { grid-template-columns:1fr; gap:40px; padding:60px 24px }
  .hero-right        { display:none }
  .grid-2            { grid-template-columns:1fr; gap:32px }
  .grid-3            { grid-template-columns:1fr }
  .stats-grid        { grid-template-columns:repeat(2,1fr) }
  .contact-wrap      { grid-template-columns:1fr; gap:40px }
  .form-row          { grid-template-columns:1fr }
  .footer-grid       { grid-template-columns:1fr; gap:32px }
  .footer-bottom     { flex-direction:column; gap:12px; text-align:center }
  .section           { padding:64px 0 }
}
@media(max-width:480px) {
  .hero-metrics { flex-direction:column; gap:20px }
  .hero-btns    { flex-direction:column }
  .btn          { width:100%; justify-content:center }
}
