/* BASE & THEME */

:root {
  --bg: #e6f0ff;
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #0ea5e9;
  --accent-2: #6366f1;
  --border-subtle: #e5e7eb;
  --text: #0f172a;
  --bg-alt: #f5f7ff; 

}

* {
  box-sizing: border-box;
}


html {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #0f172a; 
  margin: 0;               
  background: #f5f7fb;
}  

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;   
  text-transform: uppercase; 
  color: #0f172a;
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
}


body.portfolio-page {
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.2),
      rgba(230, 240, 255, 0.5)
    ),
    url('../images/Repair.jpg') center top / cover no-repeat fixed;
}


section {
  margin: 72px 0;
}

section#about {
  margin-top: 0;
}


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 0;   
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
img:hover {
  transform: scale(1.03);
}


p {
  margin: 0;
}

.muted {
  color: var(--muted);
}

.small-price {
  font-size: 0.9rem;
}

/* NAVBAR */

nav {
  position: sticky;          
  top: 0;
  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  background: #ffffff;
  color: #111827;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 60px;
  height: auto;
  animation: none;
  filter: none;
}

.brand h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: #0f172a;          
}

.tag {
  font-size: 12px;
  color: #6b7280;          
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  font-size: 13px;
  color: #111827;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 999px;
  background: transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.nav-links a:hover {
  background: rgba(15, 23, 42, 0.06);
  color: #111827;
  transform: translateY(-1px);
}

.nav-links a.active-nav {
  background: #111827;
  color: #f9fafb;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.25);
}


.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: none;
  color: #111827;  
  font-size: 22px;
  cursor: pointer;
}

.nav-toggle i {
  pointer-events: none;
}


@media (max-width: 768px) {
  nav {
    padding: 10px 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px; 
    right: 0;
    height: calc(100vh - 60px);
    width: min(260px, 80vw);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px;
    border-left: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: -16px 0 40px rgba(15, 23, 42, 0.18);

    transform: translateX(100%);
    transition: transform 0.25s ease-in-out;
  }

  nav.nav-open .nav-links {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
  }
}


/* CTA buttons */

.btn {
  background: #2563eb;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  color: #ecfeff;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.muted-btn {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: transparent;
  padding: 10px 16px;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* HERO */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100vw;
  min-height: 75vh;
  color: #ffffff;
  margin: 0 0 64px;
  margin-left: calc(50% - 50vw);
  background: url("../images/hero.jpg") center right / cover no-repeat;
  overflow: hidden;
}
.hero-inner {
  position: relative;      
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.2rem 2rem 3.5rem;  
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.96) 0%,   /* very dark navy on far left */
    rgba(15, 23, 42, 0.90) 35%,  /* still dark across the main text area */
    rgba(15, 23, 42, 0.75) 55%,  /* starts easing off */
    rgba(15, 23, 42, 0.45) 75%,
    rgba(15, 23, 42, 0.0) 100%   /* clear on the far right */
  );

  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 120%;
  height: 160px;
  background: #f5f7fb;
  border-radius: 50% 50% 0 0;
  transform: translateX(-8%);
  z-index: 0;
}



.hero-left {
  max-width: 560px;
}


/* Heading styles */
.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0.05em;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
  color:#D3D3D3;
}

.hero-title-accent {
  color: #7dd3fc;
  font-weight: 900;
}

/* Body text */
.hero-left .muted {
  max-width: 520px;
  font-size: 0.98rem;
  color: #cbd5f5;
  margin-bottom: 1.3rem;
}

.hero .cta-row {
  display: flex;
  gap: 12px;
}

/* Mobile */
@media (max-width: 800px) {
  .hero {
    min-height: auto;
    margin: 16px 0 40px;
    margin-left: calc(50% - 50vw);
    background-position: center right;
  }

  .hero-inner {
    padding: 3.5rem 1.5rem 3rem;
  }

  .hero-left {
    max-width: 100%;
  }
}
/* SUPPORT TEXT BLOCK  */

.support-section {
  max-width: 1200px;
  margin: 30px auto 70px;
  padding: 0 24px;
}

.support-section h2 {
  font-size: clamp(2rem, 2.6vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 26px;
}

.support-section p {
  font-size: 1.02rem;
  line-height: 1.85;           
  color: #4b5563;              
  margin-bottom: 16px;
}

.support-section p:last-of-type {
  margin-bottom: 0;
}

.support-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Text side */
.support-copy {
  flex: 1.2;
}

.support-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 10px;
}

.support-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #020617;
}

.support-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 14px;
}

.support-image-blob {
  flex: 1;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border-radius: 72% 38% 65% 45% / 60% 75% 45% 55%;
  background: #0f172a;
}
.support-image-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .support-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .support-image-blob {
    align-self: center;
    max-width: 260px;
  }
}


/*  GRID + CARDS (GLOBAL) */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.card {
  background: var(--card);
  border-radius: 14px;
  padding: 20px 20px 22px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
}

.card img,
.service-photo {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
}

.card h4 {
  margin-top: 0;
  color: var(--text);
}

.card p {
  font-size: 14px;
  color: var(--muted);
}

/* base layout inside a service card */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin: 4px 0 0;
  font-size: 16px;      
  line-height: 1.6;     
  color: var(--muted);
}


.service-features li {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.service-features li::before {
  content: "•";
  font-size: 16px;
  line-height: 1;
  margin-top: 1px;
  color: var(--accent-2);
}

/* OUR SERVICES – OVAL BACKGROUND + STACKED CARDS */


#services {
  position: relative;
  width: 100vw;                    
  margin: 90px 0;
  margin-left: calc(50% - 50vw);    
 padding: 80px 0 80px;              
  overflow: hidden;                
}


.services-inner {
  text-align: center;
  position: relative;
  z-index: 2;                      
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 48px;
}

#services::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 140%;                      
  height: 620px;                    /* controls how deep the curve is */
  background: linear-gradient(
    180deg,
    #e7f3ff 0%,
    #dcecff 50%,
    #d0e5ff 100%
  );
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  z-index: 1;                      
}

/* Heading + intro text inside the band */
#services h3 {
  display: inline-block;
  margin: 0;
  font-size: 30px;        
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #0f172a;
  padding-bottom: 10px;
  border-bottom: 4px solid #2563eb; 
}

.services-inner > .muted {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 0.98rem;
}



/* STACKED CARD LAYOUT */

#services .grid {
  position: relative;
  z-index: 1;                     
  display: flex;                  
  justify-content: center;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 32px auto 0;
  margin-top: 20px;
}

/* Individual service cards */
#services .card.service-card {
  position: relative;
  flex: 0 0 520px;                
  max-width: 520px;
  min-height: 450px;
  margin-left: -110px;            
  border-radius: 0px;
  overflow: hidden;
  background: #020617;
  padding: 32px 30px 26px;
  border: none;                  
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
  z-index: 1;
}


#services .card.service-card:first-child {
  margin-left: 0;
}


#services .card.service-card .service-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}


#services .card.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.25) 0%,   
    rgba(15, 23, 42, 0.18) 40%,  
    rgba(15, 23, 42, 0.06) 75%,  
    rgba(15, 23, 42, 0.0) 100%
  );
  z-index: 1;
}


#services .card.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);   
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}

/* All text/content sits above the overlays */
#services .card.service-card > *:not(.service-photo) {
  position: relative;
  z-index: 3;
}

/* TYPOGRAPHY INSIDE CARDS */

#services .card.service-card h4 {
  margin: 0 0 18px;
  font-size: 2.2rem;           
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f9fafb;            
}

#services .card.service-card .service-features {
  margin: 10px 0 0;
  padding-left: 1.4rem;
  font-size: 1.25rem;   
  line-height: 1.8;
  color: #f9fafb;       
}

#services .card.service-card .service-features li::before {
  content: none;
}

#services .card.service-card .service-features li {
  margin-bottom: 4px;
}

#services .card.service-card .small-price {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 14px;
  border-radius: 999px;                  
  background: rgba(15, 23, 42, 0.9);     
  color: #a5f3fc;                         
  font-size: 0.75rem;
  font-weight: 150;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.6);
}


/* FOCUS EFFECT */

#services .card.service-card:hover {
  transform: translateY(-18px);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.45);
}

#services .card.service-card:hover::after {
  opacity: 1;
}

/* Default state */
#services .card.service-card {
  opacity: 1;
}

/* When hovering over the deck, dim all cards … */
#services .grid:hover .card.service-card {
  opacity: 0.25;
  transform: translateY(0) scale(0.97);
}

#services .grid:hover .card.service-card:hover {
  opacity: 1;
  transform: translateY(-24px) scale(1.05);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.65);
  z-index: 10;
}

/* =========================
   RESPONSIVE – SERVICES
   ========================= */

@media (max-width: 900px) {
  #services {
    padding: 0 24px 60px;
  }

  #services::before {
    top: 30px;
    height: 540px;                
    max-width: 100%;
  }

  #services .grid {
    flex-direction: column;
    gap: 22px;
  }

  #services .card.service-card {
    margin-left: 0;
    flex: 1 1 auto;
    max-width: 100%;
    min-height: 320px;
  }

  /* On smaller devices, keep all cards fully visible */
  #services .grid:hover .card.service-card,
  #services .grid:hover .card.service-card:hover {
    opacity: 1;
    transform: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  }
  
    /* Make service cards always dark enough to read on mobile */
  #services .card.service-card::after {
    opacity: 2.1; /* darker overlay for better contrast */
  }

  /* Disable hover-based movement on mobile */
  #services .card.service-card:hover {
    transform: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  }

  #services .grid:hover .card.service-card {
    opacity: 1;
    transform: none;
  }

}

/*  HOW WE WORK  */

#process {
  position: relative;
  width: 100vw;
  height: 70vh;
  margin-left: calc(50% - 50vw); 
  background: #f5f7fb;
  overflow: hidden;
  display: flex;
}

/* children inside #process take full width of split layout */
#process > * {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

#process p,
#process .process-step-text {
  color: #374151;
  font-size: 1.05rem;
  line-height: 1.7;
}

#process .process-step-title {
  color: #0f172a;
}


/* HOW WE WORK – HEADING */

.process-heading {
  margin: 20px 0 32px;
  text-align: center;
}

.process-heading h3 {
  display: inline-block;
  margin: 0;
  font-size: 30px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #0f172a;
  padding-bottom: 10px;
  border-bottom: 4px solid #2563eb;  
}

/* HOW WE WORK – LAYOUT */

.process-layout {
  display: flex;
  flex: 1;
}

.process-image {
  flex: 1;
  height: 100%;
  position: relative;  
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-image-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70%;                 
  padding: 24px 28px;
  background: rgba(229, 240, 255, 0.92);
  color: #0f172a;
  border-radius: 0 18px 0 0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

.process-image-overlay h4 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-image-overlay p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.process-content {
  flex: 1;
  background: #e5f0ff;
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.process-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #64748b;
  margin-top: 24px;
}


/* HOW WE WORK – STEPS */

.process-cycle {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  margin-top: 32px;
}

.process-step {
  flex: 1 1 0;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.process-step-circle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #020617;
  margin-bottom: 6px;
}

.process-step-title {
  font-size: 15px;
  margin: 0 0 4px;
}

.process-step-text {
  font-size: 13px;
  margin: 0;
  color: var(--muted);
}

/*  RESPONSIVE */

@media (max-width: 900px) {
  #process {
    height: auto;  
  }

  .process-layout {
    flex-direction: column;
  }

  .process-image {
    height: 300px;
  }

  .process-image-overlay {
    width: 100%;
    border-radius: 0;
  }

  .process-content {
    padding: 48px 24px;
    text-align: center;
  }

  .process-cycle {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .process-step {
    align-items: center;
  }
}

@media (max-width: 540px) {
  .process-step {
    width: 100%;
  }
}

/* ABOUT PAGE – WHO WE ARE + VALUES */

.about-hero-band {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 380px;
  background: url("../images/about.jpg") center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center; 
  overflow: hidden;
}

/* curve */
.about-hero-band::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 120%;
  height: 160px;
  background: #ffffff;
  border-radius: 50% 50% 0 0;
  transform: translateX(-8%);
  z-index: 1;
}

.about-values-strip {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 100px 0;
  background: linear-gradient(180deg, #e8f4ff, #d7ecff); /* light blue */
  color: #0f172a;
}


.about-values-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.about-values-heading {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.about-values-underline {
  width: 140px;
  height: 3px;
  background:#2563eb;  
  margin: 12px auto 30px;
}


.about-values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.value-card {
  flex: 1 1 260px;
  max-width: 320px;
  background: #e6f3ff;             /* light blue card */
  color: #0f172a;
  padding: 22px 22px 20px;
  border-radius: 0;                 
  border: 1px solid rgba(148, 163, 184, 0.4);
  text-align: left;
}

/* icon at the top of each card */
.value-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;

  background: #ffffff;
  border-radius: 6px;
  color: #0ea5e9;
  font-size: 18px;
}

.value-card h4 {
  margin: 0 0 10px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.value-card p,
.value-card li {
  font-size: 13px;
  line-height: 1.8;
  color: #4b5563;
}

.value-card ul {
  padding-left: 18px;
  margin: 0;
  list-style-type: disc;
}

.value-card h4 {
  margin: 0 0 10px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.value-card p,
.value-card li {
  font-size: 13px;
  line-height: 1.8;
  color: #4b5563;
}

.value-card ul {
  padding-left: 18px;
  margin: 0;
  list-style-type: disc;
}

/* MIDDLE STRIP */
.about-intro-strip {
  position: relative;
  width: 100vw;                          
  margin: -40px 0 0;                     
  margin-left: calc(50% - 50vw);         
  padding: 40px 0 40px;                  
  background: #ffffff;                   
  z-index: 2;                            
}

.about-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-intro-grid {
  background: #ffffff;
  border-radius: 0;
  padding: 26px 26px 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-intro-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-intro-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #4b5563;
}

.about-intro-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0ea5e9;
  font-size: 16px;
  margin-bottom: 10px;
}

/* stack on mobile */
@media (max-width: 900px) {
  .about-intro-strip {
    margin: -20px auto 0;
    padding: 0 16px 24px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  
  .about-hero-inner {
    margin: 40px 16px 20px;
    padding: 40px 20px 24px;
  }

  .about-title {
    font-size: 22px;
    text-align: left;
  }

  .about-values-strip {
    padding: 70px 0 80px;
  }
}




/* TEAM */


.team-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);     
  padding: 80px 0 90px;
  background: #ffffff
}

.team-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.team-heading {
  margin: 0;
  font-size: 26px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.team-underline {
  width: 140px;
  height: 3px;
  background: #2563eb;
  margin: 12px auto 30px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.person-card {
  flex: 1 1 260px;
  max-width: 320px;
  background: #ffffff;
  color: #0f172a;
  padding: 22px 22px 20px;
  border-radius: 0;  
  text-align: left;
}

.person-card h4 {
  margin: 12px 0 4px;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.person-card .muted {
  font-size: 13px;
  line-height: 1.8;
}

/* black avatar */
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #020617;       
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;            
  font-weight: 700;
  font-size: 18px;
}

.role {
  font-size: 13px;
  color: var(--muted);
}

/* stack nicely on mobile */
@media (max-width: 900px) {
  .team-section {
    padding: 60px 0 70px;
  }

  .team-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .person-card {
    max-width: 100%;
  }
}


/*  CONTACT PAGE */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 20px;
  margin-top: 24px;
}

form {
  background: var(--card);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  font-size: 14px;
  font-family: inherit;
}

.input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

.note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

#contact .contact-intro p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

/* CONTACT PAGE TITLE */

.contact-intro {
  text-align: center;
  margin: 40px 0 0;
}

.contact-intro h3 {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #0f172a;
}

.contact-intro-underline {
  width: 120px;
  height: 3px;
  background: #2563eb;
  margin: 0 auto;
}



/* FAQ */

.faq {
  margin: 56px 0 40px;
}

.faq h3 {
  margin-bottom: 10px;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.faq-items details {
  background: var(--card);
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px 12px;
  font-size: 13px;
}

.faq-items summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
}

.faq-items summary::-webkit-details-marker {
  display: none;
}

.faq-items details p {
  margin-top: 6px;
  color: var(--muted);
}

/* PORTFOLIO – TOOLS & TAGS */

.tools {
  margin: 28px 0 22px;
}

.tools h4 {
  margin-bottom: 6px;
}

.tool-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.tool-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: var(--card);
  color: var(--muted);
  white-space: nowrap;
}

.tool-badge i {
  font-size: 16px;
}

.badge-html i { color: #e34f26; }
.badge-python i { color: #3776ab; }
.badge-php i { color: #777bb4; }
.badge-responsive i { color: #22c55e; }
.badge-powerbi i { color: #f2c811; }
.badge-tableau i { color: #4e79a7; }
.badge-excel i { color: #217346; }
.badge-sql i { color: #0ea5e9; }
.badge-design i { color: #f97316; }

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tech-tags span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: var(--muted);
  background: var(--card);
}

/* PORTFOLIO GALLERY */

#portfolio.portfolio-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;          
  background: #f5f7fb;
  padding-bottom: 60px;
}

.portfolio-hero-band {
  position: relative;
  width: 100%;
  min-height: 340px;      
  display: flex;
  align-items: flex-end;
  background: url("../images/Repair.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.portfolio-hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.10),
    rgba(0, 0, 0, 0.0)
  );
  z-index: 0;
}

.portfolio-hero-band::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 120%;
  height: 140px;
  background: #f5f7fb;
  border-radius: 50% 50% 0 0;
  transform: translateX(-8%);
  z-index: 0;
}


.portfolio-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 40px;   
}

/* PORTFOLIO INTRO HEADING */
.portfolio-content {
  position: relative;
  font-size: 20px;
  z-index: 2;
  margin-top: 32px;         
}

.portfolio-intro {
  text-align: center;
  margin: 60px 0 50px;             
}

.portfolio-intro h3 {
  margin: 0 0 14px;
  font-size: 50px;                  
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #0f172a;
}

.portfolio-intro-underline {
  width: 160px;                    
  height: 4px;                      
  background: #2563eb;
  margin: 0 auto 18px;
  border-radius: 0;
}

#portfolio .container {
  max-width: 1500px;   
}


#portfolio .portfolio-intro h3 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.20em;
}


/* FILTERS */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 20px;
}

.filter-pill {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: #ffffff;
  padding: 7px 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4b5563;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    transform 0.12s ease;
}

.filter-pill.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #ecfeff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}

/* GALLERY GRID */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 6px;
}

/* CARD */
.gallery-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;

  /* animation base state */
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.55s ease-out,
    transform 0.55s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.gallery-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
  border-color: rgba(59, 130, 246, 0.55);
}


.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
  border-color: rgba(59, 130, 246, 0.55);
}

/* IMAGE AREA */
.gallery-image-wrap {
  position: relative;
  overflow: hidden;
}

.gallery-image-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  cursor: zoom-in; 
}

.gallery-card:hover .gallery-image-wrap img {
  transform: scale(1.05);
}

/* CATEGORY CHIP */
.gallery-chip {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.86);
  color: #f9fafb;
}

/* TEXT BODY */
.gallery-body {
  padding: 12px 14px 14px;
}

.gallery-body h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-body p.muted {
  margin-top: 2px;
  font-size: 0.82rem;
}

/* META TAGS */
.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.gallery-meta span {
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f3f4ff;
  color: #4b5563;
}

/* MOBILE TWEAKS */
@media (max-width: 640px) {
  #portfolio.portfolio-hero {
    padding: 20px 16px 26px;
  }

  .portfolio-gallery {
    gap: 14px;
  }

  .gallery-image-wrap img {
    height: 190px;
  }
  .gallery-card {
    transform: translateY(10px) scale(0.99); /* smaller movement on phones */
    transition-duration: 0.45s;
  }
}


/* lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 32px;
  color: #e5e7eb;
  cursor: pointer;
  font-weight: 600;
}

/* Repair layout */

.repair-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-top: 12px;
}

.repair-layout .slideshow-container {
  flex: 1 1 320px;
}

.repair-services-box {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 16px 18px;
}

.repair-services-box h5 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--text);
}

.repair-services {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.repair-services li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
}

.repair-services li::before {
  content: "✔";
  font-size: 11px;
  margin-top: 2px;
  color: #22c55e;
}

/*  CHAT WIDGET */

.chat-toggle {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b0f1a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  border: none;
  z-index: 999;
  font-size: 26px;
}

.chat-window {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: 300px;
  max-width: calc(100% - 40px);
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
}

.chat-window.open {
  display: flex;
}

.chat-window-header {
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0f1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 14px;
}

.chat-window-header button {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #0b0f1a;
}

.chat-window-body {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--muted);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent);
}

.chat-window-footer {
  padding: 12px 14px 14px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#chat-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  background: #25d366;
  color: #052e16;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
/* CTA Bottom*/

.cta-bottom {
  background: radial-gradient(circle at top left, #111827 0, #020617 55%, #020617 100%);
  border-radius: 32px;
  padding: 22px 28px;
  margin: 56px 0 40px;
  color:  #f9fafb;
  border: 1px solid rgba(15, 23, 42, 0.9);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) auto;
  column-gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cta-bottom h3 {
  margin: 0 0 4px;
  color: #f9fafb;
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 4px;
}

.cta-bottom p {
  margin: 0;
  grid-column: 1;
  grid-row: 2;
  max-width: 520px;
  font-size: 0.85rem;
  color: #cbd5f5;
}


.cta-bottom .cta-row {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* primary: solid pill */

.cta-bottom .btn {
  background:#2563eb;
  color: #ecfeff;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
}

/* secondary: outlined pill */

.cta-bottom .muted-btn {
  background: transparent;
  border-radius: 999px;
  padding: 10px 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #e5e7eb;
}

/* small screens: go back to stacked layout */
@media (max-width: 640px) {
  .cta-bottom {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .cta-bottom .cta-row {
    grid-column: 1;
    grid-row: 3;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.image-strip {
  position: relative;
  width: 100vw;
  margin: 0 0 28px;                 
  margin-left: calc(50% - 50vw);
  height: 380px;
  background: url("../images/contact.jpg") center center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-strip img {
  display: none;
}

.image-strip::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -80px;
  width: 120%;
  height: 160px;
  background: #f5f7fb;  
  border-radius: 50% 50% 0 0;
  transform: translateX(-8%);
  z-index: 1;
}



/* FOOTER */

.site-footer {
  margin-top: auto;
  padding-top: 24px;          
  padding-bottom: 8px;
  background: #020617;
  border-top: 1px solid rgba(148,163,184,0.4);
  color: #e5e7eb;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}


.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-brand-row img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.footer-tagline {
  font-size: 13px;
  color: #e5e7eb;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #e5e7eb;
}

.footer-links-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 13px;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  column-gap: 28px;
  row-gap: 4px;     
}

.footer-links-list li {
  margin: 0;
}
.footer-links-list li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.footer-links-list li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.footer-links-list li:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}

.footer-links-list li:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.footer-links-list li:nth-child(5) {
  grid-column: 3;
  grid-row: 1;
}

.footer-links-list a {
  color:  #cbd5f5;
  text-decoration: none;
}

.footer-links-list a:hover {
  color: var(--accent);
}

.footer-contact-text {
  font-size: 13px;
  color:  #e5e7eb;
  margin: 0 0 4px;
}

.footer-contact-text a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-text a:hover {
  text-decoration: underline;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  justify-content: flex-end;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-color: rgba(148,163,184,0.6);
  color: #cbd5f5;
  text-decoration: none;
  line-height: 1;
}

.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-bottom {
  border-top: none;
  padding-top: 6px;
  font-size: 11px;
  color: #9ca3af;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer-bottom-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 12px;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

@media (max-width: 640px) {
  .footer-links-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
  }

  .repair-layout {
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .hero {
    margin: 16px 0 56px;
    margin-left: calc(50% - 50vw);
    min-height: 60vh;
  }

  .hero-inner {
    padding: 4.5rem 1.5rem 3.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 10px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-right {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  section {
    margin: 56px 0;
  }

  .grid {
    gap: 16px;
  }
}
/*Edits*/

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
/* =========================
   GLOBAL SCROLL ANIMATIONS
   ========================= */

/* Base state for everything with data-animate */
[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* Fade up (default) */
[data-animate="fade-up"].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Zoom in */
[data-animate="zoom-in"] {
  transform: scale(0.9);
}

[data-animate="zoom-in"].in-view {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
[data-animate="slide-left"] {
  transform: translateX(24px);
}

[data-animate="slide-left"].in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
[data-animate="slide-right"] {
  transform: translateX(-24px);
}

[data-animate="slide-right"].in-view {
  opacity: 1;
  transform: translateX(0);
}
/* MOBILE & TABLET LAYOUT */

/* Up to 900px – services overlay + card layout */
@media (max-width: 900px) {

  /* SERVICES – keep overlay dark all the time on touch devices */
  #services .card.service-card::after {
    opacity: 0.99;            
  }

  #services .card.service-card:hover::after {
    opacity: 0.85;
  }

  /* Stop the deck from dimming / scaling other cards on hover/tap */
  #services .grid:hover .card.service-card,
  #services .grid:hover .card.service-card:hover {
    opacity: 1;
    transform: none;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
  }

  /* SERVICES – card layout + typography */
  .services-inner {
    padding: 0 20px;          
  }

  #services .card.service-card {
    padding: 20px 18px 18px;
    min-height: auto;
  }

  #services .card.service-card h4 {
    font-size: 1.4rem;        
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-align: left;
    margin-bottom: 10px;
  }

  #services .card.service-card .service-features {
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 0;
    margin-top: 4px;
  }

  #services .card.service-card .service-features li {
    margin-bottom: 2px;
  }

  #services .card.service-card .small-price {
    font-size: 0.8rem;
    margin-top: 12px;
  }
}

/*  Up to 800px – hero heights for home / about / portfolio */
@media (max-width: 800px) {

  
  .hero {
    width: 100%;
    margin: 0 0 40px;
    margin-left: 0;
    background-position: center right;
  }

  
  #portfolio.portfolio-hero {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    padding-bottom: 40px;
  }

  .portfolio-hero-band {
    min-height: 220px;
    background-position: center 40%;
  }

  .portfolio-hero-band::after {
    bottom: -50px;
    height: 100px;
  }

  
  .about-hero-band {
    width: 100%;
    margin-left: 0;
    height: 240px;
    background-position: center 40%;
  }

  .about-hero-band::after {
    bottom: -55px;
    height: 110px;
  }
}

/* Up to 768px – phones: global layout, heroes & spacing */
@media (max-width: 768px) {


  nav,
  .hero,
  #services,
  #process,
  .about-hero-band,
  .about-values-strip,
  .about-intro-strip,
  .team-section,
  .portfolio-hero,
  .image-strip,
  .site-footer {
    width: 100%;
    margin-left: 0;
  }

  /* Softer curves so they don't eat the screen */
  .hero::after,
  .about-hero-band::after {
    height: 90px;
    bottom: -45px;
  }

  .image-strip {
    width: 100%;
    height: 190px;                  
    background-position: center 40%;
    margin-bottom: 24px;
  }

  .image-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .image-strip::after {
    bottom: -55px;
    height: 110px;
  }

  
  .contact-intro {
    margin: 18px 0 14px;
  }

  #repair-booking {
    margin-top: 12px;
  }


  #portfolio.portfolio-hero,
  .portfolio-hero {
    width: 100%;
    margin-left: 0;
    padding: 0 0 32px;
    background: #f5f7fb;
  }

  .portfolio-hero-band {
    min-height: 210px;             
    background-position: center 40%;
  }

  .portfolio-hero-band::after {
    bottom: -50px;
    height: 100px;
  }

  .portfolio-hero-inner {
    padding: 0 0 24px;
  }

  .portfolio-intro {
    margin: 28px 0 22px;
  }

  /* HOW WE WORK heading + section spacing */
  .process-heading {
    margin: 20px 0 12px;
  }

  #process {
    margin: 16px 0 28px;
  }

 
  .team-section {
    padding: 24px 0 32px;
  }

  .team-inner {
    padding: 0 20px;
  }

  .team-grid {
    gap: 18px;
  }

  .person-card {
    padding: 8px 0;
  }

  /* Global section spacing a bit tighter */
  section {
    margin: 24px 0;
  }

  /* Footer full-width but no sideways scroll */
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 768px) {
  .team-underline {
    margin-bottom: 20px;      
  }

  .team-grid {
    gap: 5px;                
    margin-top: 4px;
  }

  .person-card {
    padding: 2px 0;           /
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 2.5px;
    padding-right: 2.5px;   /
  }

 
  .hero {
    margin-left: 0;
    margin-right: 0;
  }
}

/* EXTRA MOTION LAYER */

/* 1. Soft fade-down on the nav when the page loads */
@keyframes fade-down-soft {
  0% {
    opacity: 0;
    transform: translateY(-16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

nav {
  animation: fade-down-soft 0.6s ease-out;
}

/* 2. Hero accent text – gentle gradient sweep */
.hero-title-accent {
  background-image: linear-gradient(120deg, #60a5fa, #2563eb, #7c3aed);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  color: transparent;
  animation: hero-accent-sheen 12s ease-in-out infinite alternate;
}

@keyframes hero-accent-sheen {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 3. Primary buttons – subtle pulse + hover lift */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* Add this class alongside .btn on CTAs you want to highlight */
.btn.anim-pulse-btn {
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn.anim-pulse-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  animation: pulse-ring 2.4s ease-out infinite;
  z-index: -1;
}

.btn.anim-pulse-btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}

/* Portfolio cards – stronger hover lift */
.portfolio-gallery .gallery-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.portfolio-gallery .gallery-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}
/* ======================================================
   GLOBAL SCROLL ZOOM EFFECT FOR IMAGES
   ====================================================== */

.scroll-zoom {
  transition: transform 0.8s ease-out;
  transform-origin: center center;
}

.scroll-zoom.zoomed {
  transform: scale(1.18);   /* slight zoom */
}

