/* ===== About/Home Hero (50vh) ===== */
.about-hero-section{
  position: relative;
  height: 50vh;
  min-height: 320px;
  width: 100%;
  display: grid;
  place-items: center;
  background-image: url('images/about.png'); /* apni image yahan lagaen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.about-hero-section-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
  backdrop-filter: saturate(110%) blur(0.5px);
}

.about-hero-section-content{
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
  max-width: 900px;
  width: 100%;
  animation: about-hero-section-fadeUp .8s ease-out both;
}

.about-hero-section-eyebrow{
  margin: 0 0 .5rem 0;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}

.about-hero-section-title{
  margin: 0 0 .5rem 0;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.about-hero-section-subtitle{
  margin: 0 auto 1.25rem;
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  max-width: 680px;
  opacity: .95;
}

.about-hero-section-cta{
  display: inline-block;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
  backdrop-filter: blur(2px);
}
.about-hero-section-cta:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.25);
}

/* subtle entrance animation */
@keyframes about-hero-section-fadeUp{
  from{ transform: translateY(8px); opacity: 0; }
  to{ transform: translateY(0); opacity: 1; }
}

/* small screens tweaks */
@media (max-width: 480px){
  .about-hero-section{ min-height: 360px; }
  .about-hero-section-cta{ padding: .7rem 1rem; }
}

/* /////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////// about us ///////////////////// */
/* ===== About Us - Packing & Movers (Black & White) ===== */
.about-section2{
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  background: #0a0a0a; /* true black backdrop */
  color: #f5f5f5;      /* soft white text */
}

.about-section2-container{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
}

/* Media (image collage) */
.about-section2-media{
  position: relative;
  min-height: 420px;
}

.about-section2-photo{
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(0,0,0,.6);
  filter: grayscale(100%);                 /* black & white images */
}
.about-section2-photo img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Main large image */
.about-section2-photo--main{ inset: 0 22% 12% 0; transform: rotate(-1.5deg); }
/* Overlay images */
.about-section2-photo--overlay1{ width: 46%; height: 48%; right: 0; top: 6%; transform: rotate(3deg); }
.about-section2-photo--overlay2{ width: 40%; height: 42%; right: 10%; bottom: 0; transform: rotate(-4deg); }

/* Minimal monochrome badge */
.about-section2-badge{
  position: absolute;
  left: -8px; top: -8px;
  background: #111; color: #fff;
  border: 1px solid #2a2a2a;
  padding: .75rem 1rem;
  border-radius: 14px;
  text-align: center; line-height: 1.1;
  box-shadow: 0 12px 30px rgba(0,0,0,.55);
}
.about-section2-badge strong{ font-size: 1.05rem; display: block; }
.about-section2-badge span{ font-size: .8rem; opacity: .9; }

/* Content */
.about-section2-content{ padding: .5rem 0; }

.about-section2-eyebrow{
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  color: #cfcfcf;
  margin: 0 0 .55rem 0;
  opacity: .8;
}

.about-section2-title{
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 .8rem 0;
  color: #ffffff;
}

.about-section2-desc{
  margin: 0 0 1.15rem 0;
  color: #dedede;
  max-width: 58ch;
}

/* List with square checks (monochrome) */
.about-section2-list{
  list-style: none; padding: 0; margin: 0 0 1.3rem 0;
  display: grid; gap: .65rem;
}
.about-section2-list li{
  display: grid; grid-template-columns: 22px 1fr;
  align-items: start; gap: .6rem;
}
.about-section2-check{
  width: 18px; height: 18px; margin-top: .15rem;
  border-radius: 4px; background: #fff; position: relative;
  box-shadow: 0 8px 16px rgba(255,255,255,.08);
}
.about-section2-check::after{
  content: "✓"; position: absolute; inset: 0;
  display: grid; place-items: center;
  color: #0a0a0a; font-weight: 800; font-size: .9rem;
}

/* Stats */
.about-section2-stats{
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .75rem; max-width: 520px; margin: .5rem 0 1.25rem 0;
}
.about-section2-stat{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  padding: .9rem; border-radius: 14px; text-align: center;
  backdrop-filter: blur(2px);
}
.about-section2-stat strong{ display: block; font-size: 1.22rem; color: #fff; }
.about-section2-stat span{ color: #cfcfcf; font-size: .85rem; }

/* Buttons (monochrome) */
.about-section2-actions{ display: flex; gap: .65rem; flex-wrap: wrap; }
.about-section2-btn{
  display: inline-block; padding: .85rem 1.15rem; border-radius: 12px;
  text-decoration: none; font-weight: 700;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  border: 1px solid #2b2b2b; color: #0a0a0a; background: #fff;
}
.about-section2-btn--primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 24px rgba(255,255,255,.1); }
.about-section2-btn--ghost{
  background: transparent; color: #f5f5f5; border-color: rgba(255,255,255,.18);
}
.about-section2-btn--ghost:hover{ background: rgba(255,255,255,.06); transform: translateY(-2px); }

/* Subtle divider look on very wide screens */
@media (min-width: 1280px){
  .about-section2{ background: linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 60%, #0b0b0b 100%); }
}

/* Responsive */
@media (max-width: 1024px){
  .about-section2-container{ grid-template-columns: 1fr; }
  .about-section2-media{ min-height: 360px; order: -1; }
}
@media (max-width: 600px){
  .about-section2{ padding: 2rem 1rem; }
  .about-section2-media{ min-height: 300px; }
  .about-section2-photo--main{ inset: 6% 12% 18% 0; }
  .about-section2-photo--overlay1{ width: 52%; height: 46%; top: 2%; right: 0; }
  .about-section2-photo--overlay2{ width: 48%; height: 40%; right: 8%; bottom: -2%; }
  .about-section2-btn{ padding: .75rem 1rem; }
}

/* /////////////////////////////////// section 3 ///////////////////////////////// */
/* ===== About Section 3: Cards on White BG ===== */
.about-section3{
  background: #ffffff;
  color: #0b0b0b;
  padding: clamp(2rem, 4vw, 4rem) 1rem;
}

.about-section3-container{
  max-width: 1200px;
  margin: 0 auto;
}

.about-section3-head{
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.about-section3-title{
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0 0 .35rem 0;
  font-weight: 800;
}
.about-section3-sub{
  margin: 0;
  color: #6b6b6b;
  letter-spacing: .06em;
}

/* Grid */
.about-section3-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(0.8rem, 2vw, 1.25rem);
}
@media (max-width: 1024px){
  .about-section3-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .about-section3-grid{ grid-template-columns: 1fr; }
}

/* Card */
.about-section3-card{
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.about-section3-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  border-color: #dedede;
}

/* Image area + hover button */
.about-section3-figure{
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.about-section3-figure img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease, filter .35s ease;
  filter: grayscale(100%);                /* black & white look */
}
.about-section3-card:hover .about-section3-figure img{
  transform: scale(1.05);
  filter: grayscale(0%);                  /* color pop on hover (optional) */
}

/* Call button overlay (appears on hover) */
.about-section3-callbtn{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -46%) scale(.9);
  padding: .8rem 1.1rem;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}
.about-section3-card:hover .about-section3-callbtn{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.about-section3-callbtn:focus-visible{
  outline: 3px solid #111; outline-offset: 3px;
}

/* Body */
.about-section3-body{
  padding: 1rem .95rem 1.15rem;
}
.about-section3-name{
  margin: 0 0 .25rem 0;
  font-size: 1.05rem;
  font-weight: 800;
}
.about-section3-desc{
  margin: 0;
  color: #5f5f5f;
  font-size: .95rem;
}

/* Optional: small “phone” icon using CSS only */
.about-section3-callbtn::before{
  content: "📞";
  margin-right: .45rem;
  font-size: 1rem;
  line-height: 1;
  vertical-align: -1px;
}

/* ///////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////// section 4 //////////////////////////////// */
/* ===== About Section 4: Large Clickable Service Cards ===== */
.about-section4{
  background: #ffffff;            /* white section (clean) */
  color: #0b0b0b;
  padding: clamp(2rem, 4vw, 4rem) 1rem;
}

.about-section4-container{
  max-width: 1200px;
  margin: 0 auto;
}

.about-section4-head{
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.about-section4-title{
  margin: 0 0 .35rem 0;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
}
.about-section4-sub{
  margin: 0;
  color: #6b6b6b;
  letter-spacing: .04em;
}

/* Grid for big cards */
.about-section4-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* big, two-up */
  gap: clamp(1rem, 2.4vw, 1.5rem);
}
@media (max-width: 900px){
  .about-section4-grid{ grid-template-columns: 1fr; }
}

/* Card anchor */
.about-section4-card{
  display: block;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.about-section4-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.1);
  border-color: #e3e3e3;
}

/* Visual content */
.about-section4-figure{
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;        /* large cinematic card */
  overflow: hidden;
}
.about-section4-figure img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease, filter .4s ease;
  filter: grayscale(100%);     /* black & white vibe */
}
.about-section4-card:hover .about-section4-figure img{
  transform: scale(1.06);
  filter: grayscale(0%);       /* optional color pop on hover */
}

/* Overlay + caption */
.about-section4-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15) 55%, rgba(0,0,0,0));
  transition: opacity .35s ease;
  opacity: .9;
}
.about-section4-card:hover .about-section4-overlay{ opacity: 1; }

.about-section4-caption{
  position: absolute; inset: auto 0 0 0;
  padding: 1.25rem 1.25rem 1.35rem;
  color: #ffffff;
}
.about-section4-name{
  margin: 0 0 .2rem 0;
  font-size: clamp(1.15rem, 2.1vw, 1.5rem);
  font-weight: 800;
  letter-spacing: .02em;
}
.about-section4-desc{
  margin: 0 0 .6rem 0;
  font-size: .98rem;
  color: #e8e8e8;
  max-width: 60ch;
}

/* CTA hint (text only; whole card is clickable) */
.about-section4-cta{
  display: inline-block;
  font-weight: 700;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  padding: .5rem .8rem;
  border-radius: 999px;
  backdrop-filter: blur(2px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.about-section4-card:hover .about-section4-cta{
  transform: translateY(-1px);
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.5);
}

/* Keyboard focus (accessibility) */
.about-section4-card:focus-visible{
  outline: 3px solid #111;
  outline-offset: 3px;
}

/* /////////////////////////////////////////// section 5 ///////////////////////////// */
/* ===== About Section 5: Our Mission & Vision (White BG) ===== */
.about-section5{
  background: #ffffff;
  color: #0b0b0b;
  padding: clamp(2rem, 4vw, 4rem) 1rem;
  border-top: 1px solid #f1f1f1;
}

.about-section5-container{
  max-width: 1200px;
  margin: 0 auto;
}

/* Head */
.about-section5-head{
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.about-section5-title{
  margin: 0 0 .4rem 0;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: .01em;
}
.about-section5-sub{
  margin: 0;
  color: #6b6b6b;
  letter-spacing: .02em;
}

/* Grid */
.about-section5-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
}
@media (max-width: 900px){
  .about-section5-grid{ grid-template-columns: 1fr; }
}

/* Card */
.about-section5-card{
  border: 1px solid #ececec;
  background: #fff;
  border-radius: 18px;
  padding: clamp(1rem, 2.2vw, 1.4rem);
  box-shadow: 0 8px 26px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.about-section5-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0,0,0,.08);
  border-color: #e5e5e5;
}

.about-section5-card-top{
  display: grid;
  gap: .35rem;
  margin-bottom: .5rem;
}
.about-section5-icon{
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: #0b0b0b; color: #fff;
  font-size: 1.2rem;
}
.about-section5-card-title{
  margin: .4rem 0 0;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 800;
}
.about-section5-card-desc{
  margin: .2rem 0 .4rem 0;
  color: #4a4a4a;
  max-width: 60ch;
}

/* List */
.about-section5-list{
  list-style: none; padding: 0; margin: .6rem 0 1rem 0;
  display: grid; gap: .55rem;
}
.about-section5-list li{
  display: grid; grid-template-columns: 18px 1fr; gap: .5rem; align-items: start;
  color: #3b3b3b;
}
.about-section5-dot{
  width: 12px; height: 12px; margin-top: .25rem;
  border-radius: 50%;
  background: #0b0b0b;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
}

/* Stats */
.about-section5-stats{
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem; margin-top: .25rem;
}
.about-section5-stat{
  background: #fafafa;
  border: 1px solid #efefef;
  border-radius: 12px;
  padding: .8rem;
  text-align: center;
}
.about-section5-stat strong{
  display: block; font-weight: 800; font-size: 1.15rem; color: #0b0b0b;
}
.about-section5-stat span{
  color: #6b6b6b; font-size: .9rem;
}

/* Promise strip */
.about-section5-strip{
  display: flex; gap: .5rem; flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
}
.about-section5-pill{
  padding: .6rem .9rem;
  border-radius: 999px;
  background: #0b0b0b;
  color: #fff;
  border: 1px solid #111;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
