/* ==========================================================================
   Infisetu Theme Sub-Pages & Services Stylesheet
   ========================================================================== */

/* Service Hero Section Grid */
.services-hero-section {
  background: linear-gradient(180deg, #F0F7FB 0%, #FFFFFF 100%);
  padding: 60px 0 50px 0;
  position: relative;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.hero-text-col {
  text-align: left;
}

.hero-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.08));
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #38BDF8;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-hero-title, .services-hero-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin: 18px 0 16px 0;
  letter-spacing: -0.5px;
}

.service-hero-title span, .services-hero-title span {
  color: #2A7893;
}

.service-hero-subtitle, .services-hero-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Pillar Breakdown Cards Grid */
.pillars-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pillar-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-teal);
  box-shadow: 0 16px 36px rgba(51, 128, 154, 0.12);
}

.pillar-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(51, 128, 154, 0.12) 0%, rgba(42, 121, 148, 0.05) 100%);
  color: var(--secondary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0 0 12px 0;
  line-height: 1.35;
}

.pillar-card p {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}

/* Comparison Matrix Table */
.comparison-section {
  padding: 90px 0;
  background-color: #F8FAFC;
}

.table-responsive {
  overflow-x: auto;
  margin-top: 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
}

.comparison-table, .matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  text-align: left;
}

.comparison-table th, .matrix-table th {
  background-color: var(--primary-navy);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  padding: 18px 24px;
  border-bottom: 2px solid var(--border-light);
}

.comparison-table td, .matrix-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #F1F5F9;
  font-size: 14.5px;
  color: var(--dark-text);
  line-height: 1.5;
}

.comparison-table tr:last-child td, .matrix-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even), .matrix-table tr:nth-child(even) {
  background-color: #F8FAFC;
}

.tag-green, .badge-winner {
  background-color: #D1FAE5;
  color: #065F46;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

.tag-red, .badge-loser {
  background-color: #FEE2E2;
  color: #991B1B;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

/* Circular Arrow Navigation Controls at Bottom of Table */
.table-bottom-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.btn-circle-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid #2A7893;
  color: #2A7893;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(42, 120, 147, 0.18);
  transition: all 0.25s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-circle-arrow:hover,
.btn-circle-arrow:active {
  background: #2A7893;
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(42, 120, 147, 0.28);
}

/* Process Timeline (4/6 Steps Grid) */
.timeline-section, .about-process-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.timeline-grid, .process-timeline-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.step-card, .process-timeline-step {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.step-card:hover, .process-timeline-step:hover {
  border-color: #2A7893;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(42, 120, 147, 0.1);
}

.step-number-badge, .step-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: #2A7893;
  margin-bottom: 14px;
  line-height: 1;
}

.step-card h4, .process-timeline-step h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.step-card p, .process-timeline-step p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}

/* Checklists & Feature Lists */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  margin-top: 24px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--dark-text);
}

.checklist-item i {
  color: #2A7893;
  font-size: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   About Us Page Section 3: Core Values Grid
   ========================================================================== */

.about-values-section {
  padding: 90px 0;
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.values-header, .process-header, .testimonials-header {
  margin-bottom: 48px;
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-main-title span {
  color: #2A7893;
}

.section-subtitle {
  font-size: 15.5px;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 12px 0 0 0;
}

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

.value-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: #2A7893;
  box-shadow: 0 14px 32px rgba(42, 120, 147, 0.12);
}

.value-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(42, 120, 147, 0.15) 0%, rgba(42, 120, 147, 0.05) 100%);
  color: #2A7893;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.value-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   About Us Page Section 5: Testimonials Grid
   ========================================================================== */

.about-testimonials-section {
  padding: 90px 0;
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: #2A7893;
  box-shadow: 0 16px 36px rgba(19, 34, 56, 0.08);
}

.stars-rating {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 18px;
  display: flex;
  gap: 4px;
}

.stars-rating i {
  color: #F59E0B !important;
}

.quote-text {
  font-size: 14.5px;
  color: var(--dark-text);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #F1F5F9;
  padding-top: 20px;
  margin-top: auto;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(42, 120, 147, 0.15) 0%, rgba(42, 120, 147, 0.05) 100%);
  color: #2A7893;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.client-details strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.3;
}

.client-details span {
  font-size: 12.5px;
  color: var(--text-gray);
}

/* ==========================================================================
   Services Hub Page Styling (/services/)
   ========================================================================== */

.services-breadcrumb {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 16px;
  font-weight: 500;
}

.services-breadcrumb a {
  color: #2A7893;
}

.services-breadcrumb .divider {
  margin: 0 8px;
  color: #CBD5E1;
}

/* Interactive Category Filter Bar */
.services-filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.filter-btn {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  color: var(--dark-text);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.filter-btn:hover {
  border-color: #2A7893;
  color: #2A7893;
  transform: translateY(-1px);
}

.filter-btn.active {
  background: #2A7893;
  border-color: #2A7893;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(42, 120, 147, 0.3);
}

/* Services Showcase Grid */
.services-grid-section {
  padding: 90px 0;
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.service-showcase-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 32px 26px 28px 26px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
  height: 100%;
}

.service-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(19, 34, 56, 0.1);
  border-color: #2A7893;
}

.card-top-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: #2A7893;
  background: #E0F2FE;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 20px;
  letter-spacing: 0.8px;
}

.featured-tag {
  background: linear-gradient(135deg, #2A7893, #1D2C38);
  color: #FFFFFF;
}

.service-icon-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.s-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(42, 120, 147, 0.12) 0%, rgba(42, 120, 147, 0.06) 100%);
  color: #2A7893;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.service-icon-header h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0;
  line-height: 1.3;
}

.service-summary {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature-list li {
  font-size: 13.5px;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.service-feature-list i {
  color: #2A7893;
  font-size: 12px;
  flex-shrink: 0;
}

.tech-stack-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  margin-top: auto;
}

.tech-stack-pills span {
  font-size: 11.5px;
  background: #F1F5F9;
  color: var(--text-gray);
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.btn-card-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #2A7893;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.btn-card-link i {
  transition: transform 0.2s ease;
}

.btn-card-link:hover i {
  transform: translateX(4px);
}

.featured-service-card {
  border: 2px solid #2A7893;
  box-shadow: 0 8px 24px rgba(42, 120, 147, 0.12);
}

/* Why Choose Our Services Section */
.services-value-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.value-prop-card {
  background: #F8FAFC;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1.5px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.value-prop-card:hover {
  background: #FFFFFF;
  border-color: #2A7893;
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(42, 120, 147, 0.1);
}

.vp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(42, 120, 147, 0.15) 0%, rgba(42, 120, 147, 0.05) 100%);
  color: #2A7893;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.value-prop-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0 0 10px 0;
  line-height: 1.35;
}

.value-prop-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
  margin: 0;
}

/* Services & About CTA Banner */
.services-cta-section, .about-cta-section {
  padding: 85px 0;
  background: linear-gradient(135deg, #132238 0%, #1E3A8A 50%, #2A7893 100%);
  color: #FFFFFF;
  text-align: center;
}

.services-cta-section .cta-title, .about-cta-section .cta-title, .cta-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF !important;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.services-cta-section .cta-subtitle, .about-cta-section .cta-subtitle, .cta-subtitle {
  font-size: 16.5px;
  color: #CBD5E1 !important;
  margin: 0 0 34px 0;
  line-height: 1.6;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-section .cta-buttons, .about-cta-section .cta-buttons, .cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FAQ Section Sticky Illustration Styling
   ========================================================================== */

.faq-section {
  background: linear-gradient(180deg, #F0F7FB 0%, #FFFFFF 100%);
  padding: 90px 0;
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  align-items: flex-start;
  gap: 40px;
}

.faq-image-box {
  position: sticky;
  top: 120px;
  align-self: flex-start;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image-box img, .faq-illustration-img {
  width: 100%;
  max-width: 360px;
  max-height: 380px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.faq-content {
  width: 100%;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.accordion-item:hover {
  border-color: #2A7893;
  box-shadow: 0 4px 16px rgba(42, 120, 147, 0.08);
}

.accordion-header {
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--dark-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.accordion-header span {
  flex-grow: 1;
  line-height: 1.4;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-body-inner {
  padding: 0 24px 20px 24px;
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.7;
}

.accordion-item.active {
  border-color: #2A7893;
  box-shadow: 0 6px 20px rgba(42, 120, 147, 0.12);
}

.accordion-item.active .accordion-header {
  color: #2A7893;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
}

/* ==========================================================================
   About Us Page Professional Styling
   ========================================================================== */

/* 1. Hero Section */
.about-hero-section {
  background: linear-gradient(180deg, #F0F7FB 0%, #FFFFFF 100%);
  padding: 65px 0 55px 0;
  text-align: center;
}

.about-hero-content {
  max-width: 840px;
  margin: 0 auto;
}

.about-breadcrumb {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 16px;
  font-weight: 500;
}

.about-breadcrumb a {
  color: #2A7893;
}

.about-breadcrumb .divider {
  margin: 0 8px;
  color: #CBD5E1;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
  margin: 20px 0 18px 0;
  letter-spacing: -0.5px;
}

.about-hero-title span {
  color: #2A7893;
}

.about-hero-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-subtitle + .about-hero-subtitle {
  margin-top: 12px;
}

.about-hero-section .hero-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px !important;
  margin-bottom: 0;
  clear: both;
}

/* 2. Story Section */
.about-story-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 60px;
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.experience-card-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #FFFFFF;
  padding: 16px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(19, 34, 56, 0.14);
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border-light);
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: #2A7893;
  line-height: 1;
}

.exp-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 14.5px;
  color: var(--dark-text);
  line-height: 1.3;
}

.exp-text span {
  font-size: 12.5px;
  color: var(--text-gray);
}

.story-lead-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-navy);
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-paragraph {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 28px;
}

.mission-vision-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.mv-box {
  background: #F8FAFC;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border: 1.5px solid var(--border-light);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
}

.mv-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(42, 120, 147, 0.12);
  color: #2A7893;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mv-info h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.mv-info p {
  font-size: 13.5px;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================================
   Services & About Us Responsiveness: Tablet (<= 991px), Mobile (<= 767px), Small (<= 480px)
   ========================================================================== */

/* Tablet Screens (<= 991px) */
@media (max-width: 991.98px) {
  .about-hero-section,
  .services-hero-section,
  .service-hero-section {
    padding: 40px 0 45px 0;
  }

  .about-story-section,
  .services-grid-section,
  .why-choose-section,
  .pillars-section,
  .matrix-section,
  .process-section,
  .testimonials-section,
  .values-section,
  .methodology-section,
  .contact-section-wrapper,
  .services-cta-section {
    padding: 60px 0;
  }

  .about-hero-title,
  .services-hero-title,
  .service-hero-title,
  .cta-title {
    font-size: 34px;
    line-height: 1.25;
  }

  .section-main-title {
    font-size: 30px;
    line-height: 1.25;
  }

  .contact-layout-grid, 
  .about-story-grid, 
  .service-hero-grid, 
  .hero-content-grid, 
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  /* IMAGE FIRST IN WEB DEV HERO ON TABLET & MOBILE */
  .hero-image-col {
    order: -1;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }

  .hero-graphic-img {
    max-height: 300px;
    width: auto;
  }

  .hero-text-col {
    order: 1;
    text-align: center;
  }

  .services-hero-subtitle {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  /* IMAGE FIRST IN STORY SECTION */
  .about-image-wrapper {
    order: -1;
    margin-bottom: 12px;
  }

  .about-story-content {
    order: 1;
    text-align: center;
  }

  .experience-card-floating {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -24px auto 18px auto;
    width: fit-content;
    max-width: 90%;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 2;
    padding: 14px 22px;
  }

  .story-lead-text,
  .story-paragraph {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  /* TABLET 2-COLUMN GRIDS */
  .values-grid, 
  .process-timeline-row, 
  .testimonials-grid, 
  .services-showcase-grid, 
  .value-prop-grid, 
  .timeline-grid, 
  .pillars-grid,
  .mission-vision-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* IMAGE FIRST IN FAQ SECTION */
  .faq-image-box {
    order: -1;
    position: static;
    margin: 0 auto 16px auto;
    text-align: center;
  }

  .faq-image-box img, 
  .faq-illustration-img {
    max-width: 280px;
    max-height: 260px;
  }

  .faq-content {
    order: 1;
    text-align: center;
  }

  .accordion-header {
    text-align: left;
  }

  .accordion-body-inner {
    text-align: left;
  }
}

/* Mobile Screens (<= 767px) */
@media (max-width: 767.98px) {
  .about-hero-section,
  .services-hero-section,
  .service-hero-section {
    padding: 35px 0 35px 0;
  }

  .about-story-section,
  .services-grid-section,
  .why-choose-section,
  .pillars-section,
  .matrix-section,
  .process-section,
  .testimonials-section,
  .values-section,
  .methodology-section,
  .contact-section-wrapper,
  .services-cta-section {
    padding: 48px 0;
  }

  .about-hero-title,
  .services-hero-title,
  .service-hero-title,
  .cta-title {
    font-size: 27px;
    line-height: 1.25;
  }

  .section-main-title {
    font-size: 25px;
    line-height: 1.25;
  }

  .story-lead-text {
    font-size: 15px;
    line-height: 1.65;
  }

  .story-paragraph,
  .about-hero-subtitle,
  .services-hero-subtitle,
  .cta-subtitle {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .hero-graphic-img {
    max-height: 230px;
  }

  .contact-form-row-2col, 
  .values-grid, 
  .process-timeline-row, 
  .testimonials-grid, 
  .mission-vision-boxes, 
  .services-showcase-grid, 
  .value-prop-grid, 
  .timeline-grid, 
  .pillars-grid, 
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-showcase-card,
  .value-card,
  .timeline-step-card,
  .testimonial-pro-card,
  .mv-box,
  .pro-contact-form-box,
  .contact-info-card-pro {
    padding: 22px 18px;
  }

  .hero-image-col {
    display: none !important;
  }

  .about-values-section {
    padding: 35px 0 10px 0 !important;
  }

  .table-bottom-nav {
    display: none !important;
  }

  .table-responsive {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    margin-top: 10px;
    margin-bottom: 0 !important;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  /* Custom styled scrollbar for touch slider */
  .table-responsive::-webkit-scrollbar {
    height: 6px !important;
    display: block !important;
  }
  .table-responsive::-webkit-scrollbar-track {
    background: #E2E8F0 !important;
    border-radius: 10px;
  }
  .table-responsive::-webkit-scrollbar-thumb {
    background: #2A7893 !important;
    border-radius: 10px;
  }

  .comparison-table {
    min-width: 680px !important;
    width: 680px !important;
    table-layout: fixed !important;
  }

  .comparison-table th:nth-child(1),
  .comparison-table td:nth-child(1) {
    width: 180px !important;
    min-width: 180px !important;
    white-space: normal !important;
    padding: 14px 16px;
    font-size: 13.5px;
  }

  .comparison-table th:nth-child(2),
  .comparison-table td:nth-child(2) {
    width: 250px !important;
    min-width: 250px !important;
    white-space: normal !important;
    padding: 14px 16px;
    font-size: 13px;
  }

  .comparison-table th:nth-child(3),
  .comparison-table td:nth-child(3) {
    width: 250px !important;
    min-width: 250px !important;
    white-space: normal !important;
    padding: 14px 16px;
    font-size: 13px;
  }

  .pro-form-input,
  .pro-form-select,
  .pro-form-textarea {
    font-size: 16px; /* Prevents auto-zoom on iOS */
  }
}

/* Small Mobile Screens (<= 480px) */
@media (max-width: 480px) {
  .about-hero-title,
  .services-hero-title,
  .service-hero-title,
  .cta-title {
    font-size: 23px;
  }

  .section-main-title {
    font-size: 22px;
  }

  .about-hero-section .hero-cta-group,
  .cta-buttons,
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: stretch;
  }

  .about-hero-section .hero-cta-group .btn-exact-teal,
  .about-hero-section .hero-cta-group .btn-exact-dark,
  .cta-buttons .btn-exact-teal,
  .cta-buttons .btn-exact-dark,
  .hero-cta-group .btn-exact-teal,
  .hero-cta-group .btn-exact-dark {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 13px 18px;
    font-size: 14.5px;
  }

  .btn-submit-pro {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px 18px;
  }

  .services-filter-bar {
    gap: 6px;
    margin-top: 18px;
  }

  .filter-btn {
    padding: 7px 12px;
    font-size: 12.5px;
  }
}

/* ==========================================================================
   Legal & Terms Page Styling (Terms & Condition / Privacy Policy)
   ========================================================================== */

.legal-hero-section {
  padding: 70px 0 65px 0;
  background-color: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
}

.legal-effective-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  background: rgba(42, 120, 147, 0.08);
  color: #2A7893;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  border: 1px solid rgba(42, 120, 147, 0.2);
}

.legal-content-section {
  padding: 70px 0 90px 0;
  background-color: #FFFFFF;
}

.legal-content-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  padding: 30px 34px;
  box-shadow: 0 4px 20px rgba(19, 34, 56, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.legal-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 6px 24px rgba(19, 34, 56, 0.08);
}

.legal-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
}

.legal-num-badge {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #2A7893;
  background: rgba(42, 120, 147, 0.1);
  border-radius: 6px;
  padding: 4px 10px;
  letter-spacing: 0.5px;
}

.legal-card-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0;
  line-height: 1.35;
}

.legal-card-body p {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-card-body p:last-child {
  margin-bottom: 0;
}

.legal-card-body a {
  color: #2A7893;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card-body a:hover {
  color: var(--primary-navy);
}

.legal-feature-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 12px 0 0 0 !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #334155;
  font-weight: 500;
  line-height: 1.6;
}

.legal-feature-list li i {
  color: #2A7893;
  margin-top: 4px;
  font-size: 15px;
  flex-shrink: 0;
}

.legal-points-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-points-list > li {
  font-size: 15px;
  color: #475569;
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
}

.legal-points-list > li::before {
  content: "•";
  color: #2A7893;
  font-size: 22px;
  position: absolute;
  left: 4px;
  top: -4px;
  font-weight: bold;
}

.legal-points-list > li strong {
  color: var(--primary-navy);
}

.legal-subpoints-list {
  list-style: none !important;
  padding: 8px 0 4px 16px !important;
  margin: 8px 0 0 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid rgba(42, 120, 147, 0.2);
}

.legal-subpoints-list li {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
}

.legal-contact-callout {
  background: linear-gradient(135deg, #132238 0%, #1D2C38 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px 34px;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 14px;
  box-shadow: 0 10px 30px rgba(19, 34, 56, 0.12);
}

.legal-contact-callout .callout-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(42, 120, 147, 0.2);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.legal-contact-callout h4 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px 0;
}

.legal-contact-callout p {
  font-size: 14px;
  color: #CBD5E1;
  margin: 0 0 14px 0;
  line-height: 1.6;
}

.legal-contact-callout .callout-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-contact-callout .callout-link {
  color: #38BDF8;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

.legal-contact-callout .callout-link:hover {
  text-decoration: underline;
  color: #FFFFFF;
}

.legal-contact-callout .divider {
  color: rgba(255, 255, 255, 0.3);
}

/* Tablet & Mobile Responsiveness for Legal Page */
@media (max-width: 767.98px) {
  .legal-content-section {
    padding: 45px 0 60px 0;
  }

  .legal-card {
    padding: 22px 18px;
  }

  .legal-card-header h3 {
    font-size: 18px;
  }

  .legal-contact-callout {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 16px;
  }

  .legal-contact-callout .callout-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .legal-contact-callout .divider {
    display: none;
  }
}

/* ==========================================================================
   Contact Us Page Layout & Form Styling
   ========================================================================== */

.contact-hero-section {
  padding-bottom: 15px !important;
}

.contact-hero-section .services-hero-subtitle {
  margin-bottom: 0 !important;
}

.contact-section-wrapper {
  padding: 25px 0 85px 0;
  background-color: #FFFFFF;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 45px;
  align-items: stretch;
}

.contact-sidebar-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.contact-info-card-pro {
  background: #F8FAFC;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.contact-info-card-pro:hover {
  background: #FFFFFF;
  border-color: #2A7893;
  box-shadow: 0 8px 24px rgba(42, 120, 147, 0.1);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(42, 120, 147, 0.15) 0%, rgba(42, 120, 147, 0.05) 100%);
  color: #2A7893;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.contact-card-content h4 {
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0 0 6px 0;
}

.contact-card-content p {
  font-size: 14.5px;
  color: var(--dark-text);
  margin: 0 0 4px 0;
  font-weight: 600;
  line-height: 1.5;
}

.contact-card-content p a {
  color: #2A7893;
  font-weight: 700;
}

.contact-card-content p a:hover {
  color: var(--primary-navy);
  text-decoration: underline;
}

.contact-map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  margin-top: 4px;
  flex: 1 1 auto;
  min-height: 230px;
  display: flex;
}

.contact-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  flex: 1;
}

/* Right Column Form Box */
.pro-contact-form-box {
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 38px 36px;
  box-shadow: 0 10px 30px rgba(19, 34, 56, 0.06);
}

.form-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E0F2FE;
  color: #2A7893;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.pro-contact-form-box .form-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.pro-contact-form-box .form-subtitle {
  font-size: 14.5px;
  color: var(--text-gray);
  margin: 0 0 26px 0;
  line-height: 1.6;
}

.contact-form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pro-form-group {
  margin-bottom: 18px;
  position: relative;
  width: 100%;
}

.pro-form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px;
}

.pro-form-label .req {
  color: #EF4444;
  font-weight: 700;
}

.input-with-icon {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 16px;
  color: #94A3B8;
  font-size: 15px;
  pointer-events: none;
  transition: color 0.2s ease;
  z-index: 2;
}

.pro-form-input,
.pro-form-select,
.pro-form-textarea {
  width: 100%;
  height: 48px;
  padding: 10px 16px 10px 46px !important;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--dark-text);
  background-color: #F8FAFC;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.pro-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.pro-form-textarea {
  height: auto;
  min-height: 100px;
  padding: 12px 16px !important;
  resize: vertical;
}

.pro-form-input:focus,
.pro-form-select:focus,
.pro-form-textarea:focus {
  background-color: #FFFFFF;
  border-color: #2A7893;
  box-shadow: 0 0 0 3.5px rgba(42, 120, 147, 0.15);
}

.input-with-icon .pro-form-input:focus + i,
.input-with-icon .pro-form-select:focus + i {
  color: #2A7893;
}

.btn-submit-pro {
  width: 100%;
  height: 52px;
  background-color: #2A7893;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-normal);
  margin-top: 8px;
  margin-bottom: 18px;
}

.btn-submit-pro:hover {
  background-color: var(--primary-navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(19, 34, 56, 0.2);
}

.form-trust-badges {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-gray);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-item i {
  color: #2A7893;
  font-size: 13px;
}

@media (max-width: 991.98px) {
  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .pro-contact-form-box {
    padding: 28px 24px;
  }
}

@media (max-width: 575.98px) {
  .contact-form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ==========================================================================
   Agency Portfolio & Client Work Showcase Page Styling
   ========================================================================== */

.portfolio-hero-section {
  padding: 65px 0 50px 0;
}

.portfolio-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  padding: 22px 30px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(19, 34, 56, 0.05);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.p-stat-item {
  text-align: center;
  flex: 1;
  position: relative;
}

.p-stat-item + .p-stat-item::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-light);
}

.p-stat-number {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  color: #2A7893;
  line-height: 1.1;
}

.p-stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-gray);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Filter Bar */
.portfolio-filter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.portfolio-filter-btn {
  background: #F8FAFC;
  border: 1.5px solid var(--border-light);
  color: var(--dark-text);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.portfolio-filter-btn * {
  pointer-events: none;
}

.portfolio-filter-btn .filter-count {
  background: rgba(148, 163, 184, 0.2);
  color: #475569;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 10px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.portfolio-filter-btn:hover {
  background: #FFFFFF;
  border-color: #2A7893;
  color: #2A7893;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 120, 147, 0.12);
}

.portfolio-filter-btn.active {
  background: #2A7893;
  border-color: #2A7893;
  color: #FFFFFF;
  box-shadow: 0 6px 18px rgba(42, 120, 147, 0.25);
}

.portfolio-filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

/* Grid Layout */
.portfolio-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.portfolio-project-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(19, 34, 56, 0.05);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.portfolio-project-card:hover {
  transform: translateY(-8px);
  border-color: #2A7893;
  box-shadow: 0 18px 45px rgba(19, 34, 56, 0.12);
}

/* Browser Window Chrome Top Bar */
.browser-window-chrome {
  background: #F1F5F9;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #E2E8F0;
}

.browser-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.browser-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.browser-url-pill {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  border-radius: 12px;
  padding: 2px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.browser-url-pill i {
  color: #10B981;
  font-size: 10px;
}

/* Project Visual Hero Header & Full Page Auto-Scroll on Hover */
.project-hero-preview {
  height: 230px;
  position: relative;
  overflow: hidden;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

.preview-scroll-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.portfolio-scroll-img {
  width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Hover effect: Smoothly scroll down full webpage image from header to footer */
.portfolio-project-card:hover .portfolio-scroll-img {
  transform: translateY(calc(-100% + 230px));
}

.preview-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 34, 56, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.portfolio-project-card:hover .preview-hover-overlay {
  opacity: 1;
}

.btn-live-preview {
  background: #FFFFFF;
  color: #132238;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-live-preview:hover {
  background: #E0F2FE;
  color: #0284C7;
  transform: scale(1.05);
}

/* Gradients */
.preview-gradient-1 { background: linear-gradient(135deg, #1E293B 0%, #334155 100%); }
.preview-gradient-2 { background: linear-gradient(135deg, #0F766E 0%, #115E59 100%); }
.preview-gradient-3 { background: linear-gradient(135deg, #4338CA 0%, #3730A3 100%); }
.preview-gradient-4 { background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%); }
.preview-gradient-5 { background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%); }
.preview-gradient-6 { background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); }
.preview-gradient-7 { background: linear-gradient(135deg, #D97706 0%, #B45309 100%); }
.preview-gradient-8 { background: linear-gradient(135deg, #16A34A 0%, #15803D 100%); }
.preview-gradient-9 { background: linear-gradient(135deg, #059669 0%, #047857 100%); }
.preview-gradient-10 { background: linear-gradient(135deg, #9333EA 0%, #7E22CE 100%); }
.preview-gradient-11 { background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%); }

/* Card Content Body */
.project-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  width: fit-content;
}

.badge-ecommerce { background: #FEF3C7; color: #92400E; }
.badge-corporate { background: #E0F2FE; color: #0369A1; }
.badge-healthcare { background: #CCFBF1; color: #0F766E; }
.badge-services { background: #DCFCE7; color: #166534; }
.badge-tech { background: #F3E8FF; color: #6B21A8; }

.project-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0 0 4px 0;
}

.project-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #2A7893;
  margin: 0 0 12px 0;
}

.project-summary {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  background: #F8FAFC;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px dashed #CBD5E1;
}

.highlight-item {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.highlight-item i {
  color: #10B981;
}

.project-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
}

.project-tech-tags span {
  background: #F1F5F9;
  color: #475569;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 4px;
  border: 1px solid #E2E8F0;
}

.project-card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.project-external-link {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #2A7893;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.project-external-link:hover {
  color: var(--primary-navy);
  gap: 10px;
}

/* Portfolio Responsive Layout */
@media (max-width: 1199.98px) {
  .portfolio-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .portfolio-cards-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-stats-bar {
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }

  .p-stat-item + .p-stat-item::before {
    display: none;
  }

  .portfolio-filter-container {
    gap: 8px;
  }

  .portfolio-filter-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ==========================================================================
   Exact Match CTA Banner Section (Matching User Blueprint Image)
   ========================================================================== */
.about-cta-section-exact {
  background: linear-gradient(135deg, #F0F7FB 0%, #E6F3F7 50%, #F8FAFC 100%);
  padding: 75px 0 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
}

.about-cta-exact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.cta-exact-text-col {
  text-align: left;
}

.section-badge-pill-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #E0F2FE;
  color: #0284C7;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  border: 1px solid #BAE6FD;
}

.cta-exact-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  color: #132238;
  line-height: 1.2;
  margin: 0 0 16px 0;
  letter-spacing: -0.8px;
}

.cta-exact-title span {
  color: #2A7893;
  display: block;
}

.cta-exact-subtitle {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 32px 0;
  max-width: 540px;
}

.cta-exact-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn-exact-outline-dark {
  background-color: transparent;
  color: #132238 !important;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #132238;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-exact-outline-dark:hover {
  background-color: #132238;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(19, 34, 56, 0.15);
}

/* Trust Bar Below Buttons */
.cta-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: #334155;
}

.trust-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #E0F2FE;
  color: #0284C7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Right Image Column */
.cta-exact-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cta-illustration-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 12px 32px rgba(19, 34, 56, 0.08));
}

.cta-exact-bottom-bar {
  width: 100%;
  height: 32px;
  background-color: #132238;
  margin-top: 45px;
}

/* Responsiveness for Tablet & Mobile */
@media (max-width: 991.98px) {
  .about-cta-exact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .cta-exact-text-col {
    text-align: center;
  }
  .cta-exact-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-exact-buttons {
    justify-content: center;
  }
  .cta-trust-bar {
    justify-content: center;
    gap: 16px;
  }
  .cta-exact-image-col {
    order: -1;
  }
  .cta-illustration-img {
    max-width: 440px;
  }
}

@media (max-width: 767.98px) {
  .about-cta-section-exact {
    padding: 45px 0 0 0;
  }
  .cta-exact-title {
    font-size: 27px;
  }
  .cta-exact-title span {
    display: inline;
  }
  .cta-exact-buttons {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .cta-exact-buttons .btn-exact-teal,
  .cta-exact-buttons .btn-exact-outline-dark {
    width: 100%;
    justify-content: center;
  }
  .cta-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}


