@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* font-family: "Poppins", sans-serif;
 font-family: "Montserrat", sans-serif; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --paper: #ffffff;
  --paper-deep: #f2f2f2;
  --ink: #011843;
  --ink-soft: #3a4a6b;
  --stamp: #d91d23;
  --stamp-deep: #a8161a;
  --brass: #d91d23;
  --brass-soft: #d91d23;
  --hairline: #d8dce5;
  --line-on-paper: rgba(1, 24, 67, 0.14);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  color: #102a54;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #888885;
}

/* @media (prefers-reduced-motion: no-preference) { */

@view-transition {
  navigation: auto;
}

::view-transition-group(page-content) {
  animation-duration: 1s;
  animation-timing-function: ease;
}

::view-transition-old(page-content) {
  animation-name: slide-out;
}

::view-transition-new(page-content) {
  animation-name: slide-in;
}

main {
  view-transition-name: page-content;
}

@keyframes slide-out {
  to {
    translate: -100vw;
  }
}

@keyframes slide-in {
  from {
    translate: 100vw;
  }
}

/* } */

/* ================ KK EXPRESS — COMMON SECTION HEADING CLASSES ===================== */

.kk-sec-tag {
  display: inline-block;
  color: #d91d23;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.kk-sec-title {
  color: #102a54;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 0;
}

.kk-sec-title span {
  color: #d91d23;
  /* display: block; */
}

.kk-sec-subtitle {
  color: #888885;
  font-size: 14px;
  line-height: 1.9;
  margin-top: 18px;
  margin-bottom: 0;
}

/* Centered variant (for sections that need centered heading blocks) */
.kk-sec-heading-center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.kk-sec-title span.kk-inline {
  display: inline;
}

.kk-sec-subtitle .kk-highlight {
  color: #d91d23;
  font-weight: 600;
}

.kk-sec-subtitle {
  color: #888885;
  font-size: 15px;
  line-height: 1.9;
  margin-top: 18px;
  margin-bottom: 0;
}

/* Centered variant (for sections that need centered heading blocks) */
.kk-sec-heading-center {
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ======== KK HERO SECTION ================ */

.kk-hero-section {
  position: relative;
  overflow: visible;
  padding-bottom: 90px;
}

.kk-hero-slider .slick-prev:before,
.kk-hero-slider .slick-next:before {
  display: none;
}

.kk-hero-section .kk-hero-slider {
  position: relative;
}

.kk-hero-section .kk-hero-slide {
  position: relative;
  height: 700px;
}

.kk-hero-section .kk-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */

.kk-hero-section .kk-hero-overlay {
  position: absolute;
  inset: 0;
  /* background:rgba(1,24,67,.72); */
  z-index: 1;
  height: 700px;
}

/* Content */

.kk-hero-section .container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  height: 700px;
}

.kk-hero-section .kk-hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.kk-hero-section .kk-hero-content h1 {
  color: #fff;
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.kk-hero-section .kk-hero-content p {
  max-width: 760px;
  margin: 0 auto 40px;
  color: #fff;
  font-size: 18px;
  line-height: 1.8;
}

/* Button */

.kk-hero-section .kk-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  color: #102a54;
  text-decoration: none;
  padding: 12px 14px 12px 30px;
  border-radius: 60px;
  border: none;
  font-weight: 700;
}

.kk-hero-section .kk-quote-btn span {
  width: 42px;
  height: 42px;
  background: #102a54;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kk-hero-section .kk-quote-btn:hover {
  background-color: #102a54;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
  color: #fff;
}

/* Slider Arrows */

.kk-hero-section .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 45px;
  height: 75px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.kk-hero-section .slick-prev {
  left: 20px;
  border-radius: 12px;
}

.kk-hero-section .slick-next {
  right: 20px;
  border-radius: 12px;
}

.kk-hero-section .slick-arrow:hover {
  background: #d91d23;
}

/* Tracking Box */

.kk-hero-section .kk-tracking-box {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translate(-50%, 50%);
  width: 100%;
  max-width: 900px;
  background: #fff;
  z-index: 15;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.kk-hero-section .kk-tracking-box h5 {
  color: #102a54;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.kk-hero-section .kk-tracking-box h5 span {
  border-bottom: 2px solid #d91d23;
}

.kk-hero-section .kk-tracking-box form {
  display: flex;
  gap: 15px;
}

.kk-hero-section .kk-tracking-box input {
  flex: 1;
  height: 55px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
  outline: none;
}

.kk-hero-section .kk-tracking-box button {
  width: 180px;
  border: none;
  background: #102a54;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
}

/* =============  KK EXPRESS — ABOUT US SECTION =========================== */

.kk-about {
  padding: 5% 0;
  /* background-color: #ffffff; */
  overflow: hidden;
}

/* ---------------- TEXT CONTENT ---------------- */
.kk-about .kk-about-content {
  max-width: 540px;
}

.kk-about .kk-about-list {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
}

.kk-about .kk-about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #102a54;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
}

.kk-about .kk-about-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #102a54;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 2px;
}

.kk-about .kk-about-btn {
  display: inline-block;
  background-color: #d91d23;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: capitalize;
  padding: 15px 38px;
    transition:
    background-color 0.25s ease,
    transform 0.2s ease;
    border-radius: 5px;
}

.kk-about .kk-about-btn:hover {
  background-color: #102a54;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ---------------- IMAGE COLLAGE ---------------- */
.kk-about .kk-about-media {
  position: relative;
  min-height: 480px;
}

.kk-about .kk-about-img {
  border-radius: 0px;
  overflow: hidden;
  background-color: #fff;
}

.kk-about .kk-about-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.kk-about .kk-about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 330px;
  z-index: 1;
}

.kk-about .kk-about-img-side {
  position: absolute;
  top: 110px;
  right: 0;
  width: 48%;
  padding: 3% 0 3% 3%;
  height: 419px;
  z-index: 2;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); */
}

.kk-about .kk-about-counter-box {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 52%;
  background-color: #102a54;
  padding: 41px 28px 41px 70px;
  z-index: 3;
}

.kk-about .kk-about-counter-box .kk-counter {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1;
}

.kk-about .kk-about-counter-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* ================ KK EXPRESS — KK-CTA ================= */
.kk-CTA-red {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.kk-CTA-red .kk-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.kk-CTA-red .kk-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kk-CTA-red .kk-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: #d91d23;*/
  opacity: 0.7;
}

.kk-CTA-red .container {
  position: relative;
  z-index: 1;
}

.kk-CTA-red .kk-hero-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0;
}

.kk-CTA-red .kk-hero-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #d91d23;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 80px 17px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
    border-radius: 5px;
}

.kk-CTA-red .kk-hero-btn:hover {
  background-color: #102a54;
  color: #ffffff;
  transform: translateY(-2px);
}

/* =================  KK EXPRESS — OUR SERVICES SECTION =============================== */

.kk-services {
  padding: 5% 0;
  background-color: #102a540e;
}

.kk-services .kk-services-row {
  margin-top: 50px;
}

/* ---------------- SERVICE CARD ---------------- */
.kk-services .kk-service-card {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.kk-services .kk-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.kk-services .kk-service-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.kk-services .kk-service-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kk-services .kk-service-card:hover .kk-service-img img {
  transform: scale(1.05);
}

.kk-services .kk-service-body {
  padding: 30px 32px 36px;
}

.kk-services .kk-service-title {
  color: #102a54;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.kk-services .kk-service-desc {
  color: #888885;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.kk-services .kk-service-desc:last-of-type {
  margin-bottom: 20px;
}

.kk-services .kk-service-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.kk-services .kk-service-list li {
  position: relative;
  color: #102a54;
  font-size: 14px;
  font-weight: 500;
  padding-left: 22px;
  margin-bottom: 12px;
}

.kk-services .kk-service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #102a54;
}

.kk-services .kk-service-btn {
  display: inline-block;
  background-color: #d91d23;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 13px 32px;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
    border-radius: 5px;
}

.kk-services .kk-service-btn:hover {
  background-color: #102a54;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ================ KK EXPRESS — WHY CHOOSE US SECTION ================== */

.kk-why {
  padding: 5% 0;
  background-color: #ffffff;
}

.kk-why .kk-why-heading {
  max-width: 600px;
  margin-bottom: 50px;
}

/* ---------------- CARD ---------------- */
.kk-why .kk-why-card {
  background-color: #102a54;
  border-radius: 12px;
  padding: 36px 32px 40px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.kk-why .kk-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(1, 24, 67, 0.25);
}

.kk-why .kk-why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4%;
  font-size: 24px;
  color: #102a54;
  margin-bottom: 36px;
}

.kk-why .kk-why-icon img {
  width: 100%;
}

.kk-why .kk-why-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.kk-why .kk-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kk-why .kk-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.5;
}

.kk-why .kk-why-list li i {
  color: #d91d23;
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===================== KK EXPRESS — HOW WE WORK SECTION =============== */

.kk-how-works {
  padding: 90px 0;
  background-color: #00000008;
}

/* ---------------- 4-STEP PROCESS ---------------- */
.kk-how-works .kk-steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
}

.kk-how-works .kk-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.kk-how-works .kk-steps-row::after {
     content: "";
    position: absolute;
    top: 20px;
    border-radius: 15px;
    left: 135px;
    width: calc(80% - 48px);
    height: 8px;
    background-color: #d9d9d94f;
}

.kk-how-works .kk-step:last-child::after {
  display: none;
}

.kk-how-works .kk-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #d91d23;
  background-color: #fff;
  color: #102a54;
  font-size: 16px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.kk-how-works .kk-step-title {
  color: #102a54;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 10px;
}

.kk-how-works .kk-step-desc {
  color: #888885;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------------- VIDEO SECTION ---------------- */
.kk-how-works .kk-how-video {
  border-radius: 10px;
  overflow: hidden;
}

.kk-how-works .kk-how-video-poster {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #1c2733;
}

.kk-how-works .kk-how-video-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.kk-how-works .kk-how-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  color: #d91d23;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 14px rgb(255 255 255);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.kk-how-works .kk-how-video-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  /* background-color: #D91D23; */
  color: #ffffff;
}

.kk-how-works .kk-how-video-frame {
  position: relative;
  width: 100%;
  height: 420px;
}

.kk-how-works .kk-how-video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* ======================= KK EXPRESS — INDUSTRY WE SERVE SECTION ======================= */

.kk-industry {
  padding: 90px 0;
  background-color: #ffffff;
}

/* ---------------- HEADING ROW (left title / right subtitle + CTA) ---------------- */
.kk-industry .kk-industry-heading-row {
  margin-bottom: 50px;
}

.kk-industry .kk-industry-heading-right {
  /* display: flex; */
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.kk-industry .kk-industry-heading-right .kk-sec-subtitle {
  margin-top: 0;
  flex: 1 1 280px;
}

.kk-industry-row {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
}

.kk-industry .kk-industry-btn {
  display: inline-block;
  background-color: #d91d23;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 34px;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
    border-radius: 5px;
}

.kk-industry .kk-industry-btn:hover {
  background-color: #102a54;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ---------------- INDUSTRY CARDS ---------------- */
.kk-industry .kk-industry-card {
  background-color: #f8f9fb;
  border-radius: 8px;
  padding: 30px 20px 26px;
  text-align: center;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.kk-industry .kk-industry-card:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.kk-industry .kk-industry-icon {
  width: 170;
  height: 130px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kk-industry .kk-industry-icon img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.kk-industry .kk-industry-title {
  color: #102a54;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ==========================================================================
   KK EXPRESS — CONTACT US SECTION
   All rules scoped under .kk-contact
   ========================================================================== */

.kk-contact {
  background-color: #102a54;
  padding: 90px 0;
}

/* ---------------- LEFT: INFO ---------------- */
.kk-contact .kk-contact-title {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.kk-contact .kk-contact-subtitle {
  color: #888885;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 36px;
}

.kk-contact .kk-contact-highlight {
  color: #d91d23;
  font-weight: 800;
  margin-right: 4px;
}

.kk-contact .kk-contact-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.kk-contact .kk-contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 18px;
  text-decoration: none;
  flex-shrink: 0;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.kk-contact .kk-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.kk-contact .kk-contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.kk-contact .kk-contact-card-icon-phone {
  background-color: rgba(217, 29, 35, 0.12);
  color: #d91d23;
}

.kk-contact .kk-contact-card-icon-phone img {
  width: 55%;
}

.kk-contact .kk-contact-card-icon-mail {
  background-color: rgba(1, 24, 67, 0.08);
  color: #102a54;
}

.kk-contact .kk-contact-card-icon-mail img {
  width: 55%;
}

.kk-contact .kk-contact-card-text {
  color: #1c1c1c;
  font-size: 17px;
  font-weight: 600;
}

.kk-contact .kk-contact-map {
  border-radius: 8px;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 220px;
  margin-top: 22px;
}

.kk-contact .kk-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------------- RIGHT: FORM CARD ---------------- */
.kk-contact .kk-contact-form-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 35px 35px;
}

.kk-contact .kk-contact-form-title {
  color: #102a54;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.kk-contact .kk-contact-form-subtitle {
  color: #888885;
  width: 50%;
  margin-bottom: 30px;
}

.kk-contact .kk-form-group {
  margin-bottom: 15px;
}

.kk-contact .kk-form-group label {
  display: block;
  color: #888885;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.kk-contact .kk-form-control {
  width: 100%;
  background-color: #00000008;
  border: 1px solid #00000008;
  border-radius: 6px;
  padding: 11px 16px;
  font-size: 14px;
  color: #1c1c1c;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.kk-contact .kk-form-control:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #102a54;
}

.kk-contact .kk-form-textarea {
  resize: vertical;
  min-height: 110px;
}

.kk-contact .kk-form-error {
  display: none;
  color: #d91d23;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 4px;
}

.kk-contact .kk-form-group.kk-has-error .kk-form-control {
  border-color: #d91d23;
  background-color: #fdf2f2;
}

.kk-contact .kk-form-group.kk-has-error .kk-form-error {
  display: block;
}

.kk-contact .kk-contact-submit-btn {
  display: inline-block;
  background-color: #d91d23;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  padding: 16px 42px;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.kk-contact .kk-contact-submit-btn:hover {
  background-color: #102a54;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Success message shown after valid submit */
.kk-contact .kk-form-success {
  display: none;
  background-color: #eafaf0;
  color: #1e7e42;
  border: 1px solid #b9e8c9;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.kk-contact .kk-form-success.kk-show {
  display: block;
}

/* ===================== KK EXPRESS — OUR CLIENTS SECTION ====================== */

.kk-clients {
  position: relative;
  padding: 70px 0 80px;
  overflow: hidden;
}

.kk-clients .kk-clients-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.kk-clients .kk-clients-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kk-clients .kk-clients-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-color: #d91d23;*/
  opacity: 0.7;
}

.kk-clients .container {
  position: relative;
  z-index: 1;
}

.kk-clients .kk-clients-title {
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

/* ---------------- CLIENT LOGO CARD ---------------- */
.kk-clients .kk-client-logo {
  background-color: #ffffff;
  border-radius: 8px;
  height: 110px;
  margin: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
}

.kk-clients .kk-client-logo img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  display: block;
}

/* ---------------- SLICK SLIDER OVERRIDES ---------------- */
.kk-clients .kk-clients-slider .slick-slide {
  outline: none;
}

.kk-clients .kk-clients-slider .slick-track {
  display: flex;
  align-items: center;
}

.kk-clients .kk-clients-slider .slick-dots {
  bottom: -42px;
}

.kk-clients .kk-clients-slider .slick-dots li button::before {
  font-size: 9px;
  color: #ffffff;
  opacity: 0.5;
}

.kk-clients .kk-clients-slider .slick-dots li.slick-active button::before {
  opacity: 1;
  color: #ffffff;
}

.kk-clients .kk-clients-slider .slick-prev,
.kk-clients .kk-clients-slider .slick-next {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  z-index: 2;
  transition: background-color 0.25s ease;
}

.kk-clients .kk-clients-slider .slick-prev:hover,
.kk-clients .kk-clients-slider .slick-next:hover {
  background-color: #ffffff;
}

.kk-clients .kk-clients-slider .slick-prev::before,
.kk-clients .kk-clients-slider .slick-next::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 14px;
  opacity: 1;
  color: #ffffff;
}

.kk-clients .kk-clients-slider .slick-prev:hover::before,
.kk-clients .kk-clients-slider .slick-next:hover::before {
  color: #d91d23;
}

.kk-clients .kk-clients-slider .slick-prev {
  left: -50px;
}

.kk-clients .kk-clients-slider .slick-prev::before {
  content: "\f053";
}

.kk-clients .kk-clients-slider .slick-next {
  right: -50px;
}

.kk-clients .kk-clients-slider .slick-next::before {
  content: "\f054";
}

/* ===================== KK EXPRESS — FAQ SECTION ===================== */

.kk-faq {
  padding: 90px 0;
  background-color: #ffffff;
}

.kk-faq .kk-faq-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}

.kk-faq .kk-faq-title {
  color: #102a54;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.kk-faq .kk-faq-title span {
  color: #d91d23;
}

.kk-faq .kk-faq-head-right {
  max-width: 380px;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: #888885;
  line-height: 1.8;
  flex-shrink: 0;
  padding-top: 8px;
}

.kk-faq .kk-faq-head-right strong {
  color: #d91d23;
  font-weight: 600;
}

/* ---------------- ACCORDION ITEMS ---------------- */

.kk-faq .kk-faq-item {
  background-color: #102a540f;
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid transparent;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.kk-faq .kk-faq-item.kk-open {
  background-color: #ffffff;
  border-color: #e2e2e2;
}

.kk-faq .kk-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}

.kk-faq .kk-faq-question h3 {
  font-size: 16px;
  font-weight: 700;
  color: #102a54;
  margin: 0;
}

.kk-faq .kk-faq-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #303030;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.kk-faq .kk-faq-item.kk-open .kk-faq-icon {
  transform: rotate(180deg);
}

.kk-faq .kk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.kk-faq .kk-faq-item.kk-open .kk-faq-answer {
  max-height: 300px;
}

.kk-faq .kk-faq-answer-inner {
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
  color: #888885;
  line-height: 1.85;
  border-top: 1px solid #e8e8e8;
  margin: 0 24px;
  padding: 16px 0 22px;
}

/* ============ KK LOGISTICS CONTENT ============ */

.kk-logistics-content {
  background: #8888851c;
}

.kk-logistics-content .kk-content-block {
  margin-bottom: 40px;
}

.kk-logistics-content .kk-content-block:last-child {
  margin-bottom: 0;
}

.kk-logistics-content .kk-content-title {
  font-size: 20px;
  font-weight: 700;
  color: #102a54;
  margin-bottom: 18px;
  line-height: 1.3;
}

.kk-logistics-content p {
  font-size: 14px;
   line-height: 1.7; 
  color: #888885;
  margin-bottom: 12px;
  font-weight: 400;
}

.kk-logistics-content p:last-child {
  margin-bottom: 0;
}

.kk-logistics-content a {
  color: #102a54;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.kk-logistics-content a:hover {
  color: #d91d23;
}

/* ========================== KK EXPRESS — INNER PAGE BANNER ======================== */

.kk-page-banner {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.kk-page-banner .kk-page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.kk-page-banner .kk-page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kk-page-banner .kk-page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #011843; */
  opacity: 0.75;
}

.kk-page-banner .container {
  position: relative;
  z-index: 1;
}

.kk-page-banner .kk-page-banner-content {
  max-width: 720px;
}

.kk-page-banner .kk-page-banner-title {
  color: #ffffff;
  font-size: 4.5rem;
}

.kk-page-banner .kk-page-banner-title .kk-inline {
  color: #d91d23;
}

.kk-page-banner .kk-page-banner-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
  margin-top: 18px;
  margin-bottom: 0;
  padding: 0 9% 0 0;
  text-transform: capitalize;
}

/* ====================  KK EXPRESS — WHO WE ARE SECTION (About Page) ======================== */

.kk-who-we-are {
  padding: 90px 0;
  background-color: #ffffff;
}

.kk-who-we-are .kk-who-content {
  max-width: 540px;
}

.kk-who-we-are .kk-who-desc {
  color: #888885;
  /* font-size: 14.5px; */
  /* line-height: 1.9; */
  margin-top: 18px;
  margin-bottom: 0;
}

.kk-who-we-are .kk-who-desc+.kk-who-desc {
  margin-top: 16px;
}

/* ---------------- STATS ROW ---------------- */
.kk-who-we-are .kk-who-stats {
  display: flex;
  align-items: center;
  margin-top: 36px;
}

.kk-who-we-are .kk-who-stat {
  padding: 0 28px;
  border-right: 1px solid #e3e5ea;
}

.kk-who-we-are .kk-who-stat:first-child {
  padding-left: 0;
}

.kk-who-we-are .kk-who-stat:last-child {
  border-right: none;
}

.kk-who-we-are .kk-who-stat .kk-counter {
  color: #d91d23;
  font-size: 2.6rem;
  margin-bottom: 6px;
  font-weight: 800;
}

.kk-who-we-are .kk-who-stat p {
  color: #011843;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin: 0;
}

/* ---------------- IMAGE ---------------- */
.kk-who-we-are .kk-who-media {
  border-radius: 10px;
  overflow: hidden;
}

.kk-who-we-are .kk-who-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ================== KK EXPRESS — OUR GLOBAL REACH SECTION ========================== */

.kk-global-reach {
  position: relative;
  background-color: #d91d23;
  padding: 70px 0;
  overflow: hidden;
}

.kk-global-reach .kk-global-reach-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* opacity: 0.5; */
}

.kk-global-reach .kk-global-reach-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kk-global-reach .container {
  position: relative;
  z-index: 1;
}

.kk-global-reach .kk-global-title {
  color: #ffffff;
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.kk-global-reach .kk-global-subtitle {
  color: #fff;
  /* font-size: 14.5px;
  line-height: 1.85; */
  max-width: 520px;
  margin-bottom: 0;
}

.kk-global-reach .kk-global-counter {
  color: rgba(255, 255, 255, 0.3);
  font-size: 5.5rem;
  font-weight: 800;
}

.kk-global-logistics-content {
  padding: 0 8% 0 0;
}

/* =================== KK EXPRESS — WHAT SETS US APART SECTION ===================== */

.kk-strength {
  padding: 90px 0;
  background-color: #f4f5f7;
}

.kk-strength .kk-strength-heading {
  max-width: 760px;
  margin-bottom: 50px;
}

/* ---------------- CARD ---------------- */
.kk-strength .kk-strength-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #e9eaec;
  border-radius: 8px;
  padding: 36px 36px 32px 110px;
  height: 100%;
  min-height: 150px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.kk-strength .kk-strength-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  border-color: #d91d23;
  box-shadow:
    0 0 0 1px #d91d23,
    0 14px 30px rgba(217, 29, 35, 0.12);
}

/* .kk-strength .kk-strength-card-featured {
  border-color: #D91D23;
  box-shadow: 0 0 0 1px #D91D23, 0 14px 30px rgba(217, 29, 35, 0.12);
} */

.kk-strength .kk-strength-number {
  position: absolute;
  top: 28px;
  left: 32px;
  color: #f4d4d5;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.kk-strength .kk-strength-title {
  color: #011843;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.kk-strength .kk-strength-desc {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ========================= KK EXPRESS — MISSION / VISION / COMMITMENT SECTION ==================== */

.kk-mvc {
  background-color: #102a54;
}

.kk-mvc .kk-mvc-row {
  display: flex;
  flex-wrap: wrap;
}

.kk-mvc .kk-mvc-col {
  flex: 1 1 0;
  min-width: 280px;
  padding: 55px 90px;
  position: relative;
}


.kk-mvc .kk-mvc-col-featured {
  background-color: #d91d23;
}


.kk-mvc .kk-mvc-icon {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 22px;
}

.kk-mvc .kk-mvc-tag {
  display: block;
  color: #d91d23;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.kk-mvc .kk-mvc-col-featured .kk-mvc-tag {
  color: #ffffff;
}

.kk-mvc .kk-mvc-title {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.kk-mvc .kk-mvc-desc {
  color: #888885;
  font-size: 13.5px;
  /* line-height: 1.85; */
  margin-bottom: 0;
}

.kk-mvc .kk-mvc-col-featured .kk-mvc-desc {
  color: #fff;
}

.kk-mvc .kk-mvc-col:not(:last-child)::after{
    content: "";
    position: absolute;
    top: 38px;
    bottom: 38px;
    right: -1px;
    width: 4px;
    background: #fff;
    border-radius: 3px;
}

/* =================  KK EXPRESS — CTA SECTION (Ready To Ship) =================== */

.kk-cta {
  padding: 90px 0;
  background-color: #ffffff;
  text-align: center;
}

.kk-cta .kk-cta-content {
  max-width: 680px;
  margin: 0 auto;
}

.kk-cta .kk-cta-title {
  color: #102a54;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.kk-cta .kk-cta-title span {
  color: #e31e24;
}

.kk-cta .kk-cta-subtitle {
  color: #888885;
  margin-bottom: 32px;
}

.kk-cta .kk-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.kk-cta .kk-cta-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 4px;
  border: 2px solid transparent;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.kk-cta .kk-cta-btn-filled {
  background-color: #d91d23;
  border-color: #d91d23;
  color: #ffffff;
}

.kk-cta .kk-cta-btn-filled:hover {
  background-color: #011843;
  border-color: #011843;
  color: #ffffff;
  transform: translateY(-2px);
}

.kk-cta .kk-cta-btn-outline {
  background-color: transparent;
  border-color: #d91d23;
  color: #011843;
}

.kk-cta .kk-cta-btn-outline:hover {
  background-color: #d91d23;
  border-color: #d91d23;
  color: #ffffff;
  transform: translateY(-2px);
}
.kk-cta .kk-cta-buttons .kk-quote-btn{
        display: inline-block;
    background-color: #d91d23;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    padding: 16px 42px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}
.kk-cta .kk-cta-buttons .kk-quote-btn:hover{
        background-color: #102a54;
    color: #ffffff;
    transform: translateY(-2px);
}
/* ================================= KK EXPRESS — Contact Page START ================== */

/* Banner Area Start */

.kk-get-in-touch {
  position: relative;
  overflow: hidden;
  padding: 2% 0 20%;
}

.kk-get-in-touch .kk-git-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.kk-get-in-touch .kk-git-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

.kk-get-in-touch .kk-git-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d91d23;
  opacity: 0.15;
}

.kk-get-in-touch .container {
  position: relative;
  z-index: 1;
}

/* ---------------- HEADING ---------------- */
.kk-get-in-touch .kk-git-heading {
  text-align: center;
  padding: 80px 0 50px;
}

.kk-get-in-touch .kk-git-title {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}

.kk-get-in-touch .kk-git-subtitle {
  color: #fff;
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* ---------------- BOTTOM INFO STRIP ---------------- */
.kk-get-in-touch .kk-git-strip {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.25);
  padding: 36px 0;
}

.kk-get-in-touch .kk-git-strip-row {
  display: flex;
  flex-wrap: wrap;
}

.kk-get-in-touch .kk-git-item {
  flex: 1 1 0;
  min-width: 200px;
  padding: 0 28px;
  position: relative;
}

.kk-get-in-touch .kk-git-item img {
  width: 25%;
  margin: 0 0 2% 0;
}

.kk-get-in-touch .kk-git-item+.kk-git-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4.8px;
  height: 104%;
  background-color: #ffffff29;
}

.kk-get-in-touch .kk-git-item i {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 14px;
  display: block;
}

.kk-get-in-touch .kk-git-item p {
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.kk-get-in-touch .kk-git-item p a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.kk-get-in-touch .kk-git-item p a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact-pg-frm .kk-contact {
  background-color: transparent;
  margin: -280px 0 0 0;
  position: relative;
}

.contact-pg-frm .kk-contact-map {
  margin: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-pg-frm .kk-contact .kk-contact-form-card {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-pg-frm .kk-contact-form-subtitle {
  width: 100%;
}

.contact-pg-frm .kk-contact-submit-btn {
  margin: 0 auto;
  display: flex;
}

/* ====================  KK EXPRESS — LOGISTICS SERVICES INTRO SECTION ====================== */

.kk-logistics-intro {
  padding: 70px 0;
  background-color: #ffffff;
  position: relative;
}

.kk-logistics-intro .row {
  position: relative;
}

.kk-logistics-intro .kk-logistics-intro-content {
  max-width: 540px;
}

.kk-logistics-intro .kk-logistics-intro-accent {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #d91d23;
  margin-top: 22px;
}

/* ---------------- IMAGE ---------------- */
.kk-logistics-intro .kk-logistics-intro-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* -------------  KK EXPRESS — OUR LOGISTICS SERVICES SECTION ------------- */

.kk-logistics-services {
  padding: 90px 0;
  background-color: #f4f5f7;
}

.kk-logistics-services .kk-sec-heading-center {
  margin-bottom: 50px;
}

/* ---------------- CARD ---------------- */
.kk-logistics-services .kk-logistics-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.kk-logistics-services .kk-logistics-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* ---------------- CARD HEAD ---------------- */
.kk-logistics-services .kk-logistics-card-head {
  position: relative;
  background-color: #102a54;
  padding: 24px 28px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.kk-logistics-services .kk-logistics-number {
  color: rgba(255, 255, 255, 0.15);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.kk-logistics-services .kk-logistics-icon {
  font-size: 22px;
  color: #ffffff;
  flex-shrink: 0;
}

.kk-logistics-services .kk-logistics-icon img {
        width: 15%;
    margin: 0 0 6% 0;
}

.kk-logistics-services .kk-logistics-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

/* ---------------- CARD BODY ---------------- */
.kk-logistics-services .kk-logistics-card-body {
  padding: 26px 28px 30px;
}

.kk-logistics-services .kk-logistics-desc {
  color: #888885;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.kk-logistics-services .kk-logistics-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kk-logistics-services .kk-logistics-list li {
  position: relative;
  color: #102a54;
  font-size: 14px;
  font-weight: 500;
  padding-left: 18px;
  margin-bottom: 5px;
}

.kk-logistics-services .kk-logistics-list li:last-child {
  margin-bottom: 0;
}

.kk-logistics-services .kk-logistics-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #d91d23;
}

/* ===================== KK EXPRESS — END-TO-END LOGISTICS SOLUTIONS SECTION ====================== */

.kk-e2e-logistics {
  padding: 70px 0;
  background-color: #ffffff;
}

.kk-e2e-logistics .kk-e2e-content {
  max-width: 520px;
}

/* ---------------- IMAGE ---------------- */
.kk-e2e-logistics .kk-e2e-media {
  border-radius: 6px;
  overflow: hidden;
}

.kk-e2e-logistics .kk-e2e-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* ---------------- CALLOUT ---------------- */
.kk-e2e-logistics .kk-e2e-callout {
  background-color: #f1f2f4;
  border-left: 4px solid #d91d23;
  border-radius: 4px;
  padding: 30px 36px;
  margin-top: 50px;
}

.kk-e2e-logistics .kk-e2e-callout p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.85;
  margin: 0;
}

/* ===========KK EXPRESS — LOGISTICS SERVICES ACROSS INDIA & WORLDWIDE SECTION ================== */

.kk-global-logistics {
  background-color: #ae171c;
  padding: 70px 0;
}

.kk-global-logistics .kk-global-logistics-title {
  color: #ffffff;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}

.kk-global-logistics .kk-global-logistics-desc {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  padding: 0 12% 0 0;
}

.kk-global-logistics .kk-global-logistics-desc:last-child {
  margin-bottom: 0;
}

/* ---------------- IMAGE ---------------- */
.kk-global-logistics .kk-global-logistics-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------------- REGION PILL GRID ---------------- */
.kk-global-logistics .kk-region-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.kk-global-logistics .kk-region-pill {
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  text-align: center;
  padding: 18px 10px;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.kk-global-logistics .kk-region-pill:hover {
  /*background-color: #eee;*/
  transform: translateY(-3px);
}

.kk-global-logistics .kk-region-pill h4 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.kk-global-logistics .kk-region-pill p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 500;
  margin: 0;
}

/* ============ KK EXPRESS — WHY CHOOSE KK EXPRESS LOGISTICS IN MUMBAI SECTION ===================== */

.kk-why-choose-mumbai {
  background-color: #102a54;
  padding: 70px 0;
}

.kk-why-choose-mumbai .kk-why-choose-mumbai-heading {
  margin-bottom: 50px;
}

.kk-why-choose-mumbai .kk-why-choose-mumbai-title {
  color: #ffffff;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.kk-why-choose-mumbai .kk-why-choose-mumbai-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-bottom: 0;
}

/* ---------------- PILL CARDS ---------------- */
.kk-why-choose-mumbai .kk-why-choose-mumbai-row-bottom {
  margin-top: 4px;
}

.kk-why-choose-mumbai .kk-why-choose-pill {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  padding: 18px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.kk-why-choose-mumbai .kk-why-choose-pill:hover {
  background-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

/* ============ KK EXPRESS — BENEFITS OF OUR LOGISTICS SERVICES SECTION ================ */

.kk-benefits {
  padding: 80px 0;
  background-color: #ffffff;
}

.kk-benefits .kk-sec-heading-center {
  margin-bottom: 50px;
}

.kk-benefits .kk-benefit-item {
  text-align: center;
}

.kk-benefits .kk-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #eceef1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.kk-benefits .kk-benefit-icon img {
  max-width: 26px;
  max-height: 26px;
  display: block;
}

.kk-benefits .kk-benefit-label {
  color: #102a54;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}

.kk-benefits .kk-sec-title span {
  color: #e31e24;
}

/* ===============  KK EXPRESS — INDUSTRIES WE SERVE MARQUEE SECTION ================ */

.kk-industries-marquee {
  background-color: #e31e24;
  padding: 60px 0 70px;
  overflow: hidden;
}

.kk-industries-marquee .kk-industries-marquee-title {
  color: #ffffff;
  font-size: 2.7em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}

/* ---------------- SLIDER ITEMS ---------------- */
.kk-industries-marquee .kk-industries-marquee-item {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 28px;
  position: relative;
}

.kk-industries-marquee .kk-industries-marquee-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.4);
}

/* ---------------- SLICK OVERRIDES ---------------- */
.kk-industries-marquee .kk-industries-marquee-slider .slick-track {
  display: flex;
  align-items: center;
}

.kk-industries-marquee .kk-industries-marquee-slider .slick-slide {
  outline: none;
}

.kk-industries-marquee .kk-industries-marquee-slider .slick-list {
  /* allow text to visually bleed at the container edges, matching the design */
  overflow: visible;
}

/* ================= KK EXPRESS — KK Industries We Serve =================== */

.kk-customized-banner {
  background-color: #102a54;
  padding: 70px 0;
  text-align: center;
}

.kk-customized-banner .kk-customized-banner-content {
  max-width: 980px;
  margin: 0 auto;
}

.kk-customized-banner .kk-customized-banner-title {
  color: #ffffff;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 36px;
}

.kk-customized-banner .kk-customized-banner-title span {
  color: #d91d23;
}

.kk-customized-banner .kk-customized-banner-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  line-height: 1.85;
  max-width: 820px;
  text-transform: capitalize;
  margin: 0 auto 16px;
}

.kk-customized-banner .kk-customized-banner-desc:last-child {
  margin-bottom: 0;
}

/* =============  KK EXPRESS — INDUSTRIES WE SERVE (DETAILED CARDS) ===================== */

.kk-industries-detail {
  padding: 90px 0;
  background-color: #f4f5f7;
}

.kk-industries-detail .kk-industries-detail-title {
  color: #d91d23;
  font-size: 3.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 50px;
}

/* ---------------- CARD ---------------- */
.kk-industries-detail .kk-industries-detail-card {
  background-color: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 32px 30px 34px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.kk-industries-detail .kk-industries-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  border-color: #d91d23;
  box-shadow:
    0 0 0 1px #d91d23,
    0 14px 30px rgba(217, 29, 35, 0.1);
    border-top: 6px solid #d91d23;
}

/* .kk-industries-detail .kk-industries-detail-card-featured {
  border-color: #D91D23;
  box-shadow: 0 0 0 1px #D91D23, 0 14px 30px rgba(217, 29, 35, 0.1);
} */

/* ---------------- CARD HEAD ---------------- */
.kk-industries-detail .kk-industries-detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.kk-industries-detail .kk-industries-detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #d7dbe2;
  color: #102a54;
  font-size: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 0 -8px 0;
}

.kk-industries-detail .kk-industries-detail-card-title {
  color: #102a54;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  padding-top: 6px;
}

/* ---------------- CARD BODY ---------------- */
.kk-industries-detail .kk-industries-detail-desc {
  color: #6b7280;
  font-size: 13.5px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.kk-industries-detail .kk-industries-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kk-industries-detail .kk-industries-detail-list li {
  position: relative;
  color: #102a54;
  font-size: 13.5px;
  font-weight: 600;
  padding-left: 18px;
  margin-bottom: 10px;
}

.kk-industries-detail .kk-industries-detail-list li:last-child {
  margin-bottom: 0;
}

.kk-industries-detail .kk-industries-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #102a54;
}

/* =================== DOCUMENT PDF =================== */

.kk-paperwork-library .wrap {
  padding: 5% 0;
}

/* ---------- HEADER ---------- */
.kk-paperwork-library .masthead {
  border-bottom: 3px solid var(--ink);
  padding-bottom: 22px;
  margin-bottom: 6px;
  position: relative;
}

.kk-paperwork-library .masthead-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.kk-paperwork-library .masthead-left {
  flex: 1;
  min-width: 280px;
}

.kk-paperwork-library .eyebrow {
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin: 0 0 10px;
}

.kk-paperwork-library .eyebrow::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--stamp);
  margin-right: 9px;
  transform: translateY(-1px);
}

.kk-paperwork-library h1.title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 46px;
  letter-spacing: -0.01em;
  line-height: 1.04;
  margin: 0;
  color: var(--ink);
  text-transform: uppercase;
}

.kk-paperwork-library .title-sub {
  font-family: "Roboto Mono", monospace;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.kk-paperwork-library .desc {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 18px 0 0;
}

.kk-paperwork-library .stampmark {
  flex-shrink: 0;
  width: 108px;
  height: 108px;
  position: relative;
  margin-bottom: 4px;
}

.kk-paperwork-library .stampmark svg {
  width: 100%;
  height: 100%;
  transform: rotate(-9deg);
}

/* ---------- DOCUMENT COUNT ---------- */
.kk-paperwork-library .control-row {
  display: flex;
  justify-content: flex-end;
  margin: 30px 0 38px;
}

.kk-paperwork-library .count-tag {
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  color: var(--ink-soft);
  white-space: nowrap;
  padding: 0 4px;
}

.kk-paperwork-library .count-tag b {
  color: var(--ink);
  font-weight: 700;
}

/* ---------- FOLDERS GRID ---------- */
.kk-paperwork-library .folders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.kk-paperwork-library .folder {
  background: #fff;
  border: 1px solid var(--hairline);
  box-shadow:
    0 1px 0 var(--hairline),
    0 18px 0 -16px rgba(27, 42, 65, 0.06);
  position: relative;
}

.kk-paperwork-library .folder-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 18px;
  position: relative;
}

.kk-paperwork-library .folder-tab-text {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.kk-paperwork-library .folder-tab-meta {
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  color: var(--brass-soft);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.kk-paperwork-library .folder-tab::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 3px;
  background: var(--brass);
}

.kk-paperwork-library .folder-body {
  padding: 6px 0;
}

.kk-paperwork-library .doc-row {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-bottom: 1px dashed var(--line-on-paper);
  position: relative;
  transition: background 0.15s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.kk-paperwork-library .folder-body .doc-row:last-child {
  border-bottom: none;
}

.kk-paperwork-library .doc-row:hover {
  background: var(--paper);
}

.kk-paperwork-library .doc-row:focus-visible {
  outline: 2px solid var(--stamp);
  outline-offset: -2px;
}

.kk-paperwork-library .doc-num {
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  color: #a9b0c0;
  width: 34px;
  text-align: center;
  flex-shrink: 0;
  padding: 14px 0;
  border-right: 1px dashed var(--line-on-paper);
}

.kk-paperwork-library .doc-row:hover .doc-num {
  color: var(--brass);
}

.kk-paperwork-library .doc-name {
  flex: 1;
  padding: 14px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kk-paperwork-library .doc-name.flag {
  color: var(--stamp-deep);
}

.kk-paperwork-library .doc-tag {
  font-family: "Roboto Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--paper-deep);
  padding: 3px 7px;
  border-radius: 2px;
  margin-right: 14px;
  flex-shrink: 0;
  text-transform: uppercase;
}

.kk-paperwork-library .doc-dl {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px dashed var(--line-on-paper);
  color: var(--ink-soft);
}

.kk-paperwork-library .doc-row:hover .doc-dl {
  color: var(--stamp);
  background: #fff;
}

.kk-paperwork-library .doc-dl svg {
  width: 17px;
  height: 17px;
}

/* perforation dots between number column and name (ticket-stub feel) */
.kk-paperwork-library .doc-row::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 0;
}









/* =============== KK EXPRESS — COURIER TO [COUNTRY] BANNER ================= */

.kk-courier-banner {
  position: relative;
  padding: 15% 0;
  overflow: hidden;
}

.kk-courier-banner .kk-courier-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.kk-courier-banner .kk-courier-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kk-courier-banner .kk-courier-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #102A54;
  opacity: 0.55; */
}

.kk-courier-banner .container {
  position: relative;
  z-index: 1;
}

.kk-courier-banner .kk-courier-banner-title {
  color: #FFFFFF;
  font-size: 3.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0;
}

.service-banner-sm {
    padding: 0 15%;
}

/* ============== KK EXPRESS — COURIER CONTENT SECTION ================ */

.kk-courier-content {
  padding: 5% 0;
  background-color: #ffffff;
}

.kk-courier-content .kk-courier-content-inner {
  /* max-width: 820px; */
  padding: 0 7%;
  text-align: center;
}

.kk-courier-content .kk-courier-content-title {
  color: #102A54;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 30px;
}

.kk-courier-content .kk-courier-content-title span {
  color: #D91D23;
}

.kk-courier-content .kk-courier-content-desc {
  color: #888885;
  line-height: 1.9;
  margin-bottom: 20px;
}

.kk-courier-content .kk-courier-content-desc:last-child {
  margin-bottom: 0;
}




/* ============= KK EXPRESS — COURIER CTA SECTION =================== */

.kk-courier-cta {
  position: relative;
  background-color: #D91D23;
  padding: 10% 0;
  text-align: center;
  overflow: hidden;
}

.kk-courier-cta .kk-courier-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* opacity: 0.5; */
}

.kk-courier-cta .kk-courier-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center;
}

.kk-courier-cta .container {
  position: relative;
  z-index: 1;
}

.kk-courier-cta .kk-courier-cta-title {
  color: #FFFFFF;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.35;
  padding: 0 18%;
  margin: 0 auto 34px;
}

.kk-courier-cta .kk-courier-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.kk-courier-cta .kk-courier-cta-buttons img{
  width: 22px;
  height: 22px;
}

.kk-courier-cta .kk-courier-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: #FFFFFF;
  color: #102A54;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
      padding: 18px 35px 20px 35px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kk-courier-cta .kk-courier-cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  color: #102A54;
}

.kk-courier-cta .kk-courier-cta-pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #D91D23;
  color: #FFFFFF;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kk-courier-cta .kk-courier-cta-pill-icon-mail {
  background-color: #102A54;
}

@media (max-width: 767.98px) {
  .kk-courier-cta {
    padding: 50px 0;
  }

  .kk-courier-cta .kk-courier-cta-title {
    font-size: 1.6rem;
    margin-bottom: 28px;
  }
}

@media (max-width: 575.98px) {
  .kk-courier-cta .kk-courier-cta-title {
    font-size: 1.35rem;
  }

  .kk-courier-cta .kk-courier-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .kk-courier-cta .kk-courier-cta-pill {
    width: 100%;
    justify-content: center;
  }
}








/* ============= FOOTER NOTE =================== */
#form-quote .kk-contact {
  padding: 0;
}

#form-quote .modal-content {
  background-color: transparent;
  border: none;
}

#form-quote .modal-header {
  border: none;
}

#form-quote .modal-content .btn-close {
  padding: 3%;
  background-color: #fff;
  opacity: 1;
  border-radius: 50%;
  color: #fff;
}

#form-quote .kk-contact .kk-contact-form-subtitle {
  width: 100%;
}

#form-quote .kk-contact .kk-contact-submit-btn {
  margin: 0 auto;
  display: flex;
}

.kk-paperwork-library .footnote {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.kk-paperwork-library .footnote-text {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 620px;
}

.kk-paperwork-library .footnote-text b {
  color: var(--ink);
}

.kk-paperwork-library .footnote-mono {
  font-family: "Roboto Mono", monospace;
  font-size: 11px;
  color: #a9b0c0;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ================= KK EXPRESS FOOTER — CSS ===================== */

.kk-footer {
  background-color: #102A54;
  font-family: "Montserrat", sans-serif;
  padding: 70px 0 0;
  overflow: hidden;
}

/* ---------------- BRAND / INTRO ---------------- */
.kk-footer .kk-footer-brand {
  color: #ffffff;
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.kk-footer .kk-footer-brand span {
  color: #d91d23;
}

.kk-footer .kk-footer-desc {
  color: #888885;
  line-height: 2.1;
  margin-bottom: 0;
  padding: 0 13% 0 0;
  font-size: 15px;
}

/* ---------------- COLUMN HEADINGS (shared) ---------------- */
.kk-footer .kk-footer-heading {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 22px;
}

/* ---------------- LINK LISTS ---------------- */
.kk-footer .kk-footer-links,
.kk-footer .kk-footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kk-footer .kk-footer-links li {
  margin-bottom: 8px;
}

.kk-footer .kk-footer-links a {
  color: #fff;
  font-size: 13.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.kk-footer .kk-footer-links a i {
  font-size: 12px;
  color: #d91d23;
  transition: transform 0.25s ease;
}

.kk-footer .kk-footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.kk-footer .kk-footer-links a:hover i {
  transform: translateX(2px);
}

.kk-footer .kk-footer-links a:hover {
  color: #d91d23;
}

/* .kk-footer .kk-footer-links a.kk-active-link {
  color: #D91D23;
} */

/* ---------------- CONTACT LIST ---------------- */
.kk-footer .kk-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 13.5px;
  line-height: 1.6;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.kk-footer .kk-footer-contact li i {
  color: #d91d23;
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.kk-footer .kk-footer-contact li:hover {
  color: #d91d23;
  padding-left: 4px;
}

.kk-footer .kk-footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
  font-size: 13.5px;
}

.kk-footer .kk-footer-contact a:hover {
  color: #d91d23;
}

/* ---------------- MARQUEE / SERVICE AREAS ---------------- */
.kk-footer .kk-footer-marquee {
  /* border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 56px; */
  padding: 22px 0;
  /* overflow: hidden;
  white-space: nowrap; */
}

.kk-footer .kk-marquee-track {
  /* display: inline-block;
  animation: kk-marquee-scroll 45s linear infinite; */
  line-height: 35px;
}

.kk-footer .kk-marquee-track span {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.kk-footer .kk-marquee-track span a{
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.kk-footer .kk-marquee-track span a:hover{
  color: #D91D23;
}

@keyframes kk-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------------- BOTTOM BAR ---------------- */
.kk-footer .kk-footer-bottom {
  border-top: 1px solid rgba(217, 29, 35, 0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 0;
}

.kk-footer .kk-copyright {
  color: #fff;
  font-size: 12px;
  margin: 0;
}

.kk-copyright .fa-circle {
    font-size: 4px;
    color: #eee;
    margin: 0 5px 3px 5px;
}

.kk-footer .kk-footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kk-footer .kk-footer-social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: #102a54;
  font-size: 14px;
  transition: background-color 0.25s ease;
}

.kk-footer .kk-footer-social-link:hover {
  background-color: #d91d23;
}