/*
Website Name:  Triunity Collective LLP
Website URL: www.triunity.world/
Website Author: Triunity Collective
Google Fonts: 
Copyright 2025. All Rights Reserved.
************************************
Color Guide:
************************************
RGB - dark blue: 46  81  133 
Color code - dark blue: #2E5185;
RGB - LIGHT BLUE: 113  208  246
Color code - LIGHT BLUE: #71D0F6;
Color code - Black: #000000;
Color code - Gray: #F4F2ED;

************************************/

/************************************************
1.  ---------------- Navbar
2.  ---------------- about
3.  ----------------
4.  ----------------
5.  ----------------
6.  ----------------
7.  ----------------
8.  ----------------
9.  ----------------
************************************************/
*{
    margin: 0px;
    padding: 0px;
    box-sizing:border-box;
}

@font-face {
    font-family: codec-regular;
    src: url(../fonts/Codec-Cold-Regular-trial.ttf);
}

@font-face {
    font-family: codec-bold;
    src: url(../fonts/Codec-Cold-Bold-trial.ttf);
}

@font-face {
    font-family: codec-ExtraBold;
    src: url(../fonts/Codec-Cold-ExtraBold-trial.ttf);
}

@font-face {
    font-family: codec-heavy;
    src: url(../fonts/Codec-Cold-Heavy-trial.ttf);
}

@font-face {
    font-family: codec-light;
    src: url(../fonts/Codec-Cold-Light-trial.ttf);
}

html, body{
    overflow-x: hidden !important;
}

html {
  scroll-behavior: smooth;
}


/* subservices-hero Section */
.sub-hero {
  text-align: center;
  padding: 60px 20px;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Dark overlay */
.sub-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.sub-hero h1,
.sub-hero p {
  position: relative;
  z-index: 2;
  
}

.sub-hero h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-family: codec-heavy, sans-serif;
}

.sub-hero p {
  max-width: 600px;
  margin: 0 auto 20px;
  font-size: 16px;
  color: #ffffff;
  text-align: justify;
}

/* ===================== */
/* RESPONSIVE STYLES     */
/* ===================== */

/* Tablets */
@media (max-width: 992px) {
  .sub-hero {
    height: 500px;
    padding: 40px 15px;
  }

  .sub-hero h1 {
    font-size: 2.2rem;
  }
}

/* Mobile devices */
@media (max-width: 576px) {
  .sub-hero {
    height: 400px;
    padding: 30px 10px;
  }

  .sub-hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .sub-hero p {
    padding: 0 10px;
  font-size: 16px;
}
}





  /* sub-Hero Section */
.sub-about {
  background: #F4F2ED;
  padding: 110px 100px;
  position: relative;
  overflow: hidden;
}

.sub-about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.sub-left {
  flex: 1;
  color: #2E5185;
  line-height: 1.7;

}

.sub-left h2 {
  font-size: 2.5rem; /* Desktop */
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: codec-heavy;
  color: #2E5185;
}

.sub-left h2::before {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: #2E5185;
  margin-bottom: 18px;
}

.sub-left p {
  color: #404040;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.sub-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  position: relative;
}

.sub-item {
  position: relative;
  padding: 28px 0 28px 66px;
  border-bottom: 1px solid rgba(46, 81, 133, 0.14);
}

.sub-item:first-child {
  padding-top: 0;
}

.sub-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.sub-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 72px;
  bottom: 0;
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(46, 81, 133, 0.35) 0 5px, transparent 5px 11px);
  background-size: 1px 11px;
  background-repeat: repeat-y;
}

.sub-item:first-child::after {
  top: 44px;
}

.sub-item::before {
  content: "\f0eb";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 28px;
  left: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #2E5185;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.35s ease, border-radius 0.35s ease, transform 0.35s ease;
}

.sub-item:first-child::before {
  top: 0;
}

.sub-item:hover::before {
  background: linear-gradient(135deg, #71D0F6, #2E5185);
  border-radius: 50%;
  transform: scale(1.05);
}

.sub-item h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: #2E5185;
  font-family: codec-bold;
  letter-spacing: 0.01em;
}

.sub-item p {
  margin: 0;
  font-size: 16px;
  color: #404040;
  line-height: 1.6;
  text-align: left;
}

/* ===================== */
/* RESPONSIVE STYLES     */
/* ===================== */

/* Tablets (576px–992px) */
@media (max-width: 992px) {
  .sub-about {
    padding: 70px 30px;
  }

  .sub-about-container {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 40px;
  }

  .sub-left h2 {
    font-size: 2rem;
  }

  .sub-item h3 {
    font-size: 1.1rem;
  }

  .sub-item p {
    font-size: 16px;
  }
}

/* Mobile (<576px) */
@media (max-width: 576px) {
  .sub-about {
    padding: 50px 18px;
  }

  .sub-left h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .sub-item {
    padding: 22px 0 22px 54px;
  }

  .sub-item::before {
    width: 36px;
    height: 36px;
    top: 22px;
    font-size: 13px;
  }

  .sub-item:not(:last-child)::after {
    left: 17px;
    top: 58px;
  }

  .sub-item:first-child::after {
    top: 36px;
  }

  .sub-item h3 {
    font-size: 1.05rem;
  }
}




/* sub How it work */
.sub-how-it-works {
  background: #2E5185;
  padding: 110px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.sub-how-it-works h2 {
  font-size: 3rem; /* Desktop */
  color: #ffffff;
  margin-bottom: 50px;
  text-transform: uppercase;
  font-family: codec-heavy;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-how-it-works h2::before {
  content: "";
  width: 40px;
  height: 3px;
  background: #71D0F6;
  margin-bottom: 18px;
}

.sub-how-it-works .steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sub-how-it-works .step {
  position: relative;
  flex: 1 1 0;
  max-width: 240px;
  padding: 0 18px;
  text-align: center;
}

/* Connecting rail through the circle centers - each step draws its own
   left/right half so the line works for any number of steps. */
.sub-how-it-works .step::before,
.sub-how-it-works .step::after {
  content: "";
  position: absolute;
  top: 30px;
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.3) 0 6px, transparent 6px 12px);
}

.sub-how-it-works .step::before {
  left: 0;
  right: 50%;
  margin-right: 34px;
}

.sub-how-it-works .step::after {
  left: 50%;
  right: 0;
  margin-left: 34px;
}

.sub-how-it-works .step:first-child::before,
.sub-how-it-works .step:last-child::after {
  content: none;
}

.sub-how-it-works .circle {
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  background: #2E5185;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  border-radius: 50%;
  font-size: 20px;
  font-family: system-ui, sans-serif;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
  margin: 0 auto 20px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.sub-how-it-works .step:hover .circle {
  background: linear-gradient(135deg, #71D0F6, #2E5185);
  border-color: #71D0F6;
  transform: scale(1.08);
}

.sub-how-it-works .step h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: codec-bold;
}

.sub-how-it-works .step p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  text-align: center;
}

/* ===================== */
/* RESPONSIVE STYLES     */
/* ===================== */

/* Tablets (576px–992px) */
@media (max-width: 992px) {
  .sub-how-it-works {
    padding: 70px 20px;
  }

  .sub-how-it-works h2 {
    font-size: 2.2rem;
  }

  .sub-how-it-works .step {
    padding: 0 10px;
  }

  .sub-how-it-works .step::before {
    margin-right: 28px;
  }

  .sub-how-it-works .step::after {
    margin-left: 28px;
  }

  .sub-how-it-works .circle {
    width: 50px;
    height: 50px;
    font-size: 18px;
    line-height: 46px;
  }

  .sub-how-it-works .step::before,
  .sub-how-it-works .step::after {
    top: 25px;
  }

  .sub-how-it-works .step h3 {
    font-size: 16px;
  }

  .sub-how-it-works .step p {
    font-size: 16px;
  }
}

/* Mobile (<576px) - horizontal rail becomes a vertical timeline */
@media (max-width: 576px) {
  .sub-how-it-works {
    padding: 50px 18px;
  }

  .sub-how-it-works h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .sub-how-it-works .steps {
    flex-direction: column;
    align-items: stretch;
  }

  .sub-how-it-works .step {
    max-width: 100%;
    text-align: left;
    padding: 0 0 30px 62px;
  }

  .sub-how-it-works .step:last-child {
    padding-bottom: 0;
  }

  .sub-how-it-works .step::before,
  .sub-how-it-works .step::after {
    content: none;
  }

  .sub-how-it-works .step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 44px;
    bottom: 0;
    height: auto;
    width: 1px;
    background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0 6px, transparent 6px 12px);
  }

  .sub-how-it-works .circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    font-size: 16px;
    line-height: 40px;
    margin: 0;
    flex-shrink: 0;
  }

  .sub-how-it-works .step h3 {
    margin-bottom: 6px;
  }

  .sub-how-it-works .step p {
    font-size: 16px;
    text-align: left;
  }
}




/*Services */
.services-section {
  background: #F4F2ED;
  padding: 110px 100px;
  text-align: center;
  color: #2E5185;
  position: relative;
  overflow: hidden;
}

.services-heading {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.services-heading h2 {
  font-size: 3rem; /* Desktop */
  font-family: codec-heavy, sans-serif;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #2E5185;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-heading h2::before {
  content: "";
  width: 40px;
  height: 3px;
  background: #2E5185;
  margin-bottom: 18px;
}

.services-heading p {
  font-size: 16px;
  color: #404040;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
  text-align: center;
}

/* Grid */
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop = 3 column */
  gap: 30px;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sub-services-card {
  position: relative;
  border-radius: 16px;
  border: none;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sub-services-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.sub-services-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sub-services-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.94) 100%);
  color: #ffffff;
  padding: 55px 22px 18px;
  transition: padding 0.35s ease, background 0.35s ease;
  overflow: hidden;
  text-align: left;
}

.overlay h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.overlay p {
  margin-top: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.35s ease, max-height 0.35s ease, margin-top 0.35s ease;
}

.sub-services-card:hover .overlay {
  padding-top: 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 45%, rgba(0, 0, 0, 0.96) 100%);
}

.sub-services-card:hover .overlay p {
  margin-top: 10px;
  opacity: 1;
  max-height: 200px;
  font-size: 16px;
}

/* ===================== */
/* RESPONSIVE STYLES     */
/* ===================== */

/* Tablets (576px–992px) */
@media (max-width: 992px) {
  .services-section {
    padding: 70px 40px;
  }

  .services-heading h2 {
    font-size: 2.2rem;
  }

  .sub-services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 column */
    gap: 20px;
  }

  .sub-services-card img {
    height: 250px;
  }

  .overlay h3 {
    font-size: 1.1rem;
  }

  .overlay p {
    font-size: 16px;
  }
}

/* Mobile (<576px) */
@media (max-width: 576px) {
  .services-section {
    padding: 50px 18px;
  }

  .services-heading h2 {
    font-size: 1.6rem;
  }

  .sub-services-grid {
    grid-template-columns: 1fr; /* 1 column */
    gap: 18px;
  }

  .sub-services-card img {
    height: 220px;
  }

  .overlay {
    padding: 40px 15px 15px;
  }

  .overlay h3 {
    font-size: 1rem;
  }
}





  /*Services Slider */
  .slider-section {
    position: relative;
    overflow: hidden;
    margin: auto;
    background: #F4F2ED;
    padding: 100px 0;
  }

  .slider-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
    padding: 0 20px;
  }

  .slider-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2E5185;
    font-family: codec-bold;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .slider-eyebrow::before,
  .slider-eyebrow::after {
    content: "";
    width: 24px;
    height: 2px;
    background: #2E5185;
  }

  .slider-heading h2 {
    font-size: 2.6rem;
    font-family: codec-heavy;
    text-transform: uppercase;
    color: #2E5185;
    margin-bottom: 15px;
  }

  .slider-heading p {
    font-size: 16px;
    color: #404040;
    line-height: 1.6;
  }

  .services-slider {
    overflow: hidden;
    position: relative;
    background: transparent;
    padding: 10px 0;
  }

  /* Edge fade mask */
  .services-slider::before,
  .services-slider::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }

  .services-slider::before {
    left: 0;
    background: linear-gradient(90deg, #F4F2ED 0%, rgba(244, 242, 237, 0) 100%);
  }

  .services-slider::after {
    right: 0;
    background: linear-gradient(270deg, #F4F2ED 0%, rgba(244, 242, 237, 0) 100%);
  }

  .slide-track {
    display: flex;
    width: max-content; /* jitne cards hai utna hi width le */
    animation: scroll 150s linear infinite;
  }

  .sub-service-card {
    flex: 0 0 260px;
    width: 260px;
    height: 320px;
    margin: 0 14px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .sub-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  }

  .sub-service-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s ease;
  }

  .sub-service-card:hover img {
    transform: scale(1.08);
  }

  .sub-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 0;
  }

  .sub-service-card h3,
  .sub-service-card button {
    position: relative;
    z-index: 1;
  }

  .sub-service-card h3 {
    font-size: 18px;
    font-family: codec-bold, sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 20px 14px;
  }

  .sub-service-card button {
    align-self: flex-start;
    margin: 0 20px 22px;
    padding: 8px 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  }

  .slider-section a{
    text-decoration: none;
  }



  .sub-service-card:hover button {
    background: #71D0F6;
    border-color: #71D0F6;
    color: #2E5185;
  }

  /* Infinite Scroll Animation */
  @keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Pause on hover */
  .services-slider:hover .slide-track {
    animation-play-state: paused;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .slider-section {
      padding: 70px 0;
    }

    .slider-heading h2 {
      font-size: 2.1rem;
    }

    .services-slider::before,
    .services-slider::after {
      width: 60px;
    }

    .sub-service-card {
      flex: 0 0 220px;
      width: 220px;
      height: 280px;
    }
    .sub-service-card h3 {
      font-size: 16px;
    }
  }

  @media (max-width: 768px) {
    .slider-heading h2 {
      font-size: 1.8rem;
    }

    .sub-service-card {
      flex: 0 0 190px;
      width: 190px;
      height: 240px;
    }
    .sub-service-card h3 {
      font-size: 14px;
    }
    .sub-service-card button {
      font-size: 12px;
      padding: 6px 14px;
    }
  }

  @media (max-width: 480px) {
    .slider-section {
      padding: 50px 0;
    }

    .slider-heading h2 {
      font-size: 1.5rem;
    }

    .services-slider::before,
    .services-slider::after {
      width: 30px;
    }

    .sub-service-card {
      flex: 0 0 150px;
      width: 150px;
      height: 200px;
      margin: 0 8px;
      border-radius: 14px;
    }
    .sub-service-card h3 {
      font-size: 12px;
      margin: 0 12px 10px;
    }
    .sub-service-card button {
      font-size: 11px;
      padding: 5px 12px;
      margin: 0 12px 14px;
    }
  }



/*sub about us*/

.about-us {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 100px;
  gap: 70px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-content {
  flex: 1;
  min-width: 280px;
}

.about-content h2 {
  font-size: 2.6rem; /* Desktop */
  font-family: codec-heavy;
  margin-bottom: 18px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #2E5185;
  text-align: left;
}

.about-content h2.underline::after {
  display: none;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #404040;
    margin-bottom: 15px;
    text-align: justify;
}

.about-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2E5185;
  font-size: 15px;
  margin-bottom: 8px;
}

.about-content span i {
  color: #2E5185;
  width: 16px;
  text-align: center;
}

.about-btn {
  padding: 10px 20px;
  border: none;
  background: #2E5185;
  color: #ffffff;
  cursor: pointer;
}

.about-images {
  flex: 1;
  min-width: 280px;
  max-width: 460px;
  position: relative;
}

.about-images::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 380px;
  background: linear-gradient(135deg, #2E5185, #71D0F6);
  border-radius: 22px;
  z-index: 0;
}

.img-box {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

.img1 {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 380px;
  top: 0;
  left: 0;
}

/* ===================== */
/* RESPONSIVE STYLES     */
/* ===================== */

/* Tablets (576px–992px) */
@media (max-width: 992px) {
  .about-us {
    padding: 70px 30px;
    flex-direction: column;
    text-align: center;
  }

  .about-content h2 {
    font-size: 2rem;
    text-align: center;
  }

  .about-images {
    max-width: 380px;
    margin-top: 20px;
  }

  .about-images::before,
  .img1 {
    height: 320px;
  }
}

/* Mobile (<576px) */
@media (max-width: 576px) {
  .about-us {
    padding: 50px 18px;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-images {
    max-width: 300px;
  }

  .about-images::before,
  .img1 {
    height: 260px;
  }
}








/*More contact us*/

.info-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.info-box {
  position: relative;
  height: 250px;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none; /* Remove link underline */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Background Images */
.info-box:nth-child(1) { background-image: url('../img/faq/documents.png'); }
.info-box:nth-child(2) { background-image: url('../img/faq/contact-us.jpeg'); }
.info-box:nth-child(3) { background-image: url('../img/faq/mail-us.jpg'); }
.info-box:nth-child(4) { background-image: url('../img/faq/office-hour.jpg'); }

.info-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 81, 133, 0.51);
  z-index: 1;
}

.info-box i,
.info-box h4,
.info-box h3 {
  z-index: 2;
  position: relative;
  line-height: 30px;
}

.info-box i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ffffff;
}

.info-box h4{
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
}

.info-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  text-transform: uppercase;
}


/* Hover Effect */


.info-box:hover .overlay {
  background: #000000;
}

/* Responsive */
@media screen and (max-width: 992px) {
  .info-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .info-section {
    grid-template-columns: 1fr;
  }
}


  /*Faq*/

.faq-section {
  padding: 60px 20px;
  background: #F4F2ED;

}

.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: #2E5185;
  border-radius: 0px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 17px;
  text-align: left;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  color: #000000;
  background: #ffffff;
}

.faq-answer p {
  margin: 15px 0;
  line-height: 1.6;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 15px 20px;
}

.faq-item.active .faq-question .arrow {
  transform: rotate(45deg);
}

/* Tablet */
@media (max-width: 992px) {
  .faq-section {
    padding: 50px 24px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .faq-section {
    padding: 40px 16px;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 15px;
  }

  .faq-question .arrow {
    font-size: 18px;
  }

  .faq-answer p {
    font-size: 16px;
  }
}

/*Faq Question and contact us*/


.faq-cta {
  padding: 50px 20px;
  text-align: center;
  background: #2E5185;
  color: #ffffff;

}

.faq-cta-box {
  max-width: 600px;
  margin: 0 auto;
}

.faq-cta h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-cta p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #2e5185;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-btn:hover {
  background: #2e5185;
  color: #ffffff;
}

/* Desktop (992px+) */
@media (min-width: 992px) {
  .faq-cta h3 {
    font-size: 2.5rem;
  }
  .faq-cta p {
    font-size: 16px;
  }
}

/* Tablet (576px–992px) */
@media (max-width: 992px) and (min-width: 576px) {
  .faq-cta p {
    font-size: 16px;
  }
}

/* Mobile (<576px) */
@media (max-width: 576px) {
  .faq-cta {
    padding: 40px 15px;
  }
  .faq-cta h3 {
    font-size: 1.5rem;
  }
  .faq-cta p {
    font-size: 16px;
  }
  .cta-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}








/*Branches*/

.branches-section {
  background: #ffffff;
  padding: 80px 100px;
  text-align: center;
}

.branches-heading h2 {
  font-size: 3rem;
  font-family: codec-heavy;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  color: #2E5185;
}

.branches-heading p {
  font-size: 16px;
  color: #404040;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Branches Grid */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.branch-card {
  background: #2E5185;
  padding: 25px;
  text-align: left;
  border: 1px solid #2E5185;
  border-radius: 16px;
}

.branch-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  text-transform: uppercase;
  color: #ffffff;
}

.branch-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.branch-card ul li {
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.branch-card ul li i {
  color: #ffffff;
  margin-right: 10px;
}

/* Tablet (576px–992px) */
@media (max-width: 992px) and (min-width: 576px) {
  .branches-section {
    padding: 60px 40px;
  }
  .branches-heading h2 {
    font-size: 2rem;
  }
  .branches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile (<576px) */
@media (max-width: 576px) {
  .branches-section {
    padding: 40px 20px;
  }
  .branches-heading h2 {
    font-size: 1.5rem;
  }
  .branches-heading p {
    font-size: 16px;
  }
  .branches-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .branch-card {
    text-align: center;
  }
  .branch-card ul li {
    justify-content: center;
    text-align: center;
  }
}





/* About Us */
.job-posts {
  background: #ffffff;
  padding: 80px 100px;
}

.job-heading {
  text-align: center;
  margin-bottom: 60px;
}

.job-heading h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: codec-heavy;
  text-transform: uppercase;
  color: #2E5185;
}

.job-heading p {
  font-size: 16px;
  color: #404040;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Job Grid */
.job-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* When only one job card is posted, center it instead of leaving it
   stranded in the first grid column with empty space beside it. */
.job-grid:has(.job-card:only-child) {
  grid-template-columns: 1fr;
  justify-items: center;
}

.job-grid .job-card:only-child {
  width: 100%;
  max-width: 500px;
}

.job-card {
  padding: 20px;
  border-top: 2px solid #2E5185;
  background: #F4F2ED;
  border-radius: 16px;
}


.job-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #2E5185;
  font-weight: bold;
  text-transform: uppercase;
}

.job-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-card ul li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #000000;
  padding: 8px 0;
  border-bottom: 1px solid #F4F2ED;
}

.job-card ul li:last-child {
  border-bottom: none;
}

/* Tablet (576px–992px) */
@media (max-width: 992px) and (min-width: 576px) {
  .job-posts {
    padding: 60px 40px;
  }
  .job-heading h2 {
    font-size: 2rem;
  }
  .job-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 30px;
  }
}

/* Mobile (<576px) */
@media (max-width: 576px) {
  .job-posts {
    padding: 40px 20px;
  }
  .job-heading h2 {
    font-size: 1.5rem;
  }
  .job-heading p {
    font-size: 16px;
  }
  .job-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .job-card {
    padding: 15px;
  }
  .job-card h3 {
    font-size: 1.1rem;
  }
  .job-card ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 0.9rem;
  }
}



/*blogs*/

.blog-card {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 40px auto;
  max-width: 1000px;
}

.blog-image {
  position: relative;
  flex: 1;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  font-size: 14px;
  color: #2E5185;
}

.blog-content {
  flex: 1.5;
  padding: 25px;
}

.blog-content .meta {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 10px;
}

.category {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  padding: 3px 8px;
  font-size: 0.75rem;
  border-radius: 0px;
  margin-bottom: 10px;
}

.blog-content h3 {
  font-size: 1.4rem;
  margin: 10px 0;
  font-weight: bold;
  color: #2E5185;
  text-transform: uppercase;
}

.excerpt {
  font-size: 0.95rem;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.6;
}

.tags {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 20px;
}

.tags a {
  text-decoration: none;
  color: #2E5185;
  margin-left: 5px;
}

.read-btn {
  display: inline-block;
  padding: 10px 18px;
  background: none;
  color: #71d0f6;
  text-decoration: none;
  border-radius: 0px;
  transition: 0.3s;
  font-size: 0.95rem;
}

.read-btn i {
  margin-left: 5px;
}

.read-btn:hover {
  background: none;
  color: #71d0f6;
}


/*Pagination*/


/* Pagination CSS */
.pagination {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 30px 0;
}

.page-btn {
  display: inline-block;
  padding: 8px 14px;
  border: 0px solid #2E5185;
  color: #ffffff;
  background: #2E5185;
  text-decoration: none;
  border-radius: 0px;
  font-weight: 600;
  transition: 0.3s;
}

.page-btn:hover {
  background: #71d0f6;
  color: #ffffff;
}

.page-btn.active {
  background: #71d0f6
;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
  }
    .blog-image {
    padding: 10px 10px;
  }

  .blog-image img {
    height: 250px;
  }
}


/*single page*/

/* === Layout Grid === */
.container.main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* === Post Area === */
.post {
  background: #ffffff;
  padding: 20px;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.post-hero img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 0px;
}

.category {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 12px;
  background: #71d0f6;
  color: #ffffff;
  border-radius: 0px;
  font-size: 16px;
}

.post-title {
  font-size: 28px;
  margin: 15px 0;
  line-height: 1.3;
  color: #000000;
  text-transform: uppercase;
  font-family: codec-ExtraBold;
}

.meta-row {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
}

/* === Post Content === */
.post-body {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 25px;
}

/* === Footer === */
.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F4F2ED;
  padding-top: 15px;
}

.post-footer .tags a {
  color: #71d0f6;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  padding: 8px 16px;
  background: #71d0f6;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #2E5185;
}

/* === Sidebar === */
.sidebar .widget {
  background: #ffffff;
  padding: 20px;
  border-radius: 0px;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sidebar h3 {
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 2px solid #71d0f6;
  display: inline-block;
  padding-bottom: 4px;
}

.related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  text-decoration: none;
  color: #000000;
  transition: transform 0.2s;
}

.related-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0px;
}

.related-item:hover {
  transform: translateX(5px);
}

.ri-title {
  font-weight: 600;
  font-size: 15px;
}

.ri-date {
  font-size: 13px;
  color: #000000;
}

/* === Responsive === */
@media (max-width: 900px) {
  .container.main-grid {
    grid-template-columns: 1fr;
  }
}


/*Gallery*/

.gallery-section {
  text-align: center;
  padding: 90px 40px;
  background-color: #F4F2ED;
}
.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.gallery-section p {
  color: #404040;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.6;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gallery-section {
    padding: 60px 24px;
  }
}

@media (max-width: 576px) {
  .gallery-section {
    padding: 40px 15px;
  }
  .gallery-grid {
    gap: 10px;
  }
}


/* ===================================================
   Common Mistakes section (category service pages)
   =================================================== */
.common-mistakes {
  background: #ffffff;
  padding: 100px 100px;
}

.mistakes-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.mistakes-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2E5185;
  font-family: codec-bold;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.mistakes-eyebrow::before,
.mistakes-eyebrow::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #2E5185;
}

.mistakes-heading h2 {
  font-size: 2.6rem;
  font-family: codec-heavy;
  text-transform: uppercase;
  color: #2E5185;
  margin-bottom: 15px;
}

.mistakes-heading p {
  font-size: 16px;
  color: #404040;
  line-height: 1.6;
}

.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.mistake-card {
  background: #F4F2ED;
  border-radius: 16px;
  padding: 30px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mistake-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mistake-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2E5185;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.mistake-card h3 {
  font-size: 1.05rem;
  color: #2E5185;
  font-family: codec-bold;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.mistake-card p {
  font-size: 16px;
  color: #404040;
  line-height: 1.6;
  margin: 0;
}

/* Tablet */
@media (max-width: 992px) {
  .common-mistakes {
    padding: 70px 30px;
  }

  .mistakes-heading h2 {
    font-size: 2rem;
  }

  .mistakes-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .common-mistakes {
    padding: 50px 18px;
  }

  .mistakes-heading h2 {
    font-size: 1.5rem;
  }

  .mistake-card {
    padding: 22px 20px;
    flex-direction: column;
  }
}


/* ===================================================
   Service FAQ section (category service pages)
   =================================================== */
.service-faq {
  background: #ffffff;
  padding: 100px 100px;
}

.service-faq-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 45px;
}

.service-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2E5185;
  font-family: codec-bold;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.service-faq-eyebrow::before,
.service-faq-eyebrow::after {
  content: "";
  width: 24px;
  height: 2px;
  background: #2E5185;
}

.service-faq-heading h2 {
  font-size: 2.6rem;
  font-family: codec-heavy;
  text-transform: uppercase;
  color: #2E5185;
  margin-bottom: 15px;
}

.service-faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.service-faq-item {
  border-bottom: 1px solid rgba(46, 81, 133, 0.15);
  padding: 22px 0;
}

.service-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary h3 {
  font-size: 1.05rem;
  color: #2E5185;
  margin: 0;
  font-family: codec-bold;
  font-weight: normal;
  line-height: 1.4;
}

.faq-toggle-icon {
  color: #2E5185;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-faq-item[open] .faq-toggle-icon {
  transform: rotate(45deg);
}

.service-faq-item p {
  margin: 14px 0 0;
  color: #404040;
  font-size: 16px;
  line-height: 1.7;
}

/* Tablet */
@media (max-width: 992px) {
  .service-faq {
    padding: 70px 30px;
  }

  .service-faq-heading h2 {
    font-size: 2rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .service-faq {
    padding: 50px 18px;
  }

  .service-faq-heading h2 {
    font-size: 1.5rem;
  }

  .service-faq-item summary h3 {
    font-size: 0.95rem;
  }

  .service-faq-item p {
    font-size: 16px;
  }
}

/* ===================================================
   Analysis + Featured — merged section (sub-service pages)
   Replaces the old separate .services-about-section
   (Analysis) and .whatwedo (Featured) pairing.
   =================================================== */
.analysis-featured {
  background: #2E5185;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.analysis-featured::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(113, 208, 246, 0.18), transparent 70%);
  z-index: 0;
}

.af-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.af-label {
  display: inline-block;
  color: #71D0F6;
  font-family: codec-bold;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.4rem;
  margin-bottom: 16px;
  position: relative;
  padding-left: 34px;
  font-family: codec-bold;
}

.af-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: #71D0F6;
}

.af-analysis p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
  margin: 0;
}

.af-divider {
  width: 1px;
  height: 140px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
  justify-self: center;
}

.af-featured h3 {
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.55;
  font-family: codec-bold;
  text-align: left;
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid #71D0F6;
}

/* Tablet (576px–992px) */
@media (max-width: 992px) {
  .analysis-featured {
    padding: 70px 30px;
  }

  .af-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .af-label {
    padding-left: 0;
  }

  .af-label::before {
    display: none;
  }

  .af-analysis p {
    text-align: center;
  font-size: 16px;
}

  .af-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    margin: 0 auto;
  }

  .af-featured h3 {
    text-align: center;
    padding-left: 0;
    border-left: none;
    border-top: 3px solid #71D0F6;
    padding-top: 20px;
    display: inline-block;
  }
}

/* Mobile (<576px) */
@media (max-width: 576px) {
  .analysis-featured {
    padding: 50px 18px;
  }

  .af-container {
    gap: 30px;
  }

  .af-analysis p {
    font-size: 16px;
  }

  .af-featured h3 {
    font-size: 1.2rem;
  }
}

/* ============================================================
   Breadcrumbs
   ============================================================ */
.tc-breadcrumb {
  background: #F4F2ED;
  padding: 14px 20px;
}

.tc-breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tc-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.tc-breadcrumb-item a {
  color: #2E5185;
  text-decoration: none;
  font-weight: 600;
}

.tc-breadcrumb-item a:hover {
  color: #71D0F6;
  text-decoration: underline;
}

.tc-breadcrumb-item.active span {
  color: #404040;
  font-weight: 400;
}

.tc-breadcrumb-item:not(:last-child)::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #2E5185;
  margin: 0 8px;
  font-size: 12px;
}

@media (max-width: 992px) {
  .tc-breadcrumb {
    /* margin-top: 72px; */
    padding: 12px 20px;
  }
}

@media (max-width: 576px) {
  .tc-breadcrumb {
    /* margin-top: 57px; */
    padding: 10px 15px;
  }

  .tc-breadcrumb-list {
    font-size: 12px;
  }
}
