/* ================= BASE ================= */
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body{background:#f4f6f9;color:#222;}
.container{max-width:1200px;margin:auto;}

/* ================= HEADER ================= */
.header{background:#fff;border-bottom:1px solid #eee;position:sticky;top:0;z-index:1000;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:#1a73e8;color:#fff;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:#1a73e8;color:#fff;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: #1a73e8;
    color: #fff;
    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 0px 86px 20px;
  background: #fff;
  font-family: Inter, sans-serif;
}

.fdo-container {
  max-width: 1200px;
  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: #3f3a8c;
  color: #fff;
  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 #e6e6e6;
    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 {
    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 blue;
	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: #3f3a8a;
}

.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: #ff6a00;
    border: none;
    color: #fff;
    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: #f8fbff;
  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: #ff6b00;
  color: #fff;
  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: #3b3486;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .view-all-btn:hover {
    background: #2c266d;
  }
}

/* ===============================
   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:hover {
  color: #3b3486;
}
}

/* 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;
}





