/* ========== Barlow (self-hosted, TTF) ========== */
@font-face {
    font-family: "Barlow";
    src: url("./assets/fonts/Barlow-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src: url("./assets/fonts/Barlow-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src: url("./assets/fonts/Barlow-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Barlow";
    src: url("./assets/fonts/Barlow-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ========== Base (Desktop first) ========== */
html,
body {
    height: 100%;
}

body {
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    /* desktop base size for p and li */
    line-height: 1.6;
    margin: 0;
    color: #111;
    background: #fff;
}

/* Paragraphs and lists (same size) */
p,
li {
    font-size: 18px;
    /* keep p and li equal */
    font-weight: 400;
    line-height: 1.6;
}

p {
    margin: 0 0 16px;
}

ul,
ol {
    margin: 0 0 16px 24px;
    padding-left: 24px;
}

/* ========== Headings (Desktop) ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 12px;
}

h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
}

h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
}

h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

.hero_scn {
    background: url("./assets/Header_Banner/Desktop.png") center/contain no-repeat;
    padding: 1em 0;
}

.hero_rw{
    align-items: center;
}


.hero-left h1{
    color: #111;
}

.hero-left h1 span {
  color: #a30d07;
  position: relative;
  display: inline-block;
  padding-bottom: .8em; /* space for underline */
}

.hero-left h1 span::after {
  content: "";
  position: absolute;
  left: 0;          /* start at beginning of text */
  bottom: 0;        /* sit just below the text */
  width: 100%;      /* stretch full width of text */
  height: 20px;     /* adjust to underline image height */
  background: url("./assets/Header_Banner/Line_Scat.svg") no-repeat left;
  background-size: 100% 100%; /* stretch across text */
}

.hero-left h3{
    margin-bottom: .8em;
}

.hero-left .salary_badge{
    background: #a30d07;
    color: #fff;
    border: none;
    border-radius: .2em;
    font-size: 20px;
    padding: .3em;
    margin: 0 0 1em;
}

.hero-left p{
    max-width: 55%;
    margin-bottom: 0;
}

.hero_right .form_card {
    background: #fff;
    padding: 1.5em;
    border-radius: 1em;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.form_card h4{
    text-align: center;
    margin-bottom: .8em;
}

.form-group {
    margin-bottom: .8em;
}

.submit_btn {
    width: 100%;
    padding: .5em;
    background-color: #c11009;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: .5em;
}
#submit:hover {
    background-color: #ff4b5c; /* Lighter red */
	width: 100%;
    padding: .5em;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: .5em;

}

.program_scn {
    padding: 2em 0;
    background: #f7f7f7;
}

.program_scn h2 {
    text-align: center;
    color: #111;
    margin-bottom: 1em;
}
label.error {
    color: red; /* Red color for error messages */
    font-size: 14px; /* Optional: Adjust the size for better readability */
    display: inline-block; /* Ensure the label appears properly */
}

.program_flx {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 1em;
}

.program_cd {
    display: flex;
    align-items: center;
    gap: .8em;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 1em;
    min-width: 240px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.program_cd img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.program_info {
    position: relative;
    padding-left: .8em;
}

.program_info::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1.5px;
    background-color: #929292;
    border-radius: 1px;
}

.program_info span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program_info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.steps_scn h2 {
    color: #111;
    text-align: center;
    margin: .5em 0;

    em {
        font-style: normal;
        color: #c11009;
    }
}

.steps_crsl {
    padding: 2em 0;
}

.steps_scroll {
    display: flex;
    gap: 20px;
    padding: 0 0 1em 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #c11009 #f0f0f0;
}

.steps_scroll::-webkit-scrollbar {
    height: 8px;
}

.steps_scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.steps_scroll::-webkit-scrollbar-thumb {
    background-color: #c11009;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
}

.steps_scroll::-webkit-scrollbar-thumb:hover {
    background-color: #a30d07;
}

.steps_cd {
    flex: 0 0 auto;
    /* prevent shrinking */
    width: 300px;
    /* card width */
    scroll-snap-align: start;
    /* snap each card */
    border-radius: 1em;
    padding: 15px;
    background: #fff;
    border: solid 1px #d2d2d2;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 5px;
}

.steps_cd img {
    border-radius: 1em;
    width: 100%;
    height: 150px;
}

.steps_cd h4 {
    text-align: center;
    margin: .5em 0;
}

.steps_cd p {
    text-align: center;
    margin-bottom: 0;
}

.elgbty_scn h2 {
    color: #111;
    text-align: center;
    margin: .5em 0;
}

.elgbty_gd {
    background: #f7f7f7;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2em;
    padding: 1em 0;
}

.elgbty_cd {
    text-align: center;
}

.elgbty_gd img {
    background: #c11009;
    border-radius: .5em;
    width: 60px;
    height: 60px;
    padding: 12px;
    margin: auto;
    display: block;
}

.elgbty_gd h4 {
    margin: .5em 0;
}

.elgbty_gd p {
    margin: 0;
}

.grey_bg {
    background: #f7f7f7;
}

.build_scn h2 {
    color: #111;
    text-align: center;
    margin: .5em 0;

    em {
        font-style: normal;
        color: #c11009;
    }
}

.build_flx {
    display: flex;
    align-items: center;
    padding: 1em 0;
}

.build_flx .img_container {
    flex: 2;
}

.build_flx .img_container .emp_img {
    width: 100%;
}

.build_flx .build_txt {
    flex: 3;
}

.build_flx .build_txt ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: .8em;
}

.build_flx .build_txt ul li {
    font-size: 28px;
    position: relative;
    padding-left: 40px;
}

.build_flx .build_txt ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url("./assets/Icons/checkmark.png") no-repeat center center;
    background-size: contain;
}

.build_flx .build_txt .eqi_logo {
    width: 150px;
    height: 150px;
    display: block;
    margin: -4em 0 auto auto;
}

.why_crsl_scn h2 {
    color: #111;
    text-align: center;
    margin: .5em 0;

    em {
        font-style: normal;
        color: #c11009;
    }
}

.why_crsl {
    background: #f7f7f7;
    padding: 2em 0 4em;
}

.why_crsl .why_crsl_cd {
    background: #fff;
    border-radius: 1em;
    display: flex;
    align-items: center;
    gap: 3em;
    padding: 1.5em;
}

.why_crsl_cd .img_container {
    flex: 2;
}

.why_crsl_cd .img_container img {
    width: 100%;
}

.why_crsl_cd .txt_container {
    flex: 3;
}

.why_crsl_cd .txt_container h3 span {
    color: #c11009;
}

.why_crsl .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d2d2d2;
    margin: 0 6px;
}

.why_crsl .carousel-indicators .active {
    background-color: #999;
    opacity: 1;
}

.why_crsl .carousel-indicators {
    bottom: -65px;
}

.why_crsl .carousel-control-prev-icon,
.why_crsl .carousel-control-next-icon {
    background-size: 60% 60%;
    filter: invert(1);
}

.why_crsl .carousel-control-prev {
    left: -1em;
}

.why_crsl .carousel-control-next {
    right: -1em;
}

.why_crsl .carousel-control-prev,
.why_crsl .carousel-control-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #d2d2d2;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    transition: background-color 0.3s;
}

.why_crsl .carousel-control-prev:hover,
.why_crsl .carousel-control-next:hover {
    background-color: #d9534f;
}

.benefits_scn {
    position: relative;
    background: url(./assets/Logo/Equitas_Logo.svg) no-repeat center center;
    background-size: 150px;
    padding: 2em 0;
    z-index: 0;
}

.benefits_scn::before {
    content: "";
    position: absolute;
    inset: 0;
    /* shorthand for top, right, bottom, left = 0 */
    background-color: rgba(255, 255, 255, 0.6);
    /* milky overlay */
    z-index: -1;
    /* keep it behind content */
}

.benefits_scn h2 {
    text-align: center;
    color: #111;
    margin-bottom: 1em;
}

.benefits_gd {
    display: grid;
    gap: 4em;
    grid-template-columns: repeat(4, 1fr);
}

.benefits_cd img {
    border-radius: 1em;
    width: 50%;
    padding: 1em;
    margin: auto;
    display: block;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.benefits_cd h5 {
    text-align: center;
    margin: 1em 0 0;
}

.faq_scn {
    padding: 2em 0;
    background: #f7f7f7;
}

.faq_scn h2 {
    color: #111;
}

.faq_acc .accordion-item {
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
}

.faq_acc .accordion-button {
    font-weight: 600;
    font-size: 18px;
    color: #111;
    padding: 18px 20px;
    border-radius: 12px;
}

.faq_acc .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq_acc .accordion-button.collapsed {
    background-color: #fff;
    color: #111;
}

.faq_acc .accordion-button:not(.collapsed) {
    background-color: #f7f9fc;
    color: #111;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .05);
}

.cta_scn {
    padding: 2em 0;
}

.cta_cd {
    display: flex;
    align-items: center;
    gap: 4em;
    overflow: hidden;
    border-radius: 1em;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    padding: 2em;
}

.cta_cd .img_area {
    flex: 3;
}

.cta_cd .img_area img {
    width: 100%;
    border-radius: 1em;
}

.cta_cd .img_area h4 {
    text-align: center;
    margin: 1em 0 0;
}

.cta_cd .btn_area {
    flex: 2;
}

.cta_cd .btn_area h2 {
    color: #111;
    margin-bottom: 1em;

    em {
        font-style: normal;
        color: #c11009;
    }
}

.cta_cd .btn_area button {
    background: #c11009;
    color: #fff;
    padding: .3em 2em;
    border: none;
    border-radius: .5em;
}

/* ========== Tablet (≤ 991px) ========== */
@media (max-width: 991px) {

    body,
    p,
    li {
        font-size: 17px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }

    h4 {
        font-size: 22px;
    }



    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .hero_scn {
    background: url("./assets/Header_Banner/Mobile.png") ;
background-repeat: no-repeat;
background-position-x: center;
    padding: 1em 0;
}

.hero-left p{
    max-width: 55%;
    margin-bottom: 2em;
}

.hero_right .form_card {
    width: 50%;
}

    .program_scn h2 {
        margin-bottom: .8em;
    }

    .program_flx {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1em;
    }

    .elgbty_gd {
        grid-template-columns: repeat(3, 1fr);
    }

    .build_flx {
        flex-direction: column;
        gap: 1em;
    }

    .build_flx .img_container .emp_img {
        display: block;
        margin: auto;
        width: 60%;
    }

    .build_flx .build_txt .eqi_logo {
        width: 150px;
        height: 150px;
        display: block;
        margin: -6em 0 auto auto;
    }

    .benefits_scn h2 {
        margin-bottom: .8em;
    }

    .benefits_gd {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits_cd img {
        width: 30%;
    }

    .faq_scn .faq_title {
        margin-bottom: .8em;
    }

    .cta_cd {
        flex-direction: column;
        gap: 2em;
    }

    .cta_cd .btn_area h2 {
        text-align: center;
        margin-bottom: .8em;
    }

    .cta_cd .btn_area button {
        padding: .3em 2em;
        margin: 0 auto 0;
        display: block;
    }

}

@media (max-width: 575px) {

    body,
    p,
    li {
        font-size: 16px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .hero_scn {
    background: url("./assets/Header_Banner/Mobile.png");
background-repeat: no-repeat;
background-position-x: center;
    padding: 1em 0;
}

.hero_rw{
    align-items: center;
}


.hero-left h1{
    color: #111;
}

.hero-left h1 span {
  color: #a30d07;
  position: relative;
  display: inline-block;
  padding-bottom: .8em; /* space for underline */
}

.hero-left h1 span::after {
  content: "";
  position: absolute;
  left: 0;          /* start at beginning of text */
  bottom: 0;        /* sit just below the text */
  width: 100%;      /* stretch full width of text */
  height: 20px;     /* adjust to underline image height */
  background: url("./assets/Header_Banner/Line_Scat.svg") no-repeat left;
  background-size: 100% 100%; /* stretch across text */
}

.hero-left h3{
    margin-bottom: .8em;
}

.hero-left .salary_badge{
    background: #a30d07;
    color: #fff;
    border: none;
    border-radius: .2em;
    font-size: 18px;
    padding: .3em;
    margin: 0 0 1em;
}

.hero-left p{
    max-width: 55%;
    margin-bottom: 1.5em;
}

.hero_right .form_card {
    width: 75%;
    padding: 1em;
}

    .program_scn h2 {
        margin-bottom: .8em;
    }

    .program_flx {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .steps_crsl {
        padding: 2em .5em;
    }

    .elgbty_gd {
        width: 75%;
        display: flex;
        flex-direction: column;
        gap: 2em;
        padding: 1em 0;
    }

    .elgbty_cd {
        display: flex;
        align-items: center;
        gap: 1em;
        text-align: left;
    }

    .elgbty_gd img {
        margin: 0;
    }

    .build_flx .img_container .emp_img {
        width: 80%;
    }

    .build_flx .build_txt ul li {
        font-size: 18px;
    }

    .build_flx .build_txt .eqi_logo {
        width: 100px;
        height: 100px;
        display: block;
        margin: -3em 1em auto auto;
    }

    .why_crsl {
        padding: 2em 1em 3em;
    }

    .why_crsl .why_crsl_cd {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }

    .why_crsl_cd .txt_container {
        text-align: center;
    }

    .why_crsl .carousel-indicators {
        bottom: -50px;
    }

    .why_crsl .carousel-control-prev {
        left: -.5em;
    }

    .why_crsl .carousel-control-next {
        right: -.5em;
    }

    .why_crsl .carousel-control-prev,
    .why_crsl .carousel-control-next {
        width: 30px;
        height: 30px;
    }

    .benefits_scn h2 {
        margin-bottom: .8em;
    }

    .benefits_gd {
        display: grid;
        gap: 3em;
        grid-template-columns: repeat(2, 1fr);
    }

    .cta_cd {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5em;
    }

    .cta_cd .btn_area h2 {
        color: #111;
        margin-bottom: .8em;
    }

}

/* Optional marquee helper */
.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-x 15s linear infinite;
}

@keyframes marquee-x {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Small Bootstrap tidy (optional) */
.accordion .accordion-button:focus {
    box-shadow: none;
}


  .achievers_scn {
        background: #fff;
        padding: 40px;


      }

.achievers_scn h2 {
    color: #111;
    text-align: center;
    margin: .5em 0;

    em {
        font-style: normal;
        color: #c11009;
    }
}

      .card-custom {
        width: 100%;
        background: #fff;
        border-radius: 18px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
        padding: 20px;
        text-align: center;
        margin: 20px auto;
      }
      .company-logo {
        width: 150px;
        padding: 10px;
        margin: 0px;
      }

      .banner img {
        width: 100%;
        border-radius: 12px;
      }

      .name {
        font-size: 22px;
        font-weight: bold;
        color: #c21b1b;
        margin-top: 15px;
      }

      .designation {
        color: #000;
        font-size: 14px;
        padding: 0px;
        font-weight: bold;
        margin: 0px;
      }

      .btn-custom {
        background: #d82323;
    color: #fff;
    padding: 5px 10px;
    margin: 10px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    border: none;
      }

/* ── Contact Us Section ── */
.contact_scn {
  padding: 3em 1.5em;
}

.contact_inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
}


.contact_call_btn {
  display: flex;
  align-items: center;
  gap: 1em;
  background: #fff;
  border-radius: 50px;
  padding: 0.75em 1.8em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.contact_call_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.call_icon {
  width: 48px;
  height: 48px;
  background: #c11009;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  animation: ring 1.5s infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%       { transform: rotate(-15deg); }
  20%       { transform: rotate(15deg); }
  30%       { transform: rotate(-10deg); }
  40%       { transform: rotate(10deg); }
  50%       { transform: rotate(0deg); }
}

.call_details {
  display: flex;
  flex-direction: column;
}

.call_details small {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.call_details strong {
  font-size: 1.3rem;
  color: #111;
  font-weight: 700;
  letter-spacing: 0.03em;
}

@media (max-width: 600px) {
  .contact_inner {
    flex-direction: column;
    text-align: center;
  }
  .contact_text h2 {
    font-size: 1.5rem;
  }
}