/* ===== MAIN.CSS — base variables, reset, typography, buttons, and all body sections (about, process, facts, testimonials, faq) ===== */

:root{
  /* Brand palette (from logo) */
  --navy:        #122d4e;
  --navy-light:  #1d4571;
  --navy-pale:   #eef2f6;
  --red:         #c53629;
  --red-dark:    #9c2b21;
  --gray:        #7c8794;
  --gray-light:  #f4f5f7;

  /* Neutrals */
  --dark:        #1a1c1f;
  --text-body:   #5b6470;
  --white:       #ffffff;
  --cream:       #f6f5f2;
  --border:      #e7e6e1;

  /* Type */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;

  /* Heading scale (unified across every section) */
  --h1-size: 58px;
  --h2-size: 40px;
  --h3-size: 19px;
  --h4-size: 15px;
  --eyebrow-size: 13.5px;

  /* Layout */
  --section-pad-y: 100px;
  --section-pad-y-sm: 60px;
  --container-w: 1400px;
  --radius: 10px;

  --shadow-soft: 0 20px 45px rgba(18,45,78,.10);
  --shadow-card: 0 15px 40px rgba(18,45,78,.10);
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after{box-sizing:border-box;}
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text-body);
  background:var(--white);
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height: 70px;}
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; }
:focus-visible{ outline:2px solid var(--red); outline-offset:2px; }



/* ---------- TYPOGRAPHY (unified across all sections) ---------- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--dark);
  margin:0;
  line-height:1.25;
}
h1{ font-size:var(--h1-size); font-weight:800; }
h2{ font-size:var(--h2-size); font-weight:700; }
h3{ font-size:var(--h3-size); font-weight:700; }
h4{ font-size:var(--h4-size); font-weight:700; }
p{ margin:0; }

.highlight{ color:var(--red); }

.eyebrow{
  display:inline-block;
  color:var(--red);
  font-weight:600;
  letter-spacing:1.5px;
  font-size:var(--eyebrow-size);
  text-transform:uppercase;
  margin-bottom:16px;
  border-bottom:1px solid var(--red);
  padding-bottom:4px;
}
.eyebrow-light{ color:#e8c9ac; border-color:rgba(255,255,255,.5); }

.section-head{ margin-bottom:56px; text-align: center; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; max-width:680px; }

/* ---------- LAYOUT HELPERS (shared) ---------- */
.section{padding:var(--section-pad-y) 0;position:relative;overflow:hidden;}
.alt-bg{ background:var(--gray-light); }

.row-flex{display:flex;flex-wrap:wrap;align-items:flex-start;/* gap:56px; */}
.row-flex.align-center{ align-items:center; }
.row-flex.row-reverse{ flex-direction:row-reverse; }
.col-half{ flex:1 1 460px; min-width:0; }
.col-wide{ flex:1 1 640px; }
.col-narrow{ flex:0 1 260px; }
.col-wide-60{ flex:1 1 560px; min-width:0; }
.col-narrow-40{ flex:1 1 320px; }
.text-right{ text-align:right; }
.hide-sm, .hide-md{ display:inline-flex; }
.position-relative{ position:relative; }

/* ---------- BUTTONS (one consistent system, used everywhere) ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:600;
  font-size:14px;
  letter-spacing:.3px;
  border:none;
  cursor:pointer;
  transition:.25s ease;
  white-space:nowrap;
}
.btn svg{ width:16px; height:16px; }

.btn-primary{
  background:var(--red);
  color:var(--white);
  padding: 14px 28px !important;
  border-radius: 50px !important;
}
.btn-primary:hover{background: #721c1c;color: #fff;}

.btn-block{ width:100%; padding:16px; border-radius:8px; }

.btn-outline{
  background:var(--white);
  color:var(--dark);
  border: 1px solid var(--border) !important;
  border-radius: 50px !important;
  padding: 6px 6px 6px 26px !important;
}
.btn-outline:hover{ background:var(--red); color:var(--white); border-color:var(--red); }
.btn-outline:hover .arrow-circle{ background:var(--white); color:var(--red); }

.btn-outline-light{
  background:transparent;
  color:var(--white);
  border:1px solid rgba(255,255,255,.35);
  border-radius:50px;
  padding:6px 6px 6px 26px;
}
.btn-outline-light:hover{ background:var(--red); border-color:var(--red); }

.arrow-circle{
  width:38px; height:38px;
  border-radius:50%;
  background:var(--red);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  transition:.25s ease;
}


/* ==========================================================================
   ABOUT / WHY-CHOOSE (shared image-collage layout)
   ========================================================================== */
.collage-wrap{ position:relative; max-width:520px; margin:0 auto; min-height:400px; }

.img-frame-1{ position:relative; z-index:2; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-soft); margin-left:70px; }
.img-frame-1 img{width:100%;height: 600px;object-fit:cover;}

.img-frame-2{ position:relative; margin-left:150px; margin-top:-40px; z-index:3; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-soft); }
.img-frame-2 img{ width:100%; height:260px; object-fit:cover; }

.hex-badge{
  position:absolute;
  left: -32px;
  top: 11px;
  width:180px;
  height:180px;
  background:var(--white);
  clip-path:polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  z-index:5;
  padding:20px;
}
.hex-badge h3{ margin-bottom:10px; }
.hex-badge a{ color:var(--red); font-size:13px; font-weight:600; }

.client-badge{
  position:absolute;
  top: 499px;
  right:-20px;
  background:var(--white);
  border-radius:50px;
  padding:16px 24px 16px 16px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:var(--shadow-card);
  z-index:6;
  max-width:250px;
}
.client-badge .icon-circle{width:52px;height:52px;border-radius:50%;background:var(--gray-light);display:flex;align-items:center;justify-content:center;flex-shrink:0;color: var(--red);font-size: 23px;}
.client-badge .icon-circle svg{ width:24px; height:24px; color:var(--red); }
.client-badge .badge-number{font-size: 22px;margin:0;line-height:1.1;}
.client-badge span{ font-size:12.5px; color:var(--text-body); }

.icon-badge{
  position:absolute; top:-16px; right:50px; width:64px; height:64px; background:var(--white);
  border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-card); z-index:5;
}
.icon-badge svg{ width:26px; height:26px; color:var(--red); }

.rotating-badge{ position:absolute; bottom:-10px; left:10px; width:150px; height:150px; z-index:6; animation:spin 18s linear infinite; }
@keyframes spin{ from{ transform:rotate(0); } to{ transform:rotate(360deg); } }
.rotating-badge svg text{font-family:var(--font-body);font-size: 13.5px;letter-spacing:2px;fill:#fff;}

.about-content > p, .why-content > p{ font-size:15px; line-height:1.9; max-width:520px; margin-bottom:36px; color:var(--text-body); }
.about-content h2, .why-content h2{ margin-bottom:20px; }

.feature-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0 24px; margin-bottom:36px; }
.feature-grid.two-col{ grid-template-columns:1fr 1fr; }
.feature-item, .why-feature{ display:flex; gap:16px; margin-bottom:32px; }
.feature-item .f-icon, .why-feature .w-icon{ width:38px; height:38px; flex-shrink:0; margin-top:2px; }
.feature-item .f-icon svg, .why-feature .w-icon svg{ width:100%; height:100%; color:var(--red); }
.feature-item h3, .why-feature h3{ margin-bottom:6px; }
.feature-item p, .why-feature p{ font-size:13.5px; line-height:1.65; color:var(--text-body); }


/* ==========================================================================
   WORKING PROCESS
   ========================================================================== */
.process-section{ background:var(--gray-light); padding:var(--section-pad-y) 0 calc(var(--section-pad-y) + 30px); }
.gavel-img{ position:absolute; top:-10px; right:0; width:220px; opacity:.15; z-index:0; pointer-events:none; border-radius:12px; }

.steps-row{ position:relative; z-index:2; display:flex; flex-wrap:wrap; gap:40px 0; }
.step-col{ flex:1 1 220px; min-width:220px; }
.step-col.step-offset{ margin-top:70px; }

.connector-svg{ position:absolute; top:70px; left:0; width:100%; height:120px; z-index:0; pointer-events:none; }
.connector-svg path{ stroke:#d9d2c2; stroke-width:1.5; stroke-dasharray:4 6; fill:none; }

.step-item{
  text-align:center; position:relative; z-index:1;
  opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease;
  padding:0 16px;
}
.step-item.in-view{ opacity:1; transform:translateY(0); }

.step-icon-wrap{ position:relative; width:84px; height:84px; margin:0 auto 22px; }
.step-icon-circle{ width:84px; height:84px; border-radius:50%; background:var(--white); display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-card); }
.step-icon-circle i {width:30px;height:30px;color:var(--red);font-size: 32px;}
.step-number{
  position:absolute; top:-4px; left:-4px; width:28px; height:28px; border-radius:50%; background:var(--navy);
  color:var(--white); font-size:11.5px; font-weight:700; display:flex; align-items:center; justify-content:center;
}
.step-item h3{ margin-bottom:10px; }
.step-item p{ color:var(--text-body); font-size:13.5px; line-height:1.8; max-width:230px; margin:0 auto; }

.end-dot{ position:absolute; top:150px; right:0; width:22px; height:22px; border-radius:50%; border:1.5px solid #d9d2c2; z-index:1; }

/* ==========================================================================
   FUN FACTS / STATS
   ========================================================================== */
.facts-section{ padding:0; }
.facts-hero{
  position:relative;
  background:linear-gradient(180deg, rgba(10,20,35,.90) 0%, rgba(18,45,78,.72) 100%), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1600&q=80') center/cover no-repeat;
  padding: 90px 0 90px;
}
.facts-hero h2.light{ color:var(--white); font-size:34px; }
.stats-row{ margin-top:-95px; position:relative; z-index:3; }
.stats-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:24px; }

.stat-card{ background:var(--white); border-radius:6px; box-shadow:var(--shadow-card); padding:55px 20px 26px; text-align:center; position:relative; }
.stat-icon-circle{
  width:92px;
  height:92px;
  border-radius:50%;
  background:var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  top:-46px;
  left:50%;
  transform:translateX(-50%);
  box-shadow:var(--shadow-card);
  font-size: 35px;
  color: #fff;
}
.stat-icon-circle svg{ width:34px; height:34px; color:var(--white); }
.stat-number{ font-size:36px; margin-bottom:16px; margin-top:6px; }
.stat-label{ display:inline-block; background:var(--gray-light); color:var(--dark); font-weight:600; font-size:13.5px; padding:9px 18px; border-radius:4px; }

.facts-bottom-space{ height:100px; }
.go-top{ position:absolute; right:24px; bottom:32px; writing-mode:vertical-rl; text-orientation:mixed; color:var(--text-body); font-size:11px; letter-spacing:2px; z-index:4; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-section{ background:var(--white); }
.bg-statue{ position:absolute; left:0; top:0; height:100%; width:380px; opacity:.06; z-index:0; pointer-events:none; }
.bg-statue img{ height:100%; width:100%; object-fit:cover; -webkit-mask-image:linear-gradient(90deg, #000 40%, transparent 100%); mask-image:linear-gradient(90deg, #000 40%, transparent 100%); }

.testi-left p{ font-size:14.5px; line-height:1.8; max-width:340px; margin-bottom:32px; color:var(--text-body); }
.testi-left h2{ margin-bottom:20px; }

.slider-arrows{ display:flex; gap:14px; }
.arrow-btn{ width:44px; height:44px; border-radius:50%; background:var(--gray-light); border:none; display:flex; align-items:center; justify-content:center; color:var(--dark); cursor:pointer; transition:.25s; }
.arrow-btn:hover{ background:var(--red); color:var(--white); }
.arrow-btn svg{ width:17px; height:17px; }

.testi-slider-viewport{ position:relative; z-index:2; overflow:hidden; }
.testi-slider-track{ display:flex; transition:transform .6s ease; }
.testi-slide{ flex:0 0 100%; display:flex; gap:24px; }

.testi-card{ background:var(--white); border-radius:8px; box-shadow:var(--shadow-card); padding:36px 22px 22px; position:relative; flex:1; margin-top:32px; min-width:0; }
.testi-avatar-wrap{ position:absolute; top:-32px; left:22px; display:flex; align-items:center; gap:14px; }
.arch-bg{ position:absolute; top:32px; left:0; width:60px; height:30px; background:var(--gray-light); border-top-left-radius:60px; border-top-right-radius:60px; z-index:0; }
.testi-avatar{ width:60px; height:60px; border-radius:50%; overflow:hidden; border:3px solid var(--white); box-shadow:0 5px 15px rgba(0,0,0,.15); position:relative; z-index:1; flex-shrink:0; }
.testi-avatar img{ width:100%; height:100%; object-fit:cover; }
.avatar-initial{ display:flex; align-items:center; justify-content:center; background:var(--navy); color:var(--white); font-family:var(--font-display); font-weight:700; font-size:20px; }
.testi-name{ position:relative; z-index:1; padding-top:4px; }
.testi-name h3{ margin:0; font-size:16px; }
.testi-name span{ font-size:12.5px; color:var(--text-body); }
.testi-card p.testi-text{ color:var(--text-body); font-size:13.5px; line-height:1.85; margin:26px 0 20px; }
.testi-stars{color:var(--red);font-size: 16px;letter-spacing:2px;}
.quote-icon{ position:absolute; bottom:0; right:0; width:44px; height:40px; background:var(--red); border-top-left-radius:10px; display:flex; align-items:center; justify-content:center; color:var(--white); }
.quote-icon svg{ width:19px; height:19px; }


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:991px){
  :root{ --h1-size:40px; --h2-size:30px; --section-pad-y:70px; }

  .row-flex{ gap:40px; }
  .row-flex.row-reverse{ flex-direction:row; }
  .col-half{ flex:1 1 100%; }

  .about-content, .why-content{ margin-top:20px; }
  .collage-wrap{ margin-bottom:40px; }

  .form-grid{ grid-template-columns:1fr 1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }

  .connector-svg{ display:none; }
  .step-col.step-offset{ margin-top:0; }
  .gavel-img{ display:none; }
  .end-dot{ display:none; }

  .hex-badge{ left:0; top:-16px; }
}

@media (max-width:576px){
  :root{ --h1-size:32px; --h2-size:26px; }
  .hero-content p{ font-size:14.5px; }
  .form-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .consult-card{ padding:26px 20px 20px; }
  .practice-card{ width:250px; flex:0 0 250px; }
  .topbar-location{ display:none; }
  .col-narrow-40, .col-wide-60{ flex:1 1 100%; }
}


/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section{ background:var(--gray-light); }

.faq-subtext{
  font-size:14.5px;
  line-height:1.9;
  color:var(--text-body);
  margin-top:16px;
}

.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 24px;
  align-items:start;
}

.faq-col{ display:flex; flex-direction:column; gap:16px; }

.faq-item{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:8px;
  overflow:hidden;
  transition:.25s ease;
}
.faq-item[open]{ border-color:var(--red); box-shadow:var(--shadow-card); }

.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px 20px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:14.5px;
  color:var(--dark);
}
.faq-item summary::-webkit-details-marker{ display:none; }

.faq-num{ color:var(--red); font-weight:700; margin-right:6px; }

.faq-icon{
  width:26px; height:26px;
  display:flex; align-items:center; justify-content:center;
  color:var(--dark);
  flex-shrink:0;
  transition:.25s ease;
}
.faq-icon svg{ width:16px; height:16px; }

.faq-item[open] .faq-icon{ color:var(--red); transform:rotate(180deg); }

.faq-answer{ padding:0 20px 20px; }
.faq-answer p{ font-size:13.5px; line-height:1.85; color:var(--text-body); margin:0; }

@media (max-width:768px){
  .faq-grid{ grid-template-columns:1fr; }
}


.rotating-badge{
    width:160px;
    height:160px;
}

.rotate-text{
    transform-origin:80px 80px;
    animation:rotateBadge 12s linear infinite;
}

.rotate-text{
    transform-origin:80px 80px;
    animation:rotateBadge 10s linear infinite;
}

@keyframes rotateBadge{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}


/* Text select hone par */
::selection {
    background: #c53629; /* Selection background color */
    color: #ffffff;      /* Selected text color */
}

/* Firefox support */
::-moz-selection {
    background: #ff6b00;
    color: #ffffff;
}



.f-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: currentColor; /* same jaisa stroke="currentColor" tha */
}

.f-icon i {
  font-size: 31px;   /* SVG ke 24x24 viewBox ke barabar visual size */
  line-height: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.why {
  padding: 70px 0;
}

.why .eyebrow {
  display: inline-block;
  color: #d32f2f;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.why .line {
  width: 60px;
  height: 3px;
  background: #d32f2f;
  margin: 12px auto 16px;
  border-radius: 2px;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #d32f2f;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.why-content h4 {
  margin-bottom: 8px;
  font-size: 20px;
}

.why-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
  .why-list {
    grid-template-columns: 1fr;
  }
}