/* Mmosoll - Software Solutions
   Color system matched to IT-Tech / itteche reference */
:root {
  --primary: #0c5adb;
  --primary-dark: #0a4bc4;
  --grad-start: #3513f9;
  --grad-end: #1a90ff;
  --navy: #041424;
  --navy-2: #021533;
  --text: #041424;
  --muted: #686868;
  --light: #f3f7fd;
  --soft: #f1f3fe;
  --beige: #f8f7f0;
  --white: #ffffff;
  --orange: #ff8625;
  --green: #23e17f;
  --radius: 8px;
  --shadow: 0 10px 40px rgba(4, 20, 36, 0.08);
  --container: 1200px;
  --header-h: 100px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: 0.35s; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1320px, calc(100% - 40px)); margin: 0 auto; }

h1, h2, h3, h4, h5 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
p { color: var(--muted); }

.grad { background-image: linear-gradient(90deg, var(--grad-start) 0%, var(--grad-end) 100%); }
.grad-v { background-image: linear-gradient(0deg, var(--grad-start) 0%, var(--grad-end) 100%); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: 0.4s;
}
.btn-grad {
  background-image: linear-gradient(-8deg, var(--grad-start) 0%, var(--grad-end) 100%);
  color: #fff;
  border-radius: 30px;
  padding: 14px 36px;
  font-size: 17px;
  border: 1px solid var(--primary);
}
.btn-grad:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-solid {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 14px 32px;
  font-size: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-solid:hover { color: var(--primary); background: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.43);
  border-radius: 30px;
  padding: 12px 36px;
  font-size: 17px;
}
.btn-outline:hover { background: var(--primary); border-color: var(--primary); }
.btn-pill-blue {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 15px;
  border: 1px solid var(--primary);
}
.btn-pill-blue:hover { background: transparent; color: var(--primary); }

/* Header */
.site-header {
  position: relative;
  z-index: 1000;
  margin-bottom: -100px;
  padding: 0 20px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: #fff;
  border-radius: 10px;
  filter: drop-shadow(0 2px 6px rgba(12, 90, 219, 0.35));
}
.logo span {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.4px;
}
.main-nav ul.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav ul.nav-list > li { position: relative; }
.main-nav ul.nav-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  padding: 38px 14px;
  text-transform: capitalize;
}
.main-nav ul.nav-list > li > a:hover,
.main-nav ul.nav-list > li.active > a { color: #8ec4ff; }
.main-nav ul.nav-list > li > a i { font-size: 12px; }
.sub-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 210px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-top: 5px solid var(--primary);
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 20;
}
.main-nav ul.nav-list > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.sub-menu li a {
  display: block;
  padding: 10px 18px;
  color: #1e1e1e;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.sub-menu li a:hover { color: #fff; }
.sub-menu li a::before {
  content: "";
  position: absolute;
  inset: 0;
  height: 0;
  background: var(--primary);
  z-index: -1;
  transition: 0.3s;
}
.sub-menu li a:hover::before { height: 100%; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cart-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
}
.cart-btn:hover { background: var(--primary); border-color: var(--primary); }
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.btn-quote {
  background: var(--primary);
  color: #fff !important;
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
  white-space: nowrap;
}
.btn-quote:hover { background: #fff; color: var(--primary) !important; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}
.site-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  background: var(--navy) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  padding: 0 20px;
  animation: slideDown 0.4s ease;
}
.site-header.sticky .header-inner { min-height: 80px; }
.site-header.sticky .main-nav ul.nav-list > li > a { padding: 28px 14px; }
@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}

/* Hero home */
.hero-home {
  background:
    radial-gradient(circle at 80% 20%, rgba(53,19,249,0.45), transparent 40%),
    linear-gradient(135deg, #0b1c4e 0%, #3513f9 42%, #1a6dff 100%);
  min-height: 900px;
  padding: 160px 0 140px;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(26,144,255,0.28), transparent 50%),
    url("../images/cta-shape.jpg") center/cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: overlay;
}
.hero-home::after {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -1px;
  width: 55%;
  height: 160px;
  background: #1a90ff;
  border-radius: 0 120px 0 0;
  opacity: 0.55;
  clip-path: ellipse(70% 100% at 20% 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content h4 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-content h4 i { color: #8ec4ff; }
.hero-content h1 {
  color: #fff;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.7;
  max-width: 540px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.play-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.play-btn:hover { background: var(--primary); color: #fff; }
.hero-thumb {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}
.hero-thumb img { width: 100%; height: 520px; object-fit: cover; }
.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}
.hero-badge strong { font-family: "Rajdhani", sans-serif; font-size: 18px; color: var(--navy); display: block; line-height: 1.1; }
.hero-badge span { font-size: 12px; color: var(--muted); }

/* Overlapping feature cards */
.hero-features {
  position: relative;
  z-index: 3;
  margin-top: -90px;
  margin-bottom: 40px;
}
.hero-features .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-overlap {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 36px 34px;
  border-radius: 10px;
  color: #fff;
  min-height: 160px;
}
.feature-overlap.blue { background: linear-gradient(135deg, #1a90ff, #0c5adb); }
.feature-overlap.navy { background: var(--navy); }
.feature-overlap .icon {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}
.feature-overlap h3 { color: #fff; font-size: 28px; margin-bottom: 8px; }
.feature-overlap p { color: rgba(255,255,255,0.78); margin-bottom: 8px; }
.feature-overlap a { color: #fff; font-weight: 700; font-family: "Rajdhani", sans-serif; }

/* Section helpers */
.section { padding: 100px 0; }
.section-sm { padding: 80px 0; }
.section-light { background: var(--light); }
.section-soft { background: var(--soft); }
.eyebrow {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before,
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.section-title { margin-bottom: 48px; }
.section-title.center { text-align: center; }
.section-title h2 {
  font-size: 42px;
  line-height: 1.15;
  max-width: 720px;
}
.section-title.center h2 { margin: 0 auto; }
.section-title p { margin-top: 14px; max-width: 640px; }
.section-title.center p { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* About home */
.check-list { margin: 22px 0 28px; }
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--text);
  font-weight: 600;
}
.check-list li i {
  color: var(--primary);
  background: #e8f0fe;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-photo { position: relative; }
.about-photo img { border-radius: 16px; width: 100%; height: 480px; object-fit: cover; }
.support-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.support-chip img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.support-chip strong { display: block; font-family: "Rajdhani", sans-serif; font-size: 18px; }
.support-chip span { color: var(--muted); font-size: 14px; }

/* Service cards home */
.service-card {
  background: #fff;
  border: 1px solid #eef1f8;
  border-radius: 10px;
  padding: 36px 28px 30px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: 0.35s;
  height: 100%;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  background-image: linear-gradient(133deg, var(--grad-start), var(--grad-end));
}
.service-card h3 { font-size: 24px; margin-bottom: 10px; }
.service-card p { margin-bottom: 16px; }
.more-link {
  color: var(--primary);
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
}
.more-link:hover { gap: 8px; }
.center-btn { text-align: center; margin-top: 42px; }

/* Choose us */
.choose-photo { position: relative; }
.choose-photo img { width: 100%; height: 520px; object-fit: cover; border-radius: 16px; }
.stat-float {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  min-width: 170px;
}
.stat-float strong { display: block; font-size: 28px; font-family: "Rajdhani", sans-serif; color: #fff; }
.stat-float span { color: rgba(255,255,255,0.85); font-size: 14px; }

/* Strategy hex */
.strategy-wrap {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 20px;
  align-items: center;
}
.strategy-item {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}
.strategy-item:nth-child(even) { flex-direction: row-reverse; text-align: right; }
.strategy-col-right .strategy-item { flex-direction: row-reverse; text-align: right; }
.strategy-col-right .strategy-item:nth-child(even) { flex-direction: row; text-align: left; }
.strategy-item .si {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 2px solid #dbe7ff;
}
.strategy-item h4 { font-size: 20px; margin-bottom: 4px; }
.hex-frame {
  width: 260px;
  height: 300px;
  margin: 0 auto;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  border: 6px solid var(--primary);
  background: var(--soft);
}
.hex-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Team */
.team-card {
  background: #f4f6fb;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 22px;
  transition: 0.35s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo {
  height: 260px;
  overflow: hidden;
  background: linear-gradient(180deg, #dce8ff, #f4f6fb);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-card h3 { font-size: 22px; margin: 16px 0 4px; }
.team-card span { color: var(--muted); font-size: 14px; }

/* Skills */
.skill-row { margin-bottom: 22px; }
.skill-row .top { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 8px; font-family: "Rajdhani", sans-serif; font-size: 18px; }
.bar { height: 10px; background: #e9eef8; border-radius: 20px; overflow: hidden; }
.bar span {
  display: block;
  height: 100%;
  border-radius: 20px;
  background-image: linear-gradient(90deg, var(--grad-start), var(--grad-end));
}

/* Testimonials */
.testimonials {
  background: var(--navy);
  padding: 100px 0 70px;
  position: relative;
}
.testimonials h2, .testimonials .eyebrow { color: #fff; }
.testimonials .eyebrow { color: #7eb6ff; }
.testimonials .eyebrow::before { background: #7eb6ff; }
.testi-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start; }
.testi-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
}
.stars { color: #ffb400; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card h4 { color: #fff; margin-bottom: 10px; font-size: 22px; }
.testi-card p { color: rgba(255,255,255,0.72); }
.testi-user { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-user img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-user strong { color: #fff; display: block; font-family: "Rajdhani", sans-serif; }
.testi-user span { color: #8aa0b8; font-size: 13px; }
.partner-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0.7;
}
.partner {
  color: rgba(255,255,255,0.55);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 1px;
}

/* Marquee */
.marquee {
  background-image: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.marquee span { display: inline-block; padding: 0 28px; animation: marquee 18s linear infinite; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Blog cards */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(4,20,36,0.06);
  height: 100%;
  transition: 0.35s;
}
.blog-card:hover { transform: translateY(-6px); }
.blog-thumb { position: relative; height: 230px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-date {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 58px;
}
.blog-date strong { display: block; font-size: 22px; font-family: "Rajdhani", sans-serif; line-height: 1; }
.blog-date span { font-size: 12px; }
.ribbon {
  position: absolute;
  top: 16px;
  left: 0;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0 20px 20px 0;
}
.blog-body { padding: 22px 22px 26px; }
.blog-meta { color: var(--primary); font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.blog-body h3 { font-size: 22px; margin-bottom: 10px; line-height: 1.3; }
.blog-body h3 a:hover { color: var(--primary); }

/* CTA band */
.cta-band {
  background-image: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  border-radius: 12px;
  padding: 42px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}
.cta-band h2 { color: #fff; font-size: 36px; max-width: 560px; }
.cta-band .btn-grad { background: #fff; color: var(--primary); border-color: #fff; }
.cta-band .btn-grad:hover { background: transparent; color: #fff; }

/* Footer */
.site-footer {
  background: var(--navy);
  padding: 90px 0 0;
  margin-top: -40px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand p { color: rgba(255,255,255,0.55); margin: 18px 0 20px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials a:hover { background-image: linear-gradient(90deg, var(--grad-start), var(--grad-end)); }
.footer-title {
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
}
.footer-links li a {
  color: rgba(255,255,255,0.8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 2.4;
  font-size: 15px;
}
.footer-links li a i {
  background-image: linear-gradient(90deg, #3614fa, #1a91ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 12px;
}
.footer-links li a:hover { color: var(--primary); }
.footer-form input {
  width: 100%;
  height: 52px;
  border-radius: 30px;
  border: 0;
  background: rgba(255,255,255,0.1);
  padding: 0 22px;
  color: #fff;
  outline: none;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.7); }
.footer-form button {
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 28px;
  padding: 14px 0;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  cursor: pointer;
}
.footer-form button:hover { background-image: linear-gradient(90deg, var(--grad-end), var(--grad-start)); }
.privacy-note { color: rgba(255,255,255,0.55); margin-top: 14px; font-size: 14px; }
.privacy-note i { color: var(--green); margin-right: 6px; }
.footer-error { color: #ff8a8a; font-size: 13px; margin-top: 8px; min-height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.75); margin: 0; }
.legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.legal-links a { color: rgba(255,255,255,0.7); font-size: 14px; }
.legal-links a:hover { color: #fff; }

/* Inner banner */
.page-banner {
  background:
    linear-gradient(120deg, rgba(4,20,36,0.88) 10%, rgba(12,90,219,0.55) 70%, rgba(4,20,36,0.4)),
    url("../images/banner-tech.jpg") center/cover no-repeat;
  padding: 210px 0 140px;
  margin-top: -100px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -40px;
  width: 48%;
  height: 180px;
  background: #1a90ff;
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(0.5px);
}
.page-banner h1 {
  color: #fff;
  font-size: 52px;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  border: 2px solid rgba(255,255,255,0.28);
  padding: 8px 28px;
  border-radius: 5px;
  margin-top: 22px;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: #9ecbff; }

/* Inner about extras */
.mini-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -70px; position: relative; z-index: 3; }
.mini-card {
  background: #fff;
  border: 1px solid #d7e4ff;
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.mini-card i { font-size: 32px; color: var(--primary); margin-bottom: 12px; }
.mini-card h3 { font-size: 20px; }
.about-collage { position: relative; }
.about-collage .main { width: 100%; height: 430px; object-fit: cover; border-radius: 12px; }
.about-collage .sub {
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 52%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 6px solid #fff;
}
.award-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--navy);
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  max-width: 160px;
}
.award-badge i { color: #ffb400; }
.award-badge span { color: #fff; font-size: 14px; font-weight: 700; display: block; }
.project-circle {
  position: absolute;
  right: 30%;
  top: 18%;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-image: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 30px rgba(12,90,219,0.35);
}
.project-circle strong { font-size: 28px; font-family: "Rajdhani", sans-serif; color: #fff; line-height: 1; }
.project-circle span { font-size: 12px; color: #fff; }

.progress-ring-wrap { display: flex; align-items: center; gap: 18px; margin: 22px 0; }
.ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0 45%, #e6eaf3 0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring span {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.stats-band {
  background: var(--navy) url("../images/cta-shape.jpg") center/cover;
  background-blend-mode: overlay;
  padding: 70px 0;
  color: #fff;
}
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 48px; color: #fff; font-family: "Rajdhani", sans-serif; }
.stat-item span { color: rgba(255,255,255,0.75); }

/* Service page cards */
.service-box {
  background: #fff;
  border: 1px solid #edf0f7;
  border-radius: 8px;
  padding: 40px 24px 32px;
  text-align: center;
  height: 100%;
  transition: 0.35s;
}
.service-box:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.service-box .icon-line {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border: 2px solid #d6e4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
}
.service-box h3 { font-size: 22px; margin-bottom: 10px; }
.service-box .btn-pill-blue { margin-top: 16px; }

/* Service details */
.layout-sidebar { display: grid; grid-template-columns: 1.7fr 0.7fr; gap: 36px; align-items: start; }
.article-hero { border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
.article-hero img { width: 100%; height: 420px; object-fit: cover; }
.article h2 { font-size: 36px; margin: 10px 0 16px; }
.article p { margin-bottom: 16px; }
.two-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.mini-beige {
  background: var(--beige);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.mini-beige i { font-size: 28px; color: var(--primary); }
.quote-banner {
  background-image: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  color: #fff;
  border-radius: 10px;
  padding: 26px 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 24px 0;
}
.quote-banner i { font-size: 28px; color: #fff; }
.quote-banner p { color: #fff; font-style: italic; margin: 0; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.benefit-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.benefit-card img { width: 100%; height: 180px; object-fit: cover; }
.benefit-card .pad { padding: 18px; }
.sidebar-widget {
  background: var(--beige);
  border-radius: 10px;
  padding: 24px 22px;
  margin-bottom: 22px;
}
.sidebar-widget.dark {
  background: var(--navy);
  color: #fff;
}
.sidebar-widget h4 { font-size: 22px; margin-bottom: 16px; color: var(--navy); }
.sidebar-widget.dark h4 { color: #fff; }
.cat-list a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
  color: var(--text);
  font-weight: 600;
}
.cat-list a:hover { color: var(--primary); }
.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
}
.download-btn.navy { background: var(--navy); }
.download-btn.blue { background: var(--primary); }
.sidebar-widget.dark p { color: rgba(255,255,255,0.7); }
.sidebar-widget.dark .btn-solid { width: 100%; justify-content: center; margin-top: 12px; }

/* FAQ */
.faq-item {
  background: #fff;
  border: 1px solid #e8edf6;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 18px;
  font-family: "Rajdhani", sans-serif;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
}
.faq-q.active, .faq-q:hover { color: var(--primary); }
.faq-a { display: none; padding: 0 22px 18px; color: var(--muted); }
.faq-a.open { display: block; }

/* Blog details extras */
.meta-row { display: flex; gap: 22px; flex-wrap: wrap; color: var(--muted); margin: 14px 0 22px; font-size: 14px; }
.meta-row i { color: var(--primary); margin-right: 6px; }
blockquote.pull {
  background: var(--beige);
  border-left: 4px solid var(--primary);
  padding: 24px 28px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
  position: relative;
}
blockquote.pull::before {
  content: "\201C";
  font-size: 64px;
  color: var(--primary);
  position: absolute;
  top: -6px;
  right: 20px;
  opacity: 0.25;
  font-family: Georgia, serif;
}
.inline-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }
.inline-imgs img { width: 100%; height: 220px; object-fit: cover; border-radius: 10px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 20px 0; }
.tag {
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 4px;
}
.comments { background: var(--beige); padding: 36px; border-radius: 12px; margin-top: 36px; }
.comment { display: flex; gap: 16px; margin-bottom: 22px; }
.comment img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.comment h5 { font-size: 18px; }
.popular-post { display: flex; gap: 12px; margin-bottom: 16px; }
.popular-post img { width: 80px; height: 64px; object-fit: cover; border-radius: 6px; }
.popular-post h5 { font-size: 15px; line-height: 1.3; }
.search-box { display: flex; }
.search-box input { flex: 1; border: 0; padding: 12px 14px; border-radius: 6px 0 0 6px; }
.search-box button { border: 0; background: var(--primary); color: #fff; padding: 0 14px; border-radius: 0 6px 6px 0; cursor: pointer; }

/* Contact */
.contact-card {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  background: #fff;
  box-shadow: 0 20px 60px rgba(4,20,36,0.1);
  border-radius: 14px;
  overflow: hidden;
}
.contact-form { padding: 42px 40px; }
.contact-form h2 { font-size: 32px; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 14px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.form-group select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #0c5adb 50%), linear-gradient(135deg, #0c5adb 50%, transparent 50%); background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid #e3e8f2;
  background: #f7f9fd;
  border-radius: 6px;
  padding: 12px 14px;
  outline: none;
  color: var(--text);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: #fff; }
.form-error { color: #d93025; font-size: 12px; min-height: 16px; margin-top: 4px; }
.form-group.invalid input, .form-group.invalid textarea { border-color: #d93025; }
.form-success {
  display: none;
  background: #e8f8ef;
  color: #16794a;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-weight: 600;
}
.contact-aside {
  background-image: linear-gradient(180deg, var(--grad-start), var(--primary));
  color: #fff;
  padding: 48px 36px;
}
.contact-aside h3 { color: #fff; font-size: 28px; margin-bottom: 22px; }
.contact-aside li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
  color: #fff;
}
.contact-aside li i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-aside p { color: rgba(255,255,255,0.85); }

/* Legal pages */
.legal-content h2 { font-size: 28px; margin: 28px 0 12px; }
.legal-content h3 { font-size: 22px; margin: 20px 0 8px; }
.legal-content p, .legal-content li { margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content ul li { color: var(--muted); }

/* Subscribe pages */
.simple-form-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  padding: 42px 36px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
}
.simple-form-card h2 { margin-bottom: 10px; }
.simple-form-card p { margin-bottom: 22px; }

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4,20,36,0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fff;
  z-index: 2001;
  transform: translateX(100%);
  transition: 0.35s;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  border-bottom: 1px solid #eee;
  background: var(--navy);
  color: #fff;
}
.cart-head h3 { color: #fff; font-size: 22px; }
.cart-head button { background: transparent; border: 0; color: #fff; font-size: 22px; cursor: pointer; }
.cart-items { flex: 1; overflow: auto; padding: 16px 20px; }
.cart-empty { color: var(--muted); text-align: center; padding: 40px 10px; }
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart-line img { width: 64px; height: 52px; object-fit: cover; border-radius: 6px; }
.cart-line h4 { font-size: 16px; }
.qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty button {
  width: 24px; height: 24px; border: 1px solid #ddd; background: #fff; cursor: pointer; border-radius: 4px;
}
.remove-item { border: 0; background: transparent; color: #c0392b; cursor: pointer; }
.cart-foot { padding: 16px 20px 22px; border-top: 1px solid #eee; }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 12px; font-size: 18px; }
.cart-message {
  display: none;
  background: #e8f8ef;
  color: #16794a;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
}

/* Packages / add to cart */
.price { font-family: "Rajdhani", sans-serif; font-size: 26px; color: var(--primary); font-weight: 700; margin: 10px 0; }
.add-cart {
  border: 0;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
}
.add-cart:hover { background: var(--navy); }

/* Pricing on home optional */
.pricing-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  padding-bottom: 28px;
}
.pricing-card .head {
  background-image: linear-gradient(90deg, var(--grad-start), var(--grad-end));
  color: #fff;
  padding: 28px 16px 20px;
}
.pricing-card .head h3 { color: #fff; }
.pricing-card .amount { font-size: 48px; color: var(--navy); margin: 18px 0 8px; font-family: "Rajdhani", sans-serif; }
.pricing-card ul { text-align: left; padding: 0 28px 18px; }
.pricing-card ul li { padding: 8px 0; color: var(--muted); }
.pricing-card ul li i { color: var(--primary); margin-right: 8px; }

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 8px 20px rgba(12,90,219,0.35);
}
.to-top.show { display: flex; }

.field-note { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* Responsive */
@media (max-width: 1100px) {
  .hero-content h1 { font-size: 52px; }
  .grid-4, .mini-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .strategy-wrap { grid-template-columns: 1fr; }
  .hex-frame { margin-bottom: 24px; }
  .layout-sidebar, .testi-grid, .contact-card { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .hero-grid, .grid-2, .grid-3, .hero-features .grid-2, .testi-cards, .two-mini, .benefit-grid, .form-grid, .inline-imgs {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    display: none;
    padding: 10px 20px 20px;
  }
  .main-nav.open { display: block; }
  .main-nav ul.nav-list { flex-direction: column; align-items: stretch; }
  .main-nav ul.nav-list > li > a { padding: 12px 8px; }
  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
    display: none;
    box-shadow: none;
    border-top: 0;
    background: rgba(255,255,255,0.05);
  }
  .main-nav ul.nav-list > li.open > .sub-menu { display: block; }
  .sub-menu li a { color: #fff; width: auto; }
  .hero-home { min-height: auto; padding: 140px 0 120px; }
  .hero-thumb img { height: 340px; }
  .page-banner { padding: 170px 0 100px; }
  .page-banner h1 { font-size: 38px; }
  .cta-band { flex-direction: column; text-align: center; }
  .about-collage .sub { position: relative; right: auto; bottom: auto; width: 100%; height: 200px; margin-top: 12px; border: 0; }
}
@media (max-width: 600px) {
  .grid-4, .mini-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 40px; }
  .header-inner { min-height: 76px; }
  .btn-quote { display: none; }
  .logo span { font-size: 22px; }
  .section { padding: 70px 0; }
}
