/* Nav section */

:root {
    --msz-nav-h: 72px;
    --msz-black: #0b0b0b;
    --msz-red: #c00000;
    --font-ui: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}


body {
    padding-top: calc(var(--msz-nav-h) + 8px);
    background: #f5f6f8;
}


section,
.below-nav,
.services-showcase {
    scroll-margin-top: calc(var(--msz-nav-h) + 8px);
}
  /* Navbar */
.navbar .nav-link {
  color: #141414;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 500;

  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #c50000;
}

.btn-dangerr {
   background: #C00000;
  border: 1px solid #C00000;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  padding: 9px 45px;
  border-radius: 28px;
  
}

.btn-danger:hover {
  background-color: #a00000;
}


/* Navbar */
.navbar .nav-link {
  color: #141414;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
  position: relative;
}

/* Active and hover underline effect */
.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
  content: "";
  position: absolute;
  bottom: -5px; /* distance below text */
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c50000; /* underline color */
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Optional: animation on hover */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c50000;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

/* Active color and underline */
.navbar .nav-link.active {
  color: #c50000;
}

.navbar .nav-link.active::after {
  width: 100%;
}
.client-btn{
  border-radius: 100px;
background: #C00000;
  display: flex;
padding: 10px 44px;
justify-content: center;
align-items: center;
gap: 8px;
flex: 1 0 0;
align-self: stretch;
}


/* Headings (optional) */
.svc-h2 {
    /* font: 900 clamp(1.6rem,1.1rem + 2.2vw,2.2rem)/1.15 "DM Sans",sans-serif; */
    font-family: "Poppins", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 2rem;
    color: #141414;
}

.svc-intro {
    font-family: "Poppins", sans-serif;
    max-width: 1140px;
    color: #141414;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2rem;
    /* 24px */

}

.sub-head {

    color: #141414;

    font-family: Poppins;
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    /* 24px */
}

/* === Mosaic grid === */
.svc-mosaic {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns like mock */
    /* base row height (responsive) → tall tiles span 2 rows = same total height as two halves */
    grid-auto-rows: clamp(140px, 16vw, 240px);
}

/* Card look */
.tile {
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow:0 12px 26px rgba(0,0,0,.08); */
    /* background:#fff; */

}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Spans */
.tall {
    grid-row: span 2;
}

/* full-height columns */
.half {
    grid-row: span 1;
}

/* stacked halves */

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {

    /* md & below: 2 columns */
    .svc-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: clamp(160px, 30vw, 260px);
    }
}

@media (max-width: 575.98px) {

    /* xs: single column */
    .svc-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: clamp(180px, 60vw, 300px);
    }

    /* single-column me tall ko bhi readable rakhna ho to: */
    .tall {
        grid-row: span 2;
    }
}


/* Join Us */



.cj-section {
    /* optional bg image via --cj-bg; remove if not needed */
    --cj-bg: none;
    background:
        linear-gradient(180deg, #ffffff 0%, #faf9fb 100%),
        var(--cj-bg) center/cover no-repeat;
    font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cj-lead {
    color: #111827;
    font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.05rem);
    line-height: 1.7;
    max-width: 70ch;
}

/* headline */
.cj-headline {
    color: #141414;
    font-weight: 600;
    font-size: clamp(1.6rem, 1.1rem + 2.2vw, 3rem);
    line-height: 1.2;
}

/* underline that expands on hover/focus */
.cj-underline {
    position: relative;
    display: inline-block;
    padding-bottom: .3rem;
    /* space for the line */
    outline: none;
    /* focus ring handled below */
}

.cj-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 3px;
    width: 140px;
    /* initial short line */
    background: #141414;
    border-radius: 2px;
    transition: width .45s ease;
}

/* expand on hover/focus */
.cj-underline:hover::after,
.cj-underline:focus::after {
    width: 100%;
}

/* keyboard focus ring for accessibility */
.cj-underline:focus {
    box-shadow: 0 0 0 4px rgba(20, 20, 20, .08);
    border-radius: 6px;
}

/* small spacing tweaks on very small screens */
@media (max-width: 575.98px) {
    .cj-underline::after {
        bottom: -5px;
        height: 2.5px;
        width: 120px;
    }
}


/* Section container */
.cjoin-section {
    background: #F5F5F5;
    border-radius: .5rem;
    font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Heading + paragraph (responsive via clamp) */
.cjoin-title {
    color: #141414;
    font-weight: 600;
    line-height: 1.8;
    font-family: Poppins;
    font-size: clamp(1.05rem, .9rem + .6vw, 1.22rem);
}




.success {

    color: #141414;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.cjoin-lead {
    color: #141414;
    font-weight: 400;
    line-height: 1.5;
    font-size: clamp(1rem, .9rem + .5vw, 1.25rem);
}

/* Link with outlined text + animated underline */
.cjoin-link {
    display: inline-block;
    position: relative;
}

.cjoin-text {
    display: inline-block;
    font-weight: 500;
    line-height: 1.2;
    font-size: clamp(1.5rem, 1.1rem + 2.2vw, 2.75rem);
    color: transparent;
    /* outline look */
    -webkit-text-stroke: 1px #000;
}

.cjoin-link:hover .cjoin-text,
.cjoin-link:focus .cjoin-text {
    color: #000;
}

/* short underline -> expands on hover/focus */
.cjoin-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    width: 140px;
    /* initial short line */
    background: #141414;
    border-radius: 2px;
    transition: width .45s ease;
}

.cjoin-link:hover .cjoin-text::after,
.cjoin-link:focus .cjoin-text::after {
    width: 100%;
}

/* keyboard focus hint */
.cjoin-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(20, 20, 20, .08);
    border-radius: 6px;
}


/* ---- remove old pseudo underline below the text ---- */
.cjoin-text::after{ display:none; }

/* ---- stroked bar ---- */
.success-bar{
  /* size */
  height: 4px;                 /* line ki motai */
  width: 140px;                /* initial chhota size */
  max-width: 100%;
  /* stroke look */
  background: transparent;     /* fill transparent */
  border: 1px solid #141414;   /* <-- yahi stroke hai */
  border-radius: 999px;        /* rounded ends */
  /* spacing + animation */
  margin-top: .6rem;
  transition: width 1s ease;
}

/* expand on hover/focus of whole link */
.cjoin-link:hover .success-bar,
.cjoin-link:focus .success-bar{
  width: 100%;
  background:  #141414;
}

/* optional: mobile thoda compact */
@media (max-width:575.98px){
  .success-bar{ height: 5px; width: 120px; }
}

/* stroked heading – stroke bhi responsive */
.cjoin-text{
  display:inline-block;
  font-weight:500;
  line-height:1.2;
  /* size already responsive but keep it here for clarity */
  font-size: clamp(1.2rem, 4.5vw, 2.75rem);
  color: transparent;
  -webkit-text-stroke: clamp(.6px, .18vw, 1px) #000; /* stroke scales on small screens */
}

/* underline bar with stroke – fully responsive */
.success-bar{
  height: clamp(3px, 0.7vw, 4px);             /* line thickness scales */
  width: clamp(96px, 40vw, 160px);            /* initial short width scales */
  max-width: 100%;
  background: transparent;                    /* transparent fill */
  border: clamp(1px, 0.45vw, 1px) solid #141414; /* “stroke” look */
  border-radius: 999px;
  margin-top: .5rem;
  transition: width 1s ease;
}

/* expand on hover/focus */
.cjoin-link:hover .success-bar,
.cjoin-link:focus .success-bar{
  width: 100%;                                /* full available width */
}

/* container/link safety so text wraps nicely on small screens */
.cjoin-link{
  display:inline-block;
  max-width:100%;
  white-space:normal;
}

/* responsive  */





/* Why Join Us */


/* .py-lg-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}



.joinus-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #faf7fc 100%);
    overflow: clip;
}


.joinus-section {

    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.936), rgba(255, 255, 255, 0.914)),
        url("img/career/bg.jpg") center/cover no-repeat;
   
    pointer-events: none;
}


.joinus-title {
    color: #141414;
    font-family: Poppins;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 64px;

}


.join-item {
    display: grid;
    align-items: start;
    row-gap: .45rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #ececef;
  
    min-height: 160px;
    position: relative;
    z-index: 0;
    --num-stroke: #c00000; 
}


.join-item::before {
    content: attr(data-num);
    grid-row: 1 / span 2;
    align-self: start;
    font-family: "Poppins", system-ui, sans-serif;
    font-weight: 600;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px #c00000;
    opacity: .9;
    font-size: clamp(3.4rem, 6.4vw, 7.7rem);
    transition: -webkit-text-stroke-color .2s ease, color .2s ease;
}


.join-head {
    grid-row: 1;
    margin: 0 0 .2rem 0;
    color: #141414;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    padding-bottom: 1rem;
    line-height: 150%;
   
}

.join-copy {
    grid-row: 2;
    margin: 0;
    color: #141414;
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: 150%; 
}


.join-item.num-left {
    grid-template-columns: 7.5rem 1fr;
    column-gap: 1.25rem;
}

.join-item.num-left::before {
    grid-column: 1;
    justify-self: start;
}

.join-item.num-left .join-head,
.join-item.num-left .join-copy {
    grid-column: 2;
}

.join-item.num-right {
    grid-template-columns: 1fr 7.5rem;
    column-gap: 1.25rem;
}

.join-item.num-right::before {
    grid-column: 2;
    justify-self: end;
}

.join-item.num-right .join-head,
.join-item.num-right .join-copy {
    grid-column: 1;
}


@media (max-width:576px) {
    .join-item.num-left {
        grid-template-columns: 5.25rem 1fr;
    }

    .join-item.num-right {
        grid-template-columns: 1fr 5.25rem;
    }
} */



/* Section with background image + overlay */
.joinus-section {
  position: relative;
  background: 
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.90)),
    url("img/career/bg.jpg") center/cover no-repeat;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

/* Section title */
.joinus-title {
  color: #141414;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
}

/* Each join item */
.join-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ececef;
  transition: transform 0.3s ease;
  position: relative;
}


/* Alternate layout */
.num-left {
  flex-direction: row;
}
.num-right {
  flex-direction: row-reverse;
}

/* The number (outline + fill on hover) */
.join-num {
  font-size: clamp(8rem, 6vw, 7rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #c00000;
  transition: all 0.4s ease;
}

/* ✅ Hover fill color */
.join-num:hover  {
  color: #c00000;
  -webkit-text-stroke: 1.5px #c00000;
}

/* Headings */
.join-head {
  color: #141414;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

/* Paragraphs */
.join-copy {
  color: #141414;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

/* Responsive tweak */
@media (max-width: 576px) {
  .join-num {
    font-size: 3.5rem;
  }
}


/* Three images css */

/* === Mosaic styles === */

.mosaic-grid{
  display:grid;
  gap:1rem;                          /* gap between tiles */
  grid-template-columns: 2fr 1fr;    /* left wider, right narrower */
  grid-template-rows: repeat(2, 1fr);/* two equal rows */
}

/* placement */
.mosaic-left { grid-column: 1; grid-row: 1 / span 2; }
.mosaic-rt   { grid-column: 2; grid-row: 1; }
.mosaic-rb   { grid-column: 2; grid-row: 2; }

/* tiles */
.mosaic-item{
  position:relative;
  /* border-radius:14px; */
  overflow:hidden;
  background:#f6f6f6;
}

/* images fill the tile neatly */
.mosaic-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Desktop/tablet: force equal heights via container height */
@media (min-width: 992px){
  .mosaic-grid{
    /* Responsive overall height → left = 100%, each right = 50% */
    height: clamp(360px, 42vw, 560px);
  }
  .mosaic-item{ height:100%; }  /* each tile fills its grid area */
}

/* Mobile: stack items; let each keep a nice ratio */
@media (max-width: 991.98px){
  .mosaic-grid{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height:auto;                     /* release fixed height */
  }
  .mosaic-left, .mosaic-rt, .mosaic-rb{
    height:auto;
    aspect-ratio: 16/10;             /* pleasant mobile ratio */
  }
}

/* Contact CSS */

/* Section look */
.pitch-section{
  background:#f5f6f8;
  font-family:"DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.pitch-title{
  color: #141414;
font-family: Poppins;
font-style: normal;
font-weight: 600;
line-height: 64px; 
font-size:clamp(1.4rem, 1rem + 1.6vw, 1.9rem);
}
.pitch-intro{
  color: #141414;
font-family: Poppins;
font-size: 1rem;
font-style: normal;
font-weight: 400;
line-height: 150%; 
}

.form-label{

    color: #141414;
font-family: Poppins;
font-size: 1rem;
font-style: normal;
font-weight: 400;
line-height: 150%; 
}

.contact-box-icon-home{
    color: #141414;
}

/* Inputs */
.pitch-control{
  height:44px;
  border-radius:8px;
  border:1px solid #d8dbe0;
  background:#fff;
  box-shadow:none;
}
.pitch-control:focus{
  border-color:#7209B7;
  box-shadow:0 0 0 .2rem rgba(114,9,183,.08);
}

/* Dropzone */
.dropzone{
  border:2px dashed #cfd3d8;
  border-radius:10px;
  background:#fff;
  min-height:120px;
  display:flex; align-items:center; justify-content:center;
  padding:22px;
  transition:border-color .2s ease, background .2s ease;
}
.dropzone.dragover{
  border-color:#7209B7;
  background:#fff7fe;
}
.dz-inner{ text-align:center; }
.dz-text{

    color: #141414;
font-family: Poppins;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 150%; 

     }
.dz-hint{ 

    color: #464646;
font-family: Poppins;
font-size: 10px;
font-style: normal;
font-weight: 300;
line-height: 150%; /* 15px */
 }
.dz-link{
  border:0; 
  color: #C00000;
font-family: Poppins;
background: white;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 150%;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: auto;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
}
.dz-file{ font-size:.9rem; }

/* Captcha placeholder */
.captcha-box{
  display:flex; align-items:center; justify-content:space-between;
  background:#fff; border:1px solid #e3e6ea; border-radius:10px;
  padding:16px 18px; height:56px;
}
.captcha-badge{
  font-size:.78rem; color:#9aa1a9; background:#f3f5f7;
  padding:4px 8px; border-radius:6px;
}

/* Buttons */
.pitch-btn-reset{
border-radius: 28px;
background: #FFF;
    padding: 8px 44px;
   border:1px solid #d9dce1; 
   color:#141414;
   box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.pitch-btn-submit{

 
   padding: 9px 44px;
   color:#fff;
border-radius: 28px;
background: #C00000;
border: 1px solid #C00000;
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
 
}
.pitch-btn-submit:focus{ box-shadow:0 0 0 .2rem rgba(114,9,183,.25); }

/* Tighter invalid feedback spacing */
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-select:invalid ~ .invalid-feedback{
  display:block;
}

.form-control::placeholder{

    color: #818181;
font-family: Poppins;
font-size: 13px;
font-style: normal;
font-weight: 300;
line-height: 150%; /* 18px */
}
.role{

     color: #818181;
font-family: Poppins;
font-size: 13px;
font-style: normal;
font-weight: 300;
line-height: 150%; /* 18px */
}

/* --- Submit / Reset: no hover change --- */

/* (example base styles — keep yours if already set) */
.pitch-btn-submit{
 background: #C00000;
border: 1px solid #C00000;
  color:#fff;
  border:0;
}
.pitch-btn-reset{
  background:#f5f5f5;
  color:#111;
  border:1px solid #e5e7eb;
}

/* remove hover effect (keep same look) */
.pitch-btn-submit:hover{
 background: #C00000;
  color:#fff !important;
  box-shadow:none !important;
}
.pitch-btn-reset:hover{
  background:#f5f5f5 !important;
  color:#111 !important;


}

/* (optional) stop any animation */
.pitch-btn-submit,
.pitch-btn-reset{
  transition: none !important;
}

