/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--itzone-white);
  padding: 80px 0 40px;
  overflow: hidden;
  position: relative;
}

/* Large soft purple-blue gradient orb — fills right half of hero */
.hero-orb {
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(124, 58, 237, 0.14) 0%,
    rgba(67, 97, 238, 0.1) 35%,
    rgba(67, 97, 238, 0.04) 60%,
    transparent 72%
  );
  top: -180px;
  right: -140px;
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ---------- Hero tag pill ---------- */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(67, 97, 238, 0.07);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid rgba(67, 97, 238, 0.18);
  margin-bottom: 22px;
}
.tag-dot {
  font-size: 14px;
}

/* ---------- Hero heading ---------- */
.hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}

/* ---------- Hero paragraph ---------- */
.hero-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 450px;
}

/* ---------- Hero buttons ---------- */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* ---------- Trust row ---------- */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--itzone-white);
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 0 0 1.5px rgba(67, 97, 238, 0.15);
}
.trust-avatars img:first-child {
  margin-left: 0;
}
.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.trust-text span {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Hero visual (right column) ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* Extra top padding so top badge has room above image */
  padding-top: 28px;
  padding-bottom: 28px;
}

/* Dot grids inside the right column */
.hero-dot-grid {
  position: absolute;
  width: 110px;
  height: 110px;
  background-image: radial-gradient(
    circle,
    rgba(67, 97, 238, 0.45) 1.5px,
    transparent 1.5px
  );
  background-size: 13px 13px;
  pointer-events: none;
  z-index: 2;
  /* top-right of the visual column */
  top: 0;
  right: 0;
}
.hero-dot-grid-br {
  top: auto;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

/* ---------- Main image ---------- */
.hero-img-wrap {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(67, 97, 238, 0.08),
    0 20px 60px rgba(67, 97, 238, 0.16);
  position: relative;
  z-index: 1;
}
.hero-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-img-wrap:hover img {
  transform: scale(1.03);
}

/* ---------- Floating stat badges ---------- */
.hbadge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--itzone-white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
  z-index: 3;
  white-space: nowrap;
}

/* Top-LEFT — floats above the image on the left side */
.hbadge-tl {
  top: 0;
  left: -10px;
  animation: floatBadgeA 4.2s ease-in-out infinite;
}

/* Bottom-RIGHT — floats near bottom-right corner */
.hbadge-br {
  bottom: 0;
  right: -10px;
  animation: floatBadgeB 5s ease-in-out infinite;
}

.hbadge-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.hbadge-icon.blue {
  background: rgba(67, 97, 238, 0.12);
  color: var(--blue);
}
.hbadge-icon.green {
  background: #065f46;
  color: var(--itzone-white);
}

.hbadge-body strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.1;
}
.hbadge-body span {
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Keyframes ---------- */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes floatBadgeA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes floatBadgeB {
  0%,
  100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
}
@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes iconPop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-anim {
  opacity: 0;
  animation: fadeSlideUp 0.78s cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0s)
    forwards;
}
.hero-visual-anim {
  opacity: 0;
  animation: slideInRight 0.88s cubic-bezier(0.22, 0.61, 0.36, 1) 0.32s forwards;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-section {
  background: var(--itzone-extra);
  padding: 40px 0;
  border-top: 1px solid var(--border-card);
  border-bottom: 1px solid var(--border-card);
}
.brands-label {
  text-align: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-bottom: 28px;
}
.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.brand-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  transition: color 0.2s;
  border: 1px solid #e5e7eb;
  padding: 8px 20px;
  border-radius: 5px;
}
.brand-item i {
  font-size: 22px;
}
.brand-item:hover {
  color: var(--blue);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--itzone-white);
  padding: 60px 0;
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.services-title h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
.services-title p {
  font-size: 15px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(67, 97, 238, 0.25);
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 18px;
  transition: background 0.3s;
}
.service-card:hover .svc-icon {
  background: var(--blue);
  color: var(--itzone-white);
}
.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s;
}
.svc-link:hover {
  gap: 10px;
}

.reveal-anim {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal-anim.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: var(--itzone-white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.why-dots-tr {
  top: 24px;
  right: 24px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left image */
.why-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--itzone-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.play-btn i {
  margin-left: 3px;
}

.why-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.why-cap-avatars {
  display: flex;
}
.why-cap-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--itzone-white);
  object-fit: cover;
  margin-left: -8px;
}
.why-cap-avatars img:first-child {
  margin-left: 0;
}
.why-caption p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text);
}
.why-caption strong {
  display: block;
}

/* Right content */
.why-content h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.why-content > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 20px;
}
.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feat-icon {
  width: 42px;
  height: 42px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 17px;
  flex-shrink: 0;
}
.why-feat h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.why-feat p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.project-one {
  background: var(--bg-2);
  padding: 60px 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  background: var(--itzone-white);
  padding: 60px 0;
}
.process-intro {
  text-align: center;
  margin-bottom: 56px;
}
.process-intro h2 {
  font-size: 34px;
  font-weight: 800;
  margin-top: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.process-step {
  text-align: center;
  padding: 0 12px;
}
.step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 1px;
  margin-bottom: 12px;
  opacity: 0.7;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(67, 97, 238, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 26px;
  margin: 0 auto 18px;
  transition: background 0.3s, color 0.3s;
}
.process-step:hover .step-icon {
  background: var(--blue);
  color: var(--itzone-white);
}
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.process-step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.process-connector {
  align-self: center;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 48px;
}
.process-connector::after {
  content: "";
  display: block;
  width: 80%;
  border-top: 2px dashed rgba(67, 97, 238, 0.3);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--light-bg);
  padding: 60px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.testi-left h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.25;
}
.testi-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.stars {
  color: #f59e0b;
  font-size: 18px;
  display: flex;
  gap: 3px;
}
.rating-score {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
}
.rating-count {
  font-size: 14px;
  color: var(--muted);
}

.testi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.testi-card {
  background: var(--itzone-white);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  font-size: 56px;
  line-height: 0.8;
  font-family: Georgia, serif;
  color: var(--blue);
  opacity: 0.3;
  margin-bottom: 12px;
}
.testi-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.testi-author span {
  font-size: 14px;
  color: var(--muted);
}

.testi-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-section {
  background: var(--itzone-white);
  padding: 60px 0;
}
.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.blog-header h2 {
  margin-top: 8px;
  line-height: 1.25;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--light-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  z-index: 1;
}
.blog-img::after{
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 0;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 0px 10px;
  border-radius: 100px;
  color: var(--itzone-white);
  z-index: 1;
}
.blog-tag.web {
  background: var(--itzone-blue);
}
.blog-tag.mobile {
  background: #10b981;
}
.blog-tag.ux {
  background: #f59e0b;
}
.blog-tag.cloud {
  background: #06b6d4;
}

.blog-date {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--itzone-white);
  background: rgba(0, 0, 0, 0.45);
  padding: 3px 9px;
  border-radius: 100px;
  z-index: 1;
}

.blog-body {
  padding: 18px 16px;
  background: var(--itzone-white);
}
.blog-body h3 {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}

.home-cta {
  background: var(--itzone-secondary);
}

.home-why-features{
  grid-template-columns: 1fr;
  gap: 30px 20px;
}

.home-process-section {
  background-color: var(--dark-bg);
  padding: 60px 0;
}
.para-box{
  min-height: 92px;
}

.tracking-widest {
  letter-spacing: 0.25rem;
}

/* Process Flow Container Grid */
.theme-process-wrapper {
  position: relative;
  z-index: 1;
}

/* Core Glassmorphic Card Implementation */
.custom-theme-card {
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 22px;
  padding: 2.5rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* Structural Step Backing Tags */
.card-step-indicator {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-weight: 800;
  font-size: 1.1rem;
  opacity: 0.3;
  color: var(--indigo);
  transition: opacity 0.3s ease;
}

/* Theme Dynamic Icon Shell */
.theme-icon-container {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background-color: var(--dark-input);
  border: 1px solid var(--dark-border);
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

/* Individual Card Palette Modifiers */
.card-phase-1 {
  --phase-color: var(--teal);
}
.card-phase-2 {
  --phase-color: var(--indigo);
}
.card-phase-3 {
  --phase-color: var(--purple);
}
.card-phase-4 {
  --phase-color: var(--pink);
}
.card-phase-5 {
  --phase-color: var(--orange);
}

.theme-icon-container {
  color: var(--phase-color);
}

/* Custom Responsive Interactive Hover Effects */
.custom-theme-card:hover {
  transform: translateY(-10px);
  border-color: var(--phase-color);
  box-shadow: 0 15px 35px rgba(11, 14, 25, 0.5),
    0 0 20px rgba(var(--itzone-base-rgb), 0.15);
}

.custom-theme-card:hover .theme-icon-container {
  background-color: var(--phase-color);
  color: var(--dark-card);
  border-color: var(--phase-color);
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 0 20px var(--phase-color);
}

.custom-theme-card:hover .card-step-indicator {
  opacity: 1;
  color: var(--phase-color);
}

.home-page-faq{
  /* padding: 60px; */
  .faq-one__shape-3{
    bottom: 0px;
  }
}

.brand-about-section{
  background: linear-gradient(135deg, #2e2a34 0%, #2563eb 100%);
  padding: 60px 0;
}

.cta-section{
  background: linear-gradient(135deg, #1a2e8a 0%, #2d40d0 45%, #4361ee 100%);
  padding: 0px 0 0px;
  position: relative;
  overflow: hidden;
}
.cta-box {
    position: initial;
    overflow: hidden;
    border-radius: 20px;
    padding: 70px 0px;
    background: none;
    color: #fff;
    box-shadow: none;
}

@media (max-width: 1199px) {
  .hero-container {
    gap: 35px;
    grid-template-columns: 1fr 0.9fr;
  }
  .hero-text h1 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .services-header {
    gap: 18px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 35px;
  }
  .stat-sep {
    display: none;
  }
  .stat-item h3 {
    font-size: 36px;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .process-connector {
    display: none;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testi-cards {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-cta {
    text-align: center;
  }
  .home-cta .cta-btn-box {
    justify-content: center;
  }
  .theme-process-wrapper::before {
    content: "";
    position: absolute;
    top: 20%;
    left: 6%;
    width: 88%;
    height: 1px;
    background: linear-gradient(
      to right,
      rgba(99, 102, 241, 0) 0%,
      var(--dark-border) 20%,
      var(--dark-border) 80%,
      rgba(99, 102, 241, 0) 100%
    );
    z-index: 0;
  }
}

@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 32px;
  }
  .services-section,
  .brands-section,
  .stats-section,
  .why-section,
  .project-one,
  .process-section,
  .testimonials-section,
  .blog-section,
  .s3-cta-section,
  .hero ,.home-process-section{
    padding: 50px 0;

  }
  .services-header {
    text-align: center;
    justify-content: center;
  }
  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .stats-card {
    padding: 30px 16px;
  }
  .stat-item h3 {
    font-size: 26px;
  }
  .why-content {
    text-align: center;
  }
  .why-feat {
    text-align: left;
  }
  .why-features {
    grid-template-columns: 1fr;
    gap: 35px 16px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .testi-left {
    text-align: center;
  }
  .testi-rating {
    justify-content: center;
  }
  .testi-cards {
    grid-template-columns: 1fr;
  }
  .blog-header {
    text-align: center;
    justify-content: center;
    gap: 0;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .s3-cta-box {
    padding: 30px 16px;
  }
  .custom-theme-card , .testi-card{
    padding: 16px;
  }
  .testimonials-grid{
    gap: 16px;
  }
  .testi-nav{
    justify-content: center;
  }
  .why-image img{
    height: 325px;
  }
  .why-caption{
    border-radius: 5px;
    padding: 8px 12px;
  }
  .why-caption p{
    font-size: 13px !important;
  }
  .why-cap-avatars img{
    height: 30px;
  }
  .section-title{
    margin-bottom: 24px;
  }
  .project-one__box-content{
    min-height: 400px;
  }
  .cta-section{
      margin-top: 60px;
  }
}
