/* Web Design Service Custom Styles */

.digital-exp-section {
  background-color: #0b0b12;
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.digital-exp-title {
  margin-bottom: 2rem;
  color: #ffffff;
  line-height: 1.3;
}

.digital-exp-highlight {
  color: #9d52ff;
  font-weight: 700;
}

.digital-exp-desc {
  margin: 0 auto 1.5rem auto;
  line-height: 1.7;
  color: #d1d1e0;
}

.digital-exp-desc a.purple-link {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #9d52ff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.digital-exp-desc a.purple-link:hover {
  color: #9d52ff;
}

/* Horizontal Scrollable Portfolio Carousel */
.digital-exp-slider-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0 30px 0;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(157, 82, 255, 0.4) transparent;
}

.digital-exp-slider-wrap::-webkit-scrollbar {
  height: 6px;
}

.digital-exp-slider-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.digital-exp-slider-wrap::-webkit-scrollbar-thumb {
  background: rgba(157, 82, 255, 0.5);
  border-radius: 10px;
}

.digital-exp-slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  padding-left: calc((100vw - 1200px) / 2 + 15px);
  padding-right: calc((100vw - 1200px) / 2 + 15px);
}

@media (max-width: 1240px) {
  .digital-exp-slider-track {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.portfolio-scroll-card {
  flex: 0 0 580px;
  width: 580px;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #161622;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.portfolio-scroll-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(157, 82, 255, 0.3);
  border-color: rgba(157, 82, 255, 0.5);
}

.portfolio-card-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.digital-exp-action {
  margin-top: 2rem;
}

.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #8c42ff;
  color: #ffffff !important;
  padding: 10px 24px 10px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(140, 66, 255, 0.4);
}

.portfolio-btn:hover {
  background-color: #792df3;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(140, 66, 255, 0.6);
}

.portfolio-btn .btn-arrow-icon {
  width: 34px;
  height: 34px;
  background-color: #ffffff;
  color: #8c42ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Craft Digital Identity Section */
.craft-identity-section {
  padding: 90px 0;
  color: #ffffff;
}

.craft-header {
  text-align: center;
  margin: 0 auto 3.5rem auto;
}

.craft-title {
  color: #ffffff;
  margin-bottom: 1.2rem;
  line-height: 1.3;
}

.craft-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b0b0cc;
}

.craft-card {
  background-color: #131221;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.craft-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157, 82, 255, 0.4);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
}

.craft-card-img-wrap {
  position: relative;
  height: 257px;
  width: 100%;
  background-color: #1a192c;
}

.craft-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.craft-card-icon {
  position: absolute;
  padding: 10px;
  bottom: -22px;
  left: 24px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #9d52ff 0%, #792df3 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(157, 82, 255, 0.4);
  z-index: 2;
}

.craft-card-body {
  padding: 36px 24px 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.craft-card-title {
  color: #ffffff;
  margin-bottom: 12px;
}

.craft-card-text {
  font-size: 18px !important;
  line-height: 1.65;
  color: #FFFFFF;
  margin-bottom: 0;
}

.craft-cta-card {
  background-color: #131221;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  height: 100%;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.craft-cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157, 82, 255, 0.4);
}

/* Digital Success Roadblocks Section */
.digital-success-section {
  padding: 90px 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center center;
}

.success-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem auto;
}

.success-title {
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
}

.mobile-mockup-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 100%;
  width: 100%;

}

.mobile-mockup-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 480px;
  max-height: 520px;
  background: radial-gradient(circle, rgba(140, 66, 255, 0.75) 0%, rgba(121, 45, 243, 0.45) 40%, rgba(121, 45, 243, 0) 75%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.mobile-mockup-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.9) 0%, rgba(128, 66, 245, 0.5) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(35px);
  z-index: 1;
  pointer-events: none;
}

.mobile-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.8));
  border: 1px solid #845EF7
}

@media (max-width: 991.98px) {
  .mobile-mockup-img {
    height: auto;
    max-height: 480px;
    object-fit: contain;
  }
}

.success-card {
  background: #121122;
  border: 1px solid rgba(157, 82, 255, 0.25);
  border-radius: 18px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.success-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157, 82, 255, 0.6);
  box-shadow: 0 16px 36px rgba(157, 82, 255, 0.15);
}

.success-card-title {
  color: #ffffff;
  margin-bottom: 14px;
}

.success-card-text {
  font-size: 18px !important;
  line-height: 1.65;
  color: #FFFFFF;
  margin: 0;
}

/* Our Process Section */
.our-process-section {
  padding: 90px 0;
  color: #ffffff;
}

.process-section-title {
  color: #ffffff;
  margin-bottom: 3.5rem;
}

.process-content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 20px;
}

.process-step-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.process-step-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #a4a4be;
  margin-bottom: 2.5rem;
  min-height: 100px;
}

.process-nav-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.process-nav-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0d0c15;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.process-nav-btn:hover {
  background-color: #8c42ff;
  color: #ffffff;
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(140, 66, 255, 0.5);
}

.process-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

.process-img-card {
  background: linear-gradient(135deg, #181729 0%, #11101e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  min-height: 440px;
}

.process-img {
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

/* No. 1 Web Development Agency Section */
.no1-agency-section {
  background-color: #090812;
  padding: 95px 0;
  color: #ffffff;
}

.agency-header {
  margin-bottom: 3.5rem;
}

.agency-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.agency-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b0cb;
}

.agency-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #171627 0%, #11101e 100%);
  border: 1px solid rgba(132, 94, 247, 0.25);
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.agency-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: #845EF7;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.agency-card:hover {
  transform: translateY(-6px);
  border-color: rgba(132, 94, 247, 0.6);
  box-shadow: 0 20px 40px rgba(132, 94, 247, 0.2);
}

.agency-card:hover::before {
  opacity: 0.5;
  transform: translate(-50%, -50%) scale(1.2);
}

.agency-card-icon {
  position: relative;
  z-index: 2;
  height: 64px;
  max-width: 84px;
  margin-bottom: 28px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.agency-card-icon svg {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
}

.agency-card-title {
  position: relative;
  z-index: 2;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.35;
}

.agency-card-text {
  position: relative;
  z-index: 2;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #d1d1e5;
  margin: 0;
}

/* Premier Agency Deliverables Section */
.premier-agency-section {
  position: relative;
  background-color: #06050b;
  padding: 85px 0 90px 0;
  color: #ffffff;
}

.premier-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.premier-bg-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 7, 16, 0.4) 0%, rgba(8, 7, 16, 0.7) 100%);
}

.premier-agency-section .container {
  position: relative;
  z-index: 2;
}

.premier-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.premier-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #d1d1e6;
  margin-bottom: 1.25rem;
}

.deliverables-card {
  background-color: #8042f5;
  border-radius: 24px;
  padding: 38px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  margin-top: 15px;
}

.deliverables-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: #ffffff;
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 12px;
}

.deliverable-item:last-child {
  margin-bottom: 0;
}

.deliverable-dot {
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* Tech Stack Section */
.tech-stack-section {
  background-color: #080710;
  padding: 95px 0;
  color: #ffffff;
}

.tech-header {
  text-align: left;
  margin: 0 auto 3rem auto;
}

.tech-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.tech-subtitle {
  color: #b0b0cb;
}

.tech-tabs-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.tech-tab-btn {
  background-color: #1e1d2b;
  color: #e2e2f0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tech-tab-btn:hover {
  background-color: #272538;
  color: #ffffff;
}

.tech-tab-btn.active {
  background-color: #845EF7;
  border-color: #845EF7;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(132, 94, 247, 0.35);
}

.tech-tab-pane {
  display: none;
}

.tech-tab-pane.active {
  display: flex;
  flex-wrap: wrap;
}

.tool-card-col {
  margin-bottom: 28px;
  text-align: center;
}

.tool-logo-box {
  background-color: #ffffff;
  border-radius: 14px;
  width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-logo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(132, 94, 247, 0.3);
}

.tool-logo-box svg,
.tool-logo-img {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.tool-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 12px;
  line-height: 1.3;
}

/* Web Development Platforms We Excel Section */
.platforms-excel-section {
  background-color: #06050b;
  padding: 95px 0;
  color: #ffffff;
}

.platforms-header {
  margin-bottom: 3.5rem;
}

.platforms-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.platforms-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #b0b0cb;
  max-width: 980px;
}

.platforms-grid-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #0e0d19;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.platform-cell {
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.platform-cell:hover {
  background-color: #171527;
  border-color: rgba(157, 82, 255, 0.3);
}

.platform-cell svg,
.platform-cell img {
  max-width: 160px;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.platform-cell:hover svg,
.platform-cell:hover img {
  transform: scale(1.08);
}

/* Vertical Step Development Process Timeline Section */
.dev-process-timeline-section {
  background-color: #080710;
  padding: 95px 0;
  color: #ffffff;
}

.timeline-header {
  margin-bottom: 4rem;
}

.timeline-title {
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.timeline-subtitle {
  line-height: 1.7;
}

.timeline-tree-wrap {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
}

.timeline-center-line {
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, rgba(128, 66, 245, 0.8) 0%, rgba(128, 66, 245, 0.2) 100%);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-step-row {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.timeline-step-row:last-child {
  margin-bottom: 0;
}

.timeline-col-left,
.timeline-col-right {
  width: 45%;
}

.timeline-col-center {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.timeline-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #0e0d1a;
  border: 2px solid #8042f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(128, 66, 245, 0.4);
  position: relative;
  z-index: 3;
}

.timeline-step-card {
  background: linear-gradient(135deg, #171527 0%, #11101f 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.timeline-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(157, 82, 255, 0.4);
  box-shadow: 0 16px 36px rgba(128, 66, 245, 0.2);
}

.timeline-step-card-title {
  color: #ffffff;
  margin-bottom: 8px;
}

.timeline-step-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0cb;
  margin: 0;
}

/* Dotted connector line */
.timeline-col-right .timeline-step-card::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 50%;
  width: 24px;
  height: 2px;
  border-top: 2px dotted rgba(128, 66, 245, 0.6);
  transform: translateY(-50%);
}

.timeline-col-left .timeline-step-card::after {
  content: '';
  position: absolute;
  right: -24px;
  top: 50%;
  width: 24px;
  height: 2px;
  border-top: 2px dotted rgba(128, 66, 245, 0.6);
  transform: translateY(-50%);
}

@media (max-width: 992px) {
  .platforms-grid-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-cell {
    height: 130px;
  }

  .timeline-center-line {
    left: 26px;
  }

  .timeline-step-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-col-left,
  .timeline-col-right {
    width: 100%;
    padding-left: 70px;
  }

  .timeline-col-center {
    position: absolute;
    left: 0;
    top: 0;
    width: 52px;
  }

  .timeline-col-right .timeline-step-card::before,
  .timeline-col-left .timeline-step-card::after {
    display: none;
  }
}

/* ==========================================================================
   4x3 Platforms Grid Matrix Section
   ========================================================================== */
.platforms-matrix-container {
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.platforms-grid-4x3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.platform-grid-cell {
  background-color: #0c0b16;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 25px 20px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.platform-grid-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(132, 94, 247, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.platform-grid-cell:hover {
  background-color: #151326;
  z-index: 2;
  box-shadow: 0 0 25px rgba(132, 94, 247, 0.25);
}

.platform-grid-cell:hover::before {
  opacity: 1;
}

.platform-grid-cell svg {
  max-width: 80%;
  max-height: 55px;
  width: auto;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.platform-grid-cell:hover svg {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(132, 94, 247, 0.4));
}

@media (max-width: 992px) {
  .platforms-grid-4x3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .platforms-grid-4x3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-grid-cell {
    min-height: 120px;
    padding: 20px 15px;
  }
}

/* ==========================================================================
   Industries We Serve Section
   ========================================================================== */
.industries-serve-section {
  padding: 80px 0 90px;
  background-color: #080711;
  position: relative;
}

.industries-serve-title {
  color: #ffffff;
  margin-bottom: 40px;
  text-align: left;
}

.industry-card {
  background: #181729;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.industry-card:hover {
  background: #1d1b32;
  border-color: rgba(132, 94, 247, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(132, 94, 247, 0.2);
}

.industry-card-img-wrap {
  width: 100%;
  height: 250px;
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
}

.industry-card-img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.35s ease;
}

.industry-card:hover .industry-card-img {
  transform: scale(1.05);
}

.industry-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  padding: 22px 20px;
  text-align: center !important;
  background: #181729;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 12, 26, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
  border-radius: 20px;
}

.industry-card:hover .industry-card-overlay {
  opacity: 1;
  transform: translateY(0);
  background: linear-gradient(180deg, rgb(10 11 15) 0%, rgb(133 91 255) 50%, #0A0B0F 100%);
  text-align: left;
}

.industry-card-overlay-title {
  color: #fff;
  margin-bottom: 14px;
  text-align: left;
  width: 100%;
}

.industry-card-overlay-text {
  font-size: 15px !important;
  line-height: 1.55;
  color: #dedee9;
  margin-bottom: 12px;
  text-align: left;
  width: 100%;
}

.industry-card-links {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-top: auto;
  text-align: left;
  width: 100%;
}

.industry-card-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.industry-card-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================================================
   Why Choose BrandStory As Your Website Development Agency Section
   ========================================================================== */
.why-choose-agency-section {
  padding: 80px 0 90px;
  background-color: #080711;
  position: relative;
}

.why-choose-agency-title {
  color: #ffffff;
  margin-bottom: 45px;
  text-align: left;
}

.why-choose-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.why-choose-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.why-choose-content-wrap {
  padding-left: 10px;
}

.why-choose-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #c0c0d8;
  margin-bottom: 30px;
}

.purple-pill-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #845EF7;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 10px 28px 10px 12px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(132, 94, 247, 0.35);
}

.purple-pill-contact-btn:hover {
  background: #7048e8;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(132, 94, 247, 0.5);
}

.pill-btn-icon-circle {
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #845EF7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.purple-pill-contact-btn:hover .pill-btn-icon-circle {
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .why-choose-agency-title {
    margin-bottom: 30px;
  }

  .why-choose-content-wrap {
    padding-left: 0;
  }
}

/* Mobile Devices: Left align headings and paragraphs */
@media (max-width: 768px) {

  .digital-exp-section,
  .digital-exp-title,
  .digital-exp-desc,
  .craft-header,
  .craft-title,
  .craft-subtitle,
  .success-header,
  .success-title,
  .timeline-header,
  .timeline-title,
  .timeline-subtitle,
  .platforms-header,
  .platforms-title,
  .platforms-subtitle,
  .why-choose-agency-title,
  .why-choose-desc,
  .industries-serve-title,
  .industry-card-overlay-title,
  .industry-card-overlay-text,
  .dm-faq-section h2 {
    text-align: left !important;
  }

  .digital-exp-section,
  .platforms-excel-section,
  .industries-serve-section {
    padding: 0;
  }

  .portfolio-scroll-card {
    flex: 0 0 380px;
    width: 100%;
  }

  .digital-success-section,
  .our-process-section {
    padding-bottom: 0;
  }

  .craft-cta-card {
    min-height: 150px;
  }

  .process-img-card {
    min-height: auto;
  }
}