:root {
    --tm-blue: #0a3d7e;
    --tm-blue-dark: #062448;
    --tm-orange: #f6a21a;
    --tm-bg-light: #f5f7fb;
    --tm-text: #273043;
}

* {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    padding: 0;
    margin: 0;
}

body {
    color: var(--tm-text);
    background: #ffffff;
}

a {
    text-decoration: none;
}

.navbar {
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.navbar-brand {
    max-height: 80px;
    width: 130px;
}

.nav-link {
    font-weight: 500;
    color: #444;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--tm-orange) !important;
}

.btn-primary-tm {
    background: var(--tm-orange);
    border-color: var(--tm-orange);
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    padding: 15px 18px;
}

.btn-primary-tm:hover {
    background: #de8d10;
    border-color: #de8d10;
    color: #fff;
}

.btn-outline-tm {
    border-radius: 999px;
    border-color: rgba(10, 61, 126, 0.2);
    color: var(--tm-blue-dark);
    font-weight: 500;
}

.btn-outline-tm:hover {
    background: rgba(10, 61, 126, 0.05);
    border-color: rgba(10, 61, 126, 0.4);
}

.mt-header {
    margin-top: 86px;
}

@media (max-width: 991.98px) {
    .mt-header {
        margin-top: 72px;
    }
}
.main-owl-banner {
    background: linear-gradient(135deg, #f5f7fb 0%, #ffffff 35%, #fef6ea 100%);
}

 .main-owl-banner .item {
    position: relative;
}

.main-owl-banner img {
    width: 100%;
    max-height: 470px;
    object-fit: cover;
    filter: saturate(1.05);
}

.banner-content {
    position: absolute;
    inset: 0;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    color: #fff;
    background: linear-gradient(90deg, rgba(6, 36, 72, 0.88), rgba(6, 36, 72, 0.1));
} 

.banner-content h2 {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.banner-content p {
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 0.9rem;
}

.banner-content .badge-strip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.banner-content .btn-group-hero .btn {
    margin-right: 8px;
    margin-top: 6px;
}

.hero-contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-top: 6px;
}

.hero-contact-pill i {
    color: var(--tm-orange);
}

.industries-flow {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.industry-image-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(6, 36, 72, 0.25);
}

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

.image-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  background: linear-gradient(
    to top,
    rgba(6, 36, 72, 0.9),
    rgba(6, 36, 72, 0.1)
  );
  color: #fff;
}

.image-overlay-text h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.image-overlay-text p {
  font-size: 0.9rem;
  opacity: 0.9;
} 
/* ===============================
   HERO SECTION RESPONSIVE FIX
   (NO DESIGN CHANGE)
================================ */

/* Default already ok for desktop */

/* Tablets */
@media (max-width: 991.98px) {

  .main-owl-banner img {
    max-height: 420px;
  }

  .banner-content {
    padding: 0 6%;
  }

  .banner-content h2 {
    font-size: 1.7rem;
  }

  .banner-content p {
    font-size: 0.95rem;
    max-width: 420px;
  }
}

/* Mobile devices */
@media (max-width: 767.98px) {

  .main-owl-banner img {
    max-height: 420px;
  }

  .banner-content {
    padding: 20px;
    justify-content: center;
    text-align: left;
    background: linear-gradient(
      180deg,
      rgba(6, 36, 72, 0.85),
      rgba(6, 36, 72, 0.65)
    );
  }

  .banner-content .badge-strip {
    font-size: 0.7rem;
    padding: 5px 10px;
  }

  .banner-content h2 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .banner-content p {
    font-size: 0.85rem;
    line-height: 1.45;
    max-width: 100%;
  }

  .btn-group-hero {
    margin-top: 10px;
  }

  .btn-group-hero .btn {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .hero-contact-pill {
    font-size: 0.8rem;
    margin-top: 10px;
  }
}

/* Small mobile (very important) */
@media (max-width: 480px) {

  .main-owl-banner img {
    max-height: 680px;
  }

  .banner-content {
    padding: 16px;
  }

  .banner-content h2 {
    font-size: 1.25rem;
  }

  .banner-content p {
    font-size: 0.8rem;
  }

  .hero-contact-pill {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
}

/* Flow list */
.industry-flow-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.industry-flow-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.industry-flow-item i {
  font-size: 1.6rem;
  color: var(--tm-orange);
  background: rgba(246, 162, 26, 0.15);
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-flow-item h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tm-blue-dark);
  margin-bottom: 4px;
}

.industry-flow-item p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* Mobile */
@media (max-width: 991px) {
  .image-overlay-text {
    text-align: center;
  }
}
  /* SERVICE FLOW */
        .service-flow-section {
            background: linear-gradient(180deg, #ffffff, #f5f7fb);
        }

        .service-flow {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .flow-step {
            max-width: 180px;
            text-align: center;
            position: relative;
        }

        .flow-step span {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--tm-blue-dark);
            color: #fff;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }

        .flow-step h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--tm-blue-dark);
        }

        .flow-step p {
            font-size: 0.85rem;
            color: #6b7280;
        }

        .flow-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(to right, var(--tm-orange), #cbd5e1);
            margin: 0 12px;
        }

        .flow-step.highlight span {
            background: var(--tm-orange);
        }

        @media (max-width: 991px) {
            .service-flow {
                flex-direction: column;
            }

            .flow-line {
                width: 2px;
                height: 30px;
                margin: 10px auto;
            }
        }

/* Generic cards */
.tm-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 14px 35px rgba(6, 36, 72, 0.08);
    border: 1px solid rgba(6, 36, 72, 0.04);
    height: 100%;
}

.tm-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 162, 26, 0.1);
    color: var(--tm-orange);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.tm-card h4,
.tm-card h5 {
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.tm-card p {
    font-size: 0.92rem;
    color: #626a7b;
    margin-bottom: 0;
}

/* Tender Services (2nd section) */
.tender-services {
    padding: 40px 0 20px;
}

.tender-services .service-img-box img {
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(6, 36, 72, 0.22);
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--tm-orange);
    margin-right: 6px;
}

@media (max-width: 767.98px) {
    .service-list {
        grid-template-columns: 1fr;
    }
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 999px;
    background: #e4ecfb;
    color: black;
    font-weight: 600;

}

.wwd-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(6, 36, 72, 0.08);
    border: 1px solid rgba(6, 36, 72, 0.05);
    margin: 10px !important;

}

.wwd-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 61, 126, 0.07);
    color: var(--tm-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.wwd-card h4 {
    font-size: 1rem;
    font-weight: 600;
}

.wwd-card p {
    font-size: 0.9rem;
    color: #6c7485;
}

/* Interventions strip -> Key Platforms */
.interventions-strip {
    padding: 40px 0;
    background: var(--tm-bg-light);
}

.intervention-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 15px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(6, 36, 72, 0.06);
    border: 1px solid rgba(6, 36, 72, 0.03);
}

.intervention-title {
    font-weight: 600;
    font-size: 0.96rem;
    color: var(--tm-blue-dark);
    margin-bottom: 4px;
}

.intervention-box p {
    font-size: 0.88rem;
    color: #6b7280;
}

/* Focus section -> Industries We Serve */
/* .focus-section {
    padding: 45px 0;
} */

.focus-center-img {
    max-width: 360px;
    filter: drop-shadow(0 15px 40px rgba(10, 61, 126, 0.18));
}

.focus-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 13px;
    font-size: 0.86rem;
    margin: 4px;
    background: #f9fafb;
    border: 1px solid #e2e6f0;
    color: #4b5563;
}

.focus-pill::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--tm-orange);
    margin-right: 6px;
}

/* Stories (Client success) */
.stories-section {
    background: var(--tm-bg-light);
}

.story-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(6, 36, 72, 0.07);
    border: 1px solid rgba(6, 36, 72, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.story-body {
    padding: 14px 15px 10px;
}

.story-body h6 {
    font-size: 0.98rem;
    font-weight: 600;
}

.story-meta {
    font-size: 0.8rem;
    color: #9ca3af;
}

.story-body p {
    font-size: 0.9rem;
    color: #6b7280;
}

.story-footer {
    padding: 0 15px 12px;
}

.btn-read {
    border-radius: 999px;
    border: none;
    background: rgba(10, 61, 126, 0.07);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 14px;
    color: var(--tm-blue-dark);
}

.btn-read:hover {
    background: rgba(10, 61, 126, 0.12);
}

.btn-view-all {
    border-radius: 999px;
    padding: 8px 20px;
    background: var(--tm-blue-dark);
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-view-all:hover {
    background: var(--tm-blue);
    color: #fff;
}

/* Change / Media videos */
.change-section {
    background: #ffffff;
}

.video-thumb {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 14px 40px rgba(6, 36, 72, 0.18);
}

.video-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0, transparent 65%);
}

.play-button i {
    font-size: 2.4rem;
    color: #ffffff;
}

.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-inner {
    width: 90%;
    max-width: 720px;
    position: relative;
}

.video-inner iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
}

.video-close {
    position: absolute;
    top: -22px;
    right: -10px;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

/* Impact / Numbers */
.impact-section {
    padding: 50px 0;
    background: var(--tm-bg-light);
}

.impact-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 14px 40px rgba(6, 36, 72, 0.08);
}

.impact-number {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--tm-blue-dark);
}

.impact-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 6px;
}

.impact-text {
    font-size: 0.88rem;
    color: #6b7280;
}

/* Blogs */
.blog-section {
    background: #ffffff;
}

.blog-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(6, 36, 72, 0.08);
    border: 1px solid rgba(6, 36, 72, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.blog-body {
    padding: 14px 15px 10px;
}

.blog-body h6 {
    font-size: 0.98rem;
    font-weight: 600;
}

.blog-body p {
    font-size: 0.9rem;
    color: #6b7280;
}

.blog-footer {
    padding: 0 15px 10px;
}

.btn-read-blog {
    border-radius: 999px;
    font-size: 0.8rem;
    background: rgba(246, 162, 26, 0.12);
    border: none;
    color: var(--tm-blue-dark);
}

.btn-read-blog:hover {
    background: rgba(246, 162, 26, 0.22);
}

/* .section-padding {
    padding: 45px 0;
} */

.reach-icon-circle {
    border-radius: 18px;
    padding: 16px 10px;
    border: 1px solid #d7dfec;
    background: #f9fafb;
}

.reach-icon-circle i {
    color: var(--tm-blue);
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--tm-blue-dark), #0b4d97);
    color: #ffffff;
    padding: 22px 0;
}

.btn-donate-main {
    border-radius: 999px;
    padding: 8px 22px;
    font-size: 0.9rem;
    border: none;
    background: var(--tm-orange);
    color: #fff;
}

.btn-donate-main:hover {
    background: #de8d10;
}

.btn-support {
    border-radius: 999px;
    padding: 7px 20px;
    background: var(--tm-blue-dark);
    border: none;
    color: #ffffff;
    font-size: 0.88rem;
}

.btn-support:hover {
    background: var(--tm-blue);
}

/* Contact & Footer */
.footer {
    padding: 32px 0 18px;
    background: #050b16;
    color: #d2d6e0;
    font-size: 0.9rem;
}

.footer h6 {
    font-size: 0.95rem;
    font-weight: 600;
}

.footer a {
    color: #d2d6e0;
    font-size: 0.88rem;
}

.footer a:hover {
    color: var(--tm-orange);
}

.footer .social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    margin-right: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
    margin-top: 16px;
    font-size: 0.8rem;
}

.form-control-sm,
.form-select-sm {
    border-radius: 9px;
    font-size: 0.85rem;
}

.shadow-sm {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
}

.tm-services {
    background: #f7f9fc;
}

.tm-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #0a3d7e, #1360c6);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.tm-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #0a3d7e;
}

.tm-desc {
    font-size: 0.95rem;
    color: #555;
    max-width: 520px;
}

.tm-bullet {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.tm-bullet i {
    color: #f6a21a;
    font-size: 1rem;
}

.tm-img-box {
    position: relative;
}

.tm-img {
    border-radius: 22px;
    border-left: 6px solid #f6a21a;
}

.why-choice-section {
    background: linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
}

.choice-row {
    position: relative;
    padding-left: 90px;
    margin-bottom: 45px;
}

.choice-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: -45px;
    width: 2px;
    background: linear-gradient(to bottom,
            var(--tm-orange),
            rgba(10, 61, 126, 0.15));
}

.choice-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--tm-orange);
    color: var(--tm-orange);
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(6, 36, 72, 0.12);
}

.choice-number.highlight {
    background: var(--tm-orange);
    color: #ffffff;
}

.choice-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tm-blue-dark);
    margin-bottom: 8px;
}

.choice-content p {
    font-size: 0.95rem;
    color: #6b7280;
    max-width: 620px;
    line-height: 1.65;
}

.choice-row:last-child .choice-line {
    display: none;
}

@media (max-width: 768px) {
    .choice-row {
        padding-left: 75px;
    }

    .choice-content p {
        max-width: 100%;
    }
}

.solutions-360 {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.solutions-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 520px;
}

.solution-core {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tm-blue-dark), var(--tm-blue));
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 25px 60px rgba(6, 36, 72, 0.25);
    z-index: 3;
}

.solution-core h4 {
    font-weight: 700;
    line-height: 1.3;
}

.solution-core span {
    font-size: 0.85rem;
    opacity: 0.85;
}

.solution-item {
    position: absolute;
    width: 260px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(6, 36, 72, 0.12);
    border-left: 4px solid var(--tm-orange);
}

.solution-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--tm-blue-dark);
    margin-bottom: 6px;
}

.solution-item p {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0;
}

.solution-item.left.one {
    top: 40px;
    left: 0;
}

.solution-item.left.two {
    bottom: 80px;
    left: 0;
}

.solution-item.right.three {
    top: 40px;
    right: 0;
}

.solution-item.right.four {
    bottom: 80px;
    right: 0;
}

.solution-item.bottom {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 991px) {

    .solutions-wrapper {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .solution-core {
        position: relative;
        width: 100%;
        height: auto;
        border-radius: 20px;
        padding: 30px 20px;
    }

    .solution-item {
        position: relative;
        width: 100%;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        border-left: 4px solid var(--tm-orange);
    }
}

.contact-modern {
    padding: 70px 0;
    background: linear-gradient(120deg,
            var(--tm-blue-dark) 0%,
            var(--tm-blue) 45%,
            #ffffff 45%);
}

.contact-info {
    color: #ffffff;
    padding-right: 40px;
}

.contact-title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
}

.contact-title span {
    color: var(--tm-blue-dark);
}

.contact-desc {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 420px;
    margin: 15px 0 25px;
    color:#6c7485;
}

.contact-points {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    color:#6c7485;
}

.contact-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.contact-points i {
    color: #062448;
    font-size: 1.1rem;
}

.contact-points .whatsapp {
    font-weight: 600;
}

.contact-note {
    margin-top: 25px;
    font-size: 0.85rem;
    opacity: 0.85;
    border-left: 3px solid var(--tm-orange);
    padding-left: 12px;
}

.contact-form-wrap {
    padding-left: 40px;
}

.contact-form-modern {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 22px;
    box-shadow: 0 30px 70px rgba(6, 36, 72, 0.25);
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #e5e9f2;
    padding: 10px 5px;
    font-size: 0.9rem;
    outline: none;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus,
.contact-form-modern select:focus {
    border-color: var(--tm-orange);
}

.contact-form-modern textarea {
    resize: none;
}

.agree {
    font-size: 0.8rem;
    color: #6b7280;
}

.btn-submit-contact {
    background: var(--tm-orange);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 26px;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-submit-contact:hover {
    background: #de8d10;
}

@media (max-width: 991px) {
    .contact-modern {
        background: var(--tm-blue-dark);
    }

    .contact-info,
    .contact-form-wrap {
        padding: 0 12px;
    }

    .contact-form-wrap {
        margin-top: 30px;
    }
}
.footer {
  background: linear-gradient(
    135deg,
    var(--tm-blue-dark),
    #041a34
  );
  color: white;
}
.hero-owl .item{
    height: 500px;
    
}
@media (max-width:400px) {
    .hero-owl .item{
    height: 340px;
    
}
}
.why-tender-support {
  position: relative;
}

.why-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 22px;
  height: 100%;
  text-align: left;
  border: 1px solid rgba(6, 36, 72, 0.06);
  box-shadow: 0 14px 35px rgba(6, 36, 72, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tm-orange), var(--tm-blue));
  opacity: 0;
  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(6, 36, 72, 0.16);
}

.why-card:hover::after {
  opacity: 1;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(246,162,26,0.18), rgba(10,61,126,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--tm-orange);
  margin-bottom: 14px;
}

.why-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--tm-blue-dark);
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0;
  line-height: 1.55;
}

.why-card.highlight {
  background: linear-gradient(135deg, #0a3d7e, #0b4d97);
  color: #ffffff;
}

.why-card.highlight h5,
.why-card.highlight p {
  color: #ffffff;
}

.why-card.highlight .why-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}



  
