/* Certificates Gallery */
.certificates-section {
  background: #f9f9f9;
}
.certificate-img {
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: 2px solid #fff;
}
.certificate-img:hover {
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: #f2c406;
}
/* --- Blog View Sidebar --- */
.recent-blogs-sidebar {
  background: #fffbe6;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(202,35,37,0.06);
  border: 2px solid #f2c40622;
  padding: 1.2rem 1.2rem 1rem 1.2rem;
}
.recent-blogs-title {
  color: #ca2325;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.recent-blogs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-blogs-list li {
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
}
.recent-blog-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #222;
  gap: 0.7rem;
  transition: color 0.2s;
}
.recent-blog-link:hover .recent-blog-title {
  color: #f2c406;
  text-decoration: underline;
}
.recent-blog-img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(202,35,37,0.08);
  flex-shrink: 0;
}
.recent-blog-title {
  font-size: 1.01rem;
  font-weight: 600;
  color: #222;
  line-height: 1.2;
}
/* --- Blogs Page Styles --- */
.blogs-section {
  background: #fff;
  padding: 64px 0 48px 0;
}
.blog-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(202,35,37,0.08);
  border: 2px solid #f2c40622;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border 0.2s;
  overflow: hidden;
  height: 100%;
}
.blog-card:hover {
  box-shadow: 0 4px 24px 0 rgba(202,35,37,0.13);
  border-color: #f2c40688;
}
.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.blog-card-body {
  padding: 1.2rem 1.2rem 1rem 1.2rem;
}
.blog-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #f2c406;
  margin-bottom: 0.7rem;
}
.blog-card-desc {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 0;
}

/* Blog View Page */
.blog-view-section {
  background: #fff;
  padding: 64px 0 48px 0;
}
.blog-view-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(202,35,37,0.08);
  border: 2px solid #f2c40622;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  text-align: left;
}
.blog-view-img {
  width: 100%;
  max-width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.blog-view-title {
  color: #f2c406;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}
.blog-view-desc {
  font-size: 1.13rem;
  color: #222;
  margin-bottom: 0;
  text-align: left;
}
@media (max-width: 991px) {
  .blogs-section {
    padding: 40px 0 24px 0;
  }
  .blog-card-img {
    height: 160px;
  }
  .blog-view-section {
    padding: 32px 0 24px 0;
  }
  .blog-view-img {
    height: 180px;
  }
  .blog-view-title {
    font-size: 1.3rem;
  }
}
/* --- Openings Pagination --- */
.openings-pagination .pagination {
  margin-top: 2rem;
}
.openings-pagination .page-link {
  color: #ca2325;
  border: 1.5px solid #f2c406;
  border-radius: 6px;
  margin: 0 0.2rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.openings-pagination .page-link:hover,
.openings-pagination .page-item.active .page-link {
  background: #f2c406;
  color: #fff;
  border-color: #f2c406;
}
.openings-pagination .page-item.disabled .page-link {
  color: #bbb;
  background: #f8f9fa;
  border-color: #eee;
}
/* --- Openings Horizontal List --- */
.openings-horizontal-list {
  display: block;
}
.opening-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(202,35,37,0.08);
  border: 2px solid #f2c40622;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  margin-bottom: 0;
  transition: box-shadow 0.2s, border 0.2s;
  height: 100%;
}
@media (max-width: 991px) {
  .openings-horizontal-list .row > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.opening-card:hover {
  box-shadow: 0 4px 24px 0 rgba(202,35,37,0.13);
  border-color: #f2c40688;
}
.opening-icon {
  font-size: 2.3rem;
  color: #f2c406;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.opening-content {
  flex: 1 1 auto;
}
/* --- Careers Page Styles --- */
.careers-form-section {
  background: #f8f9fa;
  padding: 64px 0 48px 0;
}
.careers-title {
  color: #f2c406;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  font-family: 'Poppins', sans-serif;
}
.careers-desc {
  font-size: 1.13rem;
  color: #222;
  margin-bottom: 1.5rem;
}
.careers-chef-img {
  max-width: 100%;
  width: 100%;
  display: block;
  margin: 0 auto 1.5rem auto;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(202,35,37,0.08);
}
.careers-form-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(202,35,37,0.08);
  border: 2px solid #f2c40622;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
.careers-form-title {
  color: #f2c406;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-align: center;
}
.careers-form-box .form-control {
  border-radius: 8px;
  border: 1.5px solid #f2c406;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.btn-careers-submit {
  background: #fff;
  color: #ca2325;
  border: 2px solid #f2c406;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.08rem;
  width: 100%;
  padding: 0.7rem 0;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.btn-careers-submit:hover {
  background: #f2c406;
  color: #fff;
}
.openings-section {
  background: #fffbe6;
  padding: 48px 0 48px 0;
}
.openings-title {
  color: #ca2325;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.2rem;
  text-align: center;
}
.opening-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(202,35,37,0.08);
  border: 2px solid #f2c40622;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border 0.2s;
}
.opening-card:hover {
  box-shadow: 0 4px 24px 0 rgba(202,35,37,0.13);
  border-color: #f2c40688;
}
.opening-role {
  color: #f2c406;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.opening-desc {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 1.1rem;
}
.btn-opening-apply {
  background: #ca2325;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.01rem;
  padding: 0.5rem 1.2rem;
  transition: background 0.2s;
}
.btn-opening-apply:hover {
  background: #f2c406;
  color: #fff;
}
@media (max-width: 991px) {
  .careers-form-section {
    padding: 40px 0 24px 0;
  }
  .careers-title {
    font-size: 1.3rem;
  }
  .careers-chef-img {
    max-width: 100%;
    margin-top: 2rem;
  }
  .openings-section {
    padding: 32px 0 24px 0;
  }
  .openings-title {
    font-size: 1.1rem;
  }
}
/* --- Service Desc List for Service Cards Section --- */
.service-desc-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
  margin-top: 1.1rem;
}
.service-desc-list li {
  font-size: 1.13rem;
  color: #222;
  margin-bottom: 0.7rem;
  line-height: 1.7;
}
.service-desc-list li strong {
  color: #ca2325;
  font-weight: 600;
}
/* --- Service Cards Section (Grid below CTA) --- */
.service-cards-section {
  background: #fff;
  padding: 48px 0 48px 0;
}
.service-card-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(202,35,37,0.08);
  border: 2px solid #f2c40622;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 0;
  transition: box-shadow 0.2s, border 0.2s;
}
.service-card-box:hover {
  box-shadow: 0 4px 24px 0 rgba(202,35,37,0.13);
  border-color: #f2c40688;
}
.service-card-title {
  color: #f2c406;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-card-box ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
}
.service-card-box li {
  font-size: 1.07rem;
  color: #222;
  margin-bottom: 0.7rem;
  line-height: 1.7;
}
.service-card-box li strong {
  color: #ca2325;
  font-weight: 600;
}
@media (max-width: 991px) {
  .service-cards-section {
    padding: 32px 0 24px 0;
  }
  .service-card-title {
    font-size: 1.1rem;
  }
  .service-card-box {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}
/* --- Contact Page Sections --- */
.contact-section {
  padding: 64px 0 48px 0;
  background: #fff;
}
.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ca2325;
  margin-bottom: 1.1rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.contact-list li {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.contact-list i {
  color: #f2c406;
  font-size: 1.2em;
}
.contact-map iframe {
  width: 100%;
  height: 310px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(202,35,37,0.07);
}
.contact-form h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ca2325;
}
.contact-form .form-control {
  border-radius: 8px;
  border: 1.5px solid #f2c406;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.contact-form textarea.form-control {
  resize: vertical;
}
.contact-form .btn-cta {
  margin-top: 0.5rem;
}
.contact-img {
  width: 100%;
  max-width: 420px;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(202,35,37,0.08);
  margin: 0 auto;
  display: block;
}
@media (max-width: 991px) {
  .contact-section {
    padding: 40px 0 24px 0;
  }
  .contact-title {
    font-size: 1.3rem;
  }
  .contact-img {
    max-width: 100%;
    margin-top: 2rem;
  }
}
/* --- Services Page Sections --- */
.service-section {
  padding: 64px 0 48px 0;
  background: #fff;
}
.service-section.alt {
  background: #fffbe6;
}
.service-img {
  width: 100%;
  max-width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(202,35,37,0.08);
  display: block;
  margin: 0 auto 1.5rem auto;
  height: 350px;
  object-fit: cover;
}
.service-badge {
  background: #f2c406;
  color: #ca2325;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  padding: 0.4em 1em;
  margin-bottom: 0.7rem;
  display: inline-block;
  letter-spacing: 0.5px;
}
.service-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ca2325;
  margin-bottom: 0.7rem;
}
.service-desc {
  font-size: 1.13rem;
  color: #222;
  margin-bottom: 1.1rem;
}
.service-extra {
  font-size: 1.01rem;
  color: #555;
  margin-bottom: 1.1rem;
}
@media (max-width: 991px) {
  .service-section {
    padding: 40px 0 24px 0;
  }
  .service-title {
    font-size: 1.3rem;
  }
  .service-img {
    max-width: 100%;
  }
}
:root {
      --kc-primary: #ca2325;
      --kc-primary-dark: #ca2325;
      --kc-secondary: #1b2430;
      --kc-accent: #f2c406;
      --kc-light: #fff8f2;
      --kc-muted: #444444;
      --kc-dark: #050811;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", sans-serif;
      color: #222;
      scroll-behavior: smooth;
    }

    a {
      text-decoration: none;
    }

    /* Topbar */
    .topbar {
      background: #ca2325;
      color: #f5f5f5;
      font-size: 0.82rem;
      padding: 6px 0;
    }

    .topbar i {
      font-size: 0.85rem;
    }

    .topbar .social a {
      color: #f5f5f5;
      margin-left: 12px;
      opacity: 0.85;
    }

    .topbar .social a:hover {
      opacity: 1;
    }

    /* Transparent Navbar */
    .navbar {
      position: absolute;
      top: 30px;
      left: 0;
      width: 100%;
      z-index: 50;
      background: transparent;
      padding: 1rem 0;
      transition: all 0.4s ease;
    }

    .navbar-brand img {
        width: 200px;
    }

    .navbar-brand span.logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--kc-primary), var(--kc-accent));
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      color: #fff;
      font-weight: 700;
      font-size: 1.3rem;
    }

    .navbar-brand span.logo-text {
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.02em;
    }

    .navbar-scrolled {
      position: fixed;
      background: rgba(5, 8, 17, 0.9);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
      top: 0;
    }

    .navbar-nav .nav-link {
      color: #fff;
      font-weight: 500;
      font-size: 0.95rem;
      margin-left: 1.2rem;
      position: relative;
      transition: color 0.2s ease;
    }

    .navbar-nav .nav-link:hover {
      color: var(--kc-accent);
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      right: 8px;
      bottom: 0.2rem;
      width: 0;
      height: 2px;
      background: var(--kc-accent);
      transition: width 0.25s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      width: 18px;
    }

    .btn-cta {
      background: linear-gradient(135deg, var(--kc-primary), var(--kc-accent));
      color: #fff;
      border-radius: 50px;
      padding: 8px 18px;
      font-size: 0.9rem;
      font-weight: 500;
      border: none;
    }

    .btn-cta:hover {
      background: linear-gradient(135deg, var(--kc-primary-dark), var(--kc-accent));
      color: #fff;
    }

    /* Hero Swiper */
    .hero-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }

    .hero-section .swiper {
      height: 100%;
    }

    .hero-slide {
      position: relative;
      width: 100%;
      height: 100vh;
      background-size: cover;
      background-position: center;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.2));
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
      z-index: 5;
      max-width: 700px;
      padding: 0 15px;
    }

    .hero-content h1 {
      font-size: clamp(2.3rem, 5vw, 3.6rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .hero-content p {
      font-size: 1rem;
      color: #eee;
      margin-bottom: 1.5rem;
    }

    .hero-content .btn-cta {
      padding: 10px 28px;
      font-size: 1rem;
    }

    .swiper-pagination-bullet {
      background: rgba(255, 255, 255, 0.5);
    }

    .swiper-pagination-bullet-active {
      background: var(--kc-accent);
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: var(--kc-accent);
    }

    .hero-content-wrap {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .hero-kicker {
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-size: 0.78rem;
      color: var(--kc-accent);
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .hero-title {
      font-size: clamp(2.3rem, 3.5vw, 3.4rem);
      font-weight: 700;
      line-height: 1.18;
      margin-bottom: 1rem;
    }

    .hero-title span {
      color: var(--kc-accent);
    }

    .hero-subtitle {
      max-width: 540px;
      font-size: 0.95rem;
      color: #d8dde7;
    }

    .hero-tags span {
      font-size: 0.8rem;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      margin-right: 6px;
      margin-bottom: 6px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .hero-tags span i {
      font-size: 0.8rem;
      color: var(--kc-accent);
    }

    .hero-cta {
      margin-top: 1.1rem;
    }

    .hero-cta .btn-outline-light {
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 0.9rem;
    }

    .hero-stats {
      margin-top: 1.6rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
      font-size: 0.82rem;
    }

    .hero-stats strong {
      display: block;
      font-size: 1.3rem;
      font-weight: 700;
      color: #fff;
    }

    .hero-badge {
      position: absolute;
      right: 10%;
      bottom: 15%;
      z-index: 2;
      background: rgba(5, 8, 17, 0.9);
      border-radius: 18px;
      padding: 14px 18px;
      font-size: 0.75rem;
      color: #f1f1f1;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
      max-width: 230px;
    }

    .hero-badge span.badge-pill {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 999px;
      padding: 4px 10px;
      margin-bottom: 6px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 0.7rem;
    }

    .hero-badge span.badge-pill i {
      font-size: 0.75rem;
      color: var(--kc-accent);
    }

    .hero-badge strong {
      color: var(--kc-accent);
      font-size: 0.9rem;
    }

    .hero-badge small {
      display: block;
      color: #c4cad7;
      margin-top: 4px;
      line-height: 1.3;
    }

    .swiper-pagination-bullet {
      background: rgba(255, 255, 255, 0.5);
    }

    .swiper-pagination-bullet-active {
      background: var(--kc-accent);
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: var(--kc-accent);
    }

    /* Section base */
    section {
      padding: 70px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      font-weight: 700;
      font-size: 1.9rem;
      margin-bottom: 0.35rem;
    }

    .section-title p {
      max-width: 620px;
      margin: 0 auto;
      color: var(--kc-muted);
      font-size: 0.92rem;
    }

    .section-kicker {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.78rem;
      color: var(--kc-primary);
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    /* Services section pastel background */
    #services {
      background: linear-gradient(135deg, #fdf6e3 0%, #e3f6fd 100%);
      /* soft pastel gradient */
      position: relative;
      z-index: 1;
    }

    /* Services grid */
    .service-card {
      border-radius: 22px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 8px 32px 0 rgba(241, 103, 43, 0.08), 0 1.5px 8px 0 rgba(80, 180, 255, 0.08);
      border: 1.5px solid #f7e7d7;
      transition: all 0.28s cubic-bezier(.4,2,.6,1);
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 16px 40px 0 rgba(241, 103, 43, 0.13), 0 2px 12px 0 rgba(80, 180, 255, 0.13);
      border-color: #ffe5c2;
    }

    .service-card-img {
      height: 180px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .service-card-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(5, 8, 17, 0.8), transparent 60%);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .service-card-body {
      padding: 18px 18px 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card h5 {
      font-size: 1.02rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .service-card p {
      font-size: 0.86rem;
      color: var(--kc-muted);
    }

    .service-card span.badge {
      background: rgba(241, 103, 43, 0.08);
      color: var(--kc-primary-dark);
      border-radius: 999px;
      font-size: 0.7rem;
      padding: 4px 10px;
      margin-bottom: 8px;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(5, 8, 17, 0.18);
    }

    .service-card:hover .service-card-img::after {
      opacity: 1;
    }

    /* About section */
    .about-section {
      background: radial-gradient(circle at top left, #fff3e9 0, transparent 55%),
        #fff;
    }

    .about-image {
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
      min-height: 440px;
      height: 100%;
      display: flex;
      align-items: stretch;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      min-height: 440px;
      max-height: 600px;
      object-fit: cover;
      display: block;
    }

    @media (max-width: 991.98px) {
      .about-image, .about-image img {
        min-height: 280px;
        max-height: 350px;
      }
    }

    .about-tag {
      position: absolute;
      bottom: 18px;
      left: 18px;
      background: rgba(5, 8, 17, 0.9);
      color: #fff;
      padding: 10px 14px;
      border-radius: 16px;
      font-size: 0.78rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .about-tag i {
      color: var(--kc-accent);
    }

    .about-list {
      list-style: none;
      padding-left: 0;
      margin-top: 1rem;
    }

    .about-list li {
      font-size: 0.9rem;
      margin-bottom: 0.45rem;
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: var(--kc-secondary);
    }

    .about-list li i {
      color: var(--kc-primary);
      margin-top: 3px;
      font-size: 1rem;
    }

    /* Stats band */
    .stats-band {
      background: linear-gradient(135deg, #08080e 0%, #11111a 100%);
      padding: 48px 0;
      color: #fff;
      border-radius: 0px;
      margin: 48px auto 0 auto;
      max-width: 100%;
      box-shadow: 0 8px 32px rgba(30,40,90,0.18);
      position: relative;
      overflow: hidden;
    }

    .stats-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(8px);
      z-index: 0;
    }

    .stats-band .row {
      position: relative;
      z-index: 1;
    }

    .stat-item {
      background: rgba(255,255,255,0.10);
      border-radius: 18px;
      box-shadow: 0 2px 12px rgba(80,180,255,0.08);
      padding: 32px 18px 24px 18px;
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.18s, box-shadow 0.18s;
      border: 1.5px solid rgba(255,255,255,0.13);
    }

    .stat-item:hover {
      transform: translateY(-8px) scale(1.04);
      box-shadow: 0 8px 32px rgba(241,103,43,0.13), 0 2px 12px rgba(80,180,255,0.13);
      border-color: #ffc857;
    }

    .stat-item .stat-icon {
      font-size: 2.2rem;
      margin-bottom: 12px;
      color: #ffc857;
      background: rgba(255,200,87,0.13);
      border-radius: 50%;
      width: 54px;
      height: 54px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-item h3 {
      font-size: 2.1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.3rem;
    }

    .stat-item p {
      font-size: 0.92rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #ffc857;
      margin-bottom: 0;
    }

    @media (max-width: 991.98px) {
      .stats-band {
        border-radius: 18px;
        padding: 32px 0;
      }

      .stat-item {
        padding: 24px 10px 18px 10px;
      }
    }

    /* Consultant / Enquiry */
    .consult-section {
      background: linear-gradient(135deg, #fff8f2, #ffffff);
    }

    .consult-card {
      border-radius: 24px;
      padding: 26px 26px 10px;
      background: #fff;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
      height: 100%;
    }

    .consult-card h5 {
      font-size: 1rem;
      margin-bottom: 0.7rem;
      font-weight: 600;
    }

    .consult-card ul {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .consult-card ul li {
      font-size: 0.86rem;
      margin-bottom: 0.4rem;
      color: var(--kc-muted);
    }

    .consult-card ul li i {
      color: var(--kc-primary);
      margin-right: 6px;
    }

    .enquiry-form {
      border-radius: 24px;
      padding: 24px 24px 20px;
      background: #050811;
      color: #f5f5f5;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    }

    .enquiry-form .form-label {
      font-size: 0.8rem;
      color: #c2cad8;
    }

    .enquiry-form .form-control,
    .enquiry-form .form-select {
      font-size: 0.86rem;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(18, 23, 36, 0.9);
      color: #f5f5f5;
    }

    .enquiry-form .form-control:focus,
    .enquiry-form .form-select:focus {
      outline: none;
      box-shadow: none;
      border-color: var(--kc-accent);
      background: rgba(18, 23, 36, 1);
    }

    .enquiry-form small {
      font-size: 0.72rem;
      color: #b0bac9;
    }

    .btn-enquiry {
      width: 100%;
      border-radius: 999px;
      font-size: 0.9rem;
      padding: 9px 18px;
      border: none;
      font-weight: 500;
      background: linear-gradient(135deg, var(--kc-primary), var(--kc-accent));
      color: #050811;
    }

    .btn-enquiry:hover {
      background: linear-gradient(135deg, var(--kc-primary-dark), var(--kc-accent));
      color: #050811;
    }

    /* Why choose us */
    .why-section {
      background: linear-gradient(135deg, #fdf6e3 0%, #e3f6fd 100%);
      position: relative;
      padding: 80px 0 70px 0;
      overflow: hidden;
    }

    .why-section::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -120px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, #ffc85733 0%, #fff0 80%);
      z-index: 0;
    }

    .why-section::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -100px;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, #f1672b22 0%, #fff0 80%);
      z-index: 0;
    }

    .why-section .container {
      position: relative;
      z-index: 1;
    }

    .why-card {
      border-radius: 22px;
      padding: 32px 22px 28px 22px;
      background: rgba(255,255,255,0.85);
      border: 1.5px solid #ffe5c2;
      box-shadow: 0 8px 32px 0 rgba(241, 103, 43, 0.08), 0 1.5px 8px 0 rgba(80, 180, 255, 0.08);
      height: 100%;
      transition: all 0.28s cubic-bezier(.4,2,.6,1);
      position: relative;
      overflow: hidden;
    }

    .why-card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 16px 40px 0 rgba(241, 103, 43, 0.13), 0 2px 12px 0 rgba(80, 180, 255, 0.13);
      border-color: #ffc857;
      background: rgba(255,255,255,0.97);
    }

    .why-card .why-card-icon {
      font-size: 2.1rem;
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: linear-gradient(135deg, #ffc85733 0%, #f1672b22 100%);
      color: #f1672b;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      box-shadow: 0 2px 8px #ffc85722;
    }

    .why-card h5 {
      font-size: 1.08rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
      color: #1b2430;
    }

    .why-card p {
      font-size: 0.93rem;
      color: #8e9bae;
      margin-bottom: 0;
    }

    @media (max-width: 991.98px) {
      .why-section {
        padding: 55px 0 45px 0;
      }

      .why-card {
        padding: 22px 12px 18px 12px;
      }
    }

    /* Testimonials */
    .testimonials-section {
      background: linear-gradient(135deg, #050811, #181f2d);
      color: #f5f5f5;
    }

    .testimonial-card {
      border-radius: 20px;
      padding: 20px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      height: 100%;
    }

    .testimonial-card p {
      font-size: 0.9rem;
      color: #d1d8e7;
    }

    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
    }

    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      overflow: hidden;
    }

    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .testimonial-user span {
      display: block;
      font-size: 0.85rem;
      line-height: 1.2;
    }

    .testimonial-user small {
      font-size: 0.75rem;
      color: #9ca6bd;
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #181f2d 60%, #f1672b 100%);
      color: #e6eaf3;
      padding-top: 56px;
      border-radius: 0;
      box-shadow: 0 -8px 32px 0 rgba(24,31,45,0.18);
      position: relative;
      overflow: hidden;
    }
    footer::before {
      content: '';
      position: absolute;
      top: -80px;
      left: -120px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, #ffc85733 0%, #fff0 80%);
      z-index: 0;
    }
    footer::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: -100px;
      width: 260px;
      height: 260px;
      background: radial-gradient(circle, #f1672b22 0%, #fff0 80%);
      z-index: 0;
    }
    footer .container {
      position: relative;
      z-index: 1;
    }

    footer h5 {
      font-size: 1.08rem;
      margin-bottom: 1.1rem;
      font-weight: 700;
      color: #ffc857;
      letter-spacing: 0.01em;
    }

    footer ul {
      list-style: none;
      padding-left: 0;
    }

    footer ul li {
      margin-bottom: 0.45rem;
      font-size: 0.86rem;
    }

    footer ul li a {
      color: #ffffff;
      font-size: 0.93rem;
      transition: color 0.2s;
    }

    .footer-bottom {
      border-top: 1.5px solid #ffc85733;
      margin-top: 32px;
      padding: 18px 0 8px 0;
      font-size: 0.93rem;
      color: #ffe5c2;
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: center;
    }
    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
      }
    }

    .footer-logo-mark {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      background: linear-gradient(135deg, #ffc857 0%, #f1672b 100%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 14px;
      font-size: 2.1rem;
      font-weight: 700;
      box-shadow: 0 2px 12px #f1672b22;
    }
    footer .social a {
      color: #ffe5c2;
      font-size: 1.3rem;
      margin-right: 12px;
      transition: color 0.2s;
    }
    footer .social a:hover {
      color: #ffc857;
    }
    footer ul {
      background: rgba(255,255,255,0.04);
      border-radius: 14px;
      padding: 18px 18px 12px 18px;
      margin-bottom: 0;
      box-shadow: 0 2px 8px #181f2d11;
    }
    footer .col-md-4, footer .col-lg-3, footer .col-lg-5 {
      margin-bottom: 18px;
    }

    .hero-section {
      padding-top: 0;
      padding-bottom: 0;
    }

     /* Swiper for Testimonials */
    .testimonialsSwiper {
      padding-bottom: 56px;
      position: relative;
    }
    .testimonialsSwiper .swiper-pagination {
      bottom: 0 !important;
      text-align: center;
    }
    .testimonialsSwiper .swiper-pagination-bullet {
      background: #ffc857;
      opacity: 0.7;
      width: 12px;
      height: 12px;
      margin: 0 4px !important;
      transition: background 0.2s;
    }
    .testimonialsSwiper .swiper-pagination-bullet-active {
      background: #f1672b;
      opacity: 1;
    }


    .cta-section {
        min-height: 420px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url('../images/cta-bg2.jpg') center/cover no-repeat;
        position: relative;
      }
      .cta-overlay {
        position: absolute;
        inset: 0;
        background: rgba(202,35,37,0.75);
        mix-blend-mode: multiply;
        z-index: 1;
      }
      .cta-content {
        position: relative;
        z-index: 2;
        color: #fff;
      }
      .cta-title {
        font-size: 2.7rem;
        font-weight: 800;
        letter-spacing: 0.03em;
        margin-bottom: 1.2rem;
        text-shadow: 0 4px 24px #0006;
      }
      .cta-subtext {
        font-size: 1.25rem;
        margin-bottom: 2.2rem;
        font-weight: 500;
        text-shadow: 0 2px 12px #0004;
      }
      .cta-btn {
        padding: 16px 48px;
        font-size: 1.15rem;
        font-weight: 700;
        border-radius: 40px;
        background: linear-gradient(90deg,#f2c406 0%,#ca2325 100%);
        color: #fff;
        border: none;
        box-shadow: 0 8px 32px #ca232580;
        transition: transform 0.2s;
        position: relative;
        overflow: hidden;
      }
      .cta-btn:hover {
        transform: scale(1.07);
      }
      .cta-btn-text {
        position: relative;
        z-index: 2;
      }
      .cta-btn-glow {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 120%;
        height: 120%;
        background: radial-gradient(circle,#fff7 0%,#fff0 70%);
        transform: translate(-50%,-50%) scale(0);
        transition: transform 0.4s;
      }
    /* Removed arrow button styles for testimonials swiper */
    @media (max-width: 991.98px) {
      .testimonialsSwiper {
        padding-bottom: 40px;
      }
    }

    /* Responsive tweaks */
    @media (max-width: 991.98px) {
      .hero-badge {
        position: static;
        margin-top: 20px;
        max-width: 100%;
      }

      .navbar {
        background: #050811;
      }

      .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.4rem 0;
      }

      .hero-section {
        height: auto;
      }

      .hero-content-wrap {
        padding-top: 50px;
        padding-bottom: 60px;
      }

      .navbar {
        background: rgba(5, 8, 17, 0.8);
      }

      .navbar-scrolled {
        background: rgba(5, 8, 17, 0.95);
      }
    }

    @media (max-width: 575.98px) {
      .hero-title {
        font-size: 2rem;
      }

      .hero-stats {
        gap: 1.1rem;
      }

      .service-card-img {
        height: 160px;
      }

      section {
        padding: 55px 0;
      }
    }




    .sticky-buttons {
      position: fixed;
      left: 24px;
      bottom: 24px;
      z-index: 99999;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .sticky-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 4px 18px #0002;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 400;
      color: #fff;
      border: none;
      cursor: pointer;
      transition: transform 0.18s, box-shadow 0.18s;
    }
    .sticky-whatsapp {
      background: linear-gradient(135deg,#25d366 60%,#128c7e 100%);
      color: #fff;
    }
    .sticky-call {
      background: linear-gradient(135deg,#233cca 60%,#06aff2 100%);
      color: #fff;
    }
    .sticky-btn:hover {
      transform: scale(1.12);
      box-shadow: 0 8px 32px #0003;
    }
    .sticky-top {
      position: fixed;
      right: 24px;
      left: auto;
      bottom: 24px;
      background: linear-gradient(135deg,#f2c406 60%,#ca2325 100%);
      color: #fff;
      z-index: 99999;
    }
    @media (max-width: 600px) {
      .sticky-buttons { left: 12px; bottom: 12px; gap: 12px; }
      .sticky-btn, .sticky-top { width: 44px; height: 44px; font-size: 1.5rem; }
      .sticky-top { right: 12px; bottom: 12px; }
    }


    /* Offcanvas Mobile Menu Custom Styles */
    .offcanvas {
      background: #fff;
      box-shadow: 0 0 32px rgba(0,0,0,0.08);
    }
    .offcanvas-header {
      border-bottom: 1px solid #f2c406;
      background: #fffbe6;
    }
    .offcanvas-title {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      color: #ca2325;
      font-size: 1.15rem;
    }
    .offcanvas .navbar-nav .nav-link {
      font-size: 1.08rem;
      color: #222;
      padding: 0.75rem 0.5rem;
      border-radius: 6px;
      transition: background 0.2s, color 0.2s;
    }
    .offcanvas .navbar-nav .nav-link.active,
    .offcanvas .navbar-nav .nav-link:hover {
      background: #f2c406;
      color: #ca2325;
    }
    .offcanvas .btn-cta {
      background: linear-gradient(90deg, #ca2325 0%, #f2c406 100%);
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      box-shadow: 0 2px 8px rgba(202,35,37,0.08);
      padding: 0.7rem 1.2rem;
      margin-top: 1rem;
      width: 100%;
    }
    .offcanvas .btn-cta:hover {
      background: linear-gradient(90deg, #f2c406 0%, #ca2325 100%);
      color: #fff;
    }
    @media (min-width: 992px) {
      .offcanvas {
        display: none !important;
      }
    }
    .offcanvas-title img {
      width: 180px;
      min-width: 180px;
      height: 50px;
      object-fit: contain;
    }






    /* About Us */
    .breadcrumb-section {
      position: relative;
      background: url('../images/banner3.jpg') center center/cover no-repeat;
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .breadcrumb-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(120deg, rgba(20, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
      z-index: 1;
    }
    .breadcrumb-content {
      position: relative;
      z-index: 2;
      color: #fff;
      text-align: center;
      padding-top: 100px;
    }
    .breadcrumb-content h1 {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    .breadcrumb-content nav {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      font-size: 1.05rem;
    }
    .breadcrumb-content .breadcrumb-item.active {
      color: #f2c406;
    }
    .about-section {
      padding: 48px 0 32px 0;
      background: #fff;
    }
    .about-title {
      color: #f2c406;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .about-desc {
      font-size: 1.08rem;
      color: #222;
      margin-bottom: 1.5rem;
    }
    .about-img {
      max-width: 100%;
      width: 100%;
      border-radius: 1.2rem;
      box-shadow: 0 8px 32px rgba(202,35,37,0.08);
      margin: 0 auto 2rem auto;
      display: block;
    }
    .about-btn {
      background: #f2c406;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 0.7rem 1.5rem;
      font-weight: 600;
      font-size: 1.08rem;
      transition: background 0.2s;
    }
    .about-btn:hover {
      background: #ca2325;
      color: #fff;
    }
    
    @media (min-width: 768px) {
      .about-section .row {
        align-items: center;
      }
      .about-img {
        margin-bottom: 0;
      }
    }


    .vmc-section {
        background: linear-gradient(120deg, #fffbe6 60%, #f2c40611 100%);
        padding: 48px 0 60px 0;
      }
      .vmc-title {
        color: #f2c406;
        font-weight: 700;
        font-size: 2rem;
        margin-bottom: 2.2rem;
        text-align: center;
        letter-spacing: 0.5px;
        text-shadow: 0 2px 8px #fffbe6;
      }
      .vmc-card {
        background: #f8f9fa;
        border-radius: 16px;
        box-shadow: 0 4px 24px 0 rgba(202,35,37,0.07);
        border: 2.5px solid #f2c406;
        display: flex;
        flex-direction: column;
        transition: box-shadow 0.2s, transform 0.2s;
        min-height: 180px;
        position: relative;
      }
      .vmc-card-header {
        font-size: 1.2rem;
        font-weight: 700;
        padding: 0.9rem 1.2rem 0.5rem 1.2rem;
        border-radius: 16px 16px 0 0;
        color: #ca2325;
        background: #fffbe6;
        border-bottom: 2px solid #f2c406;
        letter-spacing: 0.5px;
      }
      .vision-card {
        border-color: #ca2325;
      }
      .vision-card .vmc-card-header {
        color: #fff;
        background: linear-gradient(90deg, #ca2325 60%, #f2c406 100%);
        border-bottom: 2px solid #ca2325;
      }
      .mission-card {
        border-color: #f2c406;
      }
      .mission-card .vmc-card-header {
        color: #ca2325;
        background: #fffbe6;
        border-bottom: 2px solid #f2c406;
      }
      .vmc-card-body {
        font-size: 1.08rem;
        color: #222;
        padding: 1rem 1.2rem 1.2rem 1.2rem;
        flex: 1 1 auto;
        display: flex;
        align-items: center;
      }
      .core-values-trendy {
        background: #fffde7;
        border: 2.5px solid #f2c406;
        border-radius: 16px;
        padding: 1.5rem 1.5rem 1.2rem 1.5rem;
        box-shadow: 0 4px 24px 0 rgba(202,35,37,0.07);
        margin-top: 1.5rem;
      }
      .core-values-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #ca2325;
        margin-bottom: 0.7rem;
      }
      .core-values-trendy ul {
        margin: 0;
        padding-left: 1.2rem;
      }
      .core-values-trendy li {
        margin-bottom: 0.5rem;
        font-size: 1.08rem;
        line-height: 1.7;
      }
      .cv-key {
        font-weight: 700;
        margin-right: 0.3em;
        font-family: inherit;
        display: inline-block;
      }
      .cv-excellence { color: #ca2325; }
      .cv-integrity { color: #d35400; }
      .cv-innovation { color: #f2c406; }
      .cv-teamwork { color: #1abc9c; }
      @media (max-width: 767px) {
        .vmc-title { font-size: 1.3rem; }
        .vmc-card-header { font-size: 1rem; }
        .vmc-card-body { font-size: 0.98rem; }
        .core-values-trendy { padding: 1.1rem 0.7rem 1rem 0.7rem; }
      }
      .contact-img1 {
        border-radius: 16px;
        margin-bottom: 20px;
      }