:root {
  --primary: #00a4ee;
  --primary-dark: #0078c2;
  --primary-deeper: #005a9e;
  --primary-light: #e8f7ff;
  --primary-mid: #b3e5fc;
  --accent: #00d4ff;
  --navy: #0a1628;
  --navy-mid: #0e2040;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #0f172a;
  --gradient-main: linear-gradient(
    135deg,
    #00a4ee 0%,
    #0078c2 50%,
    #005a9e 100%
  );
  --gradient-hero: linear-gradient(
    135deg,
    #0a1628 0%,
    #0e2040 60%,
    #001830 100%
  );
  --shadow-sm: 0 2px 8px rgba(0, 164, 238, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 164, 238, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 164, 238, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
ul {
  list-style: none;
}.hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 164, 238, 0.25) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 120, 194, 0.2) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: 100px;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 164, 238, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 164, 238, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-slash {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 164, 238, 0.06) 50%,
    transparent 100%
  );
  transform: skewX(-8deg);
  transform-origin: top right;
  pointer-events: none;
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 164, 238, 0.15);
  border: 1px solid rgba(0, 164, 238, 0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 em {
  color: var(--primary);
  font-style: normal;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: white;
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.hero-stat strong em {
  color: var(--primary);
  font-style: normal;
}

.hero-visual {
  position: relative;
}
.hero-card-stack {
  position: relative;
  height: 480px;
}
.hero-main-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 164, 238, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.hmc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hmc-logo {
  width: 40px;
  height: 40px;
  background: var(--gradient-main);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
}
.hmc-title strong {
  display: block;
  color: white;
  font-size: 14px;
}
.hmc-title span {
  color: var(--gray-400);
  font-size: 12px;
}
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}
.metric-box {
  background: rgba(0, 164, 238, 0.08);
  border: 1px solid rgba(0, 164, 238, 0.15);
  border-radius: 10px;
  padding: 14px;
}
.metric-box .val {
  font-size: 22px;
  font-weight: 800;
  color: white;
}
.metric-box .val.green {
  color: #4ade80;
}
.metric-box .lbl {
  font-size: 11px;
  color: var(--gray-400);
  margin-top: 2px;
}
.chart-bar-wrap {
  margin-top: 8px;
}
.chart-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 6px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.bar {
  flex: 1;
  background: rgba(0, 164, 238, 0.15);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gradient-main);
  border-radius: 4px 4px 0 0;
}

.float-card {
  position: absolute;
  background: var(--navy-mid);
  border: 1px solid rgba(0, 164, 238, 0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  animation: float 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
.float-card-1 {
  top: 20px;
  right: -30px;
  animation-delay: 0s;
}
.float-card-2 {
  bottom: 80px;
  right: -20px;
  animation-delay: 1s;
}
.float-card-3 {
  bottom: 20px;
  left: 20px;
  animation-delay: 2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fc-top {
  font-size: 10px;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.fc-val {
  font-size: 18px;
  font-weight: 800;
  color: white;
}
.fc-val.green {
  color: #4ade80;
}
.fc-val.blue {
  color: var(--primary);
}
.fc-bottom {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* SECTION COMMONS */
.section {
  padding: 90px 24px;
}
.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title em {
  color: var(--primary);
  font-style: normal;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 600px;
}
.section-header {
  margin-bottom: 56px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-sub {
  margin: 0 auto;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before {
  opacity: 1;
}
.sc-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.sc-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.sc-desc {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sc-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--gray-50);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 80px;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.tc-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
}
.tc-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
}
.tc-name {
  font-weight: 700;
  font-size: 14px;
}
.tc-role {
  font-size: 12px;
  color: var(--gray-400);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--primary);
}
.faq-q span {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-a {
  display: none;
  padding-bottom: 20px;
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open .faq-q span {
  transform: rotate(45deg);
}
.faq-item.open .faq-a {
  display: block;
}

/* CONTACT FORM */
.contact-section {
  background: var(--navy);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-box {
  color: white;
}
.contact-info-box h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-info-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.cd-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 164, 238, 0.15);
  border: 1px solid rgba(0, 164, 238, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.cd-text strong {
  display: block;
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cd-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.contact-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  font-family: "Inter", sans-serif;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* SERVICE PAGE HERO */
.page-hero {
  background: var(--gradient-hero);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin-bottom: 20px;
}
.breadcrumb span {
  color: var(--primary);
}

/* SUB SERVICES */
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.sub-service-chip {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  cursor: pointer;
}
.sub-service-chip:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  background: var(--primary-light);
}
.ss-icon {
  font-size: 20px;
}
.ss-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* PACKAGES */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.package-card {
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.package-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.pkg-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.pkg-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.pkg-price small {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-400);
}
.pkg-desc {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pkg-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.pkg-feature::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* PORTFOLIO */
.portfolio-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.portfolio-tab {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  transition: all 0.2s;
}
.portfolio-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: white;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.portfolio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.portfolio-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.portfolio-info {
  padding: 20px;
}
.portfolio-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.portfolio-info p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.portfolio-stats {
  display: flex;
  gap: 16px;
}
.ps {
  font-size: 12px;
  color: var(--gray-600);
}
.ps strong {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  display: block;
}

/* BLOG */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-body {
  padding: 24px;
}
.blog-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.blog-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-400);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-box {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-stat-cards {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.asc {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}
.asc strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}
.asc span {
  font-size: 11px;
  color: var(--gray-600);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.value-card {
  background: var(--primary-light);
  border-radius: 10px;
  padding: 16px;
}
.value-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.value-desc {
  font-size: 13px;
  color: var(--gray-600);
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
}
.team-avatar {
  width: 100px;
  height: 100px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  font-weight: 800;
  margin: 0 auto 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.team-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
}
.stats-section{
    position:relative;
    padding:90px 7%;
    overflow:hidden;
    background:linear-gradient(
        135deg,
        #0f52ba 0%,
        #1368e8 50%,
        #0f52ba 100%
    );
}

.stats-bg-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    filter:blur(50px);
}

.shape1{
    width:300px;
    height:300px;
    top:-120px;
    left:-120px;
    animation:moveShape 12s infinite alternate;
}

.shape2{
    width:250px;
    height:250px;
    bottom:-100px;
    right:-100px;
    animation:moveShape 10s infinite alternate;
}

.stats-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

.stat-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:24px;
    padding:40px 20px;
    text-align:center;
    transition:.4s ease;
}

.stat-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,.12);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.stat-number{
    font-size:54px;
    font-weight:800;
    color:#fff;
    line-height:1;
    margin-bottom:20px;
}

.stat-line{
    width:60px;
    height:4px;
    background:#fff;
    margin:auto;
    margin-bottom:20px;
    border-radius:50px;
}

.stat-card p{
    color:rgba(255,255,255,.9);
    font-size:16px;
    margin:0;
}

@keyframes moveShape{
    from{
        transform:translate(0,0) scale(1);
    }
    to{
        transform:translate(80px,50px) scale(1.3);
    }
}

@media(max-width:991px){

    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }

    .stat-number{
        font-size:42px;
    }
}

@media(max-width:576px){

    .stats-container{
        grid-template-columns:1fr;
    }

    .stat-number{
        font-size:38px;
    }
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary-mid) 100%
  );
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ps-num {
  width: 56px;
  height: 56px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 18px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(0, 164, 238, 0.4);
}
.ps-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.ps-desc {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* FLOATING BUTTONS */
.float-buttons {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: none;
  transition: transform 0.2s;
  text-decoration: none;
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-wa {
  background: #25d366;
  color: white;
}
.float-call {
  background: var(--gradient-main);
  color: white;
}

/* POPUP */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.show {
  display: flex;
}
.popup-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
}
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-100);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-box h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.popup-box p {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 24px;
}

/* FOOTER */
.footer {
  background: var(--navy);
  color: white;
}
.footer-main {
  padding: 70px 24px 40px;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.social-icon:hover {
  background: var(--primary);
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  color: white;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col a:hover {
  color: var(--primary);
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
}
.footer-contact-item span:first-child {
  font-size: 16px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
}
.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* CTA BANNER */
.cta-banner {
  background: var(--gradient-main);
  padding: 70px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin-bottom: 28px;
}
.cta-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .process-steps::before {
    display: none;
  }
  .stats-banner-inner {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .stats-banner-inner {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .stats-banner-inner {
    grid-template-columns: 1fr 1fr;
  }
  .header-ctas .btn:not(.btn-primary) {
    display: none;
  }
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 998;
  padding: 100px 24px 40px;
  overflow-y: auto;
}
.mobile-nav.open {
  display: block;
}
.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav-link {
  display: block;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  cursor: pointer;
}
.mobile-subnav {
  padding: 0 0 16px 16px;
}
.mobile-subnav a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding: 6px 0;
  cursor: pointer;
}
.mobile-subnav a:hover {
  color: var(--primary);
}

.bg-gray {
  background: var(--gray-50);
}
.text-center {
  text-align: center;
}
.mt-8 {
  margin-top: 32px;
}
.mb-0 {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .nav {
    display: none !important;
  }

  .header-ctas {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }
}
.industries-section{
    padding:100px 7%;
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.section-header{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.section-tag{
    display:inline-block;
    color:#0f52ba;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.section-header h2{
    font-size:56px;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.section-header h2 span{
    color:#0f52ba;
    position:relative;
}

.section-header h2 span::after{
    content:'';
    position:absolute;
    left:0;
    bottom:6px;
    width:100%;
    height:12px;
    background:rgba(15,82,186,.15);
    z-index:-1;
}

.section-header p{
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.industries-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.industry-card{
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:.5s ease;
    border:1px solid rgba(15,82,186,.08);
}

.industry-card::before{
    content:'';
    position:absolute;
    width:0;
    height:0;
    background:linear-gradient(135deg,#0f52ba,#4f88ff);
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    transition:.7s;
    z-index:0;
}

.industry-card:hover::before{
    width:600px;
    height:600px;
}

.industry-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(15,82,186,.20);
}

.industry-card *{
    position:relative;
    z-index:2;
}

.industry-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:20px;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    transition:.5s;
}

.industry-card h3{
    font-size:22px;
    margin-bottom:12px;
    color:#111;
    transition:.4s;
}

.industry-card p{
    color:#666;
    line-height:1.7;
    transition:.4s;
}

.industry-card:hover h3,
.industry-card:hover p{
    color:#fff;
}

.industry-card:hover .industry-icon{
    background:#fff;
    transform:scale(1.12) rotate(8deg);
}

.industries-grid .industry-card:nth-child(odd){
    animation:float 5s ease-in-out infinite;
}

.industries-grid .industry-card:nth-child(even){
    animation:float 6s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

@media(max-width:1200px){
    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .section-header h2{
        font-size:38px;
    }

    .industries-grid{
        grid-template-columns:1fr;
    }
}
.why-section{
    position:relative;
    background:#020f2b;
    overflow:hidden;
}

.why-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:#0f52ba;
    opacity:.12;
    border-radius:50%;
    filter:blur(100px);
    top:-200px;
    left:-150px;
}

.why-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#0f52ba;
    opacity:.08;
    border-radius:50%;
    filter:blur(120px);
    right:-150px;
    bottom:-150px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    position:relative;
    z-index:2;
}

.why-card{
    position:relative;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(15,82,186,.25);
    border-radius:24px;
    padding:35px 28px;
    transition:.4s ease;
    overflow:hidden;
    backdrop-filter:blur(20px);
}

.why-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(15,82,186,.15),
        transparent
    );
    opacity:0;
    transition:.4s;
}

.why-card:hover::before{
    opacity:1;
}

.why-card:hover{
    transform:translateY(-12px);
    border-color:#0f52ba;
    box-shadow:
        0 20px 40px rgba(15,82,186,.25);
}

.why-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(
        135deg,
        #0f52ba,
        #2d7cff
    );
    font-size:30px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(15,82,186,.35);
}

.why-card h3{
    font-size:22px;
    color:#fff;
    margin-bottom:15px;
    font-weight:700;
}

.why-card p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    font-size:15px;
}

.why-card:hover .why-icon{
    transform:scale(1.08) rotate(5deg);
}

.why-icon{
    transition:.4s;
}

/* Premium Heading */

.why-section .section-title{
    color:#fff;
}

.why-section .section-title i{
    color:#fff;
    font-weight:300;
}

.why-section .section-sub{
    color:rgba(255,255,255,.75) !important;
}

.why-section .section-label{
    color:#0f8fff;
}

/* Responsive */

@media(max-width:1200px){
    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .why-grid{
        grid-template-columns:1fr;
    }

    .why-card{
        padding:30px 24px;
    }
}