/* ==========================================================================
   Modern UI Revamp - Premium Landing Page Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --footer-bg-dark: #121820;
  --footer-bg-gradient: linear-gradient(180deg, #19202a 0%, #0d1217 100%);
  --footer-card-bg: rgba(255, 255, 255, 0.04);
  --footer-card-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 8px 16px -4px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 24px 48px -12px rgba(var(--base-rgb, 0, 213, 113), 0.25);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

::selection {
  background: var(--base-1, #00D571);
  color: #ffffff;
}

body {
  font-family: var(--font-primary) !important;
  color: #334155;
  background-color: #fafbfc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.subtitle {
  font-family: var(--font-primary) !important;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   1. Modern Header & Navigation Bar
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: var(--transition-smooth);
}

header .navbar-bottom {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
  padding: 12px 0;
  transition: var(--transition-smooth);
}

.navbar-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-bottom-wrapper .logo img {
  max-height: 46px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.04));
}

.navbar-bottom-wrapper .logo:hover img {
  transform: scale(1.03);
}

.navbar-bottom-wrapper .menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-bottom-wrapper .menu li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #334155 !important;
  text-decoration: none;
  border-radius: 0;
  background: transparent !important;
  transition: var(--transition-smooth);
}

/* Remove any bottom underline bars & background pills */
.navbar-bottom-wrapper .menu li a::before,
.navbar-bottom-wrapper .menu li a::after,
.navbar-bottom-wrapper .menu li a span::before,
.navbar-bottom-wrapper .menu li a span::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}

.navbar-bottom-wrapper .menu li a:hover {
  color: var(--base-1, #00D571) !important;
  background: transparent !important;
}

.navbar-bottom-wrapper .menu li a.active {
  color: var(--base-1, #00D571) !important;
  font-weight: 600;
  background: transparent !important;
}

/* Header Buttons & Dropdowns */
.header--btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px !important;
  transition: var(--transition-smooth);
}

/* Language selector */
.header-btn-lang {
  border: 1px solid #e2e8f0 !important;
  padding: 5px 12px !important;
  color: #334155 !important;
}

.header-btn-lang:hover {
  border-color: #cbd5e1 !important;
  color: #0f172a !important;
}

/* Browse web Button */
.header-btn-browse {
  background: #138808 !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 10px 15px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: none !important;
  transition: background-color 0.25s ease, color 0.25s ease !important;
}

.header-btn-browse:hover {
  background: #ff9933 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  transform: none !important;
}

/* Join Us Button */
.header-btn-join {
  background: #ffffff !important;
  border: 1px solid #138808 !important;
  color: #138808 !important;
  border-radius: 10px !important;
  padding: 5px 12px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  box-shadow: none !important;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

.header-btn-join svg {
  color: #138808 !important;
  stroke: #138808 !important;
}

.header-btn-join:hover {
  background: #ff9933 !important;
  border-color: #ff9933 !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.header-btn-join:hover svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* Dropdown Menu styling */
.dropdown-list {
  background: #ffffff !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  padding: 6px !important;
  min-width: 120px !important;
  right: 0 !important;
  left: auto !important;
  top: calc(100% + 6px) !important;
  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  list-style: none !important;
  margin: 0 !important;
  transition: all 0.2s ease;
  z-index: 1050;
}

.dropdown--btn-hover:hover .dropdown-list {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.dropdown-list li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.dropdown-list li a {
  padding: 8px 14px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #334155 !important;
  border: none !important;
  border-inline-start: none !important;
  border-radius: 8px !important;
  display: block !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: color 0.2s ease, background 0.2s ease !important;
  transform: none !important;
}

.dropdown-list li a:hover {
  background: #f8fafc !important;
  color: var(--base-1, #00D571) !important;
  border: none !important;
  border-inline-start: none !important;
  transform: none !important;
}

.dropdown-divider {
  display: none !important;
}

/* Join Us specific dropdown */
.join-dropdown-list {
  min-width: 260px !important;
  padding: 8px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.dropdown-item-link {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  background: transparent !important;
  transition: background 0.2s ease, color 0.2s ease !important;
  transform: none !important;
}

.dropdown-item-link:hover {
  background: #f8fafc !important;
  transform: none !important;
}

.dropdown-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  transition: none !important;
  transform: none !important;
}

.dropdown-item-icon.store-icon {
  background: rgba(var(--base-rgb, 0, 213, 113), 0.12);
  color: var(--base-1, #00D571);
}

.dropdown-item-icon.delivery-icon {
  background: #eff6ff;
  color: #3b82f6;
}

.dropdown-item-link:hover .dropdown-item-icon {
  transform: none !important;
}

.dropdown-item-info {
  flex: 1;
}

.dropdown-item-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.dropdown-item-link:hover .dropdown-item-title {
  color: var(--base-1, #00D571);
}

/* ==========================================================================
   2. Modern Hero & Banner Section
   ========================================================================== */

.banner-section {
  padding: 60px 0 40px 0;
  background: #ffffff;
  text-align: center;
}

.banner-content .title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.banner-mid-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 14px 0;
}

.banner-mid-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.banner-content .text {
  font-size: 16px;
  color: #64748b;
  max-width: 680px;
  margin: 10px auto 20px auto;
  line-height: 1.6;
}

/* Hero CTA Action Buttons */
.banner-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px !important;
  border-radius: 10px !important;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: none !important;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

.hero-cta-vendor {
  background: #138808 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px 15px !important;
  box-shadow: none !important;
}

.hero-cta-vendor:hover {
  background: #ff9933 !important;
  box-shadow: none !important;
  color: #ffffff !important;
  transform: none !important;
}

.hero-cta-delivery {
  background: #ffffff !important;
  color: #334155 !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 10px 15px !important;
  box-shadow: none !important;
}

.hero-cta-delivery:hover {
  border-color: #ff9933 !important;
  color: #ff9933 !important;
  box-shadow: none !important;
  transform: none !important;
}

.banner-svg-img {
  margin-top: 30px;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.06));
  animation: floatBanner 6s ease-in-out infinite;
}

@keyframes floatBanner {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ==========================================================================
   3. Modern Newsletter Section
   ========================================================================== */

.newsletter-section {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  padding: 70px 0;
  background: linear-gradient(180deg, rgba(var(--base-rgb, 0, 213, 113), 0.05) 0%, rgba(var(--base-rgb, 0, 213, 113), 0.12) 100%);
  overflow: hidden;
  border-top: 1px solid rgba(var(--base-rgb, 0, 213, 113), 0.15);
}

.newsletter-wrapper {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  text-align: center;
  z-index: 10;
  overflow: visible;
}

.newsletter-wrapper::before {
  display: none !important;
}

.newsletter-wrapper::after {
  display: none !important;
}

.newsletter-content {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  z-index: 2;
}

.newsletter-content .title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.newsletter-content .text {
  font-size: 16px;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.newsletter-content .input--grp {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 6px 8px 6px 24px;
  border: 1px solid #e2e8f0;

}

.newsletter-content .input--grp:focus-within {
  border-color: var(--base-1, #00D571);
  box-shadow: 0 8px 30px rgba(var(--base-rgb, 0, 213, 113), 0.2);
  transform: translateY(-2px);
}

.newsletter-content .input--grp input {
  flex: 1;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 10px 0;
  font-size: 15px;
  color: #1e293b;
  box-shadow: none !important;
}

.newsletter-content .input--grp input::placeholder {
  color: #94a3b8;
  font-size: 15px;
}

.newsletter-content .input--grp .search-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-bounce);
}

.newsletter-content .input--grp .search-btn svg {
  width: 44px;
  height: 44px;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 4px 10px rgba(var(--base-rgb, 0, 213, 113), 0.35));
}

.newsletter-content .input--grp .search-btn:hover {
  transform: scale(1.08) rotate(5deg);
}

/* ==========================================================================
   4. Modern Footer Section
   ========================================================================== */

footer {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--footer-bg-gradient) !important;
  overflow: hidden;
}

.footer-bottom {
  background: transparent !important;
  border-radius: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 70px 0 35px 0 !important;
  position: relative;
  box-shadow: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wrapper {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 991px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.footer-widget {
  color: #e2e8f0;
}

.footer-widget .footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.footer-widget .footer-logo img {
  max-height: 52px;
  width: auto;
  filter: brightness(1.05);
}

.footer-widget .txt {
  font-size: 15px;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 24px;
  max-width: 320px;
}

/* Social Media Badges */
.social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.social-icon li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: var(--transition-bounce);
}

.social-icon li a img {
  width: 20px;
  height: 20px;
  transition: var(--transition-smooth);
}

.social-icon li a:hover {
  background: var(--base-1, #00D571);
  border-color: var(--base-1, #00D571);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(var(--base-rgb, 0, 213, 113), 0.4);
}

.social-icon li a:hover img {
  filter: brightness(0) invert(1);
}

/* App Download Badges */
.app-btn-grp {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.app-btn-grp a {
  display: inline-block;
  transition: var(--transition-bounce);
}

.app-btn-grp a img {
  max-height: 42px;
  width: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.app-btn-grp a:hover {
  transform: translateY(-3px) scale(1.02);
}

.app-btn-grp a:hover img {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* Footer Widget Links */
.footer-widget .subtitle {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

.footer-widget .subtitle::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--base-1, #00D571);
  border-radius: 2px;
}

.footer-widget.widget-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget.widget-links ul li {
  margin-bottom: 12px;
}

.footer-widget.widget-links ul li a {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.footer-widget.widget-links ul li a:hover {
  color: #ff9933;

}

.footer-widget.widget-links ul li a svg {
  flex-shrink: 0;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.footer-widget.widget-links ul li a:hover svg {
  opacity: 1;
  transform: scale(1.15);
}

/* Contact Details Info Items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
}

/* Copyright Row */
.copyright {
  font-size: 13px;
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 50px;
}

.copyright span,
.copyright strong {
  color: #cbd5e1;
}

/* ==========================================================================
   5. Landing Page Sections & Cards Polishing
   ========================================================================== */

/* Main category banners */
.category-slide-item {
  border-radius: 18px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.category-slide-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Ecommerce Venture & Service Tabs Section
   ========================================================================== */

.ecommerce-venture-section {
  position: relative;
  padding: 85px 0 95px !important;
  background: radial-gradient(circle at 50% 10%, rgba(var(--base-rgb, 0, 213, 113), 0.07) 0%, #ffffff 50%, #f8fafc 100%) !important;
  scroll-margin-top: 80px;
}

.ecommerce-venture-section .section-header {
  text-align: center;
  margin-bottom: 45px;
}

.venture-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(19, 136, 8, 0.08);
  color: #138808;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ecommerce-venture-section .section-header .title {
  font-size: 38px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.35 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.025em !important;
}

.ecommerce-venture-section .section-header p,
.ecommerce-venture-section .section-header .subtitle {
  font-size: 17px !important;
  color: #64748b !important;
  font-weight: 400 !important;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6 !important;
}

/* Module navigation tabs wrapper & carousel */
.nav--tabs-wrapper {
  margin-bottom: 45px !important;
}

.nav--tabs {
  max-width: 820px;
  margin: 0 auto;
  border: none !important;
}

/* When few modules (e.g. 3 items), center the owl-stage items neatly */
.nav--tabs-centered #sync2 .owl-stage {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  margin: 0 auto !important;
  transform: none !important;
}

.nav--tabs-centered #sync2 .owl-item {
  float: none !important;
  width: auto !important;
  flex: 0 0 auto !important;
  display: flex !important;
  justify-content: center !important;
}

/* Tab Card item */
.nav--tabs .owl-item .item {
  background: #ffffff !important;
  border: 1.5px solid #edf2f7 !important;
  border-radius: 20px !important;
  padding: 18px 20px 16px !important;
  min-width: 155px !important;
  max-width: 190px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03) !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  text-align: center !important;
  outline: none !important;
}

/* Tab Icon Container */
.tab-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  padding: 8px;
}

.tab-icon-wrap img,
.nav--tabs .owl-item .item img {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  object-fit: contain !important;
  opacity: 0.85 !important;
  filter: none !important;
  -webkit-filter: none !important;
  transition: all 0.3s ease !important;
}

/* Tab Label */
.nav--tabs .item .txt {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  height: auto !important;
  margin: 0 !important;
  text-align: center !important;
  letter-spacing: -0.01em !important;
  transition: color 0.3s ease !important;
}

/* Tab Inactive Hover state */
.nav--tabs .owl-item:not(.synced) .item:hover {
  transform: translateY(-4px) !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.08) !important;
}

.nav--tabs .owl-item:not(.synced) .item:hover .tab-icon-wrap {
  background: #f1f5f9;
  border-color: #e2e8f0;
  transform: scale(1.05);
}

.nav--tabs .owl-item:not(.synced) .item:hover .txt {
  color: #0f172a !important;
}

/* Tab Active / Synced state */
.nav--tabs .owl-item.synced .item {
  background: #ffffff !important;
  border: 2px solid #138808 !important;
  box-shadow: 0 16px 36px -8px rgba(19, 136, 8, 0.22), 0 0 0 1px rgba(19, 136, 8, 0.12) !important;
  transform: translateY(-5px) !important;
}

.nav--tabs .owl-item.synced .item .tab-icon-wrap {
  background: rgba(19, 136, 8, 0.09) !important;
  border-color: rgba(19, 136, 8, 0.25) !important;
  transform: scale(1.08);
}

.nav--tabs .owl-item.synced .item .tab-icon-wrap img {
  opacity: 1 !important;
  transform: scale(1.05);
}

.nav--tabs .owl-item.synced .item .txt {
  color: #138808 !important;
  font-weight: 700 !important;
}

/* Active bottom indicator pill */
.nav--tabs .owl-item.synced .item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28%;
  right: 28%;
  height: 3.5px;
  border-radius: 4px 4px 0 0;
  background: #138808;
}

/* Venture Showcase Content Box (Left Column) */
.venture-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venture-content-box {
  background: #ffffff !important;
  border: 1px solid #f1f5f9 !important;
  border-radius: 24px !important;
  padding: 40px 36px !important;
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.04) !important;
  position: relative !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}

.venture-content-box p {
  margin: 0 !important;
  color: #64748b !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.venture-content-box strong {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-top: 24px !important;
  margin-bottom: 6px !important;
  line-height: 1.35 !important;
}

.venture-content-box strong:first-of-type {
  margin-top: 0 !important;
}

/* Circular green checkmark badge before feature items */
.venture-content-box strong::before {
  content: '';
  display: inline-flex;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(19, 136, 8, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23138808' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center center / 13px 13px;
  box-shadow: 0 2px 6px rgba(19, 136, 8, 0.15);
}

/* Venture Showcase Image (Right Column) */
.venture-img {
  position: relative !important;
  border-radius: 28px !important;
  background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%) !important;
  border: 1px solid rgba(226, 232, 240, 0.9) !important;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.08), 0 10px 25px -10px rgba(0, 0, 0, 0.04) !important;
  padding: 28px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

.venture-img::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -15%;
  width: 65%;
  height: 65%;
  background: radial-gradient(circle, rgba(var(--base-rgb, 0, 213, 113), 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.venture-img img {
  border-radius: 18px !important;
  max-height: 440px !important;
  width: 100% !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  position: relative !important;
  z-index: 1 !important;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.06)) !important;
  transition: transform 0.4s ease !important;
}

.venture-img:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 32px 70px -15px rgba(0, 0, 0, 0.12) !important;
}

.venture-img:hover img {
  transform: scale(1.02);
}

/* Responsive adjustments for Venture Section */
@media (max-width: 991px) {
  .ecommerce-venture-section {
    padding: 65px 0 75px !important;
  }

  .ecommerce-venture-section .section-header .title {
    font-size: 30px !important;
  }

  .venture-content-box {
    padding: 30px 26px !important;
  }
}

@media (max-width: 767px) {
  .ecommerce-venture-section {
    padding: 50px 0 60px !important;
  }

  .ecommerce-venture-section .section-header .title {
    font-size: 25px !important;
  }

  .ecommerce-venture-section .section-header p,
  .ecommerce-venture-section .section-header .subtitle {
    font-size: 15px !important;
  }

  .nav--tabs .owl-item .item {
    min-width: 125px !important;
    max-width: 150px !important;
    padding: 14px 12px !important;
    border-radius: 16px !important;
  }

  .tab-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 8px;
    padding: 6px;
  }

  .tab-icon-wrap img,
  .nav--tabs .owl-item .item img {
    width: 30px !important;
    height: 30px !important;
  }

  .nav--tabs .item .txt {
    font-size: 13.5px !important;
  }

  .venture-content-box {
    padding: 24px 20px !important;
    border-radius: 20px !important;
  }

  .venture-content-box strong {
    font-size: 16px !important;
    margin-top: 18px !important;
  }

  .venture-img {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .venture-img img {
    max-height: 320px !important;
  }
}

/* Testimonials Section & Cards */
.testimonial-section {
  position: relative;
  padding: 80px 0;
  background: #ffffff;
}

.testimonial-slider-wrap {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.testimonial-slider {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider.few-items {
  max-width: 680px;
  margin: 0 auto;
}

.testimonial-item {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 38px 34px !important;
  border: 1.5px solid #edf2f7 !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: var(--transition-smooth);
}

.testimonial-slider .owl-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 28px !important;
}

.testimonial-slider .owl-dots .owl-dot span {
  width: 10px !important;
  height: 10px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: #cbd5e1 !important;
  display: block !important;
  transition: all 0.3s ease !important;
}

.testimonial-slider .owl-dots .owl-dot.active span {
  width: 26px !important;
  border-radius: 6px !important;
  background: var(--base-1, #00D571) !important;
}

.testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(var(--base-rgb, 0, 213, 113), 0.3) !important;
}

.testimonial-item blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: #334155;
  margin: 18px 0 24px 0;
  font-style: normal;
}

.testimonial-item .user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-item .user img {
  width: 44px !important;
  height: 44px !important;
  aspect-ratio: 1 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

.testimonial-item .user .name {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin-bottom: 2px !important;
}

.testimonial-item .user .designation {
  font-size: 13px !important;
  color: #64748b !important;
}

.testimonial-item .company-logo {
  max-height: 35px !important;
  max-width: 85px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* Common Action Buttons Across All Pages */
.cmn--btn,
.btn-primary,
.btn--primary {
  background: #138808 !important;
  background-image: none !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 10px 15px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.4 !important;
  transform: none !important;
  transition: background-color 0.25s ease, color 0.25s ease !important;
}

.cmn--btn:hover,
.cmn--btn:focus,
.btn-primary:hover,
.btn-primary:focus,
.btn--primary:hover,
.btn--primary:focus {
  background: #ff9933 !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #ffffff !important;
  transform: none !important;
}

/* Secondary / Reset / Back Buttons */
.cmn--btn.btn--secondary,
.btn--secondary,
.btn--reset,
button[type="reset"],
#reset-btn,
#back-to-form {
  background: #f1f5f9 !important;
  background-image: none !important;
  color: #334155 !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 10px 15px !important;
  font-weight: 600 !important;
  box-shadow: none !important;
  transform: none !important;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease !important;
}

.cmn--btn.btn--secondary:hover,
.cmn--btn.btn--secondary:focus,
.btn--secondary:hover,
.btn--secondary:focus,
.btn--reset:hover,
.btn--reset:focus,
button[type="reset"]:hover,
button[type="reset"]:focus,
#reset-btn:hover,
#back-to-form:hover {
  background: #ff9933 !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: #ff9933 !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Ensure no button has unwanted box-shadow or pill radius */
button,
.btn,
.cmn--btn,
.header--btn,
.hero-cta-btn {
  box-shadow: none !important;
}

/* ==========================================================================
   6. Contact Us Page & Form Elements
   ========================================================================== */

.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #f1f5f9;
}

.contact-form-wrapper .form-label {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  display: block;
}

.contact-form-wrapper .form--control,
.form--control {
  border-radius: 10px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  color: #1e293b !important;
  box-shadow: none !important;
  transition: var(--transition-smooth);
}

.contact-form-wrapper .form--control:focus,
.form--control:focus {
  background: #ffffff !important;
  border-color: var(--base-1, #00D571) !important;
  box-shadow: 0 0 0 3px rgba(var(--base-rgb, 0, 213, 113), 0.15) !important;
  outline: none !important;
}

.contact-form-wrapper textarea.form--control,
textarea.form--control {
  height: 130px !important;
  resize: vertical;
}

#reload-captcha input.form-control {
  border-radius: 10px !important;
  border: 1px solid #e2e8f0 !important;
}

#reload-captcha .col-6.bg-white {
  border-radius: 10px !important;
  border: 1px solid #e2e8f0;
  overflow: hidden;
}

.contact-item {
  border-radius: 20px !important;
  border: 1px solid #f1f5f9 !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03) !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .newsletter-wrapper {
    padding: 35px 20px;
    border-radius: 20px;
  }

  .newsletter-content .title {
    font-size: 24px;
  }

  .newsletter-content .text {
    font-size: 14px;
  }

  .footer-bottom {
    border-radius: 28px 28px 0 0 !important;
    padding: 50px 0 25px 0 !important;
  }
}