/* #region Start Animations */
@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}
/* #endregion End Animations */

/* #region Start Landing */
.landing .container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.landing .sub-head {
  animation: heroFadeInUp 0.7s ease both 0.1s;
}

.landing .head h1 {
  animation: heroFadeInUp 0.7s ease both 0.2s;
}

.landing .head .head-text {
  animation: heroFadeInUp 0.7s ease both 0.3s;
}

.landing .content a {
  animation: heroFadeInUp 0.7s ease both 0.4s;
}

/* Hero Image Entrance & Floating Effect */
.landing .image {
  animation: heroFadeInRight 0.8s ease both 0.2s;
}

.landing .image img {
  animation: heroFloat 4s ease-in-out infinite 1s;
}

/* Stats Items Staggered Entrance */
.landing .stats .stat-item {
  animation: heroFadeInUp 0.6s ease both;
}

.landing .stats .stat-item:nth-child(1) {
  animation-delay: 0.5s;
}

.landing .stats .stat-item:nth-child(2) {
  animation-delay: 0.6s;
}

.landing .stats .stat-item:nth-child(3) {
  animation-delay: 0.7s;
}

.landing .stats .stat-item:nth-child(4) {
  animation-delay: 0.8s;
}

.landing .stats .stat-item:nth-child(5) {
  animation-delay: 0.9s;
}

.landing .image {
  width: 1000px;
}

.landing .image img {
  width: 100%;
  object-fit: cover;
}

.landing .image img.phone {
  display: none;
}

.landing .content {
  width: 30%;
}

.landing .container .sub-head {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.landing .container .sub-head p {
  text-transform: uppercase;
  font-weight: bold;
}

.landing .container .head .head-text {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.landing .container .head .head-mark {
  display: none;
  margin-bottom: 30px;
}

.landing .container .head .head-mark img {
  height: 44px;
  width: auto;
  opacity: 0;
  animation:
    mark-in 0.8s ease forwards 0.3s,
    mark-pulse 2.4s ease-in-out infinite 1.1s;
}

@keyframes mark-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes mark-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

.landing .container .sub-head p span {
  display: block;
}

.landing .container .sub-head > span {
  height: 4px;
  width: 50px;
  background-color: var(--main-color);
  display: block;
  border-radius: 2px;
}

.landing .container .head h1 {
  font-size: 50px;
  font-weight: bold;
}

.landing .container .head h1 span {
  color: var(--main-color);
}

.landing .content a {
  margin-block: 20px;
}
/* #region Start Stats Bar */
.landing .stats {
  margin-top: 50px;
  width: 100%;
}

.landing .stats-list {
  list-style: none;
  padding: 24px 30px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  background-color: #ffffff;
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(11, 26, 61, 0.05);
}

.landing .stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 16px;
  border-right: 1px solid var(--light-border, #e5e5e5);
  transition: transform 0.25s ease;
}

.landing .stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.landing .stat-item:hover {
  transform: translateY(-3px);
}

/* Icon Container */
.landing .stat-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 10px;
  background-color: #f1f5f9;
  color: var(--secondary-color, #0b1a3d);
  flex-shrink: 0;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.landing .stat-item:hover .stat-icon {
  background-color: var(--secondary-color, #0b1a3d);
  color: #ffffff;
  transform: scale(1.06);
}

/* Typography Hierarchy */
.landing .stat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.landing .stat-number {
  font-size: 22px;
  font-weight: 900;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.landing .stat-number.highlight {
  color: var(--main-color, #e2231a);
}

.landing .stat-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 1.3;
}
/* #endregion End Stats Bar */

/* #region Responsive Stats Queries */
@media (max-width: 1180px) {
  .landing .stats-list {
    padding: 20px 24px;
    gap: 16px;
  }

  .landing .stat-number {
    font-size: 19px;
  }

  .landing .stat-icon {
    width: 38px;
    height: 38px;
    padding: 8px;
  }
}

@media (max-width: 991px) {
  .landing .stats {
    margin-top: 40px;
  }

  .landing .stats-list {
    min-width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .landing .stats-list .stat-item {
    min-width: 100%;
    align-self: center;
    width: 100%;
  }
  

  .landing .stat-item:nth-child(3) {
    border-right: none;
  }
}

@media (max-width: 680px) {
  .landing .stats-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 16px;
    gap: 16px;
  }

  .landing .stat-item {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 420px) {
  .landing .stats-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .landing .stat-item {
    border-bottom: 1px solid var(--light-border, #e5e5e5);
    padding-bottom: 12px;
  }

  .landing .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
/* #endregion End Responsive Stats Queries */

@media (max-width: 1180px) {
  .landing .container .head h1 {
    font-size: 30px;
  }

  .landing .content {
    width: 70%;
  }
}

@media (max-width: 991px) {
  .landing .container {
    flex-direction: column;
    align-items: center;
  }

  .landing .content {
    width: 100%;
  }

  .landing .container .image img:not(.phone) {
    display: none;
  }

  .landing .stats {
    margin-block: auto;
    width: 100%;
    margin-top: 50px;
  }

  .landing .stats .stats-list {
    justify-content: center;
    gap: 20px 24px;
  }

  .landing .stats .stats-list .stat-item {
    width: calc(50% - 12px);
  }

  .landing .stats-list .stat-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }

  .landing .stats-list .stat-number {
    font-size: 16px !important;
  }

  .landing .stats-list .stat-label {
    font-size: 11px !important;
  }

  .landing .container .image {
    width: 700px;
    max-width: 100%;
    height: 500px;
    border-radius: 50px;
    overflow: hidden;
    margin-inline: auto;
    order: -1;
  }

  .landing .container .image img.phone {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    margin-left: 0;
  }

  .landing .container .head h1 {
    font-size: 30px;
  }

  .landing .container .head .head-text {
    display: block;
  }

  .landing .container .head .head-mark {
    display: none;
  }

  .landing .container .head .head-mark img {
    height: 59px;
  }
}

@media (max-width: 600px) {
  .landing .stats .stats-list {
    flex-wrap: wrap;
    gap: 16px 20px;
  }

  .landing .stats-list .stat-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 400px) {
  .landing .container .image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 0;
    overflow: visible;
  }

  .landing .container .image img.phone {
    height: auto;
    border-radius: 0;
  }
}

@media (max-width: 350px) {
  .landing .stats .stats-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .landing .stats .stats-list .stat-item {
    width: 100%;
  }

  .landing .container .head h1 {
    font-size: 25px;
  }

  .landing .container .head .head-mark img {
    height: 55px;
  }
}
/* #endregion End Landing */

/* #region Start Core Services Styling */
.services {
  padding-block: var(--section-padding, 80px);
  background-color: #ffffff;
}

.services .section-title-group {
  margin-bottom: 36px;
}

.services .section-sub {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--main-color, #e2231a);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.services .section-main {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.25;
}

.services .section-main .highlight {
  color: var(--main-color, #e2231a);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  background-color: #ffffff;
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 12px;
  padding: 28px 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 26, 61, 0.08);
  border-color: #cbd5e1;
}

.service-card-body {
  display: flex;
  flex-direction: column;
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
}

.card-icon-wrapper.blue {
  color: var(--secondary-color, #0b1a3d);
}

.card-icon-wrapper.red {
  color: var(--main-color, #e2231a);
}

.card-icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.35;
  margin-bottom: 16px;
  word-wrap: break-word;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  font-size: 13.5px;
  color: #475569;
  margin-bottom: 8px;
  position: relative;
  padding-left: 12px;
  line-height: 1.45;
  word-wrap: break-word;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #94a3b8;
  font-weight: bold;
}

.card-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
  flex-shrink: 0;
}

.card-circle-btn.blue {
  background-color: var(--secondary-color, #0b1a3d);
  color: #ffffff;
}

.card-circle-btn.red {
  background-color: var(--main-color, #e2231a);
  color: #ffffff;
}

.card-circle-btn svg {
  width: 16px;
  height: 16px;
}

.service-card:hover .card-circle-btn {
  transform: scale(1.12);
  opacity: 0.95;
}

/* Responsive Breakpoints */
@media (max-width: 1399px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    padding: 22px 16px 18px;
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }
}
/* #endregion End Core Services Styling */

/* #region Start Our Projects Styling */
.projects-section {
  padding-block: var(--section-padding, 80px);
  background-color: #ffffff;
}

.projects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.projects-section .section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.projects-section .section-title .highlight {
  color: var(--main-color, #e2231a);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--secondary-color, #0b1a3d);
  text-decoration: none;
  transition: color 0.25s ease;
}

.view-all-link:hover {
  color: var(--main-color, #e2231a);
}

.circle-arrow {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  background-color: var(--main-color, #e2231a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.circle-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: #ffffff;
}

.view-all-link:hover .circle-arrow {
  transform: translateX(4px);
}

/* #region Start Our Projects Styling */
.projects-section {
  padding-block: var(--section-padding, 80px);
  background-color: #ffffff;
}

.projects-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.projects-section .section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.projects-section .section-title .highlight {
  color: var(--main-color, #e2231a);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--secondary-color, #0b1a3d);
  text-decoration: none;
  transition: color 0.25s ease;
}

.view-all-link:hover {
  color: var(--main-color, #e2231a);
}

.circle-arrow {
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  background-color: var(--main-color, #e2231a);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.circle-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: #ffffff;
}

.view-all-link:hover .circle-arrow {
  transform: translateX(4px);
}

/* Updated Top-Image & Bottom-Content Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-card {
  background-color: #ffffff;
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(11, 26, 61, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 26, 61, 0.1);
  border-color: #cbd5e1;
}

.project-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.project-thumb {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.06);
}

.project-body {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background-color: #ffffff;
  flex-grow: 1;
}

.project-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.35;
}

.circle-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--secondary-color, #0b1a3d);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.circle-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.project-card:hover .circle-btn {
  background-color: var(--main-color, #e2231a);
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-thumb {
    height: 160px;
  }
}
/* #endregion End Our Projects Styling */

.project-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.35;
  word-wrap: break-word;
  white-space: normal;
}

.pill-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--secondary-color, #0b1a3d);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.pill-btn svg {
  width: 14px;
  height: 14px;
}

.project-card:hover .pill-btn {
  background: var(--main-color, #e2231a);
  transform: scale(1.1);
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-card {
    height: 220px;
  }
}
/* #endregion End Our Projects Styling */

/* #region Start Our Certifications Styling */
.certifications-section {
  padding-block: var(--section-padding, 80px);
  background-color: #ffffff;
}

.certifications-section .section-title-group {
  margin-bottom: 32px;
  text-align: left;
}

.certifications-section .section-sub {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--main-color, #e2231a);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.certifications-section .section-main {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.2;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cert-card {
  background-color: #ffffff;
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 12px;
  padding: 20px 14px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: var(--main-color, #e2231a);
  box-shadow: 0 10px 24px rgba(11, 26, 61, 0.08);
}

.cert-card img {
  max-width: 90%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.cert-card:hover img {
  transform: scale(1.04);
}

/* Fallback Typography Styling (Displayed if images are missing) */
.cert-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cert-logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  margin-bottom: 10px;
}

.cert-logo-circle.blue {
  border-color: #2563eb;
  color: #2563eb;
}

.cert-logo-circle.green {
  border-color: #16a34a;
  color: #16a34a;
}

.cert-logo-circle.dark-blue {
  border-color: #1e3a8a;
  color: #1e3a8a;
}

.cert-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cert-title.green-text {
  color: #16a34a;
}

.cert-desc {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 600;
  line-height: 1.35;
}

.cert-iaf-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1e40af;
  color: #ffffff;
  border-radius: 50px;
  padding: 10px 14px;
  width: 100%;
}

.iaf-top,
.iaf-bot {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.iaf-main {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  margin-block: 3px;
}

.cert-ukas-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--secondary-color, #0b1a3d);
  gap: 4px;
}

.ukas-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.ukas-sub {
  font-size: 9px;
  font-weight: 800;
  color: #64748b;
  line-height: 1.2;
}

.cmc-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--main-color, #e2231a);
  line-height: 1;
  margin-bottom: 6px;
}

.cmc-sub {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  letter-spacing: 0.4px;
  line-height: 1.3;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .certifications-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cert-card {
    min-height: 150px;
  }
}

@media (max-width: 480px) {
  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cert-card {
    min-height: 140px;
  }
}
/* #endregion End Our Certifications Styling */

/* #region Start Our Partners Styling */
.partners-section {
  padding-block: var(--section-padding, 80px);
  background-color: #ffffff;
}

.partners-section .section-title-group {
  margin-bottom: 32px;
  text-align: left;
}

.partners-section .section-sub {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--main-color, #e2231a);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.partners-section .section-main {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.2;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.partner-card {
  background-color: #ffffff;
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 12px;
  padding: 16px 14px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}

.partner-card:hover {
  transform: translateY(-4px);
  border-color: var(--main-color, #e2231a);
  box-shadow: 0 10px 24px rgba(11, 26, 61, 0.08);
}

.partner-card img {
  max-width: 85%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter 0.25s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
}

.partner-name {
  display: none;
  font-size: 15px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.35;
  word-wrap: break-word;
}

.partner-name.red-text {
  color: var(--main-color, #e2231a);
}

.partner-name.blue-text {
  color: #1e40af;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .partner-card {
    height: 86px;
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .partner-card {
    height: 80px;
    padding: 12px 10px;
  }

  .partner-name {
    font-size: 13.5px;
  }
}
/* #endregion End Our Partners Styling */

/* #region Start Our Clients Styling */
.clients-section {
  padding-block: var(--section-padding, 80px);
  background-color: #ffffff;
}

.clients-section .section-title-group {
  margin-bottom: 32px;
  text-align: left;
}

.clients-section .section-sub {
  display: block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--main-color, #e2231a);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.clients-section .section-main {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.2;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.client-card {
  background-color: #ffffff;
  border: 1.5px solid var(--light-border, #e5e5e5);
  border-radius: 12px;
  padding: 16px 14px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}
.client-card.black {
  background-color: #000;
}

.client-card:hover {
  transform: translateY(-4px);
  border-color: var(--main-color, #e2231a);
  box-shadow: 0 10px 24px rgba(11, 26, 61, 0.08);
}

.client-card img {
  max-width: 85%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(10%);
  transition: filter 0.25s ease;
}

.client-card:hover img {
  filter: grayscale(0%);
}

.client-name {
  display: none;
  font-size: 14px;
  font-weight: 800;
  color: var(--secondary-color, #0b1a3d);
  line-height: 1.35;
  word-wrap: break-word;
}

.client-name.red-text {
  color: var(--main-color, #e2231a);
}

.client-name.multi-color {
  color: #0b1a3d;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

@media (max-width: 991px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .client-card {
    height: 86px;
  }
}

@media (max-width: 580px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .client-card {
    height: 80px;
    padding: 12px 10px;
  }

  .client-name {
    font-size: 12.5px;
  }
}
/* #endregion End Our Clients Styling */
