html, body{
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

:root{
  --topbar-h: 45px;
  --header-h: 80px;
  --header-offset: calc(var(--topbar-h) + var(--header-h));
}

body{
  padding-top: var(--header-offset);
}
/* ✅ ABOUT HERO SECTION CSS (Fully Responsive) */
.about-hero{
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;

  /* ✅ bg image */
  background-image: url("images/about\ pagebanner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* overlay */
.about-hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(7, 32, 55, 0.55);
  z-index: 1;
}

/* content */
.about-hero__content{
  position: relative;
  z-index: 2;
  padding: 40px 16px;
  max-width: 1200px;
  width: 100%;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-hero__title{
  color: #fff;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.1;
  margin: 0 0 12px 0;
  text-align: left;
  padding-left: 70px;
}

.about-hero__breadcrumb{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  padding-left: 70px;
}

.about-hero__link{
  color: #fff;
  text-decoration: none;
}
.about-hero__link:hover{
  text-decoration: underline;
}

.about-hero__sep{
  color: rgba(255,255,255,0.85);
}

.about-hero__current{
  color: #ff7a18;
  font-weight: 700;
}

/* ✅ Laptop 1024px */
@media (max-width: 1024px){
  .about-hero{ min-height: 280px; }
  .about-hero__title{ font-size: 46px; }
  .about-hero__breadcrumb{ font-size: 16px; }
}

/* ✅ Tablet 768px - CENTER CONTENT */
@media (max-width: 768px){
  :root{
    --topbar-h: 0px;
    --header-h: 60px;
    --header-offset: calc(var(--topbar-h) + var(--header-h));
  }

  body{
    padding-top: var(--header-offset);
  }

  .about-hero{ 
    min-height: 240px; 
    margin-top: 0;
    justify-content: center; /* ✅ Center alignment */
  }
  
  .about-hero__content{
    margin-left: auto; /* ✅ Center horizontally */
    margin-right: auto; /* ✅ Center horizontally */
    align-items: center; /* ✅ Center items */
  }
  
  .about-hero__title{ 
    font-size: 38px;
    text-align: center; /* ✅ Center text */
    padding-left: 0; /* ✅ Remove left padding */
  }
  
  .about-hero__breadcrumb{ 
    font-size: 15px; 
    gap: 8px;
    padding-left: 0; /* ✅ Remove left padding */
    justify-content: center; /* ✅ Center breadcrumbs */
  }
}

/* ✅ Mobile 520px */
@media (max-width: 520px){
  .about-hero{ 
    min-height: 200px;
    justify-content: center;
  }
  
  .about-hero__content{ 
    padding: 32px 14px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  
  .about-hero__title{ 
    font-size: 30px;
    text-align: center;
    padding-left: 0;
  }
  
  .about-hero__breadcrumb{ 
    font-size: 14px;
    padding-left: 0;
    justify-content: center;
  }
}

/* ✅ ABOUT SECTION 1 (Shraddha Services) - COMPLETE CSS (final) */
.about-section-1{
  width: 100%;
  padding: 60px 0;
  background: #ffffff;
}

.about-section-1__wrap{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 34px;
  align-items: start;
}

/* LEFT */
.about-section-1__left{
  padding: 10px 0;

  /* ✅ FIX: Left heading ko screenshot-1 jaisa center (vertical) */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* ✅ vertical center */
  min-height: 520px;        /* ✅ right side card+images ke approx height */
}

.about-section-1__bigtitle{
  font-size: 86px;
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 18px 0;
  color: #0b0b0b;
  text-transform: uppercase;
}

.about-section-1__tagline{
  margin: 0 0 26px 0;
  font-weight: 800;
  letter-spacing: 4px;
  font-size: 14px;
  color: #111;
  text-transform: uppercase;
}

.about-section-1__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  width: min(520px, 100%);
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
}

/* RIGHT */
.about-section-1__right{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-section-1__card{
  background: #fff;
  border-radius: 14px;
  padding: 26px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.about-section-1__cardhead{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.about-section-1__line{
  height: 2px;
  width: 54px;
  background: rgba(0,0,0,0.25);
  flex: 0 0 54px;
}

.about-section-1__title{
  margin: 0;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 900;
  color: #111;
}

.about-section-1__text{
  margin: 0 0 14px 0;
  color: #4b5563;
  line-height: 1.9;
  font-size: 15px;
}

.about-section-1__links{
  display: flex;
  gap: 34px;
  margin-top: 6px;
}

.about-section-1__link{
  color: #111;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid #111;
  padding-bottom: 4px;
}

/* IMAGES (2 images in a row) */
.about-section-1__images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-section-1__imgbox{
  border-radius: 14px;
  overflow: hidden;
  height: 240px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  background: #ddd;
}

.about-section-1__imgbox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ Laptop (<=1024px) */
@media (max-width: 1024px){
  .about-section-1__wrap{
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .about-section-1__bigtitle{
    font-size: 43px;
  }

  /* ✅ left center adjust */
  .about-section-1__left{
    min-height: 480px;
  }

  .about-section-1__imgbox{
    height: 210px;
  }
}

/* ✅ Tablet (<=768px) */
@media (max-width: 768px){
  .about-section-1{
    padding: 40px 0;
  }

  .about-section-1__wrap{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* ✅ stacked view: center nahi, normal flow */
  .about-section-1__left{
    min-height: auto;
    justify-content: flex-start;
  }

  .about-section-1__bigtitle{
    font-size: 56px;
    line-height: 1;
  }

  .about-section-1__btn{
    width: 100%;
  }

  .about-section-1__images{
    grid-template-columns: 1fr 1fr;
  }

  .about-section-1__imgbox{
    height: 200px;
  }
}

/* ✅ Mobile (<=520px) */
@media (max-width: 520px){
  .about-section-1__bigtitle{
    font-size: 29px;
  }

  .about-section-1__tagline{
    letter-spacing: 2px;
    font-size: 12px;
  }

  .about-section-1__card{
    padding: 20px;
  }

  .about-section-1__text{
    font-size: 14px;
  }

  .about-section-1__links{
    gap: 22px;
    flex-wrap: wrap;
  }

  .about-section-1__images{
    grid-template-columns: 1fr;
  }

  .about-section-1__imgbox{
    height: 210px;
  }
}

/* section 2 css */
/* ===== ABOUT SECTION 2 (Mission/Vision Alternating Layout) ===== */
.about-section-2{
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
}

.about-section-2__wrap{
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Each row: 2 columns */
.about-section-2__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

/* Content card */
.about-section-2__content{
  background: #f5f7fa;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.about-section-2__title{
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 900;
  color: #0b0b0b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section-2__text{
  margin: 0 0 14px 0;
  font-size: 15px;
  line-height: 1.9;
  color: #4b5563;
}
.about-section-2__text:last-child{
  margin-bottom: 0;
}

/* Image box */
.about-section-2__imgbox{
  width: 100%;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12);
  background: #e9eef5;
}

.about-section-2__imgbox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Reverse row for Vision (desktop/tablet) */
.about-section-2__row--reverse{
  direction: rtl;             /* swap columns */
}
.about-section-2__row--reverse > *{
  direction: ltr;             /* keep text normal */
}

/* ✅ Laptop 1024px */
@media (max-width: 1024px){
  .about-section-2{
    padding: 60px 0;
  }

  .about-section-2__row{
    gap: 26px;
  }

  .about-section-2__imgbox{
    height: 320px;
  }

  .about-section-2__title{
    font-size: 20px;
  }

  .about-section-2__text{
    font-size: 14.5px;
  }
}

/* ✅ Tablet 768px (stack layout) */
@media (max-width: 768px){
  .about-section-2{
    padding: 50px 0;
  }

  .about-section-2__wrap{
    gap: 22px;
  }

  .about-section-2__row{
    grid-template-columns: 1fr;   /* stack */
    gap: 18px;
  }

  /* Vision row reverse ko normal stack kar do */
  .about-section-2__row--reverse{
    direction: ltr;
  }

  .about-section-2__imgbox{
    height: 280px;
  }

  .about-section-2__content{
    padding: 24px;
  }
}

/* ✅ Mobile 520px */
@media (max-width: 520px){
  .about-section-2{
    padding: 40px 0;
  }

  .about-section-2__imgbox{
    height: 220px;
    border-radius: 14px;
  }

  .about-section-2__content{
    padding: 20px;
    border-radius: 12px;
  }

  .about-section-2__title{
    font-size: 18px;
  }

  .about-section-2__text{
    font-size: 14px;
    line-height: 1.8;
  }
}

/* Meet our team css */
.meet-our-team{
  padding: 10px 0;
  background: #fff;
}

/* Head */
.meet-our-team__head{
  text-align: center;
  max-width: 780px;
  margin: 0 auto 36px;
}

.meet-our-team__kicker{
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #1f6feb;
  margin-bottom: 8px;
}

.meet-our-team__title{
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.meet-our-team__subtitle{
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
}

/* Grid */
.meet-our-team__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Laptop 1024px+ */
  gap: 22px;
}

/* Card */
.meet-our-team__card{
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15,23,42,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.meet-our-team__card:hover{
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(15,23,42,0.12);
}

.meet-our-team__imgbox{
  aspect-ratio: 4 / 3;
  background: #f1f5f9;
}

.meet-our-team__imgbox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-our-team__body{
  padding: 18px;
}

.meet-our-team__name{
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.meet-our-team__role{
  font-size: 11px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.meet-our-team__text{
  font-size: 12.5px;
  line-height: 1.7;
  color: #475569;
}

/* Tablet – 2 cards */
@media (max-width: 1023px){
  .meet-our-team__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile – 1 card */
@media (max-width: 520px){
  .meet-our-team__grid{
    grid-template-columns: 1fr;
  }
}

/* about cta section  */
.about-cta-section{
  padding: 70px 0;
background: radial-gradient(900px circle at 20% 20%, rgba(21,101,192,.35) 0%, transparent 55%),
            radial-gradient(900px circle at 80% 30%, rgba(249,115,22,.28) 0%, transparent 55%),
            linear-gradient(135deg, #05070d 0%, #071428 45%, #05070d 100%);
   margin:10px       

}

.about-cta-section__wrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: stretch;
  padding: 28px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}

.about-cta-section__kicker{
  display: inline-block;
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
}

.about-cta-section__title{
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 900;
  color: #ffffff;
}

.about-cta-section__text{
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
  max-width: 760px;
}

.about-cta-section__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 6px 0 18px;
}

.about-cta-section__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  user-select: none;
}

.about-cta-section__btn--primary{
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 14px 28px rgba(15,23,42,0.18);
}

.about-cta-section__btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15,23,42,0.22);
}

.about-cta-section__btn--outline{
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.7);
}

.about-cta-section__btn--outline:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15,23,42,0.16);
}

/* Meta highlights */
.about-cta-section__meta{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.about-cta-section__meta-item{
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
}

.about-cta-section__meta-title{
  display: block;
  font-weight: 900;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 2px;
}

.about-cta-section__meta-sub{
  display: block;
  font-size: 12.5px;
  color: rgba(255,255,255,0.88);
}

/* ===== Responsive ===== */

/* Tablet (<= 1023px) */
@media (max-width: 1023px){
  .about-cta-section__wrap{
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .about-cta-section__meta{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile (<= 520px) */
@media (max-width: 520px){
  .about-cta-section{
    padding: 30px 0;
  }

  .about-cta-section__wrap{
    padding: 16px;
    border-radius: 16px;
  }

  .about-cta-section__actions{
    flex-direction: column;
  }

  .about-cta-section__btn{
    width: 100%;
  }

  .about-cta-section__meta{
    grid-template-columns: 1fr;
  }
}
