.section-title p,
body {
  color: var(--text-color);
}
.btn-primary-custom,
.navbar-brand,
.section-title h2,
.section-title h2::after {
  background: var(--gradient);
}
.navbar-nav .nav-link,
body {
  font-family: Outfit, sans-serif;
}
#preloader,
footer {
  background: var(--darker-color);
}
.counter-box i,
.footer-logo,
.navbar-brand,
.section-title h2,
.stat-number {
  -webkit-text-fill-color: transparent;
}
.about-list li i,
.counter-box,
.footer-bottom,
.form-message,
.metric,
.page-header,
.process-step,
.section-title,
.service-card,
.stat-item,
.tech-icon-item,
.testimonial-card {
  text-align: center;
}
.about-content h3,
.counter-box h4,
.metric-label,
.post-hero .post-category,
.stat-label {
  text-transform: uppercase;
}
.app-badge,
.blog-card-content h3 a,
.blog-read-more,
.category-list a,
.comment-author-name,
.comment-reply,
.page-link,
.post-author-name,
.post-tag,
.privacy-section a,
.recent-post-content h5 a,
.tag,
.terms-section a,
a {
  text-decoration: none;
}
:root {
  --primary-color: #5b84fa;
  --primary-dark: #3f6ef5;
  --primary-light: #8faeff;
  --secondary-color: #7c3aed;
  --accent-color: #22d3ee;
  --dark-color: #0f172a;
  --darker-color: #020617;
  --light-color: #f8fafc;
  --text-color: #475569;
  --heading-color: #0f172a;
  --gradient: linear-gradient(135deg, #5b84fa 0%, #5b84fa 50%, #22d3ee 100%);
  --gradient-light: linear-gradient(
    135deg,
    #8faeff 0%,
    #5b84fa 50%,
    #67e8f9 100%
  );
  --shadow-sm: 0 4px 6px -1px rgba(91, 132, 250, 0.15);
  --shadow-md: 0 10px 15px -3px rgba(91, 132, 250, 0.2);
  --shadow-lg: 0 20px 25px -5px rgba(91, 132, 250, 0.25);
  --shadow-xl: 0 25px 50px -12px rgba(91, 132, 250, 0.35);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  line-height: 1.7;
  overflow-x: hidden;
  background: linear-gradient(180deg, #fff 0, #f1f5f9 100%);
}
.display-1,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--dark-color);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.display-1,
h1 {
  letter-spacing: -0.04em;
  font-weight: 700;
}
a {
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.section-padding {
  padding: 100px 0;
}
.btn-outline-custom,
.btn-primary-custom {
  padding: 18px 42px;
  font-weight: 600;
  font-size: 1.05rem;
  font-family: "Space Grotesk", sans-serif;
}
.section-title {
  margin-bottom: 70px;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  border-radius: 2px;
}
.section-title p {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 400;
}
.btn-primary-custom {
  color: #fff;
  border-radius: 14px;
  border: none;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-outline-custom,
.navbar {
  background: 0 0;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-light);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}
.btn-primary-custom:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-xl);
  color: #fff;
}
.btn-primary-custom:hover::before,
.portfolio-item:hover .portfolio-overlay,
.social-links a:hover::before {
  opacity: 1;
}
.btn-outline-custom {
  color: #fff;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
  color: #fff;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s;
}
.loader {
  width: 80px;
  height: 80px;
  position: relative;
}
.loader::after,
.loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--primary-color);
  animation: 1s linear infinite spin;
}
.loader::after {
  border-top-color: var(--accent-color);
  animation-delay: 0.5s;
  width: 60px;
  height: 60px;
  margin: auto;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.navbar {
  padding: 20px 0;
  backdrop-filter: blur(0px);
}
.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  padding: 15px 0;
}
.about-img,
.service-card:hover,
.testimonial-card:hover {
  box-shadow: var(--shadow-xl);
}
.navbar-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.02em;
}
.navbar-nav .nav-link {
  color: #fff !important;
  margin: 0 12px;
  font-weight: 500;
  position: relative;
  padding: 8px 0 !important;
  transition: 0.3s;
  font-size: 1.05rem;
}
#hero::before,
#why-choose-us::before,
.about-img::before,
.navbar-nav .nav-link::before,
.service-card::before {
  position: absolute;
  content: "";
  left: 0;
}
.navbar-nav .nav-link::before {
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link:hover::before {
  width: 100%;
}
.navbar-nav .nav-link:hover {
  transform: translateY(-2px);
}
.navbar-toggler {
  border: none;
  color: #fff;
  font-size: 1.5rem;
}
.about-img,
.service-card {
  border-radius: 24px;
  overflow: hidden;
}
#hero {
  min-height: 100vh;
  background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0,
        rgba(30, 41, 59, 0.85) 50%,
        rgba(51, 65, 85, 0.85) 100%
      )
      center/cover no-repeat,
    url("../images/6848.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero::before {
  top: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(99, 102, 241, 0.15) 0,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 92, 246, 0.15) 0,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(6, 182, 212, 0.1) 0,
      transparent 50%
    );
  animation: 20s linear infinite float;
}
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  50% {
    transform: translate(-20px, -20px) rotate(180deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 45px;
  opacity: 0.95;
  font-weight: 300;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-stats {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-top: 70px;
  flex-wrap: wrap;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
}
#about,
#contact,
#portfolio,
.service-card {
  background: #fff;
  position: relative;
}
.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.about-img {
  position: relative;
}
.about-img::before {
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0.1;
  z-index: 1;
}
.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s;
}
.about-img:hover img,
.blog-card:hover .blog-card-img img,
.brand-showcase-card:hover .brand-showcase-img img,
.campaign-card:hover .campaign-img img,
.design-case-card:hover .design-case-img img {
  transform: scale(1.05);
}
.about-content h3 {
  color: var(--accent-color);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  margin-bottom: 18px;
}
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 28px;
  line-height: 1.15;
  font-weight: 700;
}
.about-content p {
  font-size: 1.15rem;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.8;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 35px 0;
}
.about-list li {
  padding: 14px 0;
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 500;
}
.about-list li i {
  color: var(--primary-color);
  margin-right: 18px;
  font-size: 1.4rem;
  background: rgba(99, 102, 241, 0.1);
  padding: 10px;
  border-radius: 10px;
  min-width: 45px;
}
#services,
#testimonials {
  background: linear-gradient(180deg, #f8fafc 0, #f1f5f9 100%);
  position: relative;
}
.service-card {
  padding: 55px 40px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(99, 102, 241, 0.1);
}
.service-card::before {
  top: 0;
  right: 0;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover {
  transform: translateY(-18px);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  width: 95px;
  height: 95px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #f8fafc 0, #f1f5f9 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--primary-color);
  transition: 0.4s;
  box-shadow: var(--shadow-md);
}
.portfolio-item,
.testimonial-card {
  box-shadow: var(--shadow-lg);
  border-radius: 24px;
}
.service-card:hover .service-icon {
  background: var(--gradient);
  color: #fff;
  transform: rotateY(360deg);
}
.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 22px;
  font-weight: 700;
}
.service-card p {
  color: var(--text-color);
  margin: 0;
  font-size: 1.08rem;
  opacity: 0.9;
  line-height: 1.7;
}
#why-choose-us {
  background: var(--dark-color);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#why-choose-us::before {
  top: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 90%,
      rgba(99, 102, 241, 0.1) 0,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(6, 182, 212, 0.1) 0,
      transparent 40%
    );
}
#why-choose-us .section-title h2,
#why-choose-us .section-title p,
.app-badge:hover i,
.footer-bottom-links a:hover,
.service-chip.active i {
  color: #fff;
}
.counter-box {
  padding: 45px 35px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.counter-box:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}
.counter-box i {
  font-size: 3.8rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 28px;
}
.counter-number {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  margin-bottom: 18px;
  display: block;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.counter-box h4 {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 1.5px;
}
.portfolio-filters {
  text-align: center;
  margin-bottom: 55px;
}
.portfolio-filters button {
  background: 0 0;
  border: 2px solid rgba(99, 102, 241, 0.2);
  color: var(--text-color);
  padding: 14px 34px;
  margin: 0 6px 12px;
  border-radius: 14px;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  transition: 0.3s;
  cursor: pointer;
  font-size: 1.05rem;
}
html, body {
    overflow-x: hidden;
}
.more-detail{margin-top: 20px;}
.portfolio-filters button.active,
.portfolio-filters button:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0, transparent 50%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  transition: 0.4s;
  padding: 35px;
}
.portfolio-item:hover img {
  transform: scale(1.1);
}
.portfolio-overlay h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 12px;
  transform: translateY(20px);
  transition: transform 0.4s;
  font-weight: 700;
}
.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(20px);
  transition: transform 0.4s 0.1s;
  font-size: 1.05rem;
}
.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p {
  transform: translateY(0);
}
.testimonial-card {
  background: #fff;
  padding: 55px 45px;
  margin: 20px;
  border: 1px solid rgba(99, 102, 241, 0.1);
  position: relative;
  transition: 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-12px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 25px;
  left: 35px;
  font-size: 5.5rem;
  color: rgba(99, 102, 241, 0.1);
  font-family: serif;
  line-height: 1;
}
.testimonial-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 28px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-md);
  position: relative;
}
#scrollTop,
.contact-form {
  box-shadow: var(--shadow-xl);
}
.testimonial-img::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: var(--gradient);
  border-radius: 50%;
  z-index: -1;
}
.device-mockup::after,
.social-links a::before,
footer::before {
  position: absolute;
  top: 0;
  content: "";
}
.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-color);
  margin-bottom: 28px;
  font-size: 1.15rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}
.testimonial-position {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 500;
}
.testimonial-stars {
  color: #fbbf24;
  margin-bottom: 22px;
  font-size: 1.25rem;
}
.contact-form {
  background: #fff;
  padding: 55px;
  border-radius: 28px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}
.form-control {
  padding: 18px 22px;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  margin-bottom: 28px;
  transition: 0.3s;
  font-family: Outfit, sans-serif;
  font-size: 1.05rem;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}
textarea.form-control {
  min-height: 170px;
  resize: vertical;
}
.contact-info {
  padding: 55px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 38px;
  padding: 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(99, 102, 241, 0.1);
  transition: 0.3s;
}
.contact-icon,
.footer-logo,
footer::before {
  background: var(--gradient);
}
.contact-item:hover {
  transform: translateX(12px);
  box-shadow: var(--shadow-lg);
}
.contact-icon {
  width: 65px;
  height: 65px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-right: 28px;
  flex-shrink: 0;
}
.contact-text h4 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.contact-text p {
  margin: 0;
  color: var(--text-color);
  font-size: 1.08rem;
  line-height: 1.6;
}
.form-message {
  display: none;
  padding: 22px;
  border-radius: 14px;
  margin-top: 28px;
  font-weight: 600;
}
.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
footer {
  color: #fff;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  left: 0;
  right: 0;
  height: 4px;
}
.device-mockup,
.post-hero,
.process-steps,
.search-form,
.social-links a,
.social-links a i,
.ux-process-step {
  position: relative;
}
.footer-main {
  padding-bottom: 60px;
}
.footer-column {
  margin-bottom: 40px;
}
.footer-column h4,
.footer-logo {
  margin-bottom: 28px;
  font-weight: 700;
  font-family: "Space Grotesk", sans-serif;
}
.footer-logo {
  font-size: 2.8rem;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -0.02em;
}
.newsletter-input,
.social-links a {
  background: rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
.footer-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.footer-column h4 {
  color: #fff;
  font-size: 1.3rem;
}
.contact-info-footer li,
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}
.contact-info-footer,
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 16px;
}
.footer-links a {
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}
.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}
.footer-links a i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 0.9rem;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid;
  border-radius: 12px;
  font-family: Outfit, sans-serif;
}
#scrollTop,
.newsletter-btn,
.social-links a::before {
  background: var(--gradient);
}
.newsletter-input:focus {
  outline: 0;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.1);
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-btn {
  padding: 16px 30px;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Space Grotesk", sans-serif;
}
.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}
.contact-info-footer li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-footer li i {
  color: var(--accent-color);
  margin-right: 15px;
  margin-top: 4px;
  font-size: 1.1rem;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-links a::before {
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: transparent;
}
.social-links a i {
  z-index: 1;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}
.footer-bottom-links {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: 0.3s;
}
#scrollTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 60px;
  height: 60px;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-size: 1.3rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 999;
}
#scrollTop:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
}
#scrollTop.show {
  display: flex;
}
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  .section-title h2 {
    font-size: 2rem;
  }
}
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .section-padding {
    padding: 80px 0;
  }
  .about-content {
    margin-top: 40px;
  }
  .contact-form,
  .contact-info {
    padding: 35px;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 1.3rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .section-padding {
    padding: 60px 0;
  }
  .navbar-nav {
    padding: 20px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    margin-top: 15px;
  }
  .navbar-nav .nav-link {
    margin: 10px 0;
    padding: 10px 20px !important;
    border-radius: 10px;
  }
  .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .counter-number {
    font-size: 3rem;
  }
  .service-card {
    padding: 45px 30px;
  }
  .section-title h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  .hero-buttons,
  .newsletter-form {
    flex-direction: column;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.15rem;
  }
  .hero-buttons {
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  .section-title h2 {
    font-size: 1.9rem;
  }
  .section-title p {
    font-size: 1.05rem;
  }
  .contact-form,
  .contact-info {
    padding: 25px;
  }
  .footer-column {
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }
}
.tech-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}
.tech-icon-item {
  padding: 2rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  min-width: 120px;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-step,
.service-feature-card {
  background: var(--card-bg);
  padding: 2rem 1.5rem;
  border-radius: 24px;
}
.tech-icon-item i {
  font-size: 3.5rem;
  color: #5b84fa;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}
.tech-icon-item:hover i {
  transform: scale(1.1);
  color: var(--accent-secondary);
}
.tech-icon-item span {
  display: block;
  font-weight: 600;
  color: var(--text-light);
  font-size: 1.1rem;
}
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
}
.process-step {
  flex: 1 1 200px;
  margin: 0 0.75rem;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid transparent;
  transition: 0.3s;
}
.app-badge,
.service-feature-card {
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-step:hover {
  border-bottom-color: #5b84fa;
  transform: translateY(-8px);
}
.process-step .step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: #5c83fa !important;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.process-step h4 {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-weight: 700;
}
.brand-feature-card p,
.design-feature-card p,
.marketing-feature-card p,
.mobile-feature-card p,
.process-step p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.brand-feature-grid,
.marketing-feature-grid,
.mobile-feature-grid,
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.service-feature-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.service-feature-card:hover {
  border-color: #5b84fa;
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.service-feature-card i {
  font-size: 2.5rem;
  color: #5b84fa;
  margin-bottom: 1.25rem;
}
.brand-showcase-content h4,
.service-feature-card h4 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-feature-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}
.page-header {
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85) 0,
      rgba(30, 41, 59, 0.85) 50%,
      rgba(51, 65, 85, 0.85) 100%
    ),
    url("../images/6848.jpg");
  padding: 160px 0 80px;
  color: #fff;
}
.page-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
}
.page-header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  color: #fff !important;
}
#case-studies .btn-outline-custom,
#portfolio-highlights .btn-outline-custom,
#showcase .btn-outline-custom {
  color: #5c83fa;
  border: 2px solid #5c83fa;
}
.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.app-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 40px;
  padding: 0.65rem 1.8rem;
  color: #fff;
  font-weight: 600;
}
.app-badge i {
  font-size: 1.8rem;
  margin-right: 0.75rem;
  color: #5c83fa;
}
.app-badge:hover {
  background: #5c83fa;
  border-color: #5c83fa;
  transform: translateY(-3px);
  color: #fff;
}
.device-mockup {
  margin: 0 auto;
  border-radius: 36px;
  box-shadow: 0 25px 40px -10px rgba(0, 0, 0, 0.4);
  border: 8px solid #2c2e3a;
  background: #0e0f14;
  overflow: hidden;
}
.brand-feature-card,
.design-feature-card,
.marketing-feature-card,
.mobile-feature-card,
.platform-item {
  padding: 2.2rem 1.5rem;
  border-radius: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.device-mockup img,
.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.device-mockup::after {
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 25px;
  background: #2c2e3a;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.platform-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.8rem;
  margin-top: 2.5rem;
}
.platform-item {
  min-width: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.platform-item .fab,
.platform-item i {
  font-size: 4rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}
.platform-item span {
  display: block;
  font-weight: 600;
  color: var(--text-light);
  font-size: 1.2rem;
}
.brand-tool-item:hover i,
.platform-item:hover i {
  transform: scale(1.15);
}
.fa-apple {
  color: #a2aaad;
}
.fa-android {
  color: #3ddc84;
}
.fa-react {
  color: #61dafb;
}
.fa-flutter {
  color: #54c5f8;
}
.fa-korvue {
  color: #7f52ff;
}
.platform-item .fa-swift {
  color: #f05138;
}
.brand-feature-card,
.design-feature-card,
.marketing-feature-card,
.mobile-feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.design-feature-card:hover,
.marketing-feature-card:hover,
.mobile-feature-card:hover {
  border-color: var(--accent-secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.brand-feature-card i,
.design-feature-card i,
.marketing-feature-card i,
.mobile-feature-card i {
  font-size: 2.8rem;
  color: #5c83fa;
  margin-bottom: 1.25rem;
}
.brand-feature-card h4,
.design-feature-card h4,
.marketing-feature-card h4,
.mobile-feature-card h4 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.brand-process-steps,
.marketing-process-steps,
.mobile-process-steps,
.ux-process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 3rem;
}
.brand-process-step,
.marketing-process-step,
.mobile-process-step {
  flex: 1 1 180px;
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid transparent;
  transition: 0.3s;
}
.brand-process-step:hover,
.marketing-process-step:hover,
.mobile-process-step:hover {
  border-bottom-color: var(--accent-secondary);
  transform: translateY(-8px);
}
.brand-process-step .step-icon,
.file-upload-area i,
.marketing-process-step .step-icon,
.mobile-process-step .step-icon {
  font-size: 2.5rem;
  color: #5c83fa;
  margin-bottom: 1rem;
}
.brand-process-step h4,
.marketing-process-step h4,
.mobile-process-step h4,
.ux-process-step h4 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.brand-process-step p,
.marketing-process-step p,
.mobile-process-step p,
.pillar-item p,
.ux-process-step p {
  color: var(--text-gray);
  font-size: 0.9rem;
}
.brand-tools,
.design-tools,
.marketing-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.8rem;
  margin-top: 2.5rem;
}
.tool-item {
  transition: var(--transition);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.privacy-section strong,
.terms-section strong,
.tool-item .fab,
.tool-item i {
  color: var(--text-light);
}
.fa-sketch {
  color: #f7b500;
}
.fa-invision {
  color: #f36;
}
.fa-paint-brush {
  color: #4a90e2;
}
.fa-mouse {
  color: #50e3c2;
}
.ux-process-step {
  flex: 1 1 180px;
  text-align: center;
  padding: 2rem 1.2rem;
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid transparent;
  transition: 0.3s;
}
.brand-tool-item,
.tool-item {
  transition: var(--transition);
}
.ux-process-step:hover {
  border-bottom-color: #5c83fa;
  transform: translateY(-8px);
}
.ux-process-step .step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #5c83fa;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}
.brand-showcase-grid,
.campaign-grid,
.design-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.brand-showcase-card,
.campaign-card,
.design-case-card {
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.brand-showcase-card:hover,
.campaign-card:hover,
.design-case-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: #5c83fa;
}
.brand-showcase-img,
.design-case-img {
  height: 220px;
  overflow: hidden;
}
.blog-card-img img,
.brand-showcase-img img,
.campaign-img img,
.design-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.brand-showcase-content,
.campaign-content,
.design-case-content {
  padding: 1.8rem 1.5rem;
}
.author-box-content h4,
.campaign-content h4,
.design-case-content h4,
.pillar-item h5 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.brand-tags,
.design-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.design-tag {
  background: rgba(99, 102, 241, 0.1);
  color: #5c83fa;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.brand-showcase-content p,
.design-case-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.brand-case-link,
.campaign-link,
.case-link {
  color: #5c83fa;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-read-more i,
.brand-case-link i,
.campaign-link i,
.case-link i {
  font-size: 0.8rem;
  transition: transform 0.2s;
}
.blog-read-more:hover i,
.brand-case-link:hover i,
.campaign-link:hover i,
.case-link:hover i {
  transform: translateX(5px);
}
.design-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 992px) {
  .mobile-process-steps,
  .process-steps,
  .ux-process-steps {
    flex-direction: column;
    align-items: center;
  }
  .process-step {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .tech-icons {
    gap: 1.5rem;
  }
  .tech-icon-item {
    min-width: 100px;
  }
  .platform-icons {
    gap: 1.8rem;
  }
  .platform-item,
  .tool-item {
    min-width: 80px;
  }
  .platform-item i,
  .tool-item i {
    font-size: 3rem;
  }
  .mobile-process-step,
  .ux-process-step {
    width: 100%;
    max-width: 350px;
  }
  .design-tools {
    gap: 2rem;
  }
}
.tool-item {
  text-align: center;
  padding: 1.2rem 0.5rem;
  min-width: 100px;
}
.tool-item .fab,
.tool-item i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}
.brand-tool-item span,
.tool-item span {
  display: block;
  font-weight: 600;
  color: var(--text-gray);
  font-size: 1.1rem;
}
.tool-item:hover i {
  color: #5c83fa;
  transform: scale(1.15);
}
.fa-google {
  color: #4285f4;
}
.fa-search {
  color: #f90;
}
.fa-chart-line {
  color: #00a3e0;
}
.fa-facebook-f {
  color: #1877f2;
}
.fa-instagram {
  color: #e4405f;
}
.fa-linkedin-in {
  color: #0a66c2;
}
.fa-twitter {
  color: #1da1f2;
}
.fa-hubspot {
  color: #ff7a59;
}
.fa-mail-bulk {
  color: #ea4335;
}
.blog-card-img,
.campaign-img {
  height: 200px;
  overflow: hidden;
}
.campaign-metrics {
  display: flex;
  justify-content: space-between;
  margin: 1.2rem 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #5c83fa;
}
.metric-label {
  font-size: 0.8rem;
  color: var(--text-gray);
  letter-spacing: 0.5px;
}
.brand-feature-card:hover {
  border-color: #5c83fa;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.brand-pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0 1rem;
}
.pillar-item {
  flex: 0 1 200px;
  text-align: center;
  padding: 1.5rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}
.pillar-item i {
  font-size: 2.2rem;
  color: #5c83fa;
  margin-bottom: 1rem;
}
.brand-tag {
  background: rgba(236, 72, 153, 0.1);
  color: var(--accent-secondary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(236, 72, 153, 0.2);
}
.brand-tool-item {
  padding: 1.2rem 0.5rem;
  min-width: 100px;
  flex: 1 1 180px;
  text-align: center;
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid transparent;
  transition: 0.3s;
}
.blog-card:hover,
.featured-post,
.quote-wrapper {
  box-shadow: var(--shadow-lg);
}
.brand-tool-item .fab,
.brand-tool-item i {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  transition: transform 0.3s;
}
.blog-card,
.featured-post,
.file-upload-area,
.service-chip {
  transition: var(--transition);
}
.fa-adobe {
  color: #ff61f6;
}
.fa-figma {
  color: #f24e1e;
}
.fa-mendeley {
  color: #9c89b8;
}
.fa-trello {
  color: #0079bf;
}
.fa-slack {
  color: #4a154b;
}
.fa-uncharted {
  color: #639;
}
.quote-wrapper {
  background: var(--card-bg);
  border-radius: 32px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
}
.quote-form .form-group {
  margin-bottom: 1.8rem;
}
.quote-form label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.quote-form .form-control,
.quote-form .form-select {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition);
}
.quote-form .form-control:focus,
.quote-form .form-select:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: #5c83fa;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
  outline: 0;
}
.quote-form .form-control::placeholder {
  color: var(--text-gray);
  opacity: 0.6;
}
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.service-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.budget-value,
.featured-post-content .post-category {
  padding: 0.3rem 1.2rem;
  display: inline-block;
  color: #fff;
}
.service-chip i {
  color: #5c83fa;
  font-size: 1rem;
}
.service-chip:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: #5c83fa;
  color: var(--text-light);
}
.post-tag:hover,
.service-chip.active,
.share-btn:hover {
  background: #5c83fa;
  border-color: #5c83fa;
  color: #fff;
}
.budget-slider {
  width: 100%;
  margin: 1rem 0;
}
.budget-value {
  background: #5c83fa;
  border-radius: 40px;
  font-weight: 700;
  margin-left: 1rem;
}
.file-upload-area {
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}
.file-upload-area:hover {
  border-color: #5c83fa;
  background: rgba(99, 102, 241, 0.05);
}
.file-upload-area p {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}
.file-upload-area small {
  color: var(--text-gray);
  opacity: 0.7;
}
.quote-summary {
  background: rgba(99, 102, 241, 0.05);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
  height: fit-content;
  margin-top: 40px;
}
.quote-summary h4 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.category-list li:last-child,
.comment:last-child,
.recent-post-item:last-child,
.summary-item:last-child {
  border-bottom: none;
}
.summary-label {
  color: var(--text-gray);
  font-weight: 500;
}
.summary-value {
  color: var(--text-light);
  font-weight: 700;
}
.estimated-budget {
  font-size: 2rem;
  font-weight: 800;
  color: #5c83fa;
  text-align: center;
  margin: 1.5rem 0 0.5rem;
}
.estimated-note {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}
.featured-post {
  background: var(--card-bg);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 3rem;
  margin-top: 20px;
}
.blog-card,
.sidebar-widget {
  box-shadow: var(--shadow-sm);
}
.featured-post:hover {
  transform: translateY(-5px);
  border-color: #5b84fa;
}
.featured-post-img {
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-position: center;
}
.featured-post-content {
  padding: 2.5rem;
}
.featured-post-content .post-category {
  background: #5b84fa;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.featured-post-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-light);
}
.featured-post-content p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.blog-card {
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  border-color: #5b84fa;
}
.blog-card-content {
  padding: 1.8rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: var(--text-gray);
}
.blog-card-content h3 a:hover,
.category-list a:hover,
.post-meta i,
.recent-post-content h5 a:hover {
  color: #5b84fa;
}
.post-meta i {
  margin-right: 0.3rem;
}
.post-category-badge {
  background: rgba(99, 102, 241, 0.1);
  color: #5b84fa;
  padding: 0.2rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(99, 102, 241, 0.2);
  align-self: flex-start;
}
.blog-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}
.blog-card-content h3 a {
  color: var(--text-light);
  transition: color 0.2s;
}
.blog-excerpt {
  color: var(--text-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.blog-read-more {
  margin-top: auto;
  color: #5b84fa;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-widget {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2rem 1.8rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-direction: column;
}
.search-form input,
.tag {
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}
.sidebar-widget h4 {
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.sidebar-widget h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(145deg, #5b84fa, var(--accent-secondary));
  border-radius: 3px;
}
.search-form input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 50px;
  color: var(--text-light);
}
.search-form input:focus {
  border-color: #5b84fa;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.search-form button {
  position: absolute;
  right: 5px;
  top: 5px;
  background: #5b84fa;
  border: none;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.category-list li,
.recent-post-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.comment-form .btn-submit:hover,
.search-form button:hover {
  background: var(--accent-secondary);
}
.category-list,
.comment-list,
.recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.category-list li {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
}
.category-list a {
  color: var(--text-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}
.category-list span {
  background: rgba(99, 102, 241, 0.1);
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #5b84fa;
}
.recent-post-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
}
.recent-post-img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
}
.author-box-content,
.comment-content,
.recent-post-content {
  flex: 1;
}
.recent-post-content h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.recent-post-content h5 a {
  color: var(--text-light);
}
.post-author-title,
.recent-post-date {
  font-size: 0.8rem;
  color: var(--text-gray);
}
.recent-post-date i {
  margin-right: 0.3rem;
  color: #5b84fa;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tag {
  border: 1px solid;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.page-link.active,
.page-link:hover,
.tag:hover {
  background: #5b84fa;
  border-color: #5b84fa;
  color: #fff;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.page-link {
  background: #d1ddff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-gray);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 600;
  transition: var(--transition);
}
.post-hero {
  padding: 160px 0 60px;
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85) 0,
      rgba(30, 41, 59, 0.85) 50%,
      rgba(51, 65, 85, 0.85) 100%
    ),
    url("../images/6848.jpg");
}
.post-hero .post-category {
  background: #5c83fa;
  color: #fff;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.post-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}
.post-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  color: #fff;
  font-size: 0.95rem;
}
.post-hero-meta i {
  color: #fff;
  margin-right: 0.5rem;
}
.comment-author-name,
.post-author-name,
.post-content h2,
.post-content h3 {
  font-weight: 700;
  color: var(--text-light);
}
.post-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.post-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.post-author-info {
  display: flex;
  flex-direction: column;
}
.author-social a:hover,
.post-author-name:hover {
  color: #5c83fa;
}
.post-featured-image {
  margin-top: 2rem;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.post-content-wrapper {
  padding: 4rem 0;
}
.post-content {
  max-width: 800px;
  margin: 0 auto;
}
.author-box,
.post-tags-share {
  margin-top: 3rem;
  display: flex;
}
.post-content h2 {
  font-size: 2rem;
  margin: 2.5rem 0 1rem;
}
.post-content h3 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
}
.post-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.post-content blockquote {
  background: rgba(99, 102, 241, 0.05);
  border-left: 4px solid #5c83fa;
  padding: 1.8rem 2rem;
  margin: 2rem 0;
  border-radius: 8px;
  font-style: italic;
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 500;
}
.comment-form input,
.comment-form textarea,
.post-tag,
.share-btn {
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}
.author-box-content p,
.author-social a,
.post-content .wp-caption-text,
.post-content blockquote cite,
.post-tag,
.post-tags span,
.share-btn {
  color: var(--text-gray);
}
.post-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: normal;
}
.post-content ol,
.post-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
  color: var(--text-gray);
}
.post-content .wp-caption img,
.post-content li {
  margin-bottom: 0.5rem;
}
.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 1.5rem 0;
}
.post-content .wp-caption {
  margin: 1.5rem 0;
}
.post-content .wp-caption-text {
  font-size: 0.9rem;
  text-align: center;
}
.post-tags-share {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.post-tags span {
  margin-right: 0.5rem;
}
.post-tag {
  border: 1px solid;
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}
.share-buttons {
  display: flex;
  gap: 0.8rem;
}
.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.author-box {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2.5rem;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.author-box img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.author-box-content p {
  margin-bottom: 1rem;
}
.author-social {
  display: flex;
  gap: 1rem;
}
.author-social a {
  transition: var(--transition);
}
.comments-section {
  max-width: 800px;
  margin: 4rem auto 0;
}
.comments-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.comment {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.comment-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.8rem;
}
.comment-date {
  font-size: 0.85rem;
  color: var(--text-gray);
}
.comment-text {
  color: var(--text-gray);
  margin-bottom: 0.8rem;
}
.comment-reply {
  color: #5c83fa;
  font-weight: 600;
  font-size: 0.9rem;
}
.comment-reply-title,
.privacy-section h2,
.related-title,
.terms-section h2 {
  font-weight: 700;
  color: var(--text-light);
}
.comment-reply i {
  margin-right: 0.3rem;
}
.children {
  list-style: none;
  padding-left: 3rem;
  margin-top: 2rem;
}
.comment-respond {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 2.5rem;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.comment-reply-title {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid;
  border-radius: 16px;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.notice-box,
.privacy-table th {
  background: rgba(99, 102, 241, 0.05);
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #5c83fa;
  outline: 0;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.comment-form .btn-submit {
  background: #5c83fa;
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}
.related-posts {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.related-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 992px) {
  .brand-tools,
  .marketing-tools {
    gap: 2rem;
  }
  .brand-tool-item,
  .tool-item {
    min-width: 80px;
  }
  .brand-tool-item i,
  .tool-item i {
    font-size: 3rem;
  }
  .brand-process-steps,
  .marketing-process-steps {
    flex-direction: column;
    align-items: center;
  }
  .brand-process-step,
  .marketing-process-step {
    width: 100%;
    max-width: 350px;
  }
  .brand-pillars {
    gap: 1rem;
  }
  .pillar-item {
    flex: 0 1 160px;
    padding: 1.2rem;
  }
  .quote-wrapper {
    padding: 2rem;
  }
  .service-chips {
    gap: 0.8rem;
  }
  .service-chip {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
  .featured-post-content {
    padding: 1.8rem;
  }
  .featured-post-content h2 {
    font-size: 1.6rem;
  }
  .post-hero h1 {
    font-size: 2.5rem;
  }
  .author-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }
  .comment {
    flex-direction: column;
    gap: 1rem;
  }
  .children {
    padding-left: 1.5rem;
  }
}
.privacy-content,
.terms-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.privacy-section,
.terms-section {
  margin-bottom: 3rem;
}
.privacy-section h2,
.terms-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}
.privacy-section h3,
.terms-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 2rem 0 1rem;
}
.privacy-section p,
.terms-section p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}
.privacy-section ol,
.privacy-section ul,
.terms-section ol,
.terms-section ul {
  margin: 1.2rem 0 1.5rem 1.5rem;
  color: var(--text-gray);
}
.privacy-section li,
.terms-section li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}
.privacy-section a,
.terms-section a {
  color: var(--accent-primary);
  border-bottom: 1px dotted transparent;
  transition: var(--transition);
}
.privacy-section a:hover,
.terms-section a:hover {
  border-bottom-color: var(--accent-primary);
}
.privacy-table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
}
.privacy-table td,
.privacy-table th {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-gray);
}
.privacy-table th {
  color: var(--text-light);
  font-weight: 600;
}
.notice-box {
  border-left: 4px solid var(--accent-primary);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}
.notice-box p {
  margin-bottom: 0;
}
.notice-box i {
  color: var(--accent-primary);
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .blog-grid,
  .brand-showcase-grid,
  .campaign-grid,
  .design-case-grid,
  .service-feature-grid {
    grid-template-columns: 1fr;
  }
  .app-badges,
  .brand-pillars {
    flex-direction: column;
    align-items: center;
  }
  .app-badge {
    width: 80%;
    justify-content: center;
  }
  .device-mockup {
    max-width: 220px;
  }
  .pillar-item {
    width: 100%;
    max-width: 300px;
  }
  .quote-wrapper {
    padding: 1.5rem;
  }
  .estimated-budget {
    font-size: 1.8rem;
  }
  .featured-post-img {
    min-height: 200px;
  }
  .post-hero h1 {
    font-size: 2rem;
  }
  .post-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .post-tags-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .privacy-content,
  .terms-content {
    padding: 3rem 1rem;
  }
  .privacy-section h2,
  .terms-section h2 {
    font-size: 1.6rem;
  }
  .privacy-section h3,
  .terms-section h3 {
    font-size: 1.3rem;
  }
  .page-header h1 {
    font-size: 2.5rem;
  }
}