:root {
  --primary-red: #fe1125;
  --primary-blue: #2563eb;
  --light-blue: #dbeafe;
  --dark-blue: #1e40af;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --border-gray: #e5e7eb;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.live_sec2_wrap,
.we_offer_section {
  background-color: #ebf5ff;
}
.benifits_section {
  background-image: url(../images/bg_benifits.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.live_sec1_wrap .text-sec1 h2::after {
  content: "";
  background: #fe1125;
  width: 28px;
  height: 5px;
  position: absolute;
  top: 48%;
  right: 66%;
}
.live_sec2_wrap .we_offer_heading::after {
  content: "";
  background: #fe1125;
  width: 28px;
  height: 5px;
  position: absolute;
  top: 48%;
  right: 61%;
}
.live_sec2_wrap .head::after {
  content: "";
  background: #fe1125;
  width: 28px;
  height: 5px;
  position: absolute;
  top: 48%;
  right: 61%;
}
.live_sec5_wrap h2::after {
  content: "";
  background: #fe1125;
  width: 100px;
  height: 5px;
  position: absolute;
  top: 82%;
  left: 65%;
}

.cards-scroll-container {
  position: relative;
  width: 100%;
}

/* Scroll Indicator */
.scroll-hint {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 0.875rem;
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: none;
}
/* Cards Wrapper */
.cards-wrapper {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 20px 10px 40px;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.cards-wrapper::-webkit-scrollbar {
  display: none;
}

/* Individual Card */
.usp-card {
  flex: 0 0 auto;
  width: 320px;
  background: white;
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  min-height: 235px;
  display: flex;
  flex-direction: column;
}

.usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
  border-color: var(--primary-blue);
}

/* Icon Container */
.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 11px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Card Content */
.card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-content p {
  font-size: 1.5rem;
  color: #242424;
  line-height: 1.6;
}

/* Navigation Buttons */
.nav-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.nav-btn {
    width: 43px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 5rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
    box-shadow: var(--card-shadow);
    text-align: center;
    padding-bottom: 5px;
}
.nav-btn:hover:not(:disabled) {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f3f4f6;
}
.benifit_main_conatiner {
  background-image: url(../images/bg_benifits.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.benefits-section {
      padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-title {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.benefits-title h2 {
  font-size: 4rem;
  color: #1a5490;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.benefits-title h2::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 4px;
  background-color: #e63946;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: white;
  padding: 25px 20px;
  border-radius: 0px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.185);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}
.showcase-section {
  padding: 60px 20px;
  background-color: #ffffff;
  overflow: hidden;
}

.showcase-title {
  text-align: center;
  margin-bottom: 50px;
}

.showcase-title h2 {
  font-size: 3.5rem;
  color: #1a5490;
  font-weight: 700;
}

.slider-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.slider-row {
  display: flex;
  gap: 20px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
}

.slider-row-left {
  animation-name: slideLeft;
  animation-duration: 30s;
}

.slider-row-right {
  animation-name: slideRight;
  animation-duration: 30s;
}

.slider-row:hover {
  animation-play-state: running;
}

.image-card {
  min-width: 280px;
  height: 180px;
  /* border-radius: 12px; */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.image-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.view-more-container {
  text-align: center;
  margin-top: 40px;
}

.view-more-btn {
  padding: 12px 40px;
  font-size: 1.5rem;
  color: #1a5490;
  background-color: transparent;
  border: 2px solid #1a5490;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.view-more-btn:hover {
  background-color: #1a5490;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

.blog-sec {
  background: url(../images/blog-bg.webp) no-repeat center top;
  background-size: cover;
  padding: 71px 0;
  background-position: center;
  background-repeat: no-repeat;
}

.faq-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #185b9b 0%, #dceeff 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
}

.faq-title h2 {
  font-size: 4rem;
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.faq-title h2::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 4px;
  background-color: #e63946;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h3 {
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 600;
  margin: 0;
  padding-right: 20px;
  flex: 1;
}

.faq-icon {
  width: 35px;
  height: 35px;
  background-color: #185b9b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-icon::before {
  content: "";
  width: 12px;
  height: 2px;
  background-color: white;
  position: absolute;
  transition: transform 0.3s ease;
}

.faq-icon::after {
  content: "";
  width: 2px;
  height: 12px;
  background-color: white;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-icon {
  background-color: #2874b8;
  transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  font-size: 1.5rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
}

.faq-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #185b9b 0%, #dceeff 100%);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
}

.faq-title h2 {
  font-size: 4rem;
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.faq-title h2::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 50%;
  transform: translateY(-50%);
  width: 130px;
  height: 4px;
  background-color: #e63946;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  padding-right: 12px;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h3 {
  font-size: 2rem;
  color: #1a1a1a;
  font-weight: 600;
  margin: 0;
  padding-right: 20px;
  flex: 1;
}

.faq-icon {
  width: 35px;
  height: 35px;
  background-color: #185b9b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-icon::before {
  content: "";
  width: 12px;
  height: 2px;
  background-color: white;
  position: absolute;
  transition: transform 0.3s ease;
}

.faq-icon::after {
  content: "";
  width: 2px;
  height: 12px;
  background-color: white;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-icon {
  background-color: #2874b8;
  transform: rotate(180deg);
}

.faq-item.active .faq-icon::after {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  font-size: 1.5rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
}

.case-studies-section {
  padding: 60px 20px;
  background-color: #e8f1f8;
}

.case-studies-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.section-title h2 {
  font-size: 4rem;
  color: #1a5490;
  font-weight: 700;
  white-space: nowrap;
}

.title-line {
  flex: 1;
  height: 4px;
  background-color: #e63946;
  min-width: 100px;
}

.read-all-btn {
  padding: 12px 30px;
  font-size: 1.5rem;
  color: #1a5490;
  background-color: transparent;
  border: 2px solid #1a5490;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  white-space: nowrap;
}

.read-all-btn:hover {
  background-color: #1a5490;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-study-card {
  background-color: white;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 7px;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover;
  transition: transform 0.3s ease;
  padding: 10px; */
}

/* .case-study-card:hover .card-image img {
  transform: scale(1.1);
} */

.card-content {
  padding: 5px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.15rem;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 15px;
}

.card-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #e63946;
}

.card-date {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 15px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a5490;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.card-link::after {
  content: "›";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.card-link:hover {
  color: #2874b8;
}

.card-link:hover::after {
  transform: translateX(5px);
}

/* Cards Container */

/* Responsive Design */

@media (max-width: 480px) {
  .section-header h1 {
    font-size: 1.75rem;
  }

  .usp-card {
    width: 260px;
    padding: 20px;
    min-height: 240px;
  }

  .card-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .card-content h3 {
    font-size: 1.125rem;
  }

  .card-content p {
    font-size: 0.9375rem;
  }

  .cards-wrapper {
    gap: 16px;
  }
}

/* For very small screens */
@media (max-width: 360px) {
  .usp-card {
    width: 240px;
  }
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .showcase-title h2 {
    font-size: 2rem;
  }

  .image-card {
    min-width: 240px;
    height: 160px;
  }

  .slider-row-left,
  .slider-row-right {
    animation-duration: 25s;
  }
  .scroll-hint {
    display: flex;
  }
  .faq-title h2::after {
    right: -120px;
    width: 100px;
  }
}

@media screen and (max-width: 576px) {
  .faq-container {
    max-width: 700px;
    margin: 0 auto;
  }
  .faq-section {
    padding: 30px 12px;
  }

  .faq-title h2 {
    font-size: 1.6rem;
  }

  .faq-title h2::after {
    display: none;
  }

  .faq-question {
    padding: 18px 18px;
  }

  .faq-question h3 {
    font-size: 1.2rem;
  }

  .faq-icon {
    width: 30px;
    height: 30px;
  }

  .faq-icon::before {
    width: 10px;
  }

  .faq-icon::after {
    height: 10px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 18px 18px;
  }

  .faq-answer p {
    font-size: 1rem;
  }
  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .card-image {
    height: 180px;
  }

  .card-title {
    font-size: 1rem;
  }

  .card-date {
    font-size: 0.85rem;
  }

  .card-link {
    font-size: 0.95rem;
  }
  .showcase-title h2 {
    font-size: 2rem;
  }

  .image-card {
    min-width: 180px;
    height: 120px;
  }

  .slider-row {
    gap: 12px;
  }

  .slider-row-left,
  .slider-row-right {
    animation-duration: 10s;
  }

  .view-more-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-title h2 {
    font-size: 1.5rem;
  }

  .benefits-title h2::after {
    display: none;
  }

  .benefit-card {
    padding: 25px 20px;
  }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media screen and (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .benefits-title h2 {
    font-size: 2rem;
  }

  .benefits-title h2::after {
    right: -45px;
    width: 40px;
  }
  .section-title h2 {
    font-size: 2rem;
  }

  .card-image {
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .case-studies-section {
    padding: 40px 15px;
  }

  .section-header {
   margin-bottom: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
  }

  .section-title {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .section-title h2 {
      font-size: 3.75rem;
  }

  .title-line {
    /* min-width: 50px; */
    display: none;
  }

  .read-all-btn {
    width: auto;
    text-align: center;
    padding: 5px 20px;
  }

  .case-studies-grid {
    gap: 20px;
  }

  .card-content {
    padding: 5px;
  }

  .card-title {
    font-size: 1.05rem;
  }
  .faq-section {
    padding: 40px 15px;
  }

  .faq-title {
    margin-bottom: 30px;
    padding-left: 10px;
  }

  .faq-title h2 {
    font-size: 2rem;
  }

  .faq-title h2::after {
    right: -90px;
    width: 80px;
    height: 3px;
  }

  .faq-list {
    gap: 15px;
  }

  .faq-question {
    padding: 10px 20px;
  }

  .faq-question h3 {
    font-size: 1.05rem;
    padding-right: 15px;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
  .showcase-section {
    padding: 40px 15px;
  }

  .showcase-title {
    margin-bottom: 35px;
  }

  .showcase-title h2 {
    font-size: 2rem;
  }

  .image-card {
    min-width: 200px;
    height: 140px;
  }

  .slider-container {
    margin-bottom: 15px;
  }

  .slider-row {
    gap: 15px;
  }

  .slider-row-left,
  .slider-row-right {
    animation-duration: 15s;
  }

  .view-more-btn {
    padding: 10px 30px;
    font-size: 0.95rem;
  }
  .benefits-section {
    padding: 40px 15px;
  }

  .benefits-title {
    margin-bottom: 35px;
  }

  .benefits-title h2 {
    font-size: 3.75rem;
  }

  .benefits-title h2::after {
    right: -35px;
    width: 30px;
    height: 3px;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .benefit-card h3 {
    font-size: 1rem;
  }
  .cards-wrapper {
    padding-bottom: 24px;
  }

  .section-header h1 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
    padding: 0 16px;
  }

  .usp-card {
    width: 280px;
    padding: 24px;
    min-height: 260px;
  }

  .card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .cards-wrapper {
    gap: 20px;
    padding: 16px 8px 32px;
  }

  .nav-controls {
    display: none;
  }
}
.headingTitile{
    text-align: left;
}
.suitable_section_container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.suitable_heading {
  margin-bottom: 30px;
}

.suitable_heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.suitable_heading h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -160px;
  transform: translateY(-50%);
  width: 140px;
  height: 4px;
  background-color: #e63946;
}

.suitable_cards_container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.suitable_card {
  min-width: fit-content;
  background-color: #2563a5;
  color: white;
  padding: 13px 15px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.suitable_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 99, 165, 0.3);
}

/* Tablet devices */
@media (max-width: 1024px) {
  .suitable_heading h2 {
    font-size: 2rem;
  }

  .suitable_heading h2::after {
    width: 110px;
    right: -130px;
  }

  .suitable_card {
    min-width: 250px;
    font-size: 0.95rem;
    padding: 18px 25px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .suitable_section_container {
    padding: 30px 15px;
  }

  .suitable_heading {
    margin-bottom: 25px;
  }

  .suitable_heading h2 {
    font-size: 1.75rem;
  }

  .suitable_heading h2::after {
    width: 100px;
    height: 3px;
    right: -120px;
  }

  .suitable_cards_container {
    flex-direction: column;
    gap: 15px;
  }

  .suitable_card {
    min-width: 100%;
    font-size: 0.9rem;
    padding: 16px 20px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .suitable_section_container {
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .suitable_heading h2 {
    font-size: 2rem;
  }

  .suitable_heading h2::after {
    width: 0px;
    /* right: -110px; */
  }

  .suitable_card {
    font-size: 1rem;
    padding: 14px 18px;
    text-align: center;
  }
  .suitable_cards_container>p {
    font-size: 1rem;
        text-align: justify;
}
}
.suitable_heading_strength {
  margin-bottom: 5px;
}
.suitable_heading_strength_p {
  font-size: 1.7rem;
  text-align: justify;
}
.suitable_cards_container>p {
    font-size: 1.7rem;
}
.logo_section_container {
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #e8e8e8;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

.logo_containers_heading {
  text-align: center;
  margin-bottom: 22px;
}

.logo_containers_heading h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.logo_container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
  padding: 0 20px;
}

.logo_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 150px;
}

.logo_item img {
  width: 100px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo_item:hover img {
  transform: scale(1.1);
}

.logo_item span {
  font-size: 1.8rem;
  color: #333;
  font-weight: 500;
  text-align: center;
}

/* Tablet devices */
@media (max-width: 1024px) {
  .logo_container {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }

  .logo_containers_heading h1 {
    font-size: 2rem;
  }
}




.sub_head_title{
  font-size: 1.5rem;
}
#breadcrumb a {
  color: #7A7A7A;
  text-decoration: none;
  margin: 0px 5px;
}

#breadcrumb a:hover {
  text-decoration: underline;
}

#breadcrumb span {
  font-weight: 500;
    color: #175B9A;
    margin: 0px 5px;
}
nav#breadcrumb {
    font-size: 1.4rem;
    padding: 5px 50px;
}
/* Mobile devices */
@media (max-width: 768px) {
  .logo_section_container {
    padding: 40px 15px;
  }

  .logo_containers_heading {
    margin-bottom: 35px;
  }

  .logo_containers_heading h1 {
    font-size: 1.75rem;
  }

  .logo_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 10px;
  }

  .logo_item img {
    width: 50px;
    height: 50px;
  }

  .logo_item span {
    font-size: 0.85rem;
  }
  nav#breadcrumb {
    font-size: 1.4rem;
    padding: 5px 19px;
}
}
/* Small mobile devices */
@media (max-width: 480px) {
  .logo_section_container {
    padding: 30px 10px;
  }

  .logo_containers_heading h1 {
    font-size: 1.75rem;
  }

  .logo_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }

  .logo_item img {
    width: 75px;
    height: 56px;
  }

  .logo_item span {
    font-size: 1.5rem;
  }
    nav#breadcrumb {
        font-size: 1.2rem;
        padding: 5px 19px;
        top: 12.5%;
    }
}