.page-heading ul li span.sub-page-title {
  display: inline-block;
  margin-left: 0.6rem;
  line-height: 1rem;
  position: relative;
}

.page-heading {
  background: #046489;
}
.b_title {
  font-size: 24px !important;
  font-weight: 700 !important;
}

.custom-hero-section {
  position: relative;
  background-image: url("../images/research_analyst/syndicate_bg.webp");
  background-size: cover;
  background-position: center;
  height: 380px;
  /* adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* .custom-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 99, 136, 0.6);
} */

.custom-hero-content {
  position: relative;
  color: #ffffff;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.custom-hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
  text-shadow: 6px 5px 1px rgba(0, 0, 0, 0.3);
}

.custom-hero-content p {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-hero-section {
    height: 300px;
    padding: 0 15px;
  }

  .custom-hero-content h1 {
    font-size: 2rem;
    text-shadow: 4px 3px 0px rgba(0, 0, 0, 0.3);
  }

  .custom-hero-content p {
    font-size: 1rem;
  }
}

.custom-offering-section {
  text-align: center;
  padding: 30px;
  background-color: #ffffff;
}

.custom-offering-title {
  color: #006b8f;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

.custom-offering-line {
  width: 260px;
  height: 2px;
  background-color: #006b8f;
  margin: 0 auto 20px auto;
  overflow-x: clip;
  /* mask: linear-gradient(red 0 0) padding-box,
                  conic-gradient(red var(--p), transparent 0%) border-box; */
  position: relative;
  /* transition: transform 0.3s ease; */
  /* overflow: hidden; keeps ::before inside */
}

.custom-offering-line::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  /* transform: translate(-50%, -50%); */
  width: 25px;
  height: 6px;
  background-color: #0099c1;
  border-radius: 2px;
  /* animation: p 0.3s linear forwards; */
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG;
}

.sec-title .bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #fff;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: MOVE-BG;
  animation-name: MOVE-BG;
}

@keyframes MOVE-BG {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(260px);
  }
}

.custom-offering-text {
  /* max-width: 800px; */
  margin: 0 auto;
  color: #006b8f;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
  text-align: center;
}

.offering-img {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-offering-title {
    font-size: 1.8rem;
  }

  .custom-offering-text {
    font-size: 0.95rem;
    padding: 0 10px;
  }
}

.custom-services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.custom-services-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.service-item img {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  opacity: 0.6;
}

.service-item h3 {
  color: #006b8f;
  /* blue shade */
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.service-item p {
  color: #000;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

/* .custom-services-image {
              flex: 0 0 45%;
          } */

.custom-services-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.service-item .content {
  padding: 5px;
  background: linear-gradient(to right, #d3ebf3 10%, #fff 40%);
  width: 100%;
  position: relative;
  padding-left: 15px;
}

.service-item .content::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 6px;
  width: 2px;
  height: 44px;
  background: #006b8f85;
}

/* Responsive */
@media (max-width: 992px) {
  .custom-services-container {
    flex-direction: column;
  }

  .custom-services-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .service-item img {
    width: 30px;
    height: 30px;
  }

  .service-item h3 {
    font-size: 1rem;
  }

  .service-item p {
    font-size: 0.9rem;
  }
  .profile-designation{
    text-align: left;
  }
}

.capabilities-section {
  text-align: center;
  padding: 30px;
  background-color: #eff9fd;
}

.cs-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

/* Right grid rows */
.cs-right-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cs-right-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.cs-right-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cs-bottom {
  display: grid;
  grid-template-columns: 1.03fr 1fr 1fr;
  /* grid-template-columns: repeat(3, 1fr); */
  gap: 20px;
}

/* ---------- Left Large Card ---------- */
.cs-card-large {
  position: relative;
  background: url("https://picsum.photos/500/800?random=1") center/cover
    no-repeat;
  /* border-radius: 6px; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid #4688a2;

  justify-content: flex-end;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.2); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-card-large:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cs-card-large-content {
  background: #f5faff;
  padding: 15px;
  z-index: 1;
}

.cs-card-large-text {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  font-style: italic;
}

.cs-card-large:hover .cs-card-large-text {
  color: #006388;
}

.cs-readmore {
  display: block;
  text-align: right;
  font-size: 10px;
  margin-top: 5px;
  color: #006388;
  text-decoration: none;
  font-weight: 600;
}

.cs-card {
  position: relative;
  /* border-radius: 6px; */

  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid #4688a2;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cs-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.cs-card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 131, 168, 0.6);
  /* semi-transparent overlay */
  transition: opacity 0.3s ease;
}

/* Hover: remove overlay */
.cs-card:hover .cs-card-img-overlay {
  opacity: 0;
}

.cs-card-large:hover .cs-card-img-overlay {
  opacity: 0;
}

.cs-card-content {
  padding: 10px;
  background: #f5faff;
  z-index: 1;
}

.cs-card-text {
  font-size: 13px;
  color: #000;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 8px;
}

.cs-card:hover .cs-card-text {
  color: #006388;
}

/* ---------- Overlay Card ---------- */
.cs-overlay-card {
  background: url("https://picsum.photos/400/300?random=5") center/cover
    no-repeat;
  color: #fff;
}

.cs-overlay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 76, 145, 0.6);
}

.cs-overlay-card .cs-card-content {
  position: relative;
  color: #fff;
  background: transparent;
}

.cs-overlay-card .cs-readmore {
  color: #fff;
}

.custom-case-studies {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.key-analyst-section {
  text-align: center;
  padding: 30px;
  /* background-color: #eff9fd; */
}

.hidden-input {
  display: none;
  opacity: 0;
  width: 100%;
  float: left;
  transition: opacity .3s ease-in-out
}


.form-section {
  text-align: center;
  padding: 30px;
  /* background-color: #eff9fd; */
}

.input_icon {
  width: 20px;
  height: 20px;
}

.input-group .form-control {
  border-left: none;
}

.input-group-text {
  background: transparent;
  border: 1px solid #5691ab;
}

.request-form {
  background: #ecfaffa6;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  border: 1px solid #005978;
  padding: 15px 25px;
}

.request-form .form-control {
  border-radius: 6px;
  box-shadow: none;
  font-size: 13px;
  height: 40px;
}

.request-form .form-control .disp_secur_code {
  width: 50%;
}

textarea.form-control {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

.btn-primary {
  background-color: #005978;
  border-color: #005978;
}

.btn-primary:hover {
  background-color: #00455d;
  border-color: #00455d;
}

.form-wrap {
  margin-top: 10px;
}

.input-group-text img {
  width: 18px;
  height: 18px;
}

#captcha_code {
  width: 80px;
  height: 40px;
  margin-right: 0 !important;
  border: 1px solid #005978;
}

.refreshCaptcha {
  width: 5% !important;
  height: auto !important;
}

.checkbox-list {
  font-style: italic;
  margin-bottom: 15px;
}

.checkbox-list .form-check {
  margin-bottom: 10px;
  font-size: 13px;
  color: #005978;
  padding: 0;
}

.checkbox-list p {
  padding: 0;
  color: #005978;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.request-form h2 {
  color: #005978;
  font-size: 28px;
  margin-bottom: 5px;
  font-weight: bold;
  margin-top: 0;
  text-transform: uppercase;
}

#captcha_val {
  width: 50%;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 8px 8px;
  font-size: 15px;
  color: #00394f;
}

.checkbox-grid input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  accent-color: #007ca8;
  cursor: pointer;
}

.checkbox-grid label {
  display: flex;
  font-size: 14px;
  align-items: flex-start;
  cursor: pointer;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 17px;
  height: 17px;
  margin: 0px 5px 0px 0;
  border: 1.5px solid #2a84a5;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

input[type="checkbox"]::after {
  content: "";
  background-image: url("../images/consulting_images/check1.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 30%;
  left: 75%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-in-out;
}

input[type="checkbox"]:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

.form-check {
  display: inline-flex;
}

.security_div {
  gap: 10px;
}

.security_code {
  margin: 0;
  font-style: italic;
  font-size: 13px;
  color: #464646;
}

.h2border {
  width: 18.4%;
  margin-left: 4px;
  border-bottom: 2px solid #005978;
}

.form-control {
  font-style: italic;
}

.form-control:focus {
  border-color: #5691ab;
}

.input-group-prepend {
  margin-right: 0;
}

.exp-btn {
  padding: 6px 20px;
  border: 1px solid #005978;
  background: linear-gradient(to bottom, #23a7d6 0%, #0d3f5c 100%);
  font-weight: 600;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  border-radius: 8px;
  color: #fff;
}

.form-btn {
  gap: 10px;
}

/* Container */
.insights-section {
  padding: 50px 20px;
  background-color: #fff;
}

/* .insights-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
  } */

/* Left Grid */
.insights-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 70px;
}

.bottom-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}
.insight-box {
  padding-left: 12px;
}

.insight-title {
  font-size: 28px;
  font-weight: 600;
  color: #006388;
  margin-bottom: 8px;
  text-align: left;
  padding-left: 12px;
  border-left: 3px solid #0090d7;
}

.insight-text {
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  font-weight: 600;
  text-align: left;
}

/* Right Image */
.insights-image {
  flex: 0 0 46%;
  /* flex-shrink: 0; */
  /* width: 400px; */
}

.insights-image img {
  width: 100%;
  /* height: 335px; */
  display: block;
  /* border-radius: 4px; */
}

.bottom-section {
  display: flex;
  gap: 70px;
}

.bottom-left {
  padding-top: 40px;
}

@media(min-width:1560px){
  .profile-name{
    font-size: 1rem !important;

  }
  .profile-domain{
    font-size: .9rem;
  }
  .profile-designation{
    font-size: 0.7rem !important;
  }
  .profile-experience{
    font-size: .9rem;
  }
}
@media(max-width:1280px){
  .insights-grid{
    gap: 30px;
  }
  .insight-title{
    font-size: 20px;
  }
  .insight-text{
    font-size: 12px;
  }
  .bottom-grid{
    gap: 30px;
  }
  .bottom-section{
    gap: 30px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .insights-container {
    flex-direction: column;
  }

  .insights-image {
    width: 100%;
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-section {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .custom-services-image {
    display: none;
  }
  .custom-hero-content h1 {
    font-size: 3.5rem;
  }
  .custom-hero-content p {
    font-size: 1.6rem;
  }
}
@media (max-width: 1200px) {
  .service-item p {
    font-size: 1rem;
  }
  .service-item h3 {
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .service-item h3 {
    font-size: 1.3rem;
  }
  .service-item p {
    font-size: 1rem;
  }
  .custom-offering-text {
    font-size: 1.2rem;
    /* padding: 0 10px; */
    margin-bottom: 10px;
  }

  .cs-grid {
    grid-template-columns: 2fr;
  }

  /* .cs-card-large {
      height: 280px;
      background: url(https://picsum.photos/500/800?random=1) no-repeat;
      background-size: cover;
    } */
  .cs-right-top,
  .cs-right-bottom,
  .cs-bottom {
    grid-template-columns: repeat(1, 1fr);
    /* Single column for cards */
  }

  .cs-card-img {
    display: none;
  }
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .insight-title {
    font-size: 24px;
  }
  .insight-text {
    font-size: 16px;
  }
  .bottom-grid {
    gap: 30px;
  }
  .custom-case-studies {
    height: 400px;
    overflow-y: scroll;
  }
}

@media (max-width: 600px) {
  .service-item h3 {
    font-size: 1.2rem;
  }
  .service-item p {
    font-size: 0.9rem;
  }
  .service-item {
    align-items: center;
    gap: 8px;
  }
  .service-item .content::before {
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
  }
  .service-item img {
    width: 40px;
    height: 40px;
  }
  .custom-offering-section {
    padding: 20px 10px;
  }
  .profile-image {
    width: 70px;
    height: 70px;
  }

  .request-form h2 {
    font-size: 24px;
  }
  .request-form {
    padding: 15px 20px;
  }

  .insight-title {
    font-size: 16px;
  }
  .insight-text {
    font-size: 14px;
  }
  .insights-grid {
    gap: 20px;
  }
  .bottom-grid {
    gap: 20px;
  }
  .key-analyst-section {
    padding: 10px 0;
}
.capabilities-section{
  padding: 20px 10px;
}
.custom-offering-section .container{
  padding: 0;
}
.form-section {
  padding: 10px 0;
}
.request-form {
  padding: 15px 8px;
}
.custom-hero-content h1 {
  font-size: 2.5rem;
}
.custom-hero-content p {
  font-size: 1.4rem;
}
}

@media (max-width: 375px) {
    .insight-title {
        font-size: 14px;
    }
        .insight-text {
        font-size: 12px;
    }
}

.selected-dial-code {
  display: none;
}

.about-content p.head-text {
  color: #006389;
  font-size: 14 px;
  font-weight: 700;
  margin-bottom: 8px;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(0.44, #b3ebff),
    color-stop(0.72, #80ddff),
    color-stop(0.86, #4dcfff)
  );
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.profile-card-wrapper {
  position: relative;
}
.about-content p {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.6;
}

.modal-content {
  border-radius: 10px;
}

.modal-title {
  color: #005978;
  font-weight: 700;
}

.modal-lg {
  max-width: 900px;
}

.about-content {
  height: 350px;
  overflow-y: auto;
  padding-right: 10px;
}
.modal-header img {
  width: 50px;
  height: auto;
  margin-right: 10px;
}
.header-data {
  display: flex;
  flex-direction: column;
}
.header-data p {
  font-weight: 600;
}
#phone {
  padding-left: 52px !important;
}