/* ================= BASE ================= */
a {
  color: var(--bs-link-color);
  text-decoration: none !important;
}

:root {
  --primary-color: #FF3737;
  /* Buttons, highlights */
  --primary-hover: #e62e2e;

  --secondary-color: #CFECF3;
  /* Section background */

  --white: #ffffff;
  --black: #000000;

  --text-color: #333;
  --border-color: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f6f9;
  color: #222;
}

.container {
  max-width: 1430px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999999;
  padding: 0px 10px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #1a73e8;
}

/* Search */
.search-box {
  flex: 1;
  display: flex;
  border: 1px solid #ddd;
  border-radius: 30px;
  overflow: hidden;
}

.search-box input {
  border: none;
  padding: 10px 15px;
  flex: 1;
  outline: none;
}

.search-box button {
  border: none;
  background: var(--primary-color);
  color: var(--white);
  padding: 0 18px;
  cursor: pointer;
}

/* Desktop Nav */
.nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  font-size: 14px;
  color: #333;
}

.nav .btn-primary {
  background: var(--primary-color);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* ================= MOBILE MENU ================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
  padding: 20px;
  transition: .35s ease;
  z-index: 2000;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #222;
  border-bottom: 1px solid #eee;
}

.mobile-menu .close-menu {
  font-size: 20px;
  cursor: pointer;
  text-align: right;
  margin-bottom: 20px;
}

.carousel-inner {
  z-index: 0;
}

/* ================= SUB MENU ================= */
.sub-menu {
  background: #1a73e8;
}

.sub-menu .container {
  display: flex;
  gap: 25px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.sub-menu a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

/* ================= BANNER ================= */
.banner {
  position: relative;
  background: #fff;
}

.banner-item {
  height: 380px;
  position: relative;
}

.banner-item img {
  height: 100%;
  object-fit: cover;
}

.contact-bar {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  font-weight: 500;
}

/* =========================
   MOBILE SEARCH (DEFAULT HIDDEN)
========================= */
.mobile-search {
  display: none;
  width: 100%;
}

/* =========================
   SHOW ONLY ON MOBILE
   max-width: 767px
========================= */
@media (max-width: 767px) {
  .mobile-search {
    display: block;
    padding: 10px 14px;
    background: #fff;
  }

  .search-boxs {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
  }

  .search-boxs input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    min-width: 0;
    /* very important for mobile */
  }

  .search-boxs button {
    border: none;
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .search-boxs button i {
    font-size: 16px;
  }
}

/* EXTRA SMALL PHONES (optional but safe) */
@media (max-width: 360px) {
  .search-boxs input {
    font-size: 13px;
    padding: 10px 12px;
  }

  .search-boxs button {
    padding: 15px 18px;
  }
}



/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .search-box {
    max-width: 160px;
    margin-left: auto;
  }
}

@media(max-width:576px) {
  .search-box {
    display: none;
  }

  .banner-item {
    height: 260px;
  }

  .sub-menu {
    display: none;
  }
}


/*how it works*/
.how-it-works {
  padding: 60px 20px;
  background: #f9f9f9;
}

.hiw-container {
  max-width: 1400px;
  margin: auto;
}

/* Header */
.hiw-header {
  margin-bottom: 40px;
}

.hiw-badge {
  display: inline-block;
  background: #f4c430;
  padding: 10px 22px;
  font-weight: bold;
  font-size: 20px;
  border-radius: 6px;
  color: #000;
}

/* Steps Layout */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.hiw-card {
  background: #fff;
  border: 2px solid #ddd;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: 0.3s ease;
}

.hiw-card:hover {
  border-color: #000;
  transform: translateY(-6px);
}

/* Step number */
.hiw-step {
  position: absolute;
  top: -18px;
  left: 45%;
  background: #ff8c00;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Icon */
.hiw-icon {
  margin: 20px auto 15px;
  width: 70px;
  height: 70px;
  border: 2px dashed #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #555;
}

/* Text */
.hiw-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.hiw-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ðŸ“± Mobile */
@media (max-width: 767px) {
  .hiw-steps {
    grid-template-columns: 1fr;
  }

  .hiw-badge {
    font-size: 18px;
  }
}

/* ðŸ“± Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ðŸ’» Desktop */
@media (min-width: 992px) {
  .hiw-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*Brands*/

.brand-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* CARD */
.brand-card {
  background: #fff;
  border-radius: 32px;
  padding: 20px;
  border: 1px solid #dbe3ec;
  transition: all 0.3s ease;
}

.brand-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* TOP SECTION */
.brand-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #dbe3ec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  max-width: 70%;
  max-height: 70%;
}

.brand-tag {
  background: #fff1e5;
  color: #ff7a00;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* TEXT */
.brand-name {
  margin: 14px 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #0b1f33;
}

.price-label {
  font-size: 13px;
  color: #6b7a8c;
  margin-bottom: 4px;
}

.price {
  font-size: 14px;
  font-weight: 600;
  color: #0b1f33;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 1024px) {
  .brand-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .brand-wrapper {
    grid-template-columns: 1fr;
  }

  .brand-card {
    border-radius: 24px;
  }
}

/* Why Choose Us Section */
.why-vision-section {
  background: #f8f9fc;
  padding: 60px 20px;
}

.content-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0d6efd;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 10px;
}

.feature-box {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
}

.icon-boxs {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 24px;
}

.feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Vision box slight variation */
.vision-box {
  background: linear-gradient(135deg, #ffffff, #f1f4ff);
}

/* Responsive */
@media (max-width: 767px) {
  .section-title {
    font-size: 24px;
  }

  .content-box {
    padding: 25px;
  }

  .listar-feature-item a:after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    top: 90%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    border-radius: 1000px;
    z-index: 10;
    animation: ripple 0.7s linear infinite;
    box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
      -5px -5px 10px rgba(255, 255, 255, 0.5);
  }

}

/* Banner Section feautred distributorship */

.featured-distributorship-banner {
  position: relative;
  width: 100%;
  padding: 14px 12px !important;
}

/* Image */
.featured-distributorship-img {
  height: 50vh;
  object-fit: cover;
}

/* Overlay */
.featured-distributorship-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Caption */
.featured-distributorship-caption {
  z-index: 2;
  bottom: 35%;
  text-align: left;
}

.featured-distributorship-caption h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.featured-distributorship-caption p {
  font-size: 18px;
  max-width: 520px;
  margin-top: 10px;
  color: #f1f1f1;
}

/* Dots */
.featured-distributorship-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.5;
}

.featured-distributorship-indicators .active {
  opacity: 1;
  background-color: #0d6efd;
}

/* Remove arrows */
.featured-distributorship-carousel .carousel-control-prev,
.featured-distributorship-carousel .carousel-control-next {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .featured-distributorship-img {
    height: 20vh;
  }

  .featured-distributorship-caption {
    bottom: 20%;
    text-align: center;
  }

  .featured-distributorship-caption h1 {
    font-size: 30px;
  }

  .featured-distributorship-caption p {
    font-size: 15px;
  }
}

.fdo-section {
  padding: 26px 20px 86px 20px;
  background: #fff;
  font-family: Inter, sans-serif;
}

.fdo-container {
  max-width: 1400px;
  margin: auto;
}

.fdo-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #1f2a44;
}

.fdo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.fdo-card {
  border: 1px solid #d6e0ef;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.3s;
  background: #fff;
}

.fdo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.fdo-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5edf8;
}

.fdo-image img {
  max-width: 70%;
  max-height: 100%;
}

.fdo-body {
  padding: 20px;
}

.fdo-company {
  font-size: 18px;
  margin: 12px 0;
  color: #1f2a44;
}

/* TAGS */
.fdo-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  display: inline-block;
}

.fdo-food {
  background: #fff0e5;
  color: #ff7a00;
}

.fdo-auto {
  background: #eaf3ff;
  color: #007bff;
}

.fdo-health {
  background: #e9f8f1;
  color: #1f9d55;
}

.fdo-chemical {
  background: #fff4e5;
  color: #ff9800;
}

/* INFO */
.fdo-info {
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #5c6f8a;
}

.fdo-info li {
  margin-bottom: 8px;
}

.fdo-info strong {
  float: right;
  color: #000;
}

/* BUTTONS */
.fdo-call {
  display: block;
  margin: 18px 0 10px;
  padding: 12px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}

.fdo-details {
  display: block;
  text-align: center;
  font-weight: 600;
  color: #3f3a8c;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .fdo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fdo-grid-tab {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .fdo-grid {
    grid-template-columns: 1fr;
  }

  .fdo-title {
    font-size: 22px;
  }

  .fdo-grid-tab {
    grid-template-columns: 1fr !important;
  }
}


/*new design of this Section start here*/

.fdo-title-tab {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  color: #1f2a44;
}

.fdo-grid-tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.info-card-tab {
  max-width: 450px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 16px;
  /*gap: 18px;*/
  position: relative;

  border: 1.5px solid var(--primary-color);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
}

.info-card-tab:hover {
  border-color: #1976d2;
  box-shadow: 0 15px 35px rgba(25, 118, 210, 0.25);
  transform: translateY(-6px);
}

.card-content-tab {
  flex: 1;
}

.category-tab {
  display: inline-block;
  background: #e3f2fd;
  color: #1976d2;
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 20px;
}

.company-tab {
  font-size: 19px;
  margin: 8px 0;
  color: #222;
  line-height: 1.3;
}

.card-content-tab p {
  margin: 6px 0;
  color: #444;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}

.description-tab {
  margin-top: 8px;
  color: #666;
  line-height: 1.5;
  font-size: 12px;
}

.card-logo-tab {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}

.info-card-tab:hover .card-logo-tab {
  transform: scale(1.05);
}

.card-logo-tab img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  border-radius: 50%;
}

.btn-viewdetail-tab {
  margin-top: 12px;
  text-align: center;
  margin-right: 8px;
}

.view-detail-link-tab {
  background: var(--primary-color);
  color: var(--white);
  display: inline-block;
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.view-detail-link-tab:hover {
  background: var(--primary-color);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);
  transform: scale(1.05);
}

/*.view-detail-link-tab {*/
/*    display: inline-block;*/
/*    padding: 8px 18px;*/
/*    background: linear-gradient(135deg, #5e35b1, #1976d2);*/
/*    color: #fff;*/
/*    text-decoration: none;*/
/*    border-radius: 20px;*/
/*    font-size: 13px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.view-detail-link-tab:hover {*/
/*    background: linear-gradient(135deg, #1976d2, #0d47a1);*/
/*    box-shadow: 0 6px 16px rgba(25, 118, 210, 0.4);*/
/*    transform: scale(1.05);*/
/*    color: #fff!important;*/
/*}*/

.box-contact {
  margin-top: 12px;
  text-align: center;
  margin-right: 8px;
  position: absolute;
  top: 85%;
  left: 35%;
}

/*Featured Distributorship Opportunities end*/

.ttc-section {
  padding: 50px 0;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.ttc-container {
  width: 92%;
  margin: auto;
}

.ttc-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1f2a44;
}

/* main slider */
.main-banner-item img {
  height: 450px;
  object-fit: cover;
}

/* SLIDER */

.featured-distributorship-item img {
  height: 160px;
}

@media (max-width: 600px) {
  .featured-distributorship-item img {
    height: 180px !important;
  }
}

.top-categories-wraps-wrap {
  border: 1px solid var(--primary-color);
  padding: 15px;
  border-radius: 26px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  margin-top: 5px;
}

.ttc-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  cursor: grab;
}

.ttc-slider::-webkit-scrollbar {
  display: none;
}

/* CARD */
.ttc-card {
  min-width: 160px;
  height: 200px;
  background: #f3f2fb;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s;
  flex-shrink: 0;
}

.ttc-card:hover {
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

/* ICON */
.ttc-icon {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 15px;
}

.ttc-card p {
  font-size: 15px;
  font-weight: 600;
  color: #1f2a44;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ttc-card {
    min-width: 140px;
    height: 180px;
  }

  .ttc-title {
    font-size: 22px;
  }
}

/*form Home*/
/* Expert Section */
.expert-bs-section {
  background: var(--primary-color);
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.rounded-4 {
  border-radius: 28px;
}

.btn-warning {
  background: #ff6a00;
  border: none;
}

.btn-warning:hover {
  background: #e85d00;
}

.top-category {
  padding: 60px 20px;
}

/* Distributor Inquiry Section */
.inquiry-section {
  padding: 70px 20px;
  background: #f7f9fc;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1a1a1a;
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.inquiry-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  border: 1px solid #e3e7ef;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}

.inquiry-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* HEADER */
.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #cfead1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #2e7d32;
}

.category {
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
}

.category.food {
  background: #fff1e6;
  color: #ff6a00;
}

.category.beauty {
  background: #ffeef4;
  color: #d81b60;
}

.verified {
  margin-left: auto;
  background: #4caf50;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 50%;
}

/* CONTENT */
.company {
  font-size: 18px;
  margin-bottom: 6px;
}

.location {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.details {
  font-size: 14px;
  margin-bottom: 10px;
}

.details p {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.details span {
  color: #777;
}

.requirement {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* BUTTON */
.proposal-btn {
  margin-top: auto;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 14px;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.proposal-btn:hover {
  background: #e85d00;
}

/* RESPONSIVE */
@media(max-width: 600px) {
  .section-title {
    font-size: 26px;
  }
}

/*success Stories */
.success-section {
  padding: 60px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.success-container {
  /*width: 92%;*/
  max-width: 1400px;
  margin: auto;
}

.success-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.success-header h2 {
  font-size: 30px;
  font-weight: 600;
}

.success-header p {
  font-size: 15px;
  color: #6b7280;
}

.success-nav {
  display: flex;
  gap: 10px;
}

.success-prev,
.success-next {
  width: 40px;
  height: 40px;
  border: 1px solid #ff6b00;
  border-radius: 50%;
  color: #ff6b00;
}

.success-prev::after,
.success-next::after {
  font-size: 14px;
}

/* CARD */
.success-card {
  background: #f1f7ff;
  padding: 30px;
  border-radius: 26px;
  height: 100%;
}

.success-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.success-top img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.role {
  font-size: 13px;
  color: #6b7280;
}

.success-top h4 {
  font-size: 15px;
  font-weight: 600;
}

.success-text {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 25px;
}

.success-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 36px;
  height: 36px;
  background: #facc15;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* FIX swiper nav visibility */
.success-nav {
  position: relative;
  display: flex;
  gap: 12px;
}

.success-prev,
.success-next {
  position: static !important;
  /* VERY IMPORTANT */
  width: 42px;
  height: 42px;
  border: 1.5px solid #ff6b00;
  border-radius: 50%;
  background: #fff;
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Arrow icon size */
.success-prev::after,
.success-next::after {
  font-size: 14px;
  font-weight: bold;
}

/* Hover effect */
.success-prev:hover,
.success-next:hover {
  background: #ff6b00;
  color: #fff;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .success-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/*Footer section*/
/* FOOTER BASE */
.b2b-footer {
  background: var(--secondary-color);
  font-family: Arial, sans-serif;
  color: #333;
}

/* NEWSLETTER */
.footer-newsletter {
  background: #ffffff;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 1px solid #e6e6e6;
}

.newsletter-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

.newsletter-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f1f4f8;
  padding: 0 12px;
  border-radius: 6px;
}

.newsletter-input input {
  border: none;
  background: transparent;
  width: 100%;
  padding: 12px;
  outline: none;
}

.newsletter-form button {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

/* FOOTER LINKS */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #ff6b00;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #e6e6e6;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.social-links a {
  margin-left: 10px;
  text-decoration: none;
  background: #ff6b00;
  color: #fff;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* From Uiverse.io by e-coders */
.btn-tab {
  appearance: none;
  background-color: transparent;
  border: 0.125em solid #1A1A1A;
  border-radius: 1.938em;
  box-sizing: border-box;
  color: #3B3B3B;
  cursor: pointer;
  display: inline-block;
  font-family: Roobert, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  min-height: 0.75em;
  min-width: 0;
  outline: none;
  padding: 0.75em 1.3em;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}

.btn-tab:disabled {
  pointer-events: none;
}

.btn-tab:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.btn-tab:active {
  box-shadow: none;
  transform: translateY(0);
}

/*desktop category section*/
/* ===============================
   TOP CATEGORIES â€“ DEFAULT HIDDEN
================================ */
.top-categories-wrap {
  display: none;
}

/* ===============================
   SHOW ON TABLET & DESKTOP
   (>= 768px)
================================ */
@media (min-width: 768px) {
  .top-categories-wrap {
    display: block;
    width: 100%;
    max-width: 340px;
    background: #ffffff;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  }

  .top-categories-title {
    font-size: 18px;
    font-weight: 700;
    /*margin-bottom: 16px;*/
    color: #0b3a6a;
    text-transform: uppercase;
  }

  .top-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 300px;
    overflow-y: auto;
  }

  .top-categories-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 6px;
    font-size: 15px;
    color: #2c3e50;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease;
  }

  .top-categories-list li:hover {
    background: #f4f6fb;
  }

  .top-categories-list .icon {
    font-size: 16px;
    width: 22px;
    text-align: center;
    opacity: 0.8;
  }

  /* Custom scrollbar */
  .top-categories-list::-webkit-scrollbar {
    width: 6px;
  }

  .top-categories-list::-webkit-scrollbar-thumb {
    background: #cfd6e3;
    border-radius: 10px;
  }

  .view-all-btn {
    display: block;
    margin-top: 20px;
    text-align: center;
    padding: 12px 18px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .view-all-btn:hover {
    background: var(--primary-hover);
    color: var(--white);
  }
}

/* ===============================
   FORCE HIDE ON MOBILE
   (< 768px)
================================ */
@media (max-width: 767px) {
  .top-categories-wrap {
    display: none !important;
  }
}

/* WRAPPER */
.top-categories-mega-wrapper {
  display: none;
}

/* TABLET & DESKTOP */
@media (min-width: 768px) {
  .top-categories-mega-wrapper {
    display: flex;
    position: relative;
    z-index: 9999;
    /* VERY HIGH */
  }

  /* LEFT */
  .top-categories-wrap,
  .top-categories-wrap * {
    box-sizing: border-box;
  }

  .top-categories-wrap {
    width: 340px;
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10000;
  }

  .top-categories-list li {
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
  }

  .top-categories-list li:hover {
    background: #f4f6fb;
  }

  /* RIGHT MEGA PANEL */
  .mega-panel {
    position: absolute;
    left: 360px;
    top: 0;
    width: 700px;
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 99999;
  }

  .top-categories-mega-wrapper:hover .mega-panel {
    display: block;
  }

  .mega-content {
    display: none;
  }

  .mega-content.active {
    display: block;
  }

  .mega-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .mega-grid h5 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .mega-grid ul {
    list-style: none;
    padding: 0;
  }

  /*.mega-grid li {*/
  /*  font-size: 14px;*/
  /*  margin-bottom: 6px;*/
  /*  color: #555;*/
  /*  cursor: pointer;*/
  /*}*/

  /*.mega-grid li a {*/
  /*    font-size: 14px;*/
  /*    margin-bottom: 6px;*/
  /*    color: #CFECF3;*/
  /*    cursor: pointer;*/
  /*}*/

  .mega-grid .mega-category a {
    color: rgb(94, 115, 132) !important;
  }


  .mega-grid .mega-category a:hover {
    color: #333 !IMPORTANT;
  }
}

/* MOBILE FORCE HIDE */
@media (max-width: 767px) {
  .top-categories-mega-wrapper {
    display: none !important;
  }
}



/* ===============================
   FORCE HIDE ON MOBILE
   (< 768px)
================================ */
@media (max-width: 767px) {
  .top-categories-wrap {
    display: none !important;
  }
}

/* WRAPPER */
.top-categories-mega-wrapper {
  display: none;
}

/* TABLET & DESKTOP */
@media (min-width: 768px) {
  .top-categories-mega-wrapper {
    display: flex;
    position: relative;
    z-index: 9999;
    /* VERY HIGH */
  }

  /* LEFT */
  .top-categories-wrap,
  .top-categories-wrap * {
    box-sizing: border-box;
  }

  .top-categories-wrap {
    width: 340px;
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 10000;
  }

  .top-categories-list li {
    padding: 10px;
    cursor: pointer;
    border-radius: 8px;
  }

  .top-categories-list li:hover {
    background: #f4f6fb;
  }

  /* RIGHT MEGA PANEL */
  .mega-panel {
    position: absolute;
    left: 285px;
    top: 8px;
    width: 700px;
    background: #fff;
    border-radius: 0px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: 99999;
  }

  .top-categories-mega-wrapper:hover .mega-panel {
    display: block;
  }

  .mega-content {
    display: none;
  }

  .mega-content.active {
    display: block;
  }

  .mega-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
  }

  .mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .mega-grid h5 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .mega-grid ul {
    list-style: none;
    padding: 0;
  }

  .mega-grid li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
    cursor: pointer;
  }

  .mega-grid li:hover {
    color: #3b3486;
  }
}

/* MOBILE FORCE HIDE */
@media (max-width: 767px) {
  .top-categories-mega-wrapper {
    display: none !important;
  }
}

/* MOBILE FORCE HIDE */
@media (max-width: 600px) {
  .top-categories-mega-wrapper {
    display: none !important;
  }
}

/* From Uiverse.io by zebra76966 */

.btns-brand {
  float: right;
}

.btns-brand button {
  border: none;
}

.btn-b {
  color: #fff;
  text-decoration: none;
}

.btn-b:hover {
  color: #fff;
}

.c-button {
  background: linear-gradient(140deg, rgba(75, 118, 200, 1) 0%, rgba(31, 70, 145, 1) 100%);
  border-radius: 45px;
  font-size: 16px;
  text-align: left;
  padding: 11px 0px 11px 0px;
  border: 1px solid rgb(37, 37, 37) !important;
  border-style: outset;
  box-shadow: -6px -5px 18px rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.c-button .c-main {
  border-radius: 45px;
  color: rgba(255, 255, 255, 1);
  padding: 11px 25px 11px 2px;
  box-shadow: inset 0px 0px 5px rgba(17, 17, 17, 0);
  transition: all 0.5s ease-in-out;
  border: 1px solid transparent;
}

.c-ico .c-blur {
  background: linear-gradient(318deg, rgba(75, 118, 200, 1) 0%, rgba(31, 70, 145, 1) 100%);
  border-radius: 100%;
  margin-left: 0;
  padding: 8px 23px;
  filter: blur(1px);
  text-align: center;
}

.c-ico {
  position: relative;
  margin-right: 20px;
}

.c-ico .ico-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Hovering */

.c-button .c-main:hover {
  box-shadow: inset 0px 0px 5px rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(26, 26, 26, 0.5);
  color: #fff;
}




/*Distributor page css*/
/* ===== Breadcrumb Section ===== */
.breadcrumb-section {
  background: #f6f8fc;
  padding: 60px 20px;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.breadcrumb-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.breadcrumb {
  font-size: 14px;
  color: #6b7280;
}

.breadcrumb span {
  color: #3e3a8c;
  font-weight: 600;
}

.breadcrumb-title {
  font-size: 40px;
  font-weight: 700;
  color: #1f2a44;
}

.breadcrumb-subtitle {
  font-size: 16px;
  color: #4b5563;
  max-width: 480px;
}

.breadcrumb-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
}

.category-section {
  padding: 16px 20px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  color: #222;
}

.section-subtitle {
  text-align: center;
  margin: 10px 0 40px;
  color: #666;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.category-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, #ff7a18, #ff9f1c);
  color: #fff;
}

.category-card .icon {
  font-size: 36px;
  display: block;
  margin-bottom: 15px;
}

.category-card h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-color);
}

.category-card:hover h4 {
  color: #fff;
}

.extra {
  display: none;
}

.btn-wrap {
  text-align: center;
  margin-top: 40px;
}

#toggleBtn {
  background: #ff7a18;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

#toggleBtn:hover {
  background: #e76a10;
}

.img-div img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ===== SECTION ===== */
.featured-section {
  position: relative;
  padding: 20px 20px;
}

.featured-header {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0a1f44;
}

/* ===== NAV BUTTONS ===== */
.nav-buttons {
  display: flex;
  gap: 10px;
}

/* ===== CARD ===== */
.company-card {
  border: 1px solid #dbe3f0;
  border-radius: 30px;
  padding: 25px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  /*width: 330px;*/
}

.logo-brand {
  text-align: center;
  margin-bottom: 15px;
}

.logo-brand img {
  max-width: 180px;
}

.tag {
  display: inline-block;
  background: #fff3e8;
  color: #ff6a00;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
  width: fit-content;
}

.company-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0a1f44;
}

.company-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.call-btn {
  margin-top: auto;
  background: #3e3a8c;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
}

.details {
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
  color: #3e3a8c;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .breadcrumb-title {
    font-size: 32px;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .breadcrumb-image img {
    margin: 20px auto 0;
  }

  .breadcrumb-title {
    font-size: 28px;
  }

  .featured-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*Testimonial*/

/* ================= HERO ================= */
.testimonial-hero {
  background: linear-gradient(135deg, #CFECF3, #f5f5f5);
  color: #fff;
  padding: 0px 20px;
  padding-top: 15px;
  text-align: center;
}

.testimonial-hero h1 {
  font-size: 44px;
  margin-bottom: 12px;
  color: var(--text-color) !IMPORTANT;
}

.testimonial-hero p {
  max-width: 820px;
  margin: auto;
  font-size: 17px;
  opacity: .9;
  color: var(--text-color) !IMPORTANT;
}

/* ================= TESTIMONIAL CARDS ================= */
.testimonial-section {
  padding: 80px 8%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
  gap: 25px;
}

.testimonial-card-new {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.testimonial-card-new:hover {
  transform: translateY(-6px);
}

.client-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #eee;
}

.client-details h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: #222;
}

.client-details .company {
  font-size: 13px;
  font-weight: 600;
  color: #2f7adf;
  margin: 2px 0;
}

.quote-icon {
  font-size: 28px;
  color: #c9b8ff;
}

@media(max-width:768px) {
  .testimonial-hero h1 {
    font-size: 34px;
  }
}

/* membership-hero */
.membership-hero {
  background: linear-gradient(135deg, #CFECF3, #f5f5f5);
  color: var(--text-color);
  padding: 70px 0;
  text-align: center;
}

/* PLANS */
.plans {
  padding: 60px 0;
  background: #f8f9fa;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.plan-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.plan-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.prices {
  font-size: 24px;
  margin: 15px 0;
  color: var(--text-color);
}

.inquiry {
  background: var(--primary-color);
  color: #fff;
  padding: 60px 0;
}

.inquiry-form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.inquiry-form input,
select,
textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
}

.inquiry-form button {
  background: var(--secondary-color);
  color: #000;
  padding: 14px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/*Categories page code*/
.categories-hero {
  background: linear-gradient(135deg, #CFECF3, #f5f5f5);
  color: var(--text-color);
  padding: 60px 0;
  text-align: center;
}

.categories-section {
  padding: 60px 0;
  background: #f8fafc;
}

.category-main-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.category-main-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: #f1f5f9;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.category-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  display: block;
  text-decoration: none;
}

.subcategory-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.subcategory-item {
  margin-bottom: 8px;
}

.subcategory-link {
  color: #64748b;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.subcategory-link:hover {
  color: #103c8f;
}

.view-all-link {
  display: inline-block;
  margin-top: 15px;
  color: #103c8f;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}


/* PAGE HEADER Category page code */
.page-header {
  background: linear-gradient(135deg, #CFECF3, #f5f5f5);
  color: var(--text-color);
  padding: 40px 0;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(255, 106, 0, 0.15);
}

.page-header h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 16px;
  opacity: 0.95;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--text-color);
}

/* FILTER BOX */
.filter-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  border: 1px solid #f0f0f0;
}

.filter-box h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
  font-size: 16px;
}

.filter-box input {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.filter-box input:focus {
  border-color: #ff6a00;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.city-list,
.investment-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.city-list li a,
.investment-list li a {
  padding: 10px 0;
  color: var(--text-color);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.city-list li:last-child,
.investment-list li:last-child {
  border-bottom: none;
}

.city-list li a:hover,
.investment-list li a:hover {
  color: var(--primary-color);
  padding-left: 8px;
  font-weight: 600;
}

/* CATEGORY CARD */
.category-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  height: 100%;
  border: 1px solid #f5f5f5;
  min-height: 180px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #ff6a00;
}

.category-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover h6 {
  color: var(--white);
}

.category-card h6 {
  margin: 0;
  font-weight: 700;
  color: #333;
  font-size: 15px;
}

/* SECTION TITLE */
.section-title {
  margin-bottom: 10px;
}

.section-title span {
  font-weight: 500;
  color: #999;
  font-size: 16px;
}

.section-description {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* LOAD MORE BUTTON */
.load-more-btn {
  background: linear-gradient(135deg, #ff6a00 0%, #ff8c1a 100%);
  color: #fff;
  padding: 14px 50px;
  border-radius: 8px;
  font-weight: 700;
  border: none;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 106, 0, 0.3);
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
  background: linear-gradient(135deg, #ff8c1a 0%, #ff6a00 100%);
  color: #fff;
}

.load-more-btn:active {
  transform: translateY(0);
}

.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page-header h3 {
    font-size: 24px;
  }

  .category-card {
    min-height: 150px;
    padding: 20px;
  }

  .category-card img {
    width: 48px;
    height: 48px;
  }
}

/* ================= contact page code css ================= */
.b2b-hero {
  background: linear-gradient(135deg, #CFECF3, #f5f5f5);
  color: var(--text-color) !IMPORTANT;
  padding: 90px 20px;
  text-align: center;
}

.b2b-hero h1 {
  font-size: 44px;
  margin-bottom: 12px;
}

.b2b-hero p {
  max-width: 800px;
  margin: auto;
  font-size: 17px;
  opacity: .9;
}

.contact-info-box {
  background: linear-gradient(135deg, var(--primary-color));
  border-radius: 20px 20px 0 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-item .icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.info-item small {
  font-size: 17px;
  color: #e0e0e0;
}

.info-item p {
  font-size: 19px;
  color: #e0e0e0;
  font-weight: 600;
}

.contact-form .form-control {
  border-radius: 10px;
  padding: 12px;
}

.submit-btn {
  background: #ff7a00;
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
}

.submit-btn:hover {
  background: #e96f00;
  color: #fff;
}

.tabr {
  font-weight: 600;
  color: rgb(255, 255, 255);
  font-size: 20px;
}

/* ================= career-hero ================= */
.career-hero {
  background: linear-gradient(135deg, #CFECF3, #f5f5f5);
  color: var(--text-color);
  padding: 90px 20px;
  text-align: center;
}

.career-hero h1 {
  font-size: 44px;
  margin-bottom: 12px;
}

.career-hero p {
  max-width: 800px;
  margin: auto;
  font-size: 17px;
  opacity: .9;
}

/* ================= WHY JOIN ================= */
.why-join {
  padding: 80px 8%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.why-card h3 {
  color: var(--text-color);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #555;
}

/* ================= JOB OPENINGS ================= */
.jobs-section {
  background: #fff;
  padding: 80px 8%;
}

.jobs-title {
  text-align: center;
  margin-bottom: 40px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.job-card {
  background: #f4f6fb;
  padding: 30px;
  border-radius: 18px;
  transition: .3s;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card h3 {
  margin-bottom: 8px;
}

.job-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.job-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.job-card a {
  text-decoration: none;
  color: #103c8f;
  font-weight: 600;
}

/* ================= HIRING PROCESS ================= */
.process-section {
  padding: 80px 8%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.process-step {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.process-step span {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* ================= CULTURE ================= */
.culture-section {
  background: #fff;
  padding: 80px 8%;
}

.culture-content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.culture-content p {
  color: #555;
  line-height: 1.7;
  margin-top: 15px;
}

/* ================= CTA ================= */
.career-cta {
  background: linear-gradient(135deg, #103c8f, var(--primary-color));
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.career-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.career-cta p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 25px;
  opacity: .9;
}

.career-cta a {
  display: inline-block;
  background: #fff;
  color: #103c8f;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .career-hero h1 {
    font-size: 34px;
  }
}