@import url("https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #ed8b28;
  --heading-font: "Host Grotesk", sans-serif;
  --body-font: "Inter Tight", sans-serif;
}
body {
  margin: 0;
  font-family: var(--body-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  text-transform: uppercase;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 999;
  padding: 20px 0;
}

.navbar .container {
  padding: 10px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
  color: #fff !important;
  font-size: 13px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-link.language {
  border: 1px solid #fff;
  padding: 5px 10px;
  border-radius: 50px;
}

.nav-link:hover {
  color: #f97316 !important;
}

.logo img {
  width: 140px;
  height: 24px;
}

.btn.contact-btn {
  background: #fff;
  border-radius: 30px;
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn.contact-btn:hover {
  border: 1px solid #fff;
  color: #fff;
}
/* ================= HERO ================= */

.hero {
  background: url("../image/hero-bg.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 0px 120px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.2)
  );
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 650px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
}

.hero h1 span {
  font-weight: 800;
}

.hero p {
  color: #ccc;
  margin: 20px 0;
}

.btn.hero-btn {
  background: #000;
  border-radius: 30px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: max-content;
}

.btn.hero-btn:hover {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.hero-stats {
  position: absolute;
  bottom: 30px;
  right: 0px;
  gap: 20px;
  color: #fff;
  display: flex;
  border-top: 1px solid #fff;
  padding: 15px 120px 0 0;
}
.hero-stats .stat {
  border-right: 1px solid #fff;
  padding: 0px 20px 0 0;
}

.hero-stats h4 {
  color: #fff;
  font-size: 24px;
  margin: 0;
}
.hero-stats h4 span {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
}

.hero-stats span {
  font-size: 18px;
  color: #fff;
}

.offcanvas {
  background: #000;
}

.offcanvas .nav-link {
  color: #fff !important;
  padding: 10px 0;
}

.label {
  display: inline-block;
  position: relative;
  padding-left: 15px;
  font-size: 20px !important;
  color: #000 !important;
}

.label:before {
  content: "";
  position: absolute;
  height: 7px;
  width: 7px;
  display: block;
  background: var(--primary-color);
  border-radius: 50%;
  left: 0;
  top: 12px;
}

.about-text {
  font-size: 28px;
  font-weight: 600;
}

.about-wrapper {
  position: relative;
}

/* IMAGE */
.about-img {
  position: absolute;
  left: -50px;
  top: -60px;
  z-index: 5;
}

.about-img img {
  width: 430px;
  height: 630px;
  display: block;
  clip-path: polygon(100% 0, 100% 85%, 0 100%, 0 15%);
}

/* ORANGE BOX */
.orange-box {
  background: var(--primary-color);
  clip-path: polygon(100% 0, 100% 75%, 0 100%, 0 25%);
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

/* TEXT */
.about-highlight {
  font-size: 50px;
  color: #fff;
  font-weight: 600;
}

.about-section .container {
  border-left: 1px solid #88888b;
  border-right: 1px solid #88888b;
  padding-top: 60px;
  max-width: 1300px;
}
.about-section:before {
  content: "";
  position: absolute;
  background: #fff;
  height: 153px;
  width: 100%;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #88888b;
  bottom: 76px;
  left: 0;
  z-index: 2;
  transform: rotate(-6.7deg);
}
.line-top {
  top: 47%;
  z-index: -1;
  transform: rotate(-6.9deg);
}

.services-section {
  padding: 80px 0 0;
}

/* card */
.page-template-front-page .service-card {
  padding: 40px;
  background: #f5f5f5;
  transition: 0.4s;
  height: 100%;
  color: #000;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 500px;
  border-radius: 0;
}
.page-template-front-page .service-card:hover {
  transform: none;
}

.number {
  font-size: 18px;
}

.icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  font-size: 30px;
}
.icon img {
  width: 40px !important;
  height: 40px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  max-width: 70%;
  flex: 1;
}

.service-card p {
  font-size: 18px;
  color: #585656;
  flex: 1;
  border-bottom: 1px solid #9d9d9d;
}

.btn-read {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 15px;
  background: #000;
  color: #fff;
  border-radius: 20px;
  font-size: 16px;
  width: max-content;
  text-decoration: none;
}

.owl-item:hover .service-card {
  background: #111;
  color: #fff;
}

.owl-item:hover .icon {
  background: #f97316;
  color: #000;
}

.owl-item:hover .btn-read {
  background: #fff;
  color: #000;
}

.service-slider .owl-nav {
  display: flex !important;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 45%;
}

.service-slider .owl-nav button {
  position: absolute;
  background: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid #000 !important;
}

.service-slider .owl-nav .owl-prev {
  left: 0px;
}

.service-slider .owl-nav .owl-next {
  right: 0px;
}

.work-section {
  background: url(../image/work-img.png) center/cover no-repeat;
}

.work-content {
  padding: 100px 80px;
  color: #fff;
  background: linear-gradient(to right, #000 70%, rgba(0, 0, 0, 0.6));
  height: 100%;
}

.work-content h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
  margin: 20px 0;
}

.work-text {
  font-size: 16px;
  color: #585656;
  max-width: 500px;
  margin-bottom: 30px;
}

.section-title {
  font-size: 68px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.study-content p {
  font-size: 18px;
  color: #585656;
}
.study-content {
  padding: 80px 60px;
  background: #f5f5f5;
  height: 100%;
}

.study-img {
  padding-right: 0 !important;
}
.case-studies img {
  width: 100%;
  margin-top: 80px;
  object-fit: cover;
}
.case-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding: 15px;
  background: #000;
}
.case-card img {
  width: 180px !important;
  height: 230px;
  margin: 0;
  border-radius: 9px;
  object-fit: cover;
}
.case-card h3 {
  font-size: 20px;
  color: #fff;
}
.case-card p {
  color: #585656;
  margin: 15px 0px;
}

.case-slider .owl-nav {
  display: flex !important;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
}

.case-slider .owl-nav button {
  color: #000 !important;
  position: absolute;
  border: 1px solid #000;
  background: #fff !important;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.case-slider .owl-nav .owl-prev {
  left: 0;
}

.case-slider .owl-nav .owl-next {
  right: 0;
}

.testimonial-section {
  padding: 80px 0;
}

.testimonial-card {
  background: #fff;
  padding: 40px;
  min-height: 250px;
}

.testimonial-tabs ul {
  list-style: none;
  padding: 0;
}

.testimonial-tabs li {
  cursor: pointer;
  padding: 8px 0;
  color: #565656;
  font-size: 18px;
  font-weight: bold;
}
.testimonial-tabs .nav-link {
  color: #565656 !important;
  text-align: left;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--body-font);
}
.testimonial-tabs .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.testimonial-slider .item {
  background: url(../image/testimonial-bg.png) center / cover no-repeat;
  padding: 50px;
}

.test-card {
  background: #fff;
  padding: 40px;
  font-size: 22px;
  color: #565656;
  height: 450px;
}
.test-card .content {
  padding-bottom: 30px;
  border-bottom: 1px solid #565656;
}

p.name {
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
p.designation {
  font-size: 16px;
  color: #565656;
}
.test-card img {
  width: 65px !important;
  height: 65px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonial-slider .owl-dots {
  display: flex !important;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
  gap: 6px;
}
button.owl-dot {
  height: 7px;
  width: 7px;
  background: #d9d9d9 !important;
  border-radius: 50%;
}

button.owl-dot.active {
  height: 7px;
  width: 7px;
  background: #000 !important;
  border-radius: 50%;
}

.testimonial-tabs {
  padding-left: 20px !important;
  border-left: 1px solid #d9d9d9;
}

.blog-section {
  background: #ed8b28;
  padding: 60px 0;
  text-align: center;
}
.blog-section .label::before {
  background: #000;
}
.blog-card {
  text-align: left;
}

.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.blog-card h5 a {
  margin: 20px 0 10px;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: capitalize;
  font-family: var(--body-font);
  text-decoration: none;
  color: #000;
}

.blog-btn {
  background: #000;
  color: #fff;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 14px;
  text-decoration: none;
}
.blog-btn:hover {
  border: 1px solid #000;
  color: #000;
  background: transparent;
}

.work-content .label {
  color: #fff !important;
}

.newsletter-section {
  padding: 60px 0;
}

.newsletter-title {
  font-size: 60px;
  font-weight: 600;
  margin: 10px 0;
}

.newsletter-text {
  font-size: 22px;
  color: #565656;
}

.newsletter-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: #000;
}

.newsletter-form input::placeholder {
  color: #aaa;
  font-size: 32px;
}

.footer {
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 60px 0px;
}

.custom-line {
  position: relative;
  height: 3px;
  background: #585656;
  width: 100%;
  margin-top: 20px;
}

.custom-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  width: 86%;
  height: 3px;
  background: var(--primary-color);
}
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  position: relative;
  padding-left: 12px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-menu li:before {
  content: "\f061";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  transform: rotate(45deg);
}
.footer-menu a {
  color: #fff;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #fff;
}

/* CTA */
.footer-cta {
  padding: 40px 0;
}

.cta-text {
  font-size: 18px;
}

.cta-text span {
  color: #f97316;
}

.footer-contact p {
  margin: 0;
  color: #fff;
  font-size: 18px;
}
/* BOTTOM */
.footer-bottom {
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
/* BIG TEXT */
.footer-bg-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 160px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}

.footer-social {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.footer-social a {
  background: #222;
  padding: 6px 14px;
  border-radius: 20px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.footer-social a:hover {
  background: #f97316;
}

.copyright {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  margin: 0;
}

.footer-bg-text {
  position: absolute;
  bottom: -110px;
  left: 0;
  width: 100%;
  font-size: 23rem;
  color: rgb(255 255 255 / 11%);
  white-space: nowrap;
  line-height: 1;
  text-align: center;
}
.footer .logo img {
  width: 120px;
  height: 20px;
}

section.breadcrum-sec {
  padding: 150px 0px 120px;
  background: #000;
  color: #fff;
}

.page-title {
  font-size: 18px;
  text-transform: uppercase;
}

.page-desc {
  font-size: 50px;
  max-width: 650px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.breadcrum-nav,
.breadcrum-nav a {
  font-size: 18px;
  color: #9d9d9d;
  text-transform: uppercase;
  text-decoration: none;
}

.img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.img-wrapper::after {
  content: "";
  background: url(../image/breadcrum-img-bg.png) center / contain no-repeat;
  position: absolute;
  top: 0;
  right: 0px;
  width: 100%;
  height: 300px;
  z-index: 1;
}
.img-wrapper .breadcrum-img {
  width: 260px;
  border-radius: 53px;
  position: relative;
  z-index: 3;
  left: -25px;
}

img.breadcrum-img-bg {
  position: absolute;
  left: 0;
  height: 100%;
  z-index: 1;
}

.counter-section {
  background: #f5f5f5;
  border-bottom: 1px solid #585656;
}

.counter-box {
  border-right: 1px solid #585656;
  padding: 20px;
}

.counter-box:last-child {
  border-right: none;
}

.counter {
  font-size: 54px;
  font-weight: 700;
  font-family: var(--body-font);
  color: #8b8b8b;
}

.counter-box p {
  font-size: 20px;
  color: #000;
}

.about-intro {
  padding: 60px 0;
}

.intro-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
}

.intro-text {
  color: #989898;
  font-size: 32px;
  max-width: 700px;
  margin-top: 20px;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-section {
  padding: 60px 0;
}

.features-section .container {
  max-width: 1100px;
}

.feature-item {
  text-align: center;
  margin-top: 30px;
}

.feature-item .icon {
  width: 80px;
  height: 80px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-item .icon img {
  width: 30px;
}

.feature-item p {
  font-size: 18px;
  color: #585656;
  max-width: 224px;
  margin: 0 auto;
}

.client-section {
  overflow: hidden;
  color: #fff;
}

.client-content .label {
  color: #fff !important;
}
.client-img {
  height: 100%;
}
.client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-content {
  background: #000;
  color: #fff;
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.client-text {
  color: #fff;
  font-size: 20px;
  max-width: 500px;
}

.mission-section {
  padding: 60px 0;
}

.mission-text {
  color: #585656;
  font-size: 20px;
}
.mission-btn {
  margin-top: 20px;
  background: #000;
  color: #fff;
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 16px;
}

.mission-btn:hover {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}
.mission-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1300px) {
  .hero h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 42px;
  }
  .intro-title {
    font-size: 38px;
  }

  .intro-text {
    color: #989898;
    font-size: 24px;
  }

  .line {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #88888b;
    bottom: 76px;
    left: 0;
    z-index: 2;
    transform: rotate(-7.8deg);
  }
  .line-top {
    top: 49.6%;
    z-index: -1;
    transform: rotate(-6.9deg);
  }
  .about-section .container {
    border-left: 1px solid #88888b;
    border-right: 1px solid #88888b;
    padding-top: 60px;
    max-width: 1100px;
  }
}

/* ================= SINGLE BLOG ================= */

.single-blog-section {
  padding: 120px 0;
  background: #fff;
}

.single-blog-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Featured Image */

.single-blog-image {
  margin-bottom: 40px;
}

.single-blog-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Meta */

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Title */

.single-blog-title {
  font-size: 58px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Content */

.single-blog-content {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
}

.single-blog-content p {
  margin-bottom: 25px;
}

.single-blog-content h2,
.single-blog-content h3,
.single-blog-content h4 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #111;
}

.single-blog-content img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
}

.single-blog-content ul,
.single-blog-content ol {
  padding-left: 20px;
  margin-bottom: 25px;
}

.single-blog-content a {
  color: #f26522;
  text-decoration: none;
}

.single-blog-content a:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .single-blog-section {
    padding: 80px 0;
  }

  .single-blog-title {
    font-size: 42px;
  }

  .single-blog-content {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .single-blog-title {
    font-size: 32px;
  }

  .blog-meta {
    flex-direction: column;
    gap: 10px;
  }
}

/* ================= NEWSLETTER ================= */

.newsletter-section {
  padding: 120px 0;
  background: #fff;
}

.newsletter-section .label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f26522;
  margin-bottom: 20px;
}

.newsletter-section .section-title {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: #111;
}

.newsletter-text {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

/* ================= NOPTIN FORM ================= */

.newsletter-form form {
  width: 100%;
}

.newsletter-form .noptin-form-fields-wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid #111;
  background: transparent;
  padding: 0;
  font-size: 16px;
  color: #111;
  outline: none;
}

.newsletter-form .noptin-field-email,
.newsletter-form .noptin-field-first_name {
  flex: 1;
}

.newsletter-form button,
.newsletter-form input[type="submit"] {
  height: 55px;
  padding: 0 35px;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: 0.3s ease;
}

.newsletter-form button:hover,
.newsletter-form input[type="submit"]:hover {
  background: #f26522;
  border-color: #f26522;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .newsletter-section {
    padding: 80px 0;
  }

  .newsletter-section .section-title {
    font-size: 42px;
  }

  .newsletter-form .noptin-form-fields-wrap {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .newsletter-section .section-title {
    font-size: 34px;
  }
}

/* =====================================
   LOYALTY PROGRAM PAGE
===================================== */

:root {
  --primary: #f26522;
  --dark: #0f1720;
  --dark-2: #1c2430;
  --light: #f8f8f8;
  --text: #6b7280;
}

body {
  font-family: "Inter", sans-serif;
  color: #222;
  overflow-x: hidden;
}

/* =====================================
   COMMON
===================================== */

.section-space {
  padding: 120px 0;
}

.label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

h2 {
  font-size: 60px;
  line-height: 1.05;
  margin-bottom: 25px;
}

p {
  color: var(--text);
  line-height: 1.8;
}

.btn {
  border-radius: 60px;
  padding: 15px 35px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn,
.btn-primary-custom {
  background: var(--primary) !important;
  border: none;
  color: #fff;
}

.hero-btn:hover,
.btn-primary-custom:hover {
  background: #d95011;
  color: #fff;
}

.btn-outline-custom {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline-custom:hover {
  background: #fff;
  color: #000;
}

/* =====================================
   HERO
===================================== */

.loyalty-hero {
  position: relative;
  /* min-height: 100vh; */
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)),
    url(https://teamupcorp.ezmarketingtech.com/wp-content/uploads/2026/06/inner-bg.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 0px;
}

.loyalty-hero .section-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 30px;
  margin-bottom: 25px;
  font-size: 13px;
  letter-spacing: 1px;
}

.loyalty-hero h1 {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 25px;
}

.loyalty-hero p {
  color: #e5e5e5;
  max-width: 650px;
  font-size: 20px;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

/* =====================================
   CHARTER
===================================== */

.charter-section {
  padding: 120px 0;
  background: #fff;
}

.charter-box {
  margin-top: 40px;
}

.charter-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 35px;
}

.charter-item span {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

/* =====================================
   BENEFITS
===================================== */

.loyalty-benefits {
  background: #f8f9fb;
  padding: 120px 0;
}

.benefit-card {
  background: #fff;
  padding: 40px 30px;
  height: 100%;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card h4 {
  margin-bottom: 15px;
  font-size: 22px;
}

/* =====================================
   EDUCATION
===================================== */

.education-section {
  padding: 120px 0;
}

.education-section img {
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.education-section ul {
  padding-left: 0;
  margin-top: 30px;
}

.education-section li {
  list-style: none;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.education-section li:before {
  content: "✓";
  color: var(--primary);
  margin-right: 12px;
}

/* =====================================
   GAMIFICATION
===================================== */

.gamification-section {
  background: var(--dark);
  color: #fff;
  padding: 120px 0;
}

.gamification-section p {
  color: #d1d5db;
}
.gamification-section .label {
  color: var(--primary-color) !important;
}
.game-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 60px 20px;
  text-align: center;
  transition: 0.4s;
  font-size: 20px;
  font-weight: 600;
}

.game-card:hover {
  transform: translateY(-10px);
  background: var(--primary);
}

/* =====================================
   COMMUNITY
===================================== */

.community-section {
  padding: 120px 0;
  background: #fff;
}

.impact-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: 0.4s;
}

.impact-card:hover {
  transform: translateY(-10px);
}

.impact-card h4 {
  margin-bottom: 20px;
}

/* =====================================
   COUNTER
===================================== */

.counter-section {
  background: var(--primary);
  color: #fff;
  padding: 100px 0;
}

.counter-section h2 {
  font-size: 70px;
  margin-bottom: 10px;
  color: #fff;
}

.counter-section p {
  color: #fff;
  margin: 0;
  opacity: 0.9;
}

/* =====================================
   CTA
===================================== */

.cta-section {
  padding: 140px 0;
  background:
    linear-gradient(rgba(15, 23, 32, 0.85), rgba(15, 23, 32, 0.9)),
    url("../image/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  max-width: 900px;
  margin: auto;
}

.cta-section p {
  color: #ddd;
  max-width: 700px;
  margin: 25px auto 40px;
}

/* =====================================
   CONTACT
===================================== */

.contact-section {
  padding: 100px 0;
  background: #f8f9fb;
}

.contact-box {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.contact-box h3 {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-box p {
  margin-bottom: 10px;
}

/* =====================================
   ANIMATIONS
===================================== */

.benefit-card,
.game-card,
.impact-card {
  will-change: transform;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

.education-section img {
  animation: float 5s ease-in-out infinite;
}
/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1260px) {
  .loyalty-hero h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 48px;
  }
  .work-content h2 {
    font-size: 30px;
  }
  .work-content h2 br,
  .section-title br {
    display: none;
  }
}

@media (max-width: 991px) {
  .section-space,
  .charter-section,
  .education-section,
  .community-section,
  .gamification-section,
  .loyalty-benefits {
    padding: 80px 0;
  }

  .loyalty-hero h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 42px;
  }

  .education-section .col-lg-6:first-child {
    margin-bottom: 40px;
  }

  .impact-card,
  .benefit-card {
    margin-bottom: 30px;
  }

  section.testimonial-section .row {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .about-img {
    position: relative;
    left: 0px;
    top: 0px;
    z-index: 5;
  }
  .about-img img {
    max-width: 60%;
    margin: 0 auto;
  }
  .orange-box {
    clip-path: none;
    padding: 50px;
  }
  .about-highlight br {
    display: none;
  }
  .about-highlight {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
  }
  .education-section img {
    animation: float 5s ease-in-out infinite;
    margin: 0 auto;
    width: 100%;
    max-width: 60% !important;
    display: block;
  }
}

@media (max-width: 767px) {
  .loyalty-hero h1 {
    font-size: 28px;
  }
  .loyalty-hero {
    padding: 60px 0;
  }
  .education-section img {
    max-width: 100% !important;
  }
  h2 {
    font-size: 34px;
  }

  .counter-section h2 {
    font-size: 45px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ==========================================
   ORGANIZATIONAL STRATEGY PAGE
========================================== */

:root {
  --primary: #f26522;
  --dark: #111827;
  --text: #6b7280;
  --light: #f8f9fa;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
}

p {
  color: var(--text);
  line-height: 1.9;
  font-size: 17px;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================
   HERO SECTION
========================================== */

.strategy-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.strategy-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(242, 101, 34, 0.08);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.strategy-hero .section-label {
  color: #fff;
  opacity: 0.8;
}

.strategy-hero .hero-title {
  color: #fff;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero-text {
  color: #d1d5db;
  font-size: 20px;
  max-width: 650px;
}

.strategy-hero img {
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

/* ==========================================
   CONTENT SECTION
========================================== */

.strategy-content {
  padding: 120px 0;
}

.content-box {
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.content-box p {
  margin-bottom: 25px;
}

/* ==========================================
   SERVICES SECTION
========================================== */

.growth-services {
  padding: 120px 0;
  background: #f9fafb;
}

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  height: 100%;
  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-top: 4px solid var(--primary);
}

.service-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.service-card p {
  margin: 0;
}

/* ==========================================
   WORKFORCE SECTION
========================================== */

.workforce-section {
  padding: 120px 0;
}

.workforce-section img {
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.workforce-section p {
  margin-bottom: 20px;
}

/* ==========================================
   CTA SECTION
========================================== */

.strategy-cta {
  padding: 140px 0;
  background: linear-gradient(135deg, #f26522 0%, #ff7a2c 100%);
  text-align: center;
}

.strategy-cta h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 20px;
}

.strategy-cta p {
  color: #fff;
  opacity: 0.9;
  font-size: 18px;
  margin-bottom: 35px;
}

.strategy-cta .btn {
  padding: 18px 45px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 60px;
  background: #fff;
  color: var(--primary);
  border: none;
  transition: 0.3s;
}

.strategy-cta .btn:hover {
  transform: translateY(-3px);
}

/* ==========================================
   ANIMATIONS
========================================== */

.service-card,
.content-box,
.workforce-section img {
  transition: 0.4s ease;
}

.workforce-section img:hover {
  transform: scale(1.03);
}

.content-box:hover {
  transform: translateY(-5px);
}
.noptin-form-fields {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.noptin-form-footer
  .noptin-optin-field-wrapper:not(.noptin-optin-field-wrapper-hidden) {
  width: 40% !important;
}
.noptin-form-field-wrapper.noptin-form-field-submit.noptin-optin-field-wrapper.noptin-optin-field-submit {
  width: 20% !important;
}
/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 60px;
  }

  .section-title {
    font-size: 48px;
  }

  .noptin-form-footer
    .noptin-optin-field-wrapper:not(.noptin-optin-field-wrapper-hidden) {
    width: 35% !important;
  }
  .noptin-form-field-wrapper.noptin-form-field-submit.noptin-optin-field-wrapper.noptin-optin-field-submit {
    width: 25% !important;
  }
}

@media (max-width: 991px) {
  .strategy-hero,
  .strategy-content,
  .growth-services,
  .workforce-section {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 40px;
  }

  .strategy-hero img {
    margin-top: 40px;
  }

  .content-box {
    padding: 40px;
  }

  .service-card {
    margin-bottom: 25px;
  }

  .workforce-section img {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 38px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .content-box {
    padding: 30px;
  }

  .strategy-cta h2 {
    font-size: 36px;
  }

  .strategy-cta {
    padding: 80px 20px;
  }
}

/* ==========================================
   KNOWLEDGE PLATFORM PAGE
========================================== */

:root {
  --primary: #f26522;
  --dark: #0f172a;
  --dark2: #1e293b;
  --light: #f8fafc;
  --text: #64748b;
}

body {
  overflow-x: hidden;
}

/* ==========================================
   COMMON
========================================== */

.section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 25px;
}

p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================
   HERO
========================================== */

.knowledge-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.knowledge-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(242, 101, 34, 0.08);
  top: -150px;
  right: -150px;
}

.knowledge-hero .hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 25px;
}

.hero-text {
  color: #d1d5db;
  font-size: 20px;
}

.knowledge-hero img {
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  object-fit: cover;
}

/* ==========================================
   OPINIO SECTION
========================================== */

.opinio-section {
  padding: 120px 0;
  background: #fff;
}

.opinio-section p {
  margin-bottom: 20px;
}

/* ==========================================
   KNOWLEDGE AREAS
========================================== */

.knowledge-areas {
  padding: 120px 0;
  background: #f8fafc;
}

.knowledge-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 25px;
  height: 100%;
  transition: 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.knowledge-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--primary);
}

.knowledge-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: var(--dark);
}

/* ==========================================
   CONTENT SOURCES
========================================== */

.content-sources {
  padding: 120px 0;
  background: #fff;
}

.content-sources img {
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.source-list {
  padding: 0;
  margin: 0;
}

.source-list li {
  list-style: none;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 500;
  color: var(--dark);
}

.source-list li:before {
  content: "✓";
  color: var(--primary);
  margin-right: 10px;
  font-weight: bold;
}

/* ==========================================
   VIDEO LEARNING
========================================== */

.video-learning {
  padding: 120px 0;
  background: var(--dark);
}

.video-learning .section-title {
  color: #fff;
}

.video-card {
  background: var(--dark2);
  padding: 50px 30px;
  border-radius: 25px;
  height: 100%;
  transition: 0.4s ease;
}

.video-card:hover {
  transform: translateY(-10px);
  background: var(--primary);
}

.video-card h4 {
  color: #fff;
  margin-bottom: 15px;
}

.video-card p {
  color: #d1d5db;
  margin: 0;
}

/* ==========================================
   BENEFITS
========================================== */

.knowledge-benefits {
  padding: 120px 0;
  background: #fff;
}

.benefit-box {
  background: #fff;
  padding: 45px 35px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.4s ease;
}

.benefit-box:hover {
  transform: translateY(-10px);
}

.benefit-box h4 {
  font-size: 30px;
  margin-bottom: 15px;
  color: var(--primary);
  font-weight: 700;
}

/* ==========================================
   CTA
========================================== */

.knowledge-cta {
  padding: 140px 0;
  background: linear-gradient(135deg, #f26522 0%, #ff7b31 100%);
  text-align: center;
}

.knowledge-cta h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 25px;
}

.knowledge-cta p {
  color: #fff;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 35px;
}

.knowledge-cta .hero-btn {
  background: #fff !important ;
  color: var(--primary);
  border: none;
  padding: 16px 40px;
  border-radius: 60px;
  font-weight: 700;
  transition: 0.3s;
}

.knowledge-cta .hero-btn:hover {
  transform: translateY(-3px);
}

/* ==========================================
   HOVER EFFECTS
========================================== */

.knowledge-card,
.video-card,
.benefit-box {
  will-change: transform;
}

.content-sources img,
.knowledge-hero img {
  transition: 0.4s ease;
}

.content-sources img:hover,
.knowledge-hero img:hover {
  transform: scale(1.03);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 60px;
  }

  .section-title {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .knowledge-hero,
  .opinio-section,
  .knowledge-areas,
  .content-sources,
  .video-learning,
  .knowledge-benefits {
    padding: 80px 0;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 40px;
  }

  .knowledge-hero img {
    margin-top: 40px;
  }

  .knowledge-card,
  .video-card,
  .benefit-box {
    margin-bottom: 30px;
  }

  .content-sources img {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 38px;
  }

  .section-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .knowledge-cta {
    padding: 90px 20px;
  }

  .knowledge-cta h2 {
    font-size: 36px;
  }
}

/* =====================================
   CONTACT HERO
===================================== */

.contact-hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-title {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
}

.hero-text {
  color: #d1d5db;
  max-width: 700px;
}

/* =====================================
   CONTACT MAIN
===================================== */

.contact-main {
  padding: 120px 0;
}

.contact-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper {
  padding-left: 50px;
}

.contact-form-wrapper h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

/* =====================================
   CONTACT FORM 7
===================================== */

.wpcf7-form-control {
  width: 100%;
}

.contact-form-wrapper .form-control {
  border: none;
  border-bottom: 2px solid #e5e7eb;
  border-radius: 0;
  padding: 18px 0;
  font-size: 16px;
  box-shadow: none;
}

.contact-form-wrapper .form-control:focus {
  border-color: #f26522;
  box-shadow: none;
}

.contact-submit {
  background: #f26522;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 60px;
  transition: 0.3s;
}

.contact-submit:hover {
  background: #d95011;
  color: #fff;
}

/* =====================================
   INFO SECTION
===================================== */

.contact-info {
  padding: 80px 0;
  background: #f8fafc;
}

.info-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.info-card h4 {
  color: #f26522;
  margin-bottom: 15px;
}

.info-card p {
  margin: 0;
}

/* =====================================
   CTA
===================================== */

.contact-cta {
  padding: 120px 0;
  background: #f26522;
  text-align: center;
}

.contact-cta h2 {
  color: #fff;
  font-size: 56px;
  margin-bottom: 20px;
}

.contact-cta p {
  color: #fff;
  opacity: 0.9;
  margin-bottom: 35px;
}

.contact-btn {
  background: #fff;
  color: #f26522;
  padding: 16px 40px;
  border-radius: 60px;
  font-weight: 700;
}

.contact-btn:hover {
  background: #fff;
  color: #f26522;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {
  .contact-form-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }

  .hero-title {
    font-size: 48px;
  }

  .contact-form-wrapper h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 36px;
  }

  .contact-cta h2 {
    font-size: 32px;
  }
}

/* ==========================
   HEADER
========================== */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
}

.header .navbar {
  padding: 0;
}

.header .container {
  max-width: 1400px;
  position: relative;
  min-height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
  gap: 15px;
}

/* ==========================
   WORDPRESS MENUS
========================== */

.header .navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 70px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .navbar-nav li {
  list-style: none;
}

.header .navbar-nav li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: 0.3s;
  line-height: 1.6;
}

.header .navbar-nav li a:hover,
.header .navbar-nav .current-menu-item > a,
.header .navbar-nav .current_page_item > a {
  color: #ed8b28;
}

/* ==========================
   CENTER LOGO
========================== */

.navbar-brand.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  z-index: 10;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  width: 150px;
  height: auto;
  display: block;
}

/* ==========================
   LANGUAGE
========================== */

.language {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 5px 12px !important;
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.language:hover {
  background: #fff;
  color: #000 !important;
}

/* ==========================
   CONTACT BUTTON
========================== */

.contact-btn {
  background: #fff;
  color: #000;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #fff;
}

.contact-btn:hover {
  background: transparent;
  color: #fff;
}

/* ==========================
   MOBILE
========================== */

.navbar-toggler {
  color: #fff;
  font-size: 22px;
}

.offcanvas {
  background: #000;
}

.offcanvas .navbar-nav {
  flex-direction: column;
  gap: 10px;
}

.offcanvas .navbar-nav li a {
  color: #fff;
  display: block;
  padding: 10px 0;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1200px) {
  .header .navbar-nav {
    gap: 18px;
  }

  .header .navbar-nav li a {
    font-size: 12px;
  }

  .custom-logo {
    width: 130px;
  }
}

@media (max-width: 991px) {
  .navbar-brand.logo {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .header .container {
    border-bottom: none;
  }

  .header-left,
  .header-right {
    display: none !important;
  }

  .custom-logo {
    width: 140px;
  }
}

/* ==================================
   HEADER
================================== */

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 10px;
}

.header .navbar {
  padding: 0;
}

.header .container {
  position: relative;
  max-width: 1400px;
  min-height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header-left {
  justify-content: flex-start;
}

.header-right {
  justify-content: flex-end;
  gap: 15px;
}

/* ==================================
   WORDPRESS MENUS
================================== */

.header .navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
}

.header .navbar-nav li {
  list-style: none;
  margin: 0;
}

.header .navbar-nav li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.4;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header .navbar-nav li a:hover,
.header .navbar-nav .current-menu-item > a,
.header .navbar-nav .current_page_item > a {
  color: #ed8b28;
}

/* ==================================
   CENTER LOGO
================================== */

.navbar-brand.logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  text-align: center;
  margin: 0;
  padding: 0;
  z-index: 20;
}

.custom-logo-link {
  display: inline-block;
}

.custom-logo {
  max-width: 190px;
  width: 100%;
  height: auto;
  display: block;
}

/* ==================================
   LANGUAGE
================================== */

/* .language {
    color: #fff !important;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.8);
    border-radius: 40px;
    padding: 8px 16px !important;
    font-size: 13px;
    transition: all .3s ease;
}

.language:hover {
    background: #fff;
    color: #000 !important;
} */

/* ==================================
   CONTACT BUTTON
================================== */

.contact-btn {
  background: #fff;
  color: #000;
  border-radius: 40px;
  padding: 10px 22px;
  border: 1px solid #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: transparent;
  color: #fff;
}

/* ==================================
   MOBILE TOGGLE
================================== */

.navbar-toggler {
  color: #fff;
  font-size: 22px;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ==================================
   OFFCANVAS
================================== */

.offcanvas {
  background: #0f172a;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
  color: #fff;
}

.offcanvas .navbar-nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.offcanvas .navbar-nav li {
  width: 100%;
}

.offcanvas .navbar-nav li a {
  color: #fff;
  display: block;
  width: 100%;
  padding: 10px 0;
}

.offcanvas .navbar-nav li a:hover {
  color: #ed8b28;
}

/* ==================================
   LARGE DESKTOP
================================== */

@media (max-width: 1400px) {
  .header .navbar-nav {
    gap: 14px;
  }

  .header .navbar-nav li a {
    font-size: 11px;
  }
}

/* ==================================
   LAPTOP
================================== */

@media (max-width: 1200px) {
  .navbar-brand.logo {
    width: 200px;
  }

  .custom-logo {
    max-width: 170px;
  }

  .header .navbar-nav {
    gap: 10px;
  }

  .header .navbar-nav li a {
    font-size: 10px;
    letter-spacing: 0.3px;
  }

  .contact-btn {
    padding: 8px 16px;
  }
}

/* ==================================
   TABLET & MOBILE
================================== */

@media (max-width: 991px) {
  .header {
    padding: 10px;
  }

  .header .container {
    border-bottom: none;
  }

  .header-left,
  .header-right {
    display: none !important;
  }

  .navbar-brand.logo {
    display: none;
  }

  .custom-logo {
    max-width: 150px;
  }
  .case-card h3 {
    font-size: 18px;
    color: #fff;
  }
}

/* ==================================
   MOBILE
================================== */

@media (max-width: 576px) {
  .custom-logo {
    max-width: 130px;
  }

  .navbar-toggler {
    font-size: 20px;
  }
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #0f172a;
  color: #fff;
  padding-top: 80px;
  position: relative;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-logo .custom-logo {
  width: 160px;
  height: auto;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 25px;
}

.footer-menu li {
  list-style: none;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: 0.3s;
}

.footer-menu li a:hover,
.footer-menu .current-menu-item a {
  color: #ed8b28;
}

.custom-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-top: 30px;
}

/* =========================
   CTA STRIP
========================= */

.footer-cta {
  padding: 50px 0;
}

.footer-cta .container {
  padding: 0;
}

.cta-text {
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 300;
}

.cta-text span {
  color: #ed8b28;
  font-weight: 600;
}

.footer-contact p {
  color: #fff;
  margin: 0;
  font-size: 15px;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 25px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ed8b28;
}

/* =========================
   BG TEXT
========================= */

.footer-bg-text {
  position: absolute;
  bottom: -20px;
  right: 30px;
  font-size: 180px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  text-transform: uppercase;
}
.charter-item span {
  flex-shrink: 0;
}

@media (max-width: 1300px) {
  .strategy-hero .hero-title,
  .knowledge-hero .hero-title {
    font-size: 40px;
  }
}
@media (max-width: 1100px) {
  .line,
  .line-top {
    display: none;
  }
  #menu-footer {
    gap: 0.5rem !important;
  }
  .page-desc {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .footer-top .d-flex {
    flex-direction: column;
    gap: 30px;
  }

  .footer-menu {
    justify-content: center;
  }

  .footer-cta .container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-contact {
    text-align: left !important;
  }

  .footer-bottom .d-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bg-text {
    font-size: 80px;
    right: 10px;
  }

  .footer-top .d-flex {
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start !important;
    align-items: start !important;
  }
  .noptin-form-fields {
    display: flex;
    flex-direction: column !important;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: space-between;
  }

  .noptin-form-footer
    .noptin-optin-field-wrapper:not(.noptin-optin-field-wrapper-hidden) {
    width: 100% !important;
  }
  .noptin-form-field-wrapper.noptin-form-field-submit.noptin-optin-field-wrapper.noptin-optin-field-submit {
    width: 100% !important;
  }
  .page-desc {
    font-size: 36px;
  }
  .impact-card {
    height: auto;
  }
  .impact-card p {
    margin: 0;
  }
  .cta-section,
  .contact-section {
    padding: 40px 0;
  }

  .strategy-cta {
    padding: 40px 0;
  }
  .strategy-cta h2 {
    color: #fff;
    font-size: 40px;
  }
  .knowledge-cta {
    padding: 40px 0px !important;
  }
  .knowledge-cta h2 {
    color: #fff;
    font-size: 36px;
  }
  .contact-cta .btn.contact-btn {
    background: #fff;
    border-radius: 30px;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: max-content;
}
}
@media (max-width: 767px) {
  .img-wrapper::after {
    display: none;
  }
  .img-wrapper .breadcrum-img {
    width: 100%;
    left: 0;
  }
  .loyalty-hero .btn.hero-btn {
    width: 100%;
  }
  .strategy-cta {
    padding: 40px;
  }
  .strategy-cta {
    padding: 40px 0px;
  }
  .strategy-cta h2 {
    font-size: 28px;
  }

  .strategy-hero .hero-title {
    font-size: 24px;
  }
  .strategy-hero img {
    margin-top: 0px;
  }
  .strategy-hero,
  .strategy-content,
  .growth-services,
  .workforce-section {
    padding: 60px 0;
  }
  .contact-hero {
    padding: 80px 0 40px;
  }
  .contact-main {
    padding: 60px 0;
  }
  .contact-cta {
    padding: 60px 0;
  }
  .contact-cta h2 {
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 60px 0px 120px;
  }
  .hero-stats {
    padding: 15px 0px 0 0;
    right: 0;
    left: 15px;
  }
  .about-section .container {
    padding-top: 40px;
  }
  .about-img img {
    max-width: 100%;
  }
  .orange-box {
    padding: 40px 20px;
  }
  .about-highlight {
    font-size: 26px;
    margin: 0;
  }
  .work-content {
    padding: 40px 20px;
  }
  .work-content h2 {
    font-size: 24px;
  }
  .study-content {
    padding: 40px 20px;
  }
  .section-title {
    font-size: 26px;
  }
  .about-text {
    font-size: 20px;
  }
  .hero-content {
    position: relative;
    color: #fff;
    max-width: 650px;
    margin-bottom: 30px;
  }
  .page-desc {
    font-size: 28px;
  }
  section.breadcrum-sec {
    padding: 60px 0px;
  }
  .counter-section {
    padding: 40px 0p;
  }
  .intro-title {
    font-size: 26px;
  }
  .intro-text {
    color: #989898;
    font-size: 18px;
  }
  .about-intro,
  .blog-section {
    padding: 40px 0;
  }
  .features-section {
    padding: 0px 0 40px;
  }
  .client-content {
    padding: 40px 15px;
  }
  .strategy-hero .hero-title,
  .knowledge-hero .hero-title {
    font-size: 30px;
  }
  .knowledge-hero img {
    margin-top: 0px;
  }
  .knowledge-cta h2 {
    color: #fff;
    font-size: 28px;
  }
  .contact-info {
    padding: 50px 0;
  }
  .contact-cta h2 {
        font-size: 24px;
    }
}

.language-dropdown {
    position: relative;
    margin-left: 15px;
}

.language-dropdown .language {
    background: transparent;
    cursor: pointer;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 170px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu li {
    padding: 10px 20px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.lang-menu li:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-color);
}

/* Hide Google's default UI completely — we drive it via our own dropdown */
#google_translate_element {
    display: none !important;
}
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body {
    top: 0 !important;
}
body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
}

/* Mobile: dropdown inside offcanvas should sit inline, not absolute */
.offcanvas .lang-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #111;
    margin-top: 10px;
}
.offcanvas .lang-menu.active {
    display: block;
}