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

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700&display=swap');

:root {
  --font-primary: 'Roboto', sans-serif;
  --heading-fonts: 'Roboto', sans-serif;
  --body-fonts: '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);
}

*,
*::before,
*::after {
  font-family: 'Roboto', sans-serif;
}

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

body {
  font-family: 'Roboto', sans-serif !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,
p,
span,
a,
button,
input,
select,
textarea,
label {
  font-family: 'Roboto', sans-serif !important;
}

/* ==========================================================================
   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 {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 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;
}

/* Desktop Menu Styles (>= 992px) */
@media (min-width: 992px) {
  .nav-toggle {
    display: none !important;
  }

  .navbar-bottom-wrapper {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .navbar-bottom-wrapper .logo {
    justify-self: start !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .navbar-bottom-wrapper .menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    justify-self: center !important;
    margin: 0 auto !important;
    margin-inline: auto !important;
    gap: 16px !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .navbar-bottom-wrapper .header-actions-wrapper,
  .navbar-bottom-wrapper > .d-flex {
    justify-self: end !important;
    margin-left: auto !important;
    display: flex !important;
    align-items: center !important;
  }

  .navbar-bottom-wrapper .menu li {
    width: auto !important;
    text-align: center !important;
  }

  .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: 6px;
    background: transparent !important;
    padding: 8px 12px !important;
    transition: var(--transition-smooth);
  }

  .navbar-bottom-wrapper .menu li a:hover {
    color: #ff9933 !important;
    background: rgba(255, 153, 51, 0.08) !important;
  }

  .navbar-bottom-wrapper .menu li a.active {
    color: #ff9933 !important;
    font-weight: 600;
    background: rgba(255, 153, 51, 0.08) !important;
  }
}

/* Mobile & Tablet Responsive Menu Styles (<= 991.98px, including 990px) */
@media (max-width: 991.98px) {
  .nav-toggle {
    display: inline-flex !important;
  }

  .navbar-bottom-wrapper {
    position: relative !important;
  }

  .navbar-bottom-wrapper .menu {
    display: none !important;
    position: absolute !important;
    top: 62px !important;
    inset-inline-start: auto !important;
    inset-inline-end: 0 !important;
    left: auto !important;
    right: 0 !important;
    width: 280px !important;
    max-width: calc(100vw - 32px) !important;
    background: #ffffff !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 12px 10px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    z-index: 99999 !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Active / Toggled Show State (Right-Aligned Dropdown) */
  .navbar-bottom-wrapper .menu.active,
  .menu.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    animation: fadeInMenu 0.22s ease-out forwards;
    top: 62px !important;
    left: auto !important;
    right: 0 !important;
    inset-inline-start: auto !important;
    inset-inline-end: 0 !important;
    width: 280px !important;
    max-width: calc(100vw - 32px) !important;
  }

  .navbar-bottom-wrapper .menu li {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .navbar-bottom-wrapper .menu li a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    padding: 8px 12px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #334155 !important;
    border-radius: 8px !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
  }

  .navbar-bottom-wrapper .menu li a span {
    text-align: left !important;
    width: 100% !important;
    display: block !important;
    transition: color 0.2s ease !important;
  }

  /* Mobile Hover: text #fff, background #ff9933 */
  .navbar-bottom-wrapper .menu li a:hover {
    color: #ffffff !important;
    background-color: #ff9933 !important;
  }

  .navbar-bottom-wrapper .menu li a:hover span {
    color: #ffffff !important;
  }

  /* Mobile Active */
  .navbar-bottom-wrapper .menu li a.active {
    color: #ffffff !important;
    background-color: #ff9933 !important;
    font-weight: 600 !important;
  }

  .navbar-bottom-wrapper .menu li a.active span {
    color: #ffffff !important;
  }

  .navbar-bottom-wrapper .menu .cmn--btn {
    display: inline-flex !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-top: 6px !important;
    border-radius: 8px !important;
  }
}

@keyframes fadeInMenu {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modern Mobile Nav Toggle (Menu & Close Icon) */
.nav-toggle {
  position: relative !important;
  width: 38px !important;
  height: 38px !important;
  cursor: pointer !important;
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 8px !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.25s ease !important;
  flex-shrink: 0 !important;
}

.nav-toggle:hover {
  border-color: #ff9933 !important;
  background: rgba(255, 153, 51, 0.06) !important;
}

.nav-toggle span {
  position: absolute !important;
  display: block !important;
  width: 18px !important;
  height: 2px !important;
  background: #334155 !important;
  border-radius: 2px !important;
  left: 10px !important;
  top: 18px !important;
  margin: 0 !important;
  inset-inline-start: 10px !important;
  transform-origin: center center !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, background-color 0.25s ease !important;
}

/* 3 Hamburger Bars (Menu Icon) */
.nav-toggle span:first-child {
  transform: translateY(-6px) !important;
  bottom: auto !important;
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.nav-toggle span:last-child {
  transform: translateY(6px) !important;
  bottom: auto !important;
}

.nav-toggle:hover span {
  background: #ff9933 !important;
}

/* Active State -> Perfectly Centered Symmetrical Close Icon (X) */
.nav-toggle.active {
  background: rgba(255, 153, 51, 0.08) !important;
  border-color: #ff9933 !important;
}

.nav-toggle.active span {
  background: #ff9933 !important;
}

.nav-toggle.active span:first-child {
  transform: translateY(0) rotate(45deg) !important;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.nav-toggle.active span:last-child {
  transform: translateY(0) rotate(-45deg) !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: 8px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
  padding: 5px !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: 5px 12px !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: none !important;
}

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

.hero-cta-vendor svg,
.hero-cta-delivery svg {
  stroke: #ffffff !important;
}

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

.hero-cta-vendor:hover svg,
.hero-cta-delivery:hover svg {
  stroke: #ffffff !important;
}

.banner-svg-img {

  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: 40px 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,
.footer-widget .social-icon,
.footer-widget.widget-links .social-icon {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 18px 0 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.social-icon li,
.footer-widget .social-icon li,
.footer-widget.widget-links .social-icon li {
  margin: 0 !important;
  padding: 0 !important;
}

.social-icon li a,
.footer-widget .social-icon li a,
.footer-widget.widget-links .social-icon li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(8px) !important;
  transition: none !important;
  padding: 0 !important;
  text-decoration: none !important;
}

.social-icon li a img,
.footer-widget .social-icon li a img,
.footer-widget.widget-links .social-icon li a img {
  width: 20px !important;
  height: 20px !important;
  transition: none !important;
}

.social-icon li a:hover,
.footer-widget .social-icon li a:hover,
.footer-widget.widget-links .social-icon li a:hover {
  background: var(--base-1, #ff9933) !important;
  border-color: var(--base-1, #ff9933) !important;
  transform: none !important;
  box-shadow: none !important;
}

.social-icon li a:hover img,
.footer-widget .social-icon li a:hover img,
.footer-widget.widget-links .social-icon li a:hover img {
  filter: brightness(0) invert(1) !important;
}

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

.app-btn-grp a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #000000 !important;
  border-radius: 8px !important;
  padding: 0 !important;
  overflow: hidden !important;
  text-decoration: none !important;
  line-height: 1 !important;
  box-shadow: none !important;
  transition: none !important;
  transform: none !important;
}

.app-btn-grp a img {
  display: block !important;
  max-height: 42px !important;
  width: auto !important;
  border: none !important;
  border-radius: 7px !important;
  box-shadow: none !important;
  transition: none !important;
}

.app-btn-grp a:hover {
  background-color: #ff9933 !important;
  border-color: #ff9933 !important;
  color: #ffffff !important;
  transform: none !important;
  box-shadow: none !important;
  transition: none !important;
}

/* 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: 40px !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  overflow: visible !important;
}

.nav--tabs {
  max-width: 860px;
  width: 100% !important;
  margin: 0 auto !important;
  border: none !important;
  overflow: visible !important;
  padding: 8px 0 14px 0 !important;
}

#sync2 {
  overflow: visible !important;
  padding: 8px 0 14px 0 !important;
}

#sync2 .owl-stage-outer {
  overflow: visible !important;
  padding: 10px 0 14px 0 !important;
}

/* When few modules (e.g. 3-6 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: 16px !important;
  margin: 0 auto !important;
  transform: none !important;
  overflow: visible !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;
  overflow: visible !important;
}

/* Tab Card item - Modern Floating Card */
.nav--tabs .owl-item .item {
  background: #ffffff !important;
  border: 1.5px solid #eef2f6 !important;
  border-radius: 18px !important;
  padding: 16px 18px 15px !important;
  min-width: 148px !important;
  max-width: 185px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02) !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 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: 10px;
  border: 1px solid #f1f5f9;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px;
}

.tab-icon-wrap img,
.nav--tabs .owl-item .item img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  object-fit: contain !important;
  opacity: 0.9 !important;
  filter: none !important;
  -webkit-filter: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Tab Label */
.nav--tabs .item .txt {
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  height: auto !important;
  margin: 0 !important;
  text-align: center !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  letter-spacing: -0.01em !important;
  transition: color 0.25s 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 14px 28px -4px rgba(15, 23, 42, 0.08), 0 4px 10px -2px rgba(15, 23, 42, 0.03) !important;
  z-index: 5 !important;
  position: relative !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 - Modern Floating Card */
.nav--tabs .owl-item.synced .item {
  background: linear-gradient(180deg, #ffffff 0%, rgba(19, 136, 8, 0.04) 100%) !important;
  border: 2px solid #138808 !important;
  box-shadow: 0 16px 32px -6px rgba(19, 136, 8, 0.22), 0 4px 12px -2px rgba(19, 136, 8, 0.08) !important;
  transform: translateY(-5px) !important;
  z-index: 10 !important;
  position: relative !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.22) !important;
  transform: scale(1.06) !important;
  box-shadow: 0 4px 14px rgba(19, 136, 8, 0.12) !important;
}

.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;
}

/* Remove clunky bottom indicator notch to eliminate awkward double-border bump */
.nav--tabs .owl-item.synced .item::after {
  display: none !important;
}

/* 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: 60px 0 70px !important;
  }

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

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

/* Tablet / iPad View (768px - 991px) - Perfect Equal Width & Centered Alignment without clipping */
@media (min-width: 768px) and (max-width: 991px) {
  .nav--tabs-wrapper {
    margin-bottom: 30px !important;
    padding: 0 4px !important;
    overflow: visible !important;
  }

  .nav--tabs {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 8px 4px 14px 4px !important;
    overflow: visible !important;
  }

  #sync2,
  #sync2 .owl-stage-outer {
    overflow: visible !important;
    padding-top: 8px !important;
    padding-bottom: 12px !important;
  }

  .nav--tabs-centered #sync2 .owl-stage {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 710px !important;
    overflow: visible !important;
  }

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

  .nav--tabs .owl-item .item {
    width: 100% !important;
    min-width: auto !important;
    max-width: 100% !important;
    padding: 13px 6px 11px !important;
    border-radius: 15px !important;
  }

  .tab-icon-wrap {
    width: 48px !important;
    height: 48px !important;
    border-radius: 12px !important;
    margin-bottom: 6px !important;
    padding: 6px !important;
  }

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

  .nav--tabs .item .txt {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.25 !important;
  }
}

/* Mobile View (<768px) - Smooth horizontal scroll, clean alignment */
@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-wrapper {
    margin-bottom: 25px !important;
  }

  .nav--tabs {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 4px 12px 14px 12px !important;
    scrollbar-width: none !important;
  }

  .nav--tabs::-webkit-scrollbar {
    display: none !important;
  }

  .nav--tabs-centered #sync2 .owl-stage-outer {
    overflow: visible !important;
  }

  .nav--tabs-centered #sync2 .owl-stage {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    margin: 0 !important;
    width: max-content !important;
    transform: none !important;
    padding: 0 !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;
  }

  .nav--tabs .owl-item .item {
    min-width: 114px !important;
    max-width: 130px !important;
    padding: 12px 8px 10px !important;
    border-radius: 14px !important;
  }

  .tab-icon-wrap {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    margin-bottom: 6px !important;
    padding: 6px !important;
  }

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

  .nav--tabs .item .txt {
    font-size: 12px !important;
    line-height: 1.25 !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. SmartTaxi Exact Match Contact Page UI
   ========================================================================== */

.smarttaxi-contact-page {
  padding: 40px 0 70px 0;
  background: #ffffff;
}

.smarttaxi-hero-header {
  text-align: center;
  margin-bottom: 35px;
}

.smarttaxi-hero-title {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.smarttaxi-hero-title span {
  color: #ff9933;
}

.smarttaxi-hero-desc {
  font-size: 14.5px;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Service Selection Cards Grid */
.service-select-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px 18px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.service-select-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.service-select-card.active {
  border: 2px solid #ff9933 !important;
  background: rgba(255, 153, 51, 0.04) !important;
}

.service-select-card .check-circle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff9933;
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

.service-select-card.active .check-circle {
  display: flex;
}

.service-select-card .card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.service-select-card .card-icon svg {
  width: 40px;
  height: 40px;
  stroke: #94a3b8;
  transition: stroke 0.2s ease;
}

.service-select-card:hover .card-icon svg {
  stroke: #ff9933;
}

.service-select-card.active .card-icon {
  color: #ff9933;
}

.service-select-card.active .card-icon svg {
  stroke: #ff9933;
}

.service-select-card .card-title {
  font-size: 15px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 3px;
  transition: color 0.2s ease;
}

.service-select-card.active .card-title {
  color: #ff9933;
}

.service-select-card .card-subtitle {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.35;
}

.service-select-card.card-wide {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
  padding: 16px 22px;
  gap: 16px;
}

.service-select-card.card-wide .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.service-select-card.card-wide .card-text-wrap {
  display: flex;
  flex-direction: column;
}

/* Demo Request Form Card (Right Column) */
.demo-request-card {
  background: #ffffff;
  border: 1.5px solid #eef2f6;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.demo-form-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.demo-form-label {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

.demo-form-label span.req {
  color: #ef4444;
}

.demo-form-control {
  width: 100%;
  border-radius: 8px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  color: #0f172a !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.demo-form-control:focus {
  border-color: #ff9933 !important;
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.15) !important;
  outline: none !important;
}

textarea.demo-form-control {
  height: 105px !important;
  resize: vertical;
}

.iti {
  width: 100% !important;
  display: block;
}

.iti input[type="tel"].demo-form-control,
.iti .demo-form-control {
  width: 100% !important;
  padding-left: 54px !important;
}

.iti__flag-container {
  border-radius: 8px 0 0 8px;
}

.demo-submit-btn {
  background: #ff9933 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 11px 28px !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: none !important;
  display: inline-block;
}

.demo-submit-btn:hover {
  background: #138808 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Bottom Get In Touch Section */
.smarttaxi-get-in-touch {
  margin-top: 55px;
  padding-top: 25px;
}

.git-header {
  text-align: center;
  margin-bottom: 28px;
}

.git-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.git-header p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
}

.git-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.git-card:hover {
  border-color: #ff9933;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.git-icon-wrap {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.git-icon-orange {
  background: #fff7ed;
  color: #ea580c;
}

.git-icon-blue {
  background: #eff6ff;
  color: #2563eb;
}

.git-icon-green {
  background: #f0fdf4;
  color: #16a34a;
}

.git-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.git-info {
  flex: 1;
  min-width: 0;
}

.git-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.git-val {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  text-decoration: none;
}

.git-val:hover {
  color: #ff9933;
}

/* 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;
  }
}

/* ==========================================================================
   Main Category Promotional Banner Slider - Modern UI Update
   ========================================================================== */

.main-category {
  padding: 60px 0 !important;
  position: relative;
  overflow: hidden;
}

.main-category-slider {
  width: calc(100% - 30px) !important;
  max-width: 840px !important;
  margin: 0 auto !important;
  position: relative;
}

.main-category-slider .owl-stage-outer {
  overflow: visible !important;
  padding: 16px 0 22px 0 !important;
}

.main-category-slider .owl-stage-outer .owl-item {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  opacity: 0.55 !important;
  transform: scale(0.93) !important;
  filter: blur(0.35px) !important;
}

.main-category-slider .owl-stage-outer .owl-item.active {
  opacity: 1 !important;
  transform: scale(1) !important;
  filter: none !important;
  z-index: 2;
}

.category-slide-item {
  overflow: hidden !important;
  border-radius: 22px !important;
  padding: 38px 48px !important;
  display: flex !important;
  align-items: center !important;
  min-height: 290px !important;
  position: relative !important;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  transition: box-shadow 0.3s ease !important;
}

.category-slide-item::after {
  position: absolute !important;
  content: "" !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 35%, rgba(255, 255, 255, 0.48) 58%, rgba(255, 255, 255, 0) 80%) !important;
  border-radius: 22px !important;
  pointer-events: none;
}

.category-slide-item div {
  position: relative !important;
  z-index: 2 !important;
  max-width: 330px !important;
}

.category-slide-item .title {
  color: var(--base-1, #138808) !important;
  font-weight: 800 !important;
  font-size: 38px !important;
  line-height: 1.15 !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.025em !important;
}

.category-slide-item .text {
  font-weight: 600 !important;
  font-size: 19px !important;
  line-height: 1.4 !important;
  color: #1e293b !important;
  letter-spacing: -0.01em !important;
}

/* Dots Navigation */
.main-category-slider .owl-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 24px !important;
}

.main-category-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.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.main-category-slider .owl-dots .owl-dot.active span {
  width: 28px !important;
  border-radius: 6px !important;
  background: var(--base-1, #138808) !important;
  box-shadow: 0 2px 8px rgba(var(--base-rgb, 19, 136, 8), 0.35) !important;
}

/* Tablet & Mobile Breakpoints for Banner Slider */
@media (max-width: 991px) {
  .main-category-slider {
    max-width: 700px !important;
  }

  .category-slide-item {
    padding: 30px 36px !important;
    min-height: 260px !important;
    border-radius: 20px !important;
  }

  .category-slide-item .title {
    font-size: 32px !important;
  }

  .category-slide-item .text {
    font-size: 17px !important;
  }
}

@media (max-width: 767px) {
  .main-category {
    padding: 40px 0 !important;
  }

  .main-category-slider {
    width: 100% !important;
    max-width: 100% !important;
  }

  .category-slide-item {
    padding: 24px 22px !important;
    min-height: 220px !important;
    border-radius: 18px !important;
  }

  .category-slide-item::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0) 90%) !important;
  }

  .category-slide-item div {
    max-width: 240px !important;
  }

  .category-slide-item .title {
    font-size: 26px !important;
    margin-bottom: 6px !important;
  }

  .category-slide-item .text {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }

  .main-category-slider .owl-stage-outer .owl-item {
    opacity: 0.5 !important;
    transform: scale(0.96) !important;
  }
}