.portfolio-section,
body {
  background: #fff;
  font-family: Outfit, sans-serif;
}
.blog-grid img,
.project-card img,
.project-grid img,
.service-card .icon-img img {
  object-fit: cover;
  object-fit: cover;
}
.brand-heading,
.section-heading span {
  text-transform: uppercase;
  text-transform: uppercase;
}
.glow,
.orbit-ring {
  pointer-events: none;
}
.cta-btn,
.footer-bottom-links a,
.footer-bottom-links span,
.footer-social a,
.footer-widget ul li a,
.hero-buttons a,
.service-card a:hover,
.social-icons a,
.whatsapp-chat,
a {
  text-decoration: none;
}
:root {
  --orange: #ff4b12;
  --orange2: #ff7a00;
  --dark: #061020;
  --navy: #071426;
  --text: #0d1730;
  --muted: #596275;
  --purple: #6d2cff;
  --blue: #1558ff;
  --green: #10b65b;
  --shadow: 0 12px 35px rgba(7, 20, 38, 0.1);
  --border: #e7ebf3;
}
html {
  scroll-behavior: smooth;
}
body {
  color: var(--text);
  line-height: 1.5;
  font-size: 15px;
  min-height: 100vh;
  color: var(--dark);
  margin: 0;
}
.footer-widget ul,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-card .icon-img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.55s;
  animation: 3.2s ease-in-out infinite imageFloat;
}
.section-padding {
  overflow: hidden;
}
.section-heading span {
  letter-spacing: 1.5px;
  animation: 0.8s forwards fadeDown;
}
.service-card {
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  opacity: 0;
  transform: translateY(45px) scale(0.96);
  animation: 0.8s forwards cardReveal;
}
.project-card:first-child,
.service-card:first-child {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3),
.testimonial-section .section-heading h2 {
  animation-delay: 0.3s;
}
.project-card:nth-child(3),
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}
.service-card:nth-child(7) {
  animation-delay: 0.7s;
}
.service-card:nth-child(8) {
  animation-delay: 0.8s;
}
.service-card::before {
  content: "";
  opacity: 0;
  transition: 0.45s;
}
.brand-logo-card:hover::before,
.service-card:hover::before {
  opacity: 1;
}
.service-card .icon-img {
  width: 100%;
  height: 170px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff4ec;
  margin-bottom: 18px;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 55px rgba(255, 107, 0, 0.18);
  border-color: rgba(255, 107, 0, 0.25);
}
.service-card:hover .icon-img img {
  transform: scale(1.08) rotate(1deg);
}
.service-card:hover a {
  color: #111827;
}
.service-card:hover a i {
  transform: translateX(6px);
}
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(45px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.portfolio-section {
  overflow: hidden;
}
.project-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.project-card {
  position: relative;
  border: 1px solid #e5edf5;
  box-shadow: 0 15px 40px rgba(7, 20, 38, 0.08);
  transform: translateY(40px);
  opacity: 0;
  animation: 0.8s forwards portfolioReveal;
  transition: 0.4s;
}
.project-card:nth-child(2) {
  animation-delay: 0.25s;
}
.project-card:nth-child(4) {
  animation-delay: 0.55s;
}
.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 107, 0, 0.12),
    transparent
  );
  transition: 0.6s;
  z-index: 2;
}
.project-card:hover::before,
.service-card:hover::after {
  left: 120%;
}
.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(7, 20, 38, 0.16);
  border-color: rgba(255, 107, 0, 0.35);
  animation-play-state: paused;
}
.project-card > div:first-child {
  background: #f4f7fb;
}
.project-card img {
  transition:
    transform 0.6s,
    filter 0.4s;
}
.project-card:hover img {
  transform: scale(1.12) rotate(1deg);
  filter: brightness(0.95) saturate(1.15);
}
.project-body {
  text-align: center;
  position: relative;
  z-index: 3;
}
.project-body h5 {
  color: #071426;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.project-card:hover .project-body h5 {
  color: #ff6b00;
}
.project-body span {
  margin-bottom: 16px;
  transition: 0.3s;
}
.project-card:hover .project-body span {
  color: #fff;
  background: #ff6b00;
}
.project-body strong {
  display: block;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 8px;
  transition: 0.35s;
}
.project-card:hover .project-body strong {
  transform: scale(1.12);
  text-shadow: 0 8px 25px rgba(255, 107, 0, 0.35);
}
.project-body p {
  font-weight: 600;
  margin: 0;
}
@keyframes portfolioReveal {
  0% {
    opacity: 0;
    transform: translateY(45px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 1199px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-card > div:first-child {
    height: 230px;
  }
}
@media (max-width: 767px) {
  .portfolio-section {
    padding: 65px 0;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .project-card > div:first-child {
    height: 220px;
  }
  .project-body {
    padding: 22px 18px 24px;
  }
  .project-body strong {
    font-size: 32px;
  }
}
.hero-section {
  position: relative;
  overflow: hidden;
}
.mini-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8d28ff;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px
}

.hero-section h1 {
    font-size: 34px;
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 22px
}

.hero-section h1 span {
    color: var(--orange)
}

.hero-text {
    max-width: 560px;
    color: #364056;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 28px
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.partner-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.partner-card {
    height: 58px;
    min-width: 132px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(9, 16, 35, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: 500;
    font-size: 16px
}

.partner-card span {
    font-size: 11px;
    color: #4c596d;
    font-weight: 500;
}

.google {
    color: #4285f4
}

.meta {
    color: #0d55ff
}

.ads {
    color: #202124
}

.rating {
    color: #f2a900
}

.rating span {
    color: #f2a900
}

/* Hero Visual */
.hero-visual {
    position: relative;
    min-height: 470px
}

.dashboard-card {
    position: absolute;
    right: 80px;
    top: 30px;
    width: 445px;
    height: 270px;
    background: #091124;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 28px 70px rgba(9, 17, 36, .35);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12)
}

.dash-top {
    display: flex;
    align-items: center;
    gap: 8px
}

.dash-top h5 {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    flex: 1
}

.dash-top span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #33405d
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 18px;
    margin-top: 18px
}

.graph-box,
.score-box {
    background: #111b33;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 18px
}

.graph-box p,
.score-box p {
    font-size: 18px;
    color: #a8b4d0;
    margin: 0
}

.graph-box h3 {
    font-size: 32px;
    font-weight: 500;
    margin: 6px 0
}

.graph-box small,
.score-box small {
    color: #24d986;
    font-weight: 800;
}

.line-chart {
    height: 105px;
    margin-top: 14px;
    background: linear-gradient(180deg, rgba(255, 77, 18, .3), transparent), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='110' viewBox='0 0 250 110'%3E%3Cpolyline points='0,90 22,76 40,82 62,50 85,62 105,38 130,54 155,24 180,42 205,18 232,50 250,24' fill='none' stroke='%23ff5a12' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center/cover no-repeat
}

.circle-score {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px auto 12px;
    font-size: 28px;
    font-weight: 500;
    border: 10px solid #202d50;
    background: conic-gradient(#ff5a12 0 85%, #2b3656 85% 100%)
}

.floating {
    position: absolute;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 16px 38px rgba(9, 17, 36, .14);
    z-index: 4
}

.seo-card {
    right: 5px;
    top: 122px;
    width: 150px;
    height: 82px;
    padding: 16px
}

.seo-card strong {
    display: block;
    font-size: 16px
}

.seo-card span {
    color: #13a553;
    font-weight: 500;
}

.seo-card i {
    position: absolute;
    right: 16px;
    bottom: 14px;
    color: #16bd69;
    font-size: 25px
}

.mini-card {
    width: 150px;
    height: 95px;
    padding: 15px
}

.mini-card span {
    display: block;
    color: #667085;
    font-size: 18px
}

.mini-card strong {
    display: block;
    font-size: 21px;
    margin: 4px 0
}

.mini-card small {
    color: #0bad55;
    font-weight: 500;
}

.one {
    left: 12px;
    bottom: 85px
}

.two {
    left: 180px;
    bottom: 60px
}

.three {
    right: 90px;
    bottom: 80px
}

.social-bubble {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
    z-index: 5
}

.insta {
    left: -21px;
    top: 86px;
    background: linear-gradient(135deg, #ff7a00, #e1306c, #6d2cff)
}

.fb {
    left: -20px;
    top: 180px;
    background: #1877f2
}

.yt {
    left: -23px;
    top: 240px;
    background: #ff0000;
}

.in {
    right: 215px;
    top: 0;
    background: #0a66c2
}

.plant-shape {
    position: absolute;
    right: 0;
    bottom: 85px;
    width: 118px;
    height: 150px;
    border-radius: 65px 65px 22px 22px;
    background: radial-gradient(circle, #a855f7, transparent 70%);
    opacity: .25
}

/* COMMON SECTION */
.section-padding,
.pricing-section,
.process-section,
.portfolio-section,
.testimonial-section,
.blog-section {
    padding: 20px 0
}

.section-heading {
    margin-bottom: 34px
}

.section-heading span {
    display: block;
    color: #8b28ff;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.section-heading h2 {
    font-size: 30px;
    font-weight: 500;
    margin: 4px 0 0
}

.section-heading p {
    color: #657084;
    margin: 5px 0 0
}

/* SERVICES */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 18px 22px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(9, 16, 35, .06);
    transition: .3s;
    min-height: 285px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(9, 16, 35, .12);
}

.service-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 27px;
    flex-shrink: 0;
}

.service-card {
  padding: 22px 18px 20px;
  min-height: 265px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card h5,
.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  font-size: 18px;
  color: #566175;
  min-height: 62px;
  margin-bottom: 8px;
  line-height: 1.35;
}

.service-card a {
  font-size: 18px;
  font-weight: 500;
  color: #5c28d7;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-section h1 {
  letter-spacing: -1px;
}
.growth li::before,
.hero-section h1 span {
  color: var(--orange);
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.partner-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.partner-card {
  min-width: 132px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(9, 16, 35, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.google,
.partner-card.google::first-letter {
  color: #4285f4;
}
.meta {
  color: #0d55ff;
}
.ads {
  color: #202124;
}
.rating,
.rating span {
  color: #f2a900;
}
.hero-visual {
  position: relative;
  min-height: 470px;
}
.dashboard-card {
  position: absolute;
  right: 80px;
  top: 30px;
  width: 445px;
  height: 270px;
  background: #091124;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 28px 70px rgba(9, 17, 36, 0.35);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.dash-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dash-top h5 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  flex: 1;
}
.dash-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #33405d;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.graph-box,
.score-box {
  background: #111b33;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px;
}
.graph-box p,
.score-box p {
  color: #a8b4d0;
  margin: 0;
}
.graph-box h3 {
  margin: 6px 0;
}
.graph-box small,
.score-box small {
  color: #24d986;
  font-weight: 800;
}
.line-chart {
  height: 105px;
  margin-top: 14px;
  background:
    linear-gradient(180deg, rgba(255, 77, 18, 0.3), transparent),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='110' viewBox='0 0 250 110'%3E%3Cpolyline points='0,90 22,76 40,82 62,50 85,62 105,38 130,54 155,24 180,42 205,18 232,50 250,24' fill='none' stroke='%23ff5a12' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E")
      center/cover no-repeat;
}
.circle-score {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 12px;
  font-size: 28px;
  font-weight: 500;
  border: 10px solid #202d50;
  background: conic-gradient(#ff5a12 0 85%, #2b3656 85% 100%);
}
.floating {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(9, 17, 36, 0.14);
  z-index: 4;
}
.seo-card {
  right: 5px;
  top: 122px;
  width: 150px;
  height: 82px;
  padding: 16px;
}
.seo-card strong,
.vcrds .icon-box small,
.vcrds .icon-box strong {
  display: block;
}
.seo-card span {
  color: #13a553;
  font-weight: 500;
}
.seo-card i {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: #16bd69;
  font-size: 25px;
}
.mini-card {
  width: 150px;
  height: 95px;
  padding: 15px;
}
.mini-card span {
  display: block;
  color: #667085;
  font-size: 18px;
}
.mini-card strong {
  display: block;
  font-size: 21px;
  margin: 4px 0;
}
.mini-card small {
  color: #0bad55;
  font-weight: 500;
}
.one {
  left: 12px;
  bottom: 85px;
}
.two {
  left: 180px;
  bottom: 60px;
}
.three {
  right: 90px;
  bottom: 80px;
}
.social-bubble {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  z-index: 5;
}
.insta {
  left: -22px;
  top: 86px;
  background: linear-gradient(135deg, #ff7a00, #e1306c, #6d2cff);
}
.fb {
  left: -22px;
  top: 180px;
  background: #1877f2;
}
.yt {
  left: -22px;
  top: 240px;
  background: red;
}
.in {
  right: 215px;
  top: 0;
  background: #0a66c2;
}
.plant-shape {
  position: absolute;
  right: 0;
  bottom: 85px;
  width: 118px;
  height: 150px;
  border-radius: 65px 65px 22px 22px;
  background: radial-gradient(circle, #a855f7, transparent 70%);
  opacity: 0.25;
}
.blog-section,
.portfolio-section,
.pricing-section,
.process-section,
.section-padding,
.testimonial-section {
  padding: 20px 0;
}
.section-heading span {
  letter-spacing: 0.5px;
}
.project-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(9, 16, 35, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  box-shadow: 0 18px 45px rgba(9, 16, 35, 0.12);
}
.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 27px;
  flex-shrink: 0;
}
.price-card,
.toggle-box {
  border: 1px solid var(--border);
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-widget ul li,
.service-card h3,
.service-card h5 {
  margin-bottom: 8px;
}
.service-card p {
  min-height: 62px;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.green {
  background: #21ba45;
}
.purple {
  background: #8b2cff;
}
.orange {
  background: #ff5a12;
}
.blue {
  background: #1558ff;
}
.pink {
  background: #e044b8;
}
.yellow {
  background: #f5a400;
}
.cyan {
  background: #18b9bf;
}
.ads-icon {
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
}
@media (max-width: 991px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    min-height: 270px;
  }
  .service-card p {
    min-height: 80px;
  }
}
@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card,
  .service-card p {
    min-height: auto;
  }
}
.toggle-box {
  width: max-content;
  margin: 0 auto 30px;
}
.toggle-box button {
  border: 0;
  background: 0 0;
}
.toggle-box button:first-child {
  background: var(--orange);
  color: #fff;
}
.price-card {
  position: relative;
  background: #fff;
  box-shadow: var(--shadow);
}
.price-card label {
  background: var(--orange);
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}
.price-card h4 {
  font-weight: 500;
}
.price-card p {
  color: #667085;
}
.price-card h3,
.score-box .circle-score {
  font-size: 34px;
  font-weight: 500;
}
.price-card h3 span {
  font-size: 18px;
  color: #525d72;
}
.price-card li {
  font-size: 18px;
  color: #303b52;
  position: relative;
  padding-left: 23px;
}
.price-card li::before {
  content: "\F26A";
  font-family: bootstrap-icons;
  position: absolute;
  left: 0;
  color: #14b763;
}
.business li::before {
  color: var(--blue);
}
.scale li::before {
  color: #8b2cff;
}
.price-btn {
  display: block;
  border: 2px solid #25b95a;
  color: #13a553;
  font-weight: 500;
  border-radius: 8px;
}
.filled,
.pricing-card.enterprise ul li,
.social-icons a.youtube i,
.social-platforms a.youtube i {
  color: #fff !important;
}
.filled {
  background: var(--orange);
  border-color: var(--orange);
}
.blue-btn {
  border-color: #1d5dff;
  color: #1456ff;
}
.purple-btn {
  border-color: #8b2cff;
  color: #7a20f3;
}
.stats-bar {
  background: linear-gradient(90deg, #d824ff, #1322d9, #300070);
  padding: 26px 0;
}
.stats-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  color: #fff;
}
.stats-wrap div {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.stats-wrap i {
  font-size: 38px;
}
.stats-wrap h3 {
  font-size: 30px;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
.stats-wrap p {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}
.process-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.process-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 23px;
}
.blog-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.blog-grid img,
.project-grid img {
  width: 303px;
  height: 260px;
  border-radius: 12px;
  display: block;
}
@media (max-width: 1200px) {
  .blog-grid,
  .project-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .blog-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media (max-width: 575px) {
  .blog-grid,
  .project-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .blog-card,
  .blog-grid img,
  .project-card,
  .project-grid img {
    width: 100%;
    max-width: 303px;
  }
  .blog-grid img,
  .project-grid img {
    height: 260px;
  }
}
.blog-card,
.project-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(9, 16, 35, 0.07);
}
.blog-img,
.project-img {
  height: 155px;
  background: #eef3fb;
  position: relative;
}
.blog-img::after,
.project-img::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 13px;
  background: linear-gradient(135deg, #fff, #dce8ff);
  box-shadow: 0 8px 20px rgba(9, 16, 35, 0.12);
}
.p1 {
  background: linear-gradient(135deg, #dff8ec, #eef5ff);
}
.p2 {
  background: linear-gradient(135deg, #eef2ff, #e5f9f0);
}
.p3 {
  background: linear-gradient(135deg, #eaf0ff, #f0f4ff);
}
.p4 {
  background: linear-gradient(135deg, #111827, #4b351b);
}
.project-body {
  padding: 14px;
}
.blog-card h5,
.project-body h5 {
  font-size: 17px;
  font-weight: 500;
}
.project-body span {
  display: inline-block;
  background: #eef2ff;
  color: #6536e9;
  border: 1px solid #d8dfff;
  border-radius: 6px;
  padding: 5px 8px;
  font-size: 18px;
  font-weight: 500;
}
.project-body strong {
  float: right;
  color: #13ad5c;
  font-size: 22px;
}
.project-body p {
  font-size: 18px;
  color: #607086;
  margin-top: 10px;
}
.testimonial-card {
  border: 1px solid var(--border);
}
.stars {
  color: #ffb800;
  font-size: 17px;
  margin-bottom: 10px;
}
.testimonial-card h6 {
  margin: 0;
}
.b1 {
  background: linear-gradient(135deg, #08152b, #1d5dff);
}
.b2 {
  background: linear-gradient(135deg, #edf2ff, #ffeff7);
}
.b3 {
  background: linear-gradient(135deg, #0d1c38, #1770ff);
}
.b4 {
  background: linear-gradient(135deg, #dff4ff, #fff1d4);
}
.brand-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #161b2d;
  font-size: 22px;
  font-weight: 500;
  opacity: 0.75;
  flex-wrap: wrap;
}
.cta-box {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-box h2,
.floating strong,
.graph-box h3 {
  font-size: 30px;
  font-weight: 500;
}
.cta-box p {
  color: #eef1ff;
}
.cta-social h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}
.cta-social span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 4px;
  background: #fff;
  color: #1530b4;
  font-size: 20px;
}
.footer {
  background: #071220;
  color: #dce6f8;
  padding: 55px 0 20px;
}
.footer-logo {
  width: 170px;
  filter: brightness(1.2);
}
.footer p {
  color: #bcc7d9;
  font-size: 14px;
}
.footer h5,
.footer-widget h4 {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 18px;
}
.footer li {
  color: #cbd4e4;
  font-size: 18px;
  margin-bottom: 8px;
}
.contact-list i {
  color: var(--orange);
  margin-right: 9px;
}
.footer input {
  width: 100%;
  height: 45px;
  border: 0;
  border-radius: 7px;
  padding: 0 14px;
  margin-bottom: 12px;
}
.footer button {
  border: 0;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  padding: 11px 18px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #16355c;
  margin-right: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mini-title,
.whatsapp-btn {
  align-items: center;
  font-weight: 500;
}
.footer-bottom a {
  color: #cbd4e4;
  margin-left: 22px;
  font-size: 13px;
}
.whatsapp-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  background: #24d366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 14px;
  display: flex;
  gap: 8px;
  box-shadow: 0 12px 30px rgba(36, 211, 102, 0.35);
}
.hero-section,
.partner-card {
  background: #fff;
  font-family: Outfit, sans-serif;
}
.whatsapp-btn i {
  font-size: 28px;
}
.whatsapp-btn span {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .navbar-nav {
    gap: 14px;
  }
  .nav-link {
    font-size: 13px;
  }
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .dashboard-card {
    right: 20px;
  }
  .hero-section h1 {
    font-size: 50px;
  }
}
.social-icons a.youtube,
.social-platforms a.youtube {
  background: red !important;
  color: #fff !important;
  border: 3px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 22px rgba(255, 0, 0, 0.35);
}
@media (max-width: 991px) {
  .cta-box,
  .hero-section {
    text-align: center;
  }
  .navbar-collapse {
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    margin-top: 12px;
    box-shadow: var(--shadow);
  }
  .nav-link {
    padding: 10px 0 !important;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons,
  .partner-row {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 20px;
  }
  .dashboard-card {
    position: relative;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: 0;
  }
  .floating,
  .plant-shape,
  .process-arrow,
  .social-bubble {
    display: none;
  }
  .blog-grid,
  .project-grid,
  .service-grid,
  .stats-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-item {
    max-width: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 15px;
  }
  .process-item h5,
  .process-item p {
    margin: 0;
  }
  .cta-box {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .brand-logo {
    width: 145px;
  }
  .hero-section {
    padding: 42px 0;
  }
  .hero-section h1 {
    font-size: 38px;
  }
  .dashboard-card {
    width: 100%;
    height: auto;
  }
  .blog-grid,
  .dashboard-grid,
  .project-grid,
  .service-grid,
  .stats-wrap {
    grid-template-columns: 1fr;
  }
  .stats-wrap div {
    justify-content: flex-start;
  }
  .section-heading h2 {
    font-size: 25px;
  }
  .cta-box {
    padding: 26px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom a {
    display: block;
    margin: 10px 0;
  }
  .partner-card {
    width: 100%;
  }
}
.hero-section {
  padding: 122px 0 0;
}
.mini-title {
  font-size: 16px;
  color: #7b2cff;
  display: inline-flex;
  gap: 6px;
  margin-bottom: 20px;
}
.hero-buttons,
.partner-row {
  display: flex;
  align-items: center;
}
.hero-section h1 {
  font-size: 34px;
  line-height: 1.12;
  font-weight: 500;
  color: #101828;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-section h1 span {
  color: #ff4d12;
}
.hero-text {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  color: #4b5563;
  max-width: 620px;
  margin-bottom: 32px;
}
.btn-light-custom,
.btn-orange,
.dashboard-card h5 {
  font-size: 16px;
  font-weight: 500;
}
.hero-buttons {
  margin-bottom: 40px;
}
.btn-light-custom,
.btn-orange {
  padding: 16px 28px;
  border-radius: 8px;
}
.floating span,
.graph-box p,
.score-box p {
  font-size: 18px;
  font-weight: 500;
}
.seo-card strong {
  font-size: 20px;
}
.seo-card span {
  font-size: 16px;
}
.partner-card,
.partner-card span {
  line-height: 1.1;
  font-size: 18px;
  font-weight: 500;
}
.partner-row {
  gap: 14px;
  flex-wrap: wrap;
}
.partner-card,
.partner-row {
  align-items: center;
  display: flex;
}
.partner-card {
  width: 150px;
  height: 66px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  justify-content: center;
  flex-direction: column;
  color: #111827;
  text-align: center;
  letter-spacing: 0;
}
.partner-card span {
  display: block;
  margin-top: 5px;
  color: #344054;
}
.partner-card.google {
  font-size: 18px;
  font-weight: 500;
  color: #4285f4;
}
.partner-card.ads,
.partner-card.meta {
  font-size: 18px;
  color: #111827;
}
.partner-card.meta i {
  font-size: 25px;
  color: #0866ff;
  margin-bottom: 2px;
}
.partner-card.meta span {
  color: #155eef;
}
.partner-card.ads i {
  font-size: 22px;
  color: #4285f4;
  margin-bottom: 2px;
}
.partner-card.rating {
  color: #f90;
  font-size: 16px;
  font-weight: 500;
}
.partner-card.rating span {
  color: #ffb000;
  font-size: 17px;
  letter-spacing: 2px;
  margin-top: 6px;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  transition: 0.3s;
}
@media (max-width: 576px) {
  .hero-text,
  .mini-title,
  .partner-card {
    font-size: 18px;
  }
  .hero-section h1 {
    font-size: 34px;
    line-height: 1.18;
  }
  .hero-text {
    line-height: 1.7;
  }
  .btn-light-custom,
  .btn-orange {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
  }
  .partner-row {
    justify-content: center;
    gap: 12px;
  }
  .partner-card {
    width: 46%;
    min-width: 140px;
    height: 68px;
  }
}
.partner-row {
  justify-content: flex-start;
  margin-top: 35px;
}
.partner-row img {
  width: 100%;
  max-width: 980px;
  height: auto;
  display: block;
  object-fit: contain;
}
.project-img {
  width: 303px;
  height: 260px;
  overflow: hidden;
  border-radius: 16px;
}
.cta-box,
.cta-btn {
  border-radius: 25px;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.brand-strip {
  margin: 50px auto 0;
  text-align: center;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  gap: 28px;
}
.brand-heading {
  letter-spacing: 0.6px;
  margin-top: 20px;
}
.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-box,
.cta-illustration {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.brand-logo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 1;
}
@media (max-width: 991px) {
  .brand-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.cta-illustration {
  width: 260px;
  height: 140px;
  margin: 0 auto;
  justify-content: center;
}
.cta-illustration img,
.cta-image img,
.icon-img img,
.orbit-icon img,
.orbit-icon.vcrds .icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.cta-box {
  min-height: 150px;
  background: linear-gradient(100deg, #071226 0, #311073 45%, #071226 100%);
  padding: 7px 27px;
  justify-content: space-between;
  gap: 25px;
}
.cta-btn,
.newsletter-form button {
  background: #ff5a1f;
  font-weight: 500;
}
.cta-content {
  width: 38%;
}
.cta-content h2 {
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.cta-btn,
.cta-content p {
  font-size: 18px;
}
.cta-content p,
.cta-social h4 {
  margin-bottom: 16px;
  color: #fff;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  padding: 12px 24px;
}
.cta-btn:hover {
  background: #ff6b35;
  color: #fff;
}
.cta-image {
  width: 230px;
  height: 120px;
  flex-shrink: 0;
}
.cta-social {
  width: 40%;
  text-align: center;
}
.cta-social h4 {
  font-size: 16px;
  font-weight: 500;
}
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: wrap;
}
.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.facebook .icon-box,
.footer-social a:first-child,
.social-icons a:first-child {
  background: #1877f2;
}
.footer-social a:nth-child(2),
.social-icons a:nth-child(2) {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}
.footer-social a:nth-child(3),
.linkedin .icon-box,
.social-icons a:nth-child(3) {
  background: #0a66c2;
}
.social-icons a:nth-child(4) {
  background: #1da1f2;
}
.footer-social a:nth-child(5),
.social-icons a:nth-child(5),
.youtube .icon-box {
  background: red;
}
.social-icons a:nth-child(6) {
  background: #e60023;
}
.social-icons a:nth-child(7) {
  background: #fffc00;
  color: #111;
}
.footer-social a:nth-child(4),
.social-icons a:nth-child(8) {
  background: #111;
}
@media (max-width: 991px) {
  .hero-section {
    padding: 70px 0 60px;
    text-align: center;
  }
  .hero-section h1 {
    font-size: 34px;
  }
  .hero-text {
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }
  .cta-content,
  .cta-social {
    width: 100%;
  }
  .cta-content h2 {
    font-size: 26px;
  }
  .cta-image {
    width: 240px;
    height: 125px;
  }
}
.footer-logo,
.footer-social {
  display: flex;
  align-items: center;
}
.footer-section {
  background: #071120;
  padding: 45px 0 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.06),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.05),
      transparent 30%
    );
  pointer-events: none;
}
.footer-section .container,
.pricing-card .choose-btn,
.pricing-card button,
.pricing-card h2,
.pricing-card h3,
.pricing-card li,
.pricing-card p,
.pricing-card ul,
.service-card .icon-img,
.service-card a,
.service-card h5,
.service-card p {
  position: relative;
  z-index: 2;
}
.footer-logo {
  gap: 12px;
  margin-bottom: 20px;
}
.logo-icon {
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  letter-spacing: -5px;
  position: relative;
}
.logo-icon::first-letter,
.pricing-card h3 {
  color: #fff;
}
.footer-logo h3 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.footer-logo p {
  font-size: 18px;
  color: #cfd6e2;
  margin: 0;
}
.footer-about {
  font-size: 18px;
  line-height: 1.7;
  color: #d4d8df;
  max-width: 260px;
  margin-bottom: 22px;
}
.footer-social {
  gap: 14px;
}
.footer-bottom,
.footer-social a {
  align-items: center;
  display: flex;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  justify-content: center;
  color: #fff;
  font-size: 17px;
}
.footer-widget ul li a {
  color: #d5d9e0;
  font-size: 18px;
  transition: 0.3s;
}
.footer-widget ul li a:hover {
  color: #ff5a1f;
  padding-left: 4px;
}
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d5d9e0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 11px;
}
.footer-contact i {
  color: #ff5a1f;
  font-size: 17px;
  margin-top: 2px;
}
.newsletter-text {
  font-size: 18px;
  line-height: 1.7;
  color: #d5d9e0;
  margin-bottom: 15px;
}
.newsletter-form input {
  width: 100%;
  height: 46px;
  border-radius: 6px;
  border: none;
  outline: 0;
  padding: 0 15px;
  font-size: 18px;
  margin-bottom: 14px;
}
.newsletter-form button {
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 26px;
  font-size: 18px;
  transition: 0.3s;
}
.newsletter-form button:hover {
  background: #ff743d;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  padding-top: 16px;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom p {
  font-size: 13px;
  color: #cfd6e2;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-bottom-links a,
.footer-bottom-links span {
  font-size: 13px;
  color: #cfd6e2;
}
.footer-bottom-links a:hover {
  color: #ff5a1f;
}
.whatsapp-chat {
  position: absolute;
  right: 20px;
  bottom: 18px;
  background: #20242b;
  color: #fff;
  padding: 7px 14px 7px 7px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}
.whatsapp-chat i {
  width: 34px;
  height: 34px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
}
@media (max-width: 575px) {
  .cta-section {
    padding: 35px 0;
  }
  .cta-box {
    padding: 28px 18px;
    gap: 20px;
  }
  .cta-content h2 {
    font-size: 23px;
  }
  .cta-content p,
  .cta-social h4 {
    font-size: 18px;
  }
  .cta-btn {
    padding: 11px 20px;
    font-size: 13px;
  }
  .cta-image {
    width: 210px;
    height: 110px;
  }
  .social-icons {
    gap: 10px;
  }
  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
  .footer-widget h4 {
    margin-top: 10px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-logo h3 {
    font-size: 22px;
  }
  .footer-about {
    max-width: 100%;
  }
}
.price-card,
.pricing-card {
  width: 100%;
  min-height: 540px;
  padding: 34px 32px 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
}
.popular-badge,
.price-card label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 14px 28px;
  border-radius: 0 18px;
}
.price-card h4,
.pricing-card h3 {
  margin-bottom: 12px;
}
.plan-subtitle,
.price-card p {
  margin-bottom: 24px;
}
.price-card h3,
.pricing-card h2 {
  margin: 0 0 26px;
}
.price-card ul,
.pricing-card ul {
  margin: 0 0 28px;
  padding: 0;
}
.price-card li,
.pricing-card ul li {
  margin-bottom: 17px;
  line-height: 1.45;
}
.choose-btn,
.price-btn {
  margin-top: auto;
  width: 100%;
  padding: 15px 18px;
  text-align: center;
}
@media (max-width: 991px) {
  .footer-section {
    padding: 45px 0 22px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .whatsapp-chat {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 999;
  }
  
  .price-card,
  .pricing-card {
    min-height: 500px;
  }
    .pricing-row {
    grid-template-columns: repeat(2, 1fr) !important;
  
  }
}

.process-section {
  padding: 60px 0 35px;
}
.process-row {
  display: grid;
  grid-template-columns: 1fr 45px 1fr 45px 1fr 45px 1fr 45px 1fr;
  align-items: start;
  gap: 6px;
  margin-top: 38px;
}
.process-item {
  max-width: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 14px;
  align-items: start;
}
.process-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1/4;
  margin: 0;
}
.process-item strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 4px;
}
.process-item h5 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
}
.process-item p {
  font-size: 18px;
  color: #5f6878;
  line-height: 1.45;
  margin: 0;
}
.process-arrow {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1d273d;
  margin: 0;
}
.process-item h5,
.process-item p {
  margin-left: 0 !important;
}
@media (max-width: 991px) {
  .process-row {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }
  .process-arrow {
    display: none;
  }
  .process-item {
    grid-template-columns: 62px 1fr;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
  }
}
.testimonial-section .section-heading,
.testimonial-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}
.testimonial-section .section-heading span,
.testimonial-section .section-title span {
  display: block;
  margin-bottom: 8px;
}
.testimonial-section .section-heading h2,
.testimonial-section .section-title h2 {
  margin-bottom: 0;
}
.testimonial-section .row {
  row-gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  width: 100%;
  min-height: 230px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(9, 16, 35, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.testimonial-card .client-name,
.testimonial-card h6,
.testimonial-card strong {
  margin-top: auto;
  margin-bottom: 4px;
}
.testimonial-card small,
.testimonial-card span {
  display: block;
  margin-top: 0;
}
@media (max-width: 991px) {
  .testimonial-section {
    padding: 42px 0 50px;
  }
  .testimonial-card {
    min-height: 220px;
    padding: 30px 26px;
  }
}
@media (max-width: 576px) {
  .pricing-row {
    grid-template-columns: 1fr;
  }
  .price-card,
  .pricing-card {
    min-height: auto;
    padding: 28px 24px;
  }
  .process-section {
    padding: 35px 0 45px;
  }
  .process-item {
    grid-template-columns: 56px 1fr;
    column-gap: 12px;
    padding: 16px;
  }
  .process-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
  }
  .testimonial-section {
    padding: 35px 0 42px;
  }
  .testimonial-section .section-heading,
  .testimonial-section .section-title {
    margin-bottom: 28px;
  }
  .testimonial-card {
    min-height: auto;
    padding: 26px 22px;
  }
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}
.hero-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s;
}
.btn-orange {
  background: #ff5a14;
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 90, 20, 0.28);
}
.btn-orange:hover {
  background: #e94c0b;
  color: #fff;
  transform: translateY(-2px);
}
.btn-light-custom {
  background: #fff;
  color: #1f1f2e;
  border: 1px solid #dfe3ea;
  box-shadow: 0 6px 16px rgba(20, 30, 50, 0.08);
}
.btn-light-custom i,
.ob-logo b,
.orbit-content h1 span,
.pricing-card.growth ul li::before {
  color: #ff5a14;
}
.btn-light-custom:hover {
  color: #ff5a14;
  border-color: #ff5a14;
  transform: translateY(-2px);
}
@media (max-width: 575px) {
  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .brand-logo-card {
    height: 65px;
  }
  .brand-logo-card img {
    max-width: 120px;
    max-height: 48px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .hero-buttons a {
    width: 100%;
    height: 50px;
    font-size: 14px;
  }
}
img {
  height: auto;
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .hero-buttons,
  .mini-title {
    justify-content: center !important;
  }
  .hero-visual,
  .price-card,
  .pricing-card,
  .service-card,
  .service-card p {
    min-height: auto !important;
  }
  .cta-box,
  .footer-bottom,
  .hero-section {
    text-align: center !important;
  }
  .container {
    max-width: 100%;
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .navbar-collapse {
    background: #061226 !important;
    padding: 18px !important;
    border-radius: 14px !important;
    margin-top: 14px !important;
  }
  .nav-link,
  .navbar .nav-link {
    color: #fff !important;
    font-size: 15px !important;
    padding: 10px 0 !important;
  }
  .hero-section {
    padding: 55px 0 40px !important;
  }
  .mini-title {
    font-size: 14px !important;
  }
  .hero-section h1 {
    font-size: 36px !important;
    line-height: 1.18 !important;
    letter-spacing: -0.5px !important;
  }
  .hero-text {
    font-size: 16px !important;
    line-height: 1.6 !important;
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-buttons {
    flex-wrap: wrap !important;
  }
  .btn-light-custom,
  .btn-orange,
  .hero-buttons a {
    height: auto !important;
    padding: 13px 22px !important;
    font-size: 14px !important;
  }
  .hero-visual {
    margin-top: 28px !important;
  }
  .dashboard-card,
  .process-item {
    margin: 0 auto !important;
    width: 100% !important;
  }
  .dashboard-card {
    position: relative !important;
    max-width: 520px !important;
    height: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
  }
  .floating,
  .mini-card,
  .plant-shape,
  .process-arrow,
  .seo-card,
  .social-bubble {
    display: none !important;
  }
  .dashboard-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .partner-row {
    justify-content: center !important;
  }
  .partner-row img {
    max-width: 100% !important;
  }
  
  .service-card {
    padding: 24px 18px !important;
  }
  .service-card p {
    font-size: 15px !important;
  }
  .process-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .process-item {
    max-width: 620px !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    padding: 18px !important;
  }
  .process-item h5,
  .process-item p {
    margin-left: 0 !important;
  }
  .blog-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    justify-items: center !important;
  }
  .blog-card,
  .project-card {
    width: 100% !important;
    max-width: 303px !important;
  }
  .brand-strip {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .cta-box {
    flex-direction: column !important;
    padding: 30px 24px !important;
    gap: 22px !important;
  }
  .cta-content,
  .cta-social {
    width: 100% !important;
  }
  .cta-illustration,
  .cta-image {
    width: 240px !important;
    height: auto !important;
  }
  .footer-bottom {
    flex-direction: column !important;
  }
}
@media only screen and (max-width: 575px) {
  .cta-btn,
  .footer-bottom,
  .section-heading {
    text-align: center !important;
  }
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .hero-section {
    padding: 150px 0 30px !important;
  }
  .mini-title {
    font-size: 13px !important;
    margin-bottom: 14px !important;
  }
  .hero-section h1 {
    font-size: 30px !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }
  .hero-text,
  .partner-card {
    font-size: 14px !important;
  }
  .hero-text {
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
  }
  .hero-buttons {
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 20px !important;
    margin-bottom: 24px !important;
  }
  .btn-light-custom,
  .btn-orange,
  .hero-buttons a {
    width: 100% !important;
    height: auto !important;
    min-height: 48px !important;
    font-size: 14px !important;
    padding: 12px 18px !important;
  }
  .hero-visual,
  .process-arrow {
    display: none !important;
  }
  .partner-row,
  .pricing-row,
  .process-item,
  .process-row {
    /* display: grid !important; */
  }
  .partner-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .blog-grid,
  .project-grid,
  .service-grid,
  .stats-wrap {
    gap: 18px !important;
    grid-template-columns: 1fr !important;
  }
  .partner-card {
    width: 100% !important;
    min-width: 100% !important;
    height: 62px !important;
  }
  .partner-card span,
  .section-heading span {
    font-size: 12px !important;
  }
  .blog-card,
  .partner-row img,
  .project-card {
    width: 100% !important;
    max-width: 100% !important;
  }
  .blog-section,
  .cta-section,
  .portfolio-section,
  .pricing-section,
  .process-section,
  .section-padding,
  .testimonial-section {
    padding: 28px 0 !important;
  }
  .section-heading {
    margin-bottom: 24px !important;
  }
  .section-heading h2 {
    font-size: 24px !important;
    line-height: 1.25 !important;
  }
  .service-card {
    min-height: auto !important;
    padding: 22px 18px !important;
  }
  .service-card .icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 24px !important;
    margin-bottom: 14px !important;
  }
  .service-card h3,
  .service-card h5 {
    font-size: 17px !important;
  }
  .cta-box p,
  .cta-content p,
  .footer li,
  .footer-about,
  .footer-contact p,
  .footer-logo p,
  .footer-widget ul li a,
  .newsletter-form input,
  .newsletter-text,
  .price-card li,
  .service-card a,
  .service-card p {
    font-size: 14px !important;
  }
  .service-card p {
    line-height: 1.5 !important;
    min-height: auto !important;
  }
  .price-card,
  .pricing-card {
    min-height: auto !important;
    padding: 24px 20px !important;
  }
  .price-card h3 {
    font-size: 28px !important;
  }
  .stats-wrap div {
    justify-content: flex-start !important;
  }
  .process-section {
    padding: 30px 0 !important;
  }
  .process-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .process-item {
    grid-template-columns: 54px 1fr !important;
    column-gap: 12px !important;
    align-items: start !important;
    padding: 16px !important;
  }
  .process-icon {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    font-size: 22px !important;
    grid-row: 1/4 !important;
    margin: 0 !important;
  }
  .footer-logo h3,
  .process-item strong {
    font-size: 20px !important;
  }
  .process-item h5 {
    font-size: 16px !important;
    margin: 0 0 4px !important;
  }
  .process-item p {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
  }
  .blog-grid img,
  .project-grid img {
    width: 100% !important;
    height: 230px !important;
  }
  .brand-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
  .brand-logo-card {
    height: 60px !important;
  }
  .cta-box {
    padding: 24px 18px !important;
    border-radius: 16px !important;
  }
  .cta-box h2,
  .cta-content h2 {
    font-size: 23px !important;
    line-height: 1.3 !important;
  }
  .cta-btn {
    width: 100% !important;
    justify-content: center !important;
    font-size: 14px !important;
  }
  .cta-illustration,
  .cta-image {
    width: 210px !important;
    height: auto !important;
  }
  .cta-social h4 {
    font-size: 15px !important;
  }
  .social-icons a {
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
  }
  .footer,
  .footer-section {
    padding: 36px 0 18px !important;
  }
  .footer-widget h4 {
    font-size: 16px !important;
    margin-top: 18px !important;
  }
  .footer-bottom {
    display: block !important;
  }
  .footer-bottom-links {
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 10px !important;
  }
  .whatsapp-btn,
  .whatsapp-chat {
    position: fixed !important;
    right: 14px !important;
    bottom: 14px !important;
    z-index: 999 !important;
  }
}
.orbit-scene,
body,
html {
  max-width: 100%;
}
.icon-img,
.obs-orbit-section {
  display: flex;
  align-items: center;
}
.icon-img {
  margin: 0 auto 18px;
  justify-content: center;
}
.testimonial-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}
.testimonial-section .section-heading h2,
.testimonial-section .section-heading span {
  opacity: 0;
  animation: 1.5s forwards testimonialTitleUp;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e7ebf3;
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(7, 20, 38, 0.08);
  transition: 0.6s;
  opacity: 0;
}
.testimonial-section .col-md-4:first-child .testimonial-card {
  animation: 1.8s 0.3s forwards testimonialFromLeft;
}
.testimonial-section .col-md-4:nth-child(2) .testimonial-card {
  animation: 1.8s 0.6s forwards testimonialFromBottom;
}
.testimonial-section .col-md-4:nth-child(3) .testimonial-card {
  animation: 1.8s 0.9s forwards testimonialFromRight;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(255, 90, 20, 0.16);
  border-color: rgba(255, 90, 20, 0.35);
}
.testimonial-card .stars {
  color: #ffb400;
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 22px;
}
.center-card h2,
.orbit-item span {
  line-height: 1;
  text-transform: uppercase;
}
.testimonial-card h6 {
  font-size: 18px;
  font-weight: 700;
  color: #071426;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 14px;
  color: #64748b;
}
@keyframes testimonialFromLeft {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes testimonialFromRight {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes testimonialFromBottom {
  from {
    opacity: 0;
    transform: translateY(90px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes testimonialTitleUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --orange: #ff6b00;
  --orange-dark: #e85113;
  --blue: #2563eb;
  --sky: #38bdf8;
  --purple: #7c3aed;
  --dark: #071426;
  --white: #ffffff;
  --muted: #64748b;
  --soft-bg: #f8fbff;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 24px 70px rgba(7, 20, 38, 0.14);
}
.obs-orbit-section {
  min-height: 100vh;
  justify-content: center;
}
.orbit-icon,
.orbit-item,
.orbit-scene {
  display: grid;
  place-items: center;
}
.section-badge {
  align-items: center;
  justify-content: center;
  color: var(--orange-dark);
  border: 1px solid rgba(255, 107, 0, 0.18);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.center-card::before,
.orbit-ring-one::before {
  position: absolute;
  border-radius: inherit;
  content: "";
}
.orbit-wrapper h1 {
  letter-spacing: -0.04em;
}
.section-desc {
  color: var(--muted);
}
.glow {
  width: 190px;
  height: 190px;
  filter: blur(35px);
  opacity: 0.28;
}
.glow-one {
  right: 80px;
  background: var(--orange);
}
.glow-two {
  left: 70px;
  background: var(--purple);
}
.orbit-ring-one::before {
  inset: -2px;
  padding: 2px;
  background: conic-gradient(
    from 90deg,
    var(--orange),
    var(--purple),
    var(--blue),
    var(--sky),
    var(--orange)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: 9s linear infinite rotateRing;
}
.orbit-item.is-paused,
.orbit-track.is-paused {
  animation-play-state: paused;
}
.orbit-item {
  gap: 5px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.orbit-item:hover {
  box-shadow: 0 28px 80px rgba(7, 20, 38, 0.2);
}
.orbit-item span {
  display: block;
  color: var(--dark);
  letter-spacing: 0.08em;
}
.orbit-icon {
  color: var(--white);
}
.center-card,
.logo-shape {
  display: flex;
  align-items: center;
}
.orbit-idea .orbit-icon {
  background: linear-gradient(135deg, #ffb347, var(--orange));
}
.orbit-create .orbit-icon {
  background: linear-gradient(135deg, #a78bfa, var(--purple));
}
.orbit-grow .orbit-icon {
  background: linear-gradient(135deg, #38bdf8, var(--blue));
}
.orbit-strategy .orbit-icon {
  background: linear-gradient(135deg, #fb7185, var(--orange-dark));
}
.center-card {
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--orange), var(--purple), var(--blue))
      border-box;
  box-shadow:
    0 22px 60px rgba(7, 20, 38, 0.18),
    inset 0 0 30px rgba(255, 107, 0, 0.05);
}
.center-card::before {
  inset: 13px;
  border: 1px dashed rgba(255, 107, 0, 0.25);
}
.logo-shape {
  gap: 7px;
}
.logo-circle {
  border: 5px solid var(--dark);
}
.logo-box {
  background: var(--orange);
  box-shadow: 8px 10px 0 rgba(255, 107, 0, 0.35);
}
.center-card h2 {
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}
.center-card h2 span {
  color: var(--orange);
  color: #ff6b00;
}
.center-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
}
.pause-btn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  outline: 0;
  cursor: pointer;
  padding: 13px 22px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--purple));
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.22);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.blog-section,
.brand-section,
.obs-orbit-section,
.pricing-section,
.section-padding,
.social-orbit-section {
  font-family: Outfit, sans-serif;
}
.pause-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(124, 58, 237, 0.28);
}
.blog-card:hover .blog-img img,
.orbit-item:hover {
  transform: scale(1.08);
}
@keyframes rotateOrbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes counterRotate {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 767px) {
  .obs-orbit-section {
    padding: 55px 14px;
  }
  .section-desc {
    margin-bottom: 32px;
  }
  .orbit-scene {
    width: 360px;
    height: 360px;
  }
  .orbit-ring-one {
    width: 330px;
    height: 330px;
  }
  .orbit-ring-two {
    width: 290px;
    height: 290px;
  }
  .orbit-ring-three {
    width: 160px;
    height: 160px;
  }
  .orbit-track {
    width: 270px;
    height: 270px;
  }
  .orbit-item {
    width: 72px;
    height: 72px;
    border-radius: 22px;
  }
  .orbit-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 16px;
  }
  .center-card p,
  .orbit-item span {
    font-size: 9px;
  }
  .orbit-idea {
    top: -36px;
    left: calc(50% - 36px);
  }
  .orbit-create {
    top: calc(50% - 36px);
    right: -36px;
  }
  .orbit-grow {
    bottom: -36px;
    left: calc(50% - 36px);
  }
  .orbit-strategy {
    top: calc(50% - 36px);
    left: -36px;
  }
  .center-card {
    width: 130px;
    height: 130px;
  }
  .logo-circle {
    width: 22px;
    height: 22px;
    border-width: 4px;
  }
  .logo-box {
    width: 14px;
    height: 14px;
    box-shadow: 6px 8px 0 rgba(255, 107, 0, 0.35);
  }
  .center-card h2 {
    font-size: 13px;
  }
}
.orbit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.orbit-icon {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 18px;
}
@media (max-width: 768px) {
  .obs-orbit-section {
    padding: 70px 0;
  }
  .orbit-wrapper h1 {
    font-size: 34px;
  }
  .section-desc {
    font-size: 15px;
    margin-bottom: 45px;
  }
  .orbit-scene {
    width: 360px;
    height: 360px;
  }
  .orbit-ring-one {
    width: 330px;
    height: 330px;
  }
  .orbit-ring-two,
  .orbit-track {
    width: 285px;
    height: 285px;
  }
  .orbit-ring-three {
    width: 160px;
    height: 160px;
  }
  .orbit-item {
    width: 74px;
    height: 74px;
  }
  .orbit-icon {
    width: 31px;
    height: 31px;
    font-size: 15px;
  }
  .center-card p,
  .orbit-item span {
    font-size: 9px;
  }
  .orbit-idea {
    top: -37px;
    left: 105px;
  }
  .orbit-create {
    top: 105px;
    right: -37px;
  }
  .orbit-grow {
    bottom: -37px;
    left: 105px;
  }
  .orbit-strategy {
    top: 105px;
    left: -37px;
  }
  .center-card {
    width: 130px;
    height: 130px;
  }
  .center-card h2 {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .orbit-scene {
    transform: scale(0.88);
    margin-top: -20px;
    margin-bottom: -20px;
  }
}
.obs-orbit-section {
  width: 100%;
  position: relative;
}
.orbit-wrapper {
  padding: 0 20px;
  text-align: center;
}
.section-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #fff3eb;
  color: #ff6b00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.glow,
.orbit-ring {
  position: absolute;
  border-radius: 50%;
}
.orbit-wrapper h1 {
  color: #071426;
}
.section-desc {
  max-width: 620px;
  margin: 0 auto 55px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}
.orbit-scene {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glow {
  filter: blur(45px);
  opacity: 0.35;
  z-index: 0;
}
.glow-one {
  width: 180px;
  height: 180px;
  background: #ff6b00;
  top: 40px;
  left: 30px;
}
.glow-two {
  width: 200px;
  height: 200px;
  background: #6c5ce7;
  right: 20px;
  bottom: 40px;
}
.orbit-ring {
  z-index: 1;
}
.orbit-ring-one {
  width: 460px;
  height: 460px;
  border: 2px solid rgba(255, 107, 0, 0.18);
}
.orbit-ring-two {
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
}
.orbit-ring-three {
  width: 210px;
  height: 210px;
  border: 1px dashed rgba(15, 23, 42, 0.14);
}
.orbit-item,
.orbit-track {
  position: absolute;
  border-radius: 50%;
}
.orbit-track {
  width: 400px;
  height: 400px;
  animation: 14s linear infinite orbitRotate;
  z-index: 3;
}
.orbit-item {
  width: 92px;
  height: 92px;
  background: #fff;
  border: 1px solid #eef2f7;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  animation: 14s linear infinite orbitCounter;
  transition: 0.3s;
}
.orbit-icon {
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 7px;
}
.orbit-item span {
  font-size: 12px;
  font-weight: 800;
  color: #071426;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.orbit-idea {
  top: -46px;
  left: 154px;
}
.orbit-create {
  top: 154px;
  right: -46px;
}
.orbit-grow {
  bottom: -46px;
  left: 154px;
}
.orbit-strategy {
  top: 154px;
  left: -46px;
}
.orbit-idea .orbit-icon {
  background: linear-gradient(135deg, #fff4df, #ffe1bd);
}
.orbit-create .orbit-icon {
  background: linear-gradient(135deg, #f1eaff, #ded2ff);
}
.orbit-grow .orbit-icon {
  background: linear-gradient(135deg, #e8fff4, #c8f7df);
}
.orbit-strategy .orbit-icon {
  background: linear-gradient(135deg, #eaf4ff, #cde5ff);
}
.logo-shape {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}
.logo-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 4px solid #071426;
}
.logo-box {
  width: 17px;
  height: 17px;
  border-radius: 4px;
  background: #ff6b00;
  box-shadow: 8px 12px 0 rgba(255, 107, 0, 0.45);
}
@keyframes orbitRotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbitCounter {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(-360deg);
  }
}
.orbit-item:hover {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}
@media (max-width: 768px) {
  .obs-orbit-section {
    padding: 70px 0;
  }
  .orbit-wrapper h1 {
    font-size: 34px;
  }
  .section-desc {
    font-size: 15px;
    margin-bottom: 45px;
  }
  .orbit-scene {
    width: 360px;
    height: 360px;
  }
  .orbit-ring-one {
    width: 330px;
    height: 330px;
  }
  .orbit-ring-two,
  .orbit-track {
    width: 285px;
    height: 285px;
  }
  .orbit-ring-three {
    width: 160px;
    height: 160px;
  }
  .orbit-item {
    width: 74px;
    height: 74px;
  }
  .orbit-icon {
    width: 35px;
    height: 35px;
    padding: 6px;
  }
  .center-card p,
  .orbit-item span {
    font-size: 9px;
  }
  .orbit-idea {
    top: -37px;
    left: 105px;
  }
  .orbit-create {
    top: 105px;
    right: -37px;
  }
  .orbit-grow {
    bottom: -37px;
    left: 105px;
  }
  .orbit-strategy {
    top: 105px;
    left: -37px;
  }
  .center-card {
    width: 130px;
    height: 130px;
  }
  .center-card h2 {
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .orbit-scene {
    transform: scale(0.88);
    margin-top: -15px;
    margin-bottom: -25px;
  }
  .orbit-wrapper h1 {
    font-size: 29px;
  }
}
.center-card {
  border-radius: 50%;
  background: #fff;
  border: 1px solid #edf2f7;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.14),
    inset 0 0 0 8px rgba(255, 107, 0, 0.04);
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.center-logo-img {
  margin-bottom: 8px;
  display: grid;
  place-items: center;
}
.center-logo-img img {
  object-fit: contain;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block;
}
.center-card h2 {
  font-size: 17px;
  font-weight: 800;
  color: #071426;
  margin: 0 0 6px;
}
.center-card p {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
}
@media (max-width: 575px) {
  .obs-orbit-section {
    padding: 28px 0 30px !important;
    min-height: auto !important;
  }
  .orbit-wrapper {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .section-badge {
    font-size: 9px !important;
    padding: 6px 12px !important;
    margin-bottom: 10px !important;
  }
  .orbit-wrapper h1 {
    font-size: 20px !important;
    line-height: 1.15 !important;
    margin-bottom: 8px !important;
  }
  .section-desc {
    font-size: 10px !important;
    line-height: 1.5 !important;
    max-width: 300px !important;
    margin: 0 auto 18px !important;
  }
  .orbit-scene {
    width: 260px !important;
    height: 260px !important;
    margin: 0 auto !important;
  }
  .orbit-ring-one {
    width: 240px !important;
    height: 240px !important;
  }
  .orbit-ring-two,
  .orbit-track {
    width: 215px !important;
    height: 215px !important;
  }
  .orbit-ring-three {
    width: 105px !important;
    height: 105px !important;
  }
  .orbit-item {
    width: 55px !important;
    height: 55px !important;
    gap: 2px !important;
  }
  .orbit-icon {
    width: 30px !important;
    height: 24px !important;
    padding: 2px !important;
  }
  .center-logo-img img,
  .orbit-icon img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
  .orbit-item span {
    font-size: 6.5px !important;
    line-height: 1 !important;
    letter-spacing: 0.3px !important;
  }
  .orbit-idea {
    top: -27px !important;
    left: 80px !important;
  }
  .orbit-create {
    top: 80px !important;
    right: -27px !important;
  }
  .orbit-grow {
    bottom: -27px !important;
    left: 80px !important;
  }
  .orbit-strategy {
    top: 80px !important;
    left: -27px !important;
  }
  .center-card {
    width: 82px !important;
    height: 82px !important;
  }
  .center-logo-img {
    width: 58px !important;
    height: 58px !important;
  }
  .glow-one,
  .glow-two {
    width: 90px !important;
    height: 90px !important;
    filter: blur(30px) !important;
  }
}
.orbit-wrapper h1 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  background: linear-gradient(
    90deg,
    #ff5a14 0,
    #ff9f1c 28%,
    #6d2cff 58%,
    #1558ff 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.center-card {
  width: 160px !important;
  height: 160px !important;
}
.center-logo-img {
  display: grid;
  place-items: center;
  width: 125px !important;
  height: 125px !important;
}
.obs-orbit-section {
  padding: 43px 0;
  background: #fff;
  overflow: hidden;
}
.orbit-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.orbit-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}
.orbit-left-content {
  width: 42%;
  text-align: left;
}
.orbit-left-content .section-badge {
  display: inline-block;
  margin-bottom: 20px;
}
.orbit-left-content h1 {
  font-size: 62px;
  line-height: 1.1;
  font-weight: 500;
  color: #071426;
  margin-bottom: 22px;
}
.orbit-left-content .section-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
  max-width: 520px;
}
.orbit-scene {
  width: 520px;
  height: 520px;
  position: relative;
  flex-shrink: 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.blog-card {
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.blog-img img {
  object-fit: cover;
}
.brand-logo-card img,
.center-logo img {
  object-fit: contain;
  object-fit: contain;
}
.brand-section,
.cta-box,
.cta-card {
  margin-top: 0;
}
.brand-logo-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-card img {
  opacity: 0.8;
}
.brand-logo-card:hover img {
  transform: translateY(-4px);
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}
.brand-section .container {
  background: #fff;
  padding: 45px 30px;
  max-width: 1320px;
}
.brand-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.cta-section {
  padding: 28px 0 60px;
  background: #fff;
}
.pricing-heading span {
  letter-spacing: 1px;
}
.pricing-heading h2 {
  margin: 10px 0;
}
.pricing-toggle {
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}
.pricing-toggle button {
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  background: 0 0;
  color: #0f172a;
  font-weight: 800;
}
.pricing-toggle button.active {
  background: #ff5a14;
  color: #fff;
}
.pricing-card.starter {
  background: linear-gradient(145deg, #064e3b, #16a34a);
}
.pricing-card.growth {
  background: linear-gradient(145deg, #7c2d12, #ff5a14);
}
.pricing-card.business {
  background: linear-gradient(145deg, #172554, #2563eb);
}
.pricing-card::before {
  content: "";
}
.plan-subtitle {
  color: rgba(255, 255, 255, 0.78);
}
.pricing-card h2 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 28px;
}
.pricing-card h2 small {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
.pricing-card ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 17px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
}
.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  color: #16a34a;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}
.pricing-card.business ul li::before {
  color: #2563eb;
}
.popular-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 16px;
  border-radius: 50px;
  background: #fff;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.choose-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}
.pricing-card.starter .choose-btn {
  color: #16a34a !important;
}
.pricing-card.business .choose-btn {
  color: #2563eb !important;
}
.choose-btn,
.choose-btn.filled,
.pricing-card .choose-btn,
.pricing-card.growth .choose-btn {
  width: 100%;
  padding: 15px 22px;
  border-radius: 50px;
  border: 2px solid #fff;
  background: #fff !important;
  color: #ff5a14 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 1.2;
  position: relative;
  z-index: 50;
  cursor: pointer;
  text-decoration: none;
  -webkit-text-fill-color: #ff5a14 !important;
}
.orbit-icon.vcrds .icon-box,
.vcrds .icon-box {
  line-height: 1.1;
  color: #7c3aed;
  font-size: 10px;
}
.obx-about-main-heading,
.obx-about-mini-heading h6 {
  background: linear-gradient(90deg, #ff6b00, #7b2ff7);
  -webkit-text-fill-color: transparent;
}
.pricing-card.enterprise {
  background: linear-gradient(
    160deg,
    #2e0459 0,
    #5b21b6 45%,
    #8b3cff 100%
  ) !important;
  color: #fff !important;
  transform: translateY(-18px);
  box-shadow:
    0 35px 80px rgba(124, 58, 237, 0.45),
    0 0 0 8px rgba(124, 58, 237, 0.14);
}
.pricing-card.enterprise::before {
  content: "";
  position: absolute;
  top: -75px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  z-index: 1;
}
.pricing-card.enterprise::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 70px;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-20deg);
  animation: 3s infinite planDShine;
  z-index: 2;
}
.pricing-card.enterprise .choose-btn,
.pricing-card.enterprise .plan-desc,
.pricing-card.enterprise .plan-subtitle,
.pricing-card.enterprise .popular-badge,
.pricing-card.enterprise h2,
.pricing-card.enterprise h2 small,
.pricing-card.enterprise h3,
.pricing-card.enterprise ul {
  position: relative;
  z-index: 5;
  color: #fff !important;
}
.pricing-card.enterprise .popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 10;
  padding: 12px 28px;
  border-radius: 50px;
  background: #fff;
  color: #7c3aed !important;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.18),
    0 18px 35px rgba(0, 0, 0, 0.25);
  animation: 1.8s ease-in-out infinite premiumPulse;
}
.pricing-card.enterprise .choose-btn {
  background: #fff !important;
  color: #7c3aed !important;
  -webkit-text-fill-color: #7c3aed !important;
  border: 2px solid #fff !important;
  padding: 15px 22px;
  font-size: 16px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 1 !important;
  visibility: visible !important;
}
@keyframes premiumPulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.45),
      0 18px 35px rgba(0, 0, 0, 0.25);
  }
  50% {
    transform: scale(1.06);
    box-shadow:
      0 0 0 12px rgba(255, 255, 255, 0.12),
      0 22px 45px rgba(0, 0, 0, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0),
      0 18px 35px rgba(0, 0, 0, 0.25);
  }
}
@keyframes planDShine {
  0% {
    left: -90px;
  }
  100%,
  45% {
    left: 120%;
  }
}
@media (max-width: 991px) {
  .orbit-layout {
    flex-direction: column;
    text-align: center;
    gap: 45px;
  }
  .orbit-left-content {
    width: 100%;
    text-align: center;
  }
  .orbit-left-content .section-desc {
    margin: 0 auto;
  }
  .orbit-left-content h1 {
    font-size: 44px;
  }
  .orbit-scene {
    width: 420px;
    height: 420px;
  }
  .dashboard-card,
  .hero-visual {
    position: relative;
    width: 100%;
  }
  .circle-score,
  .graph-box h3 {
    font-size: 28px;
  }
  .hero-section {
    padding: 60px 0 50px;
    overflow: hidden;
  }
  .hero-section .row {
    flex-direction: column;
  }
  .hero-visual {
    display: block !important;
    max-width: 360px;
    height: 360px;
    margin: 35px auto 0;
    transform: scale(0.82);
    transform-origin: top center;
  }
  .dashboard-card {
    max-width: 330px;
    height: auto;
    min-height: 250px;
    margin: 0 auto;
    padding: 22px 18px;
  }
  .dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .graph-box,
  .score-box {
    min-height: 150px;
    padding: 18px 14px;
  }
  .circle-score {
    width: 95px;
    height: 95px;
  }
  .social-bubble {
    display: flex !important;
    position: absolute;
    z-index: 5;
  }
  .social-bubble.in {
    top: -28px;
    right: 70px;
  }
  .social-bubble.insta {
    top: 55px;
    left: -20px;
  }
  .social-bubble.fb {
    top: 150px;
    left: -18px;
  }
  .social-bubble.yt {
    top: 230px;
    left: -10px;
  }
  .floating {
    display: block !important;
    position: absolute;
    z-index: 6;
  }
  .seo-card {
    top: 85px;
    right: -15px;
    width: 135px;
    padding: 16px;
  }
  .mini-card.one {
    left: -12px;
    bottom: 35px;
    width: 135px;
  }
  .mini-card.two {
    left: 105px;
    bottom: 8px;
    width: 140px;
  }
  .mini-card.three {
    right: -8px;
    bottom: 30px;
    width: 135px;
  }
  .plant-shape {
    display: none;
  }
  .pricing-section {
    padding: 60px 0;
  }
  .pricing-heading h2 {
    font-size: 30px;
  }
  .pricing-card {
    min-height: auto;
  }
  .pricing-card.enterprise {
    transform: none;
  }
}
.pricing-row,
.pricing-section .row {
  align-items: stretch;
}
.pricing-card {
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
  width: 100%;
  min-height: 680px;
  display: flex;
  flex-direction: column;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  flex: 1;
}
.orbit-badge,
.orbit-content h1 {
  margin-bottom: 34px;
  color: #ff5a14;
}
.pricing-card .choose-btn {
  margin-top: auto;
}
.pricing-card.enterprise {
  transform: none !important;
}
.social-orbit-section {
  padding: 0;
  background: #fff;
  overflow: hidden;
}
.social-orbit-section .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.social-orbit-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  align-items: center;
  gap: 70px;
}
.orbit-badge {
  display: inline-block;
  padding: 11px 24px;
  background: #fff1e8;
  border: 1px solid rgba(255, 90, 20, 0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.dash-ring,
.orbit-glow {
  border-radius: 50%;
  pointer-events: none;
}
.orbit-content h1 {
  font-size: 62px;
  line-height: 1.14;
  font-weight: 500;
  letter-spacing: -2px;
}
.orbit-content h1 b {
  color: #7c3aed;
  font-weight: 500;
}
.orbit-content p {
  max-width: 520px;
  color: #53657d;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
  margin: 0;
}
.icon-box,
.icon-box i {
  color: #fff;
  font-size: 31px;
}
.orbit-wrapper {
  position: relative;
  width: 560px;
  height: 560px;
  display: grid;
  place-items: center;
}
.orbit-glow {
  position: absolute;
  filter: blur(85px);
  opacity: 0.25;
}
.glow-orange {
  width: 230px;
  height: 230px;
  background: #ff5a14;
  top: 45px;
  right: 65px;
}
.glow-purple {
  width: 270px;
  height: 270px;
  background: #7c3aed;
  bottom: 35px;
  left: 45px;
}
.dash-ring {
  position: absolute;
  border: 1px dashed rgba(15, 23, 42, 0.15);
}
.dash-ring-1 {
  width: 400px;
  height: 400px;
}
.dash-ring-2 {
  width: 285px;
  height: 285px;
}
.dash-ring-3 {
  width: 185px;
  height: 185px;
}
.orbit-rotator {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: 5;
}
.icon-box,
.orbit-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
}
.color-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 90deg,
    #0a66c2 0deg 60deg,
    #dd2a7b 60deg 120deg,
    red 120deg 180deg,
    #1877f2 180deg 240deg,
    #7c3aed 240deg 300deg,
    #111827 300deg 360deg
  );
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 3px),
    #000 calc(100% - 3px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 3px),
    #000 calc(100% - 3px)
  );
}
.orbit-icon {
  position: absolute;
  z-index: 20;
}
.blog-img,
.brand-logo-card,
.center-logo,
.icon-box,
.obx-choose-card {
  position: relative;
}
.orbit-icon.linkedin {
  left: 162px;
  top: -38px;
}
.orbit-icon.instagram {
  right: -38px;
  top: 62px;
}
.orbit-icon.youtube {
  right: -38px;
  bottom: 62px;
}
.orbit-icon.facebook {
  left: 162px;
  bottom: -38px;
}
.orbit-icon.vcrds {
  left: -38px;
  bottom: 62px;
}
.orbit-icon.twitter {
  left: -38px;
  top: 62px;
}
.icon-box {
  border-radius: 50%;
  border: 8px solid #f7f9fc;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
  z-index: 30;
}
.icon-box i {
  line-height: 1;
}
.instagram .icon-box {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.twitter .icon-box {
  background: #000;
}
.vcrds .icon-box {
  background: #fff;
  border: 5px solid #7c3aed;
  box-shadow:
    0 18px 38px rgba(124, 58, 237, 0.18),
    0 0 0 8px #f7f9fc;
  font-weight: 900;
  text-align: center;
  transform: rotate(-18deg);
}
.vcrds .icon-box small {
  color: #9d71ef;
  font-size: 7px;
  letter-spacing: 0.6px;
}
.ob-logo {
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -6px;
}
.ob-logo span {
  color: #444;
}
.ob-logo sup {
  font-size: 20px;
  vertical-align: super;
  margin-left: 2px;
}
@keyframes orbitRotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes iconReverse {
  to {
    transform: rotate(-360deg);
  }
}
@media (max-width: 991px) {
  .pricing-card,
  .pricing-card.enterprise {
    min-height: 620px;
  }
  .social-orbit-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .orbit-content p,
  .orbit-wrapper {
    margin: 0 auto;
  }
}
.orbit-icon.vcrds,
.orbit-icon.vcrds .icon-box {
  min-width: 76px;
  min-height: 76px;
  max-width: 76px;
  max-height: 76px;
}
.orbit-icon.vcrds .icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 900;
  text-align: center;
  transform: none !important;
}
.orbit-icon.vcrds .icon-box strong {
  display: block;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}
.orbit-icon.vcrds .icon-box small {
  display: block;
  font-size: 7px;
  font-weight: 700;
  color: #9d71ef;
  letter-spacing: 0.4px;
  line-height: 1;
  margin-top: 3px;
}
@media (max-width: 575px) {
  .orbit-wrapper h1 {
    font-size: 22px !important;
    background: linear-gradient(90deg, #ff5a14, #ff9f1c, #6d2cff, #1558ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .orbit-left-content h1 {
    font-size: 36px;
  }
  .orbit-content p,
  .orbit-left-content .section-desc,
  .pricing-card h2 small {
    font-size: 15px;
  }
  .orbit-scene {
    width: 320px;
    height: 320px;
  }
  .pricing-card {
    padding: 30px 24px;
  }
  .pricing-card h2 {
    font-size: 34px;
  }
  .pricing-toggle,
  .pricing-toggle button {
    width: 100%;
  }
  .pricing-card,
  .pricing-card.enterprise {
    min-height: auto;
  }
  .social-orbit-section {
    padding: 60px 0;
  }
  .orbit-content h1 {
    font-size: 38px;
    letter-spacing: -0.5px;
  }
  .orbit-wrapper {
    width: 330px;
    height: 330px;
  }
  .dash-ring-1,
  .orbit-rotator {
    width: 260px;
    height: 260px;
  }
  .dash-ring-2 {
    width: 190px;
    height: 190px;
  }
  .dash-ring-3 {
    width: 125px;
    height: 125px;
  }
  .icon-box,
  .orbit-icon {
    width: 54px;
    height: 54px;
  }
  .icon-box,
  .icon-box i {
    font-size: 22px;
  }
  .orbit-icon.linkedin {
    left: 103px;
    top: -27px;
  }
  .orbit-icon.instagram {
    right: -27px;
    top: 38px;
  }
  .orbit-icon.youtube {
    right: -27px;
    bottom: 38px;
  }
  .orbit-icon.facebook {
    left: 103px;
    bottom: -27px;
  }
  .orbit-icon.vcrds {
    left: -27px;
    bottom: 38px;
  }
  .orbit-icon.twitter {
    left: -27px;
    top: 38px;
  }
  .vcrds .icon-box {
    font-size: 7px;
    border-width: 3px;
    box-shadow:
      0 12px 25px rgba(124, 58, 237, 0.14),
      0 0 0 6px #f7f9fc;
  }
  .vcrds .icon-box small {
    font-size: 5px;
  }
  .center-logo {
    width: 92px;
    height: 92px;
  }
  .ob-logo {
    font-size: 30px;
    letter-spacing: -3px;
  }
  .ob-logo sup {
    font-size: 14px;
  }
  .orbit-icon.vcrds,
  .orbit-icon.vcrds .icon-box {
    width: 54px;
    height: 54px;
    min-width: 54px;
    min-height: 54px;
    max-width: 54px;
    max-height: 54px;
  }
  .orbit-icon.vcrds .icon-box {
    border-width: 3px;
    box-shadow:
      0 12px 25px rgba(124, 58, 237, 0.14),
      0 0 0 6px #f7f9fc;
  }
  .orbit-icon.vcrds .icon-box strong {
    font-size: 7px;
  }
  .orbit-icon.vcrds .icon-box small {
    font-size: 5px;
    margin-top: 2px;
  }
}
.center-logo {
  display: grid;
  place-items: center;
  z-index: 50;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.15),
    0 22px 0 rgba(15, 23, 42, 0.05);
  overflow: hidden;
}
.orbit-rotator,
.orbit-wrapper {
  overflow: visible !important;
}
.center-logo img {
  width: 88px;
  height: 88px;
  display: block;
}
.orbit-rotator {
  transform-origin: center center !important;
  animation: 28s linear infinite orbitRotate !important;
}
.orbit-icon {
  animation: 28s linear infinite iconReverse !important;
}
@media (max-width: 575px) {
  .icon-box,
  .icon-box i {
    font-size: 18px !important;
  }
  .social-orbit-section {
    padding: 16px 0 65px !important;
    overflow: hidden !important;
  }
  .orbit-wrapper {
    width: 320px !important;
    height: 320px !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }
  .dash-ring-1,
  .orbit-rotator {
    width: 220px !important;
    height: 220px !important;
  }
  .dash-ring-2 {
    width: 160px !important;
    height: 160px !important;
  }
  .dash-ring-3 {
    width: 105px !important;
    height: 105px !important;
  }
  .icon-box,
  .orbit-icon,
  .orbit-icon.vcrds .icon-box {
    width: 44px !important;
    height: 44px !important;
  }
  .icon-box {
    border-width: 5px !important;
  }
  .orbit-icon.linkedin {
    left: 88px !important;
    top: -22px !important;
  }
  .orbit-icon.instagram {
    right: -22px !important;
    top: 33px !important;
  }
  .orbit-icon.youtube {
    right: -22px !important;
    bottom: 33px !important;
  }
  .orbit-icon.facebook {
    left: 88px !important;
    bottom: -22px !important;
  }
  .orbit-icon.vcrds {
    left: -22px !important;
    bottom: 33px !important;
  }
  .orbit-icon.twitter {
    left: -22px !important;
    top: 33px !important;
  }
  .orbit-icon.vcrds .icon-box {
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 50% !important;
    border-width: 3px !important;
    box-shadow:
      0 10px 20px rgba(124, 58, 237, 0.14),
      0 0 0 5px #f7f9fc !important;
    transform: none !important;
  }
  .orbit-icon.vcrds .icon-box strong {
    font-size: 6px !important;
    line-height: 1 !important;
  }
  .orbit-icon.vcrds .icon-box small {
    font-size: 4px !important;
    margin-top: 2px !important;
  }
  .center-logo {
    width: 84px !important;
    height: 84px !important;
  }
  .center-logo img {
    width: 54px !important;
    height: 54px !important;
    object-fit: contain !important;
  }
}
.blog-img img,
.project-card img {
  object-fit: cover;
  object-position: center;
}
@media (max-width: 380px) {
  .orbit-wrapper {
    width: 290px !important;
    height: 290px !important;
  }
  .dash-ring-1,
  .orbit-rotator {
    width: 205px !important;
    height: 205px !important;
  }
  .dash-ring-2 {
    width: 150px !important;
    height: 150px !important;
  }
  .dash-ring-3 {
    width: 100px !important;
    height: 100px !important;
  }
  .icon-box,
  .orbit-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .icon-box,
  .icon-box i {
    font-size: 16px !important;
  }
  .orbit-icon.linkedin {
    left: 82.5px !important;
    top: -20px !important;
  }
  .orbit-icon.instagram {
    right: -20px !important;
    top: 31px !important;
  }
  .orbit-icon.youtube {
    right: -20px !important;
    bottom: 31px !important;
  }
  .orbit-icon.facebook {
    left: 82.5px !important;
    bottom: -20px !important;
  }
  .orbit-icon.vcrds {
    left: -20px !important;
    bottom: 31px !important;
  }
  .orbit-icon.twitter {
    left: -20px !important;
    top: 31px !important;
  }
}
.orbit-icon.vcrds,
.orbit-icon.vcrds .icon-box {
  width: 76px;
  height: 76px;
  border-radius: 50%;
}
.orbit-icon.vcrds .icon-box {
  background: #fff;
  border: 5px solid #7c3aed;
  box-shadow:
    0 18px 38px rgba(124, 58, 237, 0.18),
    0 0 0 8px #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
}
.project-card img {
  width: 100%;
  height: 220px;
  display: block;
}
@media (min-width: 992px) {
  .project-card .project-img {
    width: 378px;
    height: 220px;
  }
}
@media (max-width: 575px) {
  .orbit-icon.vcrds,
  .orbit-icon.vcrds .icon-box {
    width: 54px;
    height: 54px;
  }
  .orbit-icon.vcrds .icon-box {
    border-width: 3px;
    padding: 7px;
    box-shadow:
      0 12px 25px rgba(124, 58, 237, 0.14),
      0 0 0 6px #f7f9fc;
  }
  .portfolio-section {
    padding: 50px 14px;
    overflow-x: hidden;
  }
  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
  }
  .project-card {
    width: 100%;
    max-width: 100%;
  }
  .project-card > div:first-child {
    width: 100%;
    height: 220px;
    overflow: hidden;
  }
  .project-card > div:first-child img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
  }
}
.blog-card,
.blog-img img,
.project-card {
  max-width: 100% !important;
}
.project-card > div:first-child,
.project-card > div:first-child img {
  height: 220px !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
}
.blog-section,
.portfolio-section {
  overflow-x: hidden;
}
.project-card,
.project-card > div:first-child {
  overflow: hidden !important;
  width: 100% !important;
}
.project-card {
  border-radius: 16px;
  background: #fff;
}
.project-card > div:first-child img {
  width: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
}
.blog-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.blog-card h5 {
  padding: 16px 16px 6px;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #071426;
}
.blog-card p {
  padding: 0 16px 18px;
  margin: 0;
  font-size: 14px;
  color: #667085;
}
.brand-section {
  overflow-x: hidden;
}
.blog-card,
.blog-img {
  overflow: hidden !important;
}
.brand-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}
.brand-logo-card {
  width: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.brand-logo-card img {
  object-fit: contain;
  display: block;
}
@media (max-width: 991px) {
  .blog-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .brand-strip {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 575px) {
  .project-card > div:first-child,
  .project-card > div:first-child img {
    width: 100% !important;
    height: 220px !important;
  }
  body,
  html {
    overflow-x: hidden !important;
  }
  .blog-section,
  .portfolio-section {
    padding: 50px 12px !important;
  }
  .project-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    width: 100% !important;
  }
  .project-card {
    width: 100% !important;
    max-width: 100% !important;
  }
  .project-card > div:first-child img {
    object-fit: cover !important;
    object-position: center !important;
  }
  .blog-img,
  .blog-img img {
    height: 220px !important;
  }
  .blog-card,
  .blog-grid,
  .blog-img,
  .blog-img img,
  .brand-strip {
    width: 100% !important;
  }
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .blog-card {
    max-width: 100% !important;
  }
  .blog-img img {
    object-fit: cover;
    object-position: center;
  }
  .brand-section {
    padding: 40px 12px !important;
  }
  .brand-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .brand-logo-card {
    height: 80px;
    padding: 14px;
  }
  .brand-logo-card img {
    max-height: 45px;
  }
}
.blog-card,
.blog-card img {
  width: 378px;
}
.brand-strip {
  width: 1200px;
}
.blog-card,
.blog-grid,
.blog-img,
.blog-img img {
  width: 100% !important;
}
body,
html {
  width: 100%;
  overflow-x: hidden !important;
}
.blog-grid {
  grid-template-columns: repeat(4, 378px);
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
}
.blog-img {
  height: 220px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.blog-img img {
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}
@media only screen and (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media only screen and (max-width: 575px) {
  .blog-card,
  .blog-grid,
  .blog-section .container {
    max-width: 100% !important;
  }
  .blog-img,
  .blog-img img {
    width: 100% !important;
    height: 220px !important;
  }
  .blog-section {
    padding: 50px 12px !important;
  }
  .blog-section .container {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .blog-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    gap: 22px !important;
  }
  .blog-card {
    width: 100% !important;
    min-width: 0 !important;
  }
  .blog-img img {
    object-fit: cover !important;
  }
}
.blog-section .container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.blog-card {
  min-width: 0 !important;
  padding: 0;
  box-shadow: 0 10px 28px rgba(9, 16, 35, 0.07);
}
.blog-card,
.brand-logo-card {
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.blog-img::after,
.project-img::after {
  display: none !important;
  content: none !important;
}
.blog-img img {
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .blog-section {
    padding: 50px 0;
  }
  .section-heading h2 {
    font-size: 26px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .blog-img {
    height: 220px;
  }
  .blog-content {
    padding: 14px 15px 16px;
  }
  .blog-content h5 {
    font-size: 15px;
  }
  .blog-content p {
    font-size: 12px;
  }
}
.blog-card:hover {
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.15);
}
.blog-grid,
.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo-card img {
  object-fit: contain;
}
.brand-logo-card:hover {
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.14);
}
@media (max-width: 767px) {
  .blog-section {
    padding: 65px 0 45px;
  }
  .brand-section {
    padding: 45px 0 65px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .section-heading p {
    font-size: 15px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-img {
    height: 220px;
  }
  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .brand-logo-card {
    height: 100px;
    border-radius: 20px;
  }
  .brand-logo-card img {
    max-width: 95px;
    max-height: 46px;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}
.text-center {
  text-align: center;
}
.section-heading p {
  max-width: 570px;
  margin: 0 auto;
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}
.blog-section {
  background: #fff;
  padding: 55px 0 35px;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 107, 0, 0.1),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(79, 27, 220, 0.1),
      transparent 32%
    ),
    linear-gradient(135deg, #fff 0, #fff8f2 45%, #f5f7ff 100%);
  overflow: hidden;
}
.blog-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  transition: 0.35s;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
}
.blog-img {
  background: #eef4ff;
}
.blog-img img {
  object-fit: cover;
  transition: transform 0.45s;
}
.blog-content {
  padding: 18px 16px 20px;
}
.blog-content h5 {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: #071426;
  margin: 0 0 12px;
}
.blog-content p,
.brand-heading {
  font-size: 14px;
  font-weight: 500;
}
.blog-content p {
  color: #64748b;
  margin: 0;
}
.brand-section {
  padding: 35px 0 55px;
  background: #fff;
}
.brand-heading {
  letter-spacing: 1px;
  text-align: center;
  letter-spacing: 2px;
  color: #ff6b00;
  margin-bottom: 24px;
}
.brand-heading::after {
  content: "";
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff6b00, #4f1bdc);
}
.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-logo-card {
  height: 105px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: 0.35s;
}
.brand-logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.14),
    rgba(79, 27, 220, 0.12)
  );
  opacity: 0;
  transition: 0.35s;
}
.brand-logo-card img {
  max-width: 105px;
  max-height: 50px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: 0.35s;
}
.brand-logo-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}
@media (max-width: 1199px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-img {
    height: 240px;
  }
  .brand-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .section-heading h2 {
    font-size: 34px;
  }
  .brand-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .blog-section {
    padding: 45px 0 30px;
  }
  .brand-section {
    padding: 30px 0 45px;
  }
  .section-heading {
    margin-bottom: 26px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .section-heading p {
    font-size: 15px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-img {
    height: 220px;
  }
  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .brand-logo-card {
    height: 95px;
    border-radius: 20px;
  }
  .brand-logo-card img {
    max-width: 92px;
    max-height: 44px;
  }
}
@media (max-width: 420px) {
  .blog-img {
    height: 190px;
  }
  .brand-strip {
    grid-template-columns: 1fr;
  }
}


.vxora-digital-frame{
    padding:0px 0;
}

.vxora-inner-shell{
    background:#fff;
    border-radius:35px;
    padding:50px;
    overflow:hidden;
    
}

/* LEFT */

.neurova-visual-holder{
    position:relative;
}

.neurova-main-art{
    width:100%;
    display:block;
    border-radius: 50px;
    height: 100%;
}

/* RIGHT */

.zyphic-content-panel{
    padding-left:36px;
}

/* SMALL TITLE */

.zyphic-mini-strip{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

    /* width:40px;
    height:3px;
    border-radius:20px;

    background:linear-gradient(to right,#ff6a00,#7b2cff);
} */

.zyphic-mini-strip h6{
    margin:0;
    font-size:14px;
    font-weight:600;
    letter-spacing:5px;
    color:#111;
}

/* MAIN TITLE */

.zyphic-brand-title{

    font-size:60px;
    font-weight:800;
    line-height:1;
    margin-bottom:25px;

    background: #ff6a00;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* LINE */

.zyphic-glow-line{

    width:170px;
    height:5px;
    border-radius:30px;
    margin-bottom:35px;

    background:linear-gradient(to right,#ff6a00,#7b2cff);
}

/* DESCRIPTION */

.zyphic-text-note{

    font-size:22px;
    line-height:1.8;
    color:#1f1f1f;
    font-weight:500;

    margin-bottom:60px;
}

.zyphic-text-note span{

    font-weight:700;

    background:linear-gradient(to right,#ff6a00,#7b2cff);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* WHY TITLE */

.zyphic-choice-strip{

    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:40px;
}

.zyphic-choice-strip span{

    width:80px;
    height:3px;

    background:linear-gradient(to right,#ff6a00,#7b2cff);
}

.zyphic-choice-strip h5{

    margin:0;
    font-size:22px;
    font-weight:700;
    letter-spacing:4px;
}

/* FEATURES */

.lunex-grid-stack{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.lunex-feature-unit{

    text-align:center;
    position:relative;
}

.lunex-feature-unit::after{

    content:'';
    position:absolute;
    top:15px;
    right:-12px;

    width:1px;
    height:130px;

    background:#ececec;
}

.lunex-feature-unit:last-child::after{
    display:none;
}

.lunex-feature-unit img{

    width:90px;
    margin-bottom:15px;
}

.lunex-feature-unit h4{

    font-size:24px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:10px;
}

.lunex-feature-unit p{

    font-size:15px;
    line-height:1.8;
    color:#666;
}

/* RESPONSIVE */

@media(max-width:1400px){

    .zyphic-brand-title{
        font-size:75px;
    }

    .zyphic-text-note{
        font-size:22px;
    }

}

@media(max-width:991px){

    .vxora-inner-shell{
        padding:40px 25px;
    }

    .zyphic-content-panel{
        padding-left:0;
        margin-top:40px;
    }

    .zyphic-brand-title{
        font-size:65px;
    }

    .lunex-grid-stack{
        grid-template-columns:repeat(2,1fr);
    }

    .lunex-feature-unit::after{
        display:none;
    }

}

@media(max-width:767px){

    .vxora-inner-shell{
        border-radius:25px;
    }

    .zyphic-mini-strip h6{
        font-size:15px;
        letter-spacing:3px;
    }

    .zyphic-brand-title{
        font-size:48px;
    }

    .zyphic-text-note{
        font-size:18px;
        line-height:1.8;
    }

}

------------------------------------------------------------------------------------------------------------------------------------
/* Service Card Medium Colors */
.service-card:nth-child(1) {
  background: linear-gradient(180deg, #4f86e8 0%, #4f86e8 100%);
  border-color: #4f86e8;
}

.service-card:nth-child(2) {
  background: linear-gradient(180deg, #ff4d4d 0%, #dc2626 55%, #991b1b 100%);
  border-color: #ff8a8a;
}

.service-card:nth-child(3) {
  background: linear-gradient(180deg, #ffb16f 0%, #ff8a3d 100%);
  border-color: #ffc08a;
}

.service-card:nth-child(4) {
  background: linear-gradient(180deg, #8bd9a8 0%, #5fbd82 100%);
  border-color: #a6e6bd;
}

.service-card:nth-child(5) {
  background: linear-gradient(180deg, #63d4dc 0%, #37b6c2 100%);
  border-color: #8be6ec;
}

.service-card:nth-child(6) {
  background: linear-gradient(180deg, #ffd37a 0%, #f4ad3d 100%);
  border-color: #ffe09b;
}

.service-card:nth-child(7) {
  background: linear-gradient(180deg, #f47ac0 0%, #df4aa2 100%);
  border-color: #ff9bd2;
}

.service-card:nth-child(8) {
  background: linear-gradient(180deg, #ff6b6b 0%, #e11d48 100%);
  border-color: #ff9aa2;
}

.service-card h5 {
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.service-card p {
  color: rgba(255, 255, 255, 0.92);
}

.service-card a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 22px;
  border-radius: 50px;

  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);

  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
  transition: all 0.35s ease;
}

.service-card a:hover {
  background: #ffffff;
  color: #111827;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.service-card a i {
  font-size: 16px;
  transition: transform 0.35s ease;
}

.service-card a:hover i {
  transform: translateX(5px);
  color: #111827;
}

.service-card {
  min-height: 360px;
  padding: 28px 24px;
  border-radius: 24px;
  border: 1px solid;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}
.obx-about-mini-heading span {
  width: 40px;
  height: 3px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff6b00, #7b2ff7);
}
.obx-about-mini-heading h6 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  -webkit-background-clip: text;
}
.obx-about-main-heading {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 25px;
  -webkit-background-clip: text;
}
.obx-about-line {
  width: 120px;
  height: 6px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff6b00, #7b2ff7);
  margin: auto auto 30px;
}
.obx-about-para {
  font-size: 24px;
  line-height: 1.8;
  color: #2b2b2b;
  max-width: 950px;
  margin: auto;
  font-weight: 500;
}
.obx-about-para-two {
  margin-top: 15px;
}
.obx-choose-area {
  padding: 40px 0 80px;
  background: #f7f7f7;
}
.obx-choose-main-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #111;
  margin-top: 20px;
}
.obx-choose-card {
  text-align: center;
  padding: 20px;
}
.obx-choose-card::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -10px;
  width: 1px;
  height: 80%;
  background: #e5e5e5;
}
.obx-no-border::after,
.pricing-card.enterprise::after,
.pricing-card.enterprise::before {
  display: none;
}
.obx-choose-card img {
  width: 150px;
  margin-bottom: 25px;
}
.obx-choose-card h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}
.obx-choose-card p {
  font-size: 19px;
  line-height: 1.8;
  color: #555;
  max-width: 320px;
  margin: auto;
}
@media (max-width: 991px) {
  .obx-about-main-heading {
    font-size: 70px;
  }
  .obx-choose-main-title {
    font-size: 42px;
  }
  .obx-about-para {
    font-size: 18px;
  }
  .obx-choose-card::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .obx-about-main-heading {
    font-size: 52px;
  }
  .obx-choose-main-title {
    font-size: 34px;
    line-height: 1.4;
  }
  .obx-about-welcome-box,
  .obx-choose-box {
    padding: 50px 25px;
  }
  .obx-choose-card img {
    width: 120px;
  }
}
.service-card h5 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}
.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}
.service-card a:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  background: #fff;
  color: #111827;
  transform: translateY(-3px);
  transform: none;
}
.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 145px;
  height: 44px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.service-card a:hover i {
  color: #111827;
  transform: translateX(5px);
  transform: none;
}
.service-card::before {
  content: "";
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.service-card::after {
  content: "";
  top: 0;
  transform: skewX(-18deg);
  transition: 0.7s;
  z-index: 1;
}
.pricing-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -70px;
  right: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  z-index: 1;
}
.pricing-row {
  margin-top: 30px;
}
.pricing-card.enterprise {
  width: 100%;
  min-height: 620px;
  padding: 34px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 18px 45px rgba(91, 33, 182, 0.28);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pricing-card.enterprise h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}
.pricing-card.enterprise .plan-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: #ede9fe;
  margin-bottom: 26px;
}
.pricing-card.enterprise h2 {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
}
.pricing-card.enterprise h2 small {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #ede9fe;
  margin-top: 10px;
}
.pricing-card.enterprise .plan-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #f5f3ff;
  margin-bottom: 26px;
}
.pricing-card.enterprise ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.pricing-card.enterprise ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.pricing-card.enterprise ul li::before {
  background: #fff !important;
  color: #7c3aed !important;
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.pricing-card.enterprise .choose-btn {
  margin-top: auto;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
}
.pricing-card.enterprise .choose-btn:hover {
  background: #111827;
  color: #fff;
}
.section-padding {
  padding: 15px 0;
  background: #fff;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 45px;
}
.section-heading span {
  letter-spacing: 1px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #ff6b00;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.section-heading h2 {
  animation: 0.9s forwards fadeUp;
  font-size: 38px;
  font-weight: 800;
  color: #071426;
  margin: 0;
}
.service-card {
  position: relative;
  min-height: 455px;
  padding: 28px 24px 26px;
  border-radius: 26px;
  text-align: center;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: 0.35s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card::after,
.service-card::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.service-card::before {
  width: 170px;
  height: 170px;
  top: -75px;
  right: -75px;
  background: rgba(255, 255, 255, 0.55);
}
.service-card::after {
  width: 150px;
  height: 150px;
  left: -70px;
  bottom: -70px;
  background: rgba(255, 255, 255, 0.45);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
}
.icon-img {
  width: 100%;
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.icon-img img {
  max-width: 100%;
  max-height: 205px;
  object-fit: contain;
  transition: transform 0.35s;
}
.service-card:hover .icon-img img {
  transform: scale(1.06);
}
.service-card h5 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.service-card p {
  font-size: 17px;
  line-height: 1.45;
  color: #56637a;
  margin-bottom: 24px;
  max-width: 260px;
  position: relative;
  z-index: 2;
}
.service-card:first-child {
  background: linear-gradient(180deg, #e8f1ff 0, #fff 100%);
  border-color: #8bbcff;
}
.service-card:first-child a,
.service-card:first-child h5 {
  color: #0057d9;
}
.service-card:nth-child(2) {
  background: linear-gradient(180deg, #fff1f1 0, #fff 100%);
  border-color: #ffc7c7;
}
.service-card:nth-child(2) a,
.service-card:nth-child(2) h5 {
  color: #dc2626;
}
.service-card:nth-child(3) {
  background: linear-gradient(180deg, #ffe9d6 0, #fff 100%);
  border-color: #ff9f5a;
}
.service-card:nth-child(3) a,
.service-card:nth-child(3) h5 {
  color: #f04b12;
}
.service-card:nth-child(4) {
  background: linear-gradient(180deg, #ddfff1 0, #fff 100%);
  border-color: #73dcae;
}
.service-card:nth-child(4) a,
.service-card:nth-child(4) h5 {
  color: #05843f;
}
.service-card:nth-child(5) {
  background: linear-gradient(180deg, #dffaff 0, #fff 100%);
  border-color: #68d9ed;
}
.service-card:nth-child(5) a,
.service-card:nth-child(5) h5 {
  color: #0084a8;
}
.service-card:nth-child(6) {
  background: linear-gradient(180deg, #fff1c7 0, #fff 100%);
  border-color: #f3bd3e;
}
.service-card:nth-child(6) a,
.service-card:nth-child(6) h5 {
  color: #c27600;
}
.service-card:nth-child(7) {
  background: linear-gradient(180deg, #ffe2f3 0, #fff 100%);
  border-color: #ff86c8;
}
.service-card:nth-child(7) a,
.service-card:nth-child(7) h5 {
  color: #e11d8d;
}
.service-card:nth-child(8) {
  background: linear-gradient(180deg, #e1ecff 0, #fff 100%);
  border-color: #7fb2ff;
}
.service-card:nth-child(8) a,
.service-card:nth-child(8) h5 {
  color: #064fd8;
}
.pricing-section {
  padding: 45px 0 65px;
  background: #fff;
  overflow: hidden;
}
.pricing-heading {
  margin-bottom: 55px;
}
.pricing-heading span {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ff4b0b;
  margin-bottom: 8px;
}
.pricing-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #081126;
  margin-bottom: 10px;
}
.pricing-heading p {
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 26px;
}
.toggle-box {
  display: inline-flex;
  padding: 8px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
}
.toggle-box button {
  border: none;
  outline: 0;
  padding: 13px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff6a00, #ff3500);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}
.pricing-card {
  position: relative;
  height: 625px;
  padding: 36px 32px 30px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  transition: 0.35s;
}
.plan-list li::before,
.top-circle {
  position: absolute;
  border-radius: 50%;
}
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.24);
}
.top-circle {
  width: 150px;
  height: 150px;
  top: -52px;
  right: -45px;
  background: rgba(255, 255, 255, 0.18);
}
.plan-desc,
.plan-list,
.plan-list li,
.plan-subtitle,
.price-box,
.pricing-card h3 {
  position: relative;
}
.plan-a {
  background: linear-gradient(180deg, #075f43 0, #11994b 100%);
}
.plan-b {
  background: linear-gradient(180deg, #993414 0, #ff4b09 100%);
}
.plan-c {
  background: linear-gradient(180deg, #162c6d 0, #2365e9 100%);
}
.plan-d {
  background: linear-gradient(180deg, #3e0b78 0, #8236f2 100%);
}
.pricing-card h3 {
  z-index: 2;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 10px;
}
.plan-subtitle {
  z-index: 2;
  font-size: 15px;
  font-weight: 700;
  opacity: 0.9;
  margin-bottom: 2px;
}
.price-box {
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 30px;
}
.price-box h4 {
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.price-box span {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 5px;
}
.plan-desc {
  z-index: 2;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.65;
  color: #fff;
  opacity: 0.95;
  min-height: 78px;
  margin-bottom: 22px;
}
.plan-list {
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}
.plan-list li {
  padding-left: 34px;
  margin-bottom: 13px;
  font-size: 14.5px;
  line-height: 1.35;
  font-weight: 800;
  color: #fff;
}
.plan-list li::before {
  content: "✓";
  left: 0;
  top: -1px;
  width: 21px;
  height: 21px;
  background: #fff;
  color: #ff4b0b;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plan-btn,
.service-card a {
  position: relative;
  z-index: 2;
  margin-top: auto;
  text-decoration: none;
  align-items: center;
}
.plan-btn {
  height: 56px;
  width: 100%;
  border-radius: 50px;
  background: #fff;
  color: #ff4b0b;
  font-size: 15.5px;
  font-weight: 800;
  display: flex;
  justify-content: center;
  box-shadow: inset 0 -2px 5px rgba(15, 23, 42, 0.08);
  transition: 0.3s;
}
.plan-btn:hover {
  color: #ff4b0b;
  transform: scale(1.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}
@media (max-width: 1199px) {
  .pricing-section {
    padding: 45px 0 55px;
  }
  .pricing-card {
    height: 620px;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card {
    min-height: 430px;
  }
  .pricing-heading h2 {
    font-size: 34px;
  }
  .pricing-heading {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .pricing-section {
    padding: 40px 12px 50px;
  }
  .pricing-heading h2 {
    font-size: 28px;
  }
  .pricing-heading p {
    font-size: 14px;
  }
  .pricing-card {
    height: auto;
    min-height: 610px;
    padding: 32px 28px 28px;
  }
  .price-box h4 {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .section-heading h2 {
    font-size: 27px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .service-card {
    min-height: auto;
    padding: 26px 20px;
  }
  .icon-img {
    height: 190px;
  }
  .icon-img img {
    max-height: 190px;
  }
  .service-card h5 {
    font-size: 21px;
  }
  .service-card p {
    font-size: 16px;
  }
  .pricing-heading h2 {
    font-size: 25px;
  }
  .toggle-box button {
    padding: 11px 30px;
    font-size: 14px;
  }
  .pricing-card {
    border-radius: 22px;
  }
}
.service-card a,
.service-card a i {
  display: inline-flex;
  font-size: 16px;
  transition: none;
}
.service-card a {
  width: fit-content;
  padding: 10px 14px 10px 20px;
  border-radius: 13px;
  font-weight: 500;
  gap: 12px;
}
.service-card a i {
  margin-left: 7px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff !important;
  align-items: center;
  justify-content: center;
}
.service-card:first-child a {
  background: #eaf3ff;
  color: #0b66e4 !important;
  border: 1px solid #0b66e4;
}
.service-card:first-child a i {
  background: #0b66e4;
}
.service-card:nth-child(2) a {
  background: #ffe4e6;
  color: #b91c1c !important;
  border: 1px solid #b91c1c;
}
.service-card:nth-child(2) a i {
  background: #b91c1c;
  color: #b91c1c;
}
.service-card:nth-child(3) a {
  background: #fff1e8;
  color: #ff5a14 !important;
  border: 1px solid #ff5a14;
}
.service-card:nth-child(3) a i {
  background: #ff5a14;
}
.service-card:nth-child(4) a {
  background: #e9fff4;
  color: #059669 !important;
  border: 1px solid #059669;
}
.service-card:nth-child(4) a i {
  background: #059669;
}
.service-card:nth-child(5) a {
  background: #e8fbff;
  color: #0099c9 !important;
  border: 1px solid #0099c9;
}
.service-card:nth-child(5) a i {
  background: #0099c9;
}
.service-card:nth-child(6) a {
  background: #fff7df;
  color: #d97706 !important;
  border: 1px solid #d97706;
}
.service-card:nth-child(6) a i {
  background: #d97706;
}
.service-card:nth-child(7) a {
  background: #fff0f8;
  color: #ec4899 !important;
  border: 1px solid #ec4899;
}
.service-card:nth-child(7) a i {
  background: #ec4899;
}
.service-card:nth-child(8) a {
  background: #eef5ff;
  color: #2563eb !important;
  border: 1px solid #2563eb;
}
.service-card:nth-child(8) a i {
  background: #2563eb;
}
