/*
  Myriad Pro webfont is expected to be loaded separately (e.g., via Adobe Fonts).
  If unavailable, the font falls back to Arial, sans-serif.
*/

:root {
  --black: #333333;
  --purple: #6600cc;
  --blue: #6600cc;
  --green: #6600cc;
  --orange: #ea983f;
  --white: #fff;
  --radius: 0.5rem;
  --shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}

/* Base typography and layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}
#servicesDropdown::after {
  content: none !important; /* Use !important if necessary to override framework styles */
}

#industriesDropdown::after {
  content: none !important; /* Use !important if necessary to override framework styles */
}

li {
  list-style: none;
}

/* Or for the whole list */
ul,
ol {
  list-style: none;
}

body {
  font-family: "Myriad Pro", Arial, sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--purple);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--blue);
  text-decoration: underline;
}

ul,
ol {
  padding-left: 1.25rem;
}

/* Navbar & Header */
.header {
  background-color: var(--white);
  box-shadow: var(--shadow);
}

.navbar {
  padding: 0.75rem 1rem;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: var(--shadow);
}

.navbar-nav .nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--purple);
  transition: width 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  width: 100%;
}

/* Hero/Banner */
.hero {
  background-size: cover;
  background-position: center;
  color: var(--black);
  padding: 6rem 0;
  text-align: center;
}

.hero__title {
  font-size: 2.5rem;
}

.hero__subtitle {
  font-size: 1.25rem;
}

/* Cards */
.card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-color: var(--white);
  overflow: hidden;
}

.card__body {
  padding: 1.25rem;
}

/* Buttons */
.btn-custom {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}

.btn--primary {
  background-color: var(--purple);
  color: var(--white);
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--blue);
}

.btn--secondary {
  background-color: var(--purple);
  color: var(--black);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background-color: var(--blue);
  color: var(--white);
}

.btn--outline {
  background-color: transparent;
  border-color: var(--purple);
  color: var(--purple);
}

.btn--outline:hover,
.btn--outline:focus {
  background-color: var(--purple);
  color: var(--white);
}

.btn--disabled,
.btn--disabled:hover,
.btn--disabled:focus {
  background-color: #dcdcdc;
  border-color: #dcdcdc;
  color: #888;
  cursor: not-allowed;
}

/* Brand color overrides for Bootstrap primary utilities */
.text-primary {
  color: var(--purple) !important;
}

.btn-primary {
  background-color: var(--purple);
  border-color: var(--purple);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-primary {
  color: var(--purple);
  border-color: var(--purple);
  background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--white);
  background-color: var(--purple);
  border-color: var(--purple);
}

/* Forms */
.form-label {
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 0.25rem rgba(111, 4, 217, 0.25);
}

.form-check-input:checked {
  background-color: var(--purple);
  border-color: var(--purple);
}

.is-invalid {
  border-color: var(--orange);
}

.is-invalid ~ .invalid-feedback {
  color: var(--orange);
}

.is-valid {
  border-color: var(--blue);
}

.is-valid ~ .valid-feedback {
  color: var(--blue);
}

/* Alerts */
.alert {
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.alert--info {
  background-color: #e8f8f1;
  color: var(--purple);
}

.alert--success {
  background-color: #eef9e7;
  color: var(--blue);
}

.alert--warning {
  background-color: #fff4e5;
  color: var(--orange);
}

.alert--error {
  background-color: #ffe9e9;
  color: #d9534f;
}

/* Modals */
.modal-custom .modal-content {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background-color: var(--white);
  padding: 2rem 0;
  text-align: center;
  box-shadow: var(--shadow);
}

/* Badges */
.badge-custom {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 600;
  border-radius: 10rem;
  background-color: var(--purple);
  color: var(--white);
}

.badge--secondary {
  background-color: var(--blue);
}

.badge--outline {
  background-color: transparent;
  border: 1px solid var(--purple);
  color: var(--purple);
}

/* Tables */
.table-custom {
  width: 100%;
  border-collapse: collapse;
}

.table-custom th,
.table-custom td {
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-custom th {
  background-color: var(--purple);
  color: var(--black);
}

/* Utility helpers */
.u-shadow {
  box-shadow: var(--shadow);
}

.u-rounded {
  border-radius: var(--radius);
}

.u-text-center {
  text-align: center;
}

.u-mt-0 {
  margin-top: 0;
}
.u-mt-1 {
  margin-top: 0.25rem;
}
.u-mt-2 {
  margin-top: 0.5rem;
}
.u-mb-0 {
  margin-bottom: 0;
}
.u-mb-1 {
  margin-bottom: 0.25rem;
}
.u-mb-2 {
  margin-bottom: 0.5rem;
}
.u-p-1 {
  padding: 0.25rem;
}
.u-p-2 {
  padding: 0.5rem;
}

.fruggies-footer {
  background: var(--white);
  color: var(--black);
  border-top: 2.5px solid var(--purple);
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-top: 3rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.fruggies-footer .footer-title,
.fruggies-footer .footer-legal-title {
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.5rem;
  margin-top: 0.7rem;
  letter-spacing: 0.01em;
  font-size: 1.15rem;
}
.fruggies-footer .footer-links,
.fruggies-footer .footer-commitment {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  font-size: 1rem;
}
.fruggies-footer .footer-links li,
.fruggies-footer .footer-commitment li {
  margin-bottom: 0.32em;
  text-align: left;
}
.fruggies-footer .footer-links {
  display: inline-block;
  text-align: left;
}
.fruggies-footer .footer-links a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
.fruggies-footer .footer-links a:hover {
  color: var(--purple);
  text-decoration: underline;
}
.fruggies-footer .footer-logo {
  text-align: left;
  margin-bottom: 0.6rem;
}
.fruggies-footer .footer-managed {
  margin: 1.2em 0 0.5em 0;
  font-size: 0.96em;
}
.fruggies-footer .footer-legal {
  margin-top: 0.8em;
}
.fruggies-footer .footer-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 2.4rem 0 1.4rem 0;
}
.fruggies-footer .footer-connect {
  text-align: center;
}
.fruggies-footer .footer-socials a {
  display: inline-block;
  margin: 0 6px;
  vertical-align: middle;
}
.fruggies-footer .footer-socials img {
  width: 27px;
  height: 27px;
  opacity: 0.82;
  transition: transform 0.18s, opacity 0.16s;
}
.fruggies-footer .footer-socials a:hover img {
  opacity: 1;
  transform: scale(1.13) rotate(-6deg);
}
.fruggies-footer .footer-disclaimer {
  margin: 1.2rem auto 0 auto;
  max-width: 700px;
  font-size: 0.98rem;
  color: #6d757d;
}
.fruggies-footer .footer-trademark {
  color: var(--purple);
  font-size: 0.94rem;
}
.fruggies-footer .footer-copyright {
  color: #999;
  margin-top: 0.7rem;
  font-size: 0.97rem;
}

/* Responsive layout for the footer columns */
@media (min-width: 768px) {
  .fruggies-footer .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    text-align: left;
  }
  .fruggies-footer .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 1rem;
    text-align: left;
  }
}

@media (max-width: 991px) {
  .fruggies-footer .row {
    flex-direction: column !important;
    text-align: center;
  }
  .fruggies-footer .col-md-4 {
    max-width: 100%;
    padding: 0;
    margin-bottom: 2rem;
    text-align: center;
  }
  .fruggies-footer .footer-links,
  .fruggies-footer .footer-commitment {
    display: block;
    text-align: center;
    margin: 0 auto 1rem auto;
  }
  .fruggies-footer .footer-links li,
  .fruggies-footer .footer-commitment li {
    text-align: center;
  }
}
/* HOME PAGE CSS BELOW */

/* Hero Section */
.fruggies-hero {
  min-height: 680px;
  background: linear-gradient(135deg, #fff 60%, #e7ffe7 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fruggies-hero .particles-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
}
.fruggies-hero .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.hero-img-main img {
  max-width: 420px;
  box-shadow: 0 16px 40px 0 rgba(111, 4, 217, 0.13);
  border-radius: 32px;
  animation: heroImgFloat 4s ease-in-out infinite alternate;
}
@keyframes heroImgFloat {
  to {
    transform: translateY(-14px) scale(1.035);
  }
}
.hero-img-sm {
  max-width: 64px;
  margin: 0 0.5rem;
  opacity: 0.9;
  border-radius: 1rem;
}
.hero-highlight {
  color: var(--purple);
  background: linear-gradient(90deg, #ffffff 50%, #ffffff 100%);
  border-radius: 0.4em;
  padding: 0 0.3em;
}
.fruggies-hero .btn-lg {
  font-size: 1.17rem;
  font-weight: 600;
}

/* Features & Difference Section */
.feature-card,
.difference-card,
.benefit-card {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 4px 22px 0 rgba(111, 4, 217, 0.06);
  transition: transform 0.17s, box-shadow 0.19s;
  position: relative;
}
.feature-card:hover,
.difference-card:hover,
.benefit-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 26px 0 rgba(111, 4, 217, 0.1);
}
.feature-icon,
.difference-icon {
  font-size: 2.4rem;
  color: var(--purple);
  filter: drop-shadow(0 2px 4px #6f04d944);
}
.difference-card h6,
.feature-card h5,
.benefit-card h6 {
  font-weight: 700;
  color: var(--blue);
}

/* CTA Section */
.bg-success-gradient {
  background: linear-gradient(98deg, var(--purple) 60%, var(--blue) 100%);
}
.fruggies-cta {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.cta-box {
  transition: transform 0.23s cubic-bezier(0.33, 1.23, 0.62, 1.12),
    box-shadow 0.19s;
}
.cta-box:hover {
  transform: translateY(-8px) scale(1.02) rotate(-2deg);
  box-shadow: 0 12px 32px 0 #6f04d9;
}
.animate-float {
  animation: ctaFloat 4s cubic-bezier(0.33, 1.23, 0.62, 1.12) infinite alternate;
}
@keyframes ctaFloat {
  to {
    transform: translateY(-14px) scale(1.03) rotate(-2deg);
  }
}

/* Testimonials */
.fruggies-testimonials .testimonial-card {
  background: #f8f8f8;
  max-width: 450px;
  border-radius: 2rem;
  box-shadow: 0 3px 12px 0 #6f04d922;
  margin-bottom: 2rem;
  min-height: 220px;
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f6ec;
  object-fit: cover;
}
.testimonial-name {
  color: var(--blue);
  font-weight: 600;
  font-size: 1.02rem;
}

/* FAQ */
.fruggies-faqs .accordion-button:not(.collapsed) {
  color: var(--purple);
  background-color: #e8f8f1;
  font-weight: 600;
}
.fruggies-faqs .accordion-button {
  font-size: 1.08rem;
  font-weight: 500;
}
.fruggies-faqs .accordion-item {
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #6f04d944;
}
.fruggies-faqs .accordion-body {
  font-size: 1.01rem;
  background: #fff;
}

/* Be A Partner CSS */

.partner-hero {
  min-height: 660px;
  background: linear-gradient(110deg, #f8fffa 65%, #e6f4fd 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.partner-hero .particles-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
}
.partner-hero .hero-highlight-alt {
  color: var(--primary, #6600cc);
  background: linear-gradient(90deg, #e6f4fd 60%, #fff0 100%);
  border-radius: 0.45em;
  padding: 0 0.34em;
  font-size: 1.05em;
}
.partner-hero-img-box {
  display: inline-block;
  position: relative;
  max-width: 340px;
  margin: 0 auto;
  animation: heroImgFloat 6s ease-in-out infinite alternate;
}
@keyframes heroImgFloat {
  to {
    transform: translateY(-18px) scale(1.04);
  }
}
.partner-hero-stats {
  font-size: 1.08rem;
  margin-top: 1.7rem;
  gap: 2.2rem;
}
.stat-label {
  color: #666;
  font-size: 0.98rem;
}
.stat-value {
  font-size: 1.17rem;
}
@media (max-width: 991px) {
  .partner-hero .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .partner-hero-img-box {
    margin-top: 2.8rem;
  }
}
@media (max-width: 600px) {
  .partner-hero .display-4 {
    font-size: 2.1rem;
  }
  .partner-hero-img-box {
    min-width: 90vw;
  }
}

/* Benefits Grid */
.partner-benefits .benefit-card {
  border-radius: 1.5rem;
  background: #fff;
  border: 1.2px solid #e6f4fd;
  box-shadow: 0 4px 22px 0 #e6f4fd90;
  transition: transform 0.17s, box-shadow 0.18s;
  position: relative;
}
.partner-benefits .benefit-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 10px 32px 0 #6f04d9;
}
.benefit-icon {
  font-size: 2.2rem;
  color: var(--primary, #6600cc);
}

/* Steps */
.partner-steps .step-card {
  border-radius: 1.3rem;
  background: #f8f9fa;
  border: 1px solid #e6f4fd;
  box-shadow: 0 2px 10px 0 #e6f4fd60;
  position: relative;
  transition: box-shadow 0.2s, transform 0.16s;
}
.partner-steps .step-card:hover {
  box-shadow: 0 8px 32px 0 #6f04d9;
  transform: translateY(-6px);
}
.step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(120deg, #6f04d9 50%, #e6ffd5 100%);
  color: var(--primary, #6600cc);
  font-weight: 800;
  font-size: 2rem;
  border-radius: 50%;
  margin: 0 auto 0.7rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px 0 #6f04d920;
}

/* Requirements */
.partner-requirements .requirements-list li {
  margin-bottom: 1rem;
  font-size: 1.13rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

/* Testimonials */
.partner-testimonials .testimonial-box {
  background: #f8f8ff;
  max-width: 430px;
  border-radius: 2rem;
  box-shadow: 0 3px 12px 0 #e6f4fd40;
  margin-bottom: 2rem;
  min-height: 160px;
}
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e6f4fd;
  object-fit: cover;
}

/* Accordion/FAQ */
.partner-faqs .accordion-button:not(.collapsed) {
  color: var(--primary, #6600cc);
  background-color: #e6f4fd;
  font-weight: 600;
}
.partner-faqs .accordion-button {
  font-size: 1.07rem;
  font-weight: 500;
}
.partner-faqs .accordion-item {
  border-radius: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid #e6f4fd;
}
.partner-faqs .accordion-body {
  font-size: 1.01rem;
  background: #fff;
}

/* empowering Farmer Page */

:root {
  --green-2: #6f04d9;
  --green-3: #6f04d9;
}
.text-primary {
  color: var(--green-2);
}

/* Hero */
.farmers-hero {
  min-height: 640px;
  background: linear-gradient(120deg, #fff 65%, #e7ffe7 100%);
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
}
.farmers-hero .particles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.11;
  pointer-events: none;
}
.farmers-hero .hero-highlight-green {
  color: var(--green-2);
  background: linear-gradient(90deg, #6f04d933 60%, #fff0 100%);
  border-radius: 0.38em;
  padding: 0 0.3em;
}
.farmers-hero .farmers-badge {
  background: #e7ffe7;
  color: var(--green-2);
  display: inline-block;
  border-radius: 2em;
  font-size: 1.05rem;
  padding: 0.45em 1.4em;
  font-weight: 600;
  margin-bottom: 0.5em;
  box-shadow: 0 1px 5px #6f04d922;
}
.hero-main-img {
  width: 350px;
  max-width: 96vw;
  border-radius: 2em;
  box-shadow: 0 8px 32px #6f04d933;
}
.hero-deco-top {
  position: absolute;
  top: -24px;
  left: 10%;
  width: 82px;
  opacity: 0.16;
  z-index: 1;
}
.hero-deco-bottom {
  position: absolute;
  bottom: -24px;
  right: 12%;
  width: 66px;
  opacity: 0.18;
  z-index: 1;
}

/* Eco Cards */
.eco-card {
  background: #f8f9fa;
  border-radius: 1.5rem;
  border: 1.2px solid #e6f4fd;
  box-shadow: 0 3px 14px #e6f4fd70;
  transition: box-shadow 0.17s, transform 0.18s;
  min-height: 270px;
}
.eco-card:hover {
  box-shadow: 0 8px 28px 0 #6f04d933;
  transform: translateY(-8px) scale(1.025);
}
.eco-icon {
  color: var(--green-2);
  font-size: 2.3rem;
}

/* Trust/Eco BG */
.eco-bg {
  background: linear-gradient(110deg, #e7ffe7 80%, #f5ffe6 100%);
}
.trust-list > div {
  background: #fff;
  border-radius: 2em;
  padding: 0.7em 1.5em;
  box-shadow: 0 1px 6px #6f04d933;
  margin: 0.3em;
  color: var(--green-2);
  font-size: 1.07rem;
}

.testimonial-box {
  background: #e7ffe7;
  max-width: 480px;
  border-radius: 2rem;
  box-shadow: 0 3px 12px 0 #6f04d922;
  margin-bottom: 2rem;
  min-height: 180px;
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f8f9fa;
  object-fit: cover;
}
.testimonial-name {
  color: var(--green-2);
  font-weight: 600;
}

/* Steps */
.step-eco-card {
  border-radius: 1.3rem;
  background: #fff;
  border: 1px solid #e6f4fd;
  box-shadow: 0 2px 10px 0 #6f04d940;
  position: relative;
  transition: box-shadow 0.2s, transform 0.17s;
}
.step-eco-card:hover {
  box-shadow: 0 7px 22px #6f04d933;
  transform: translateY(-7px) scale(1.03);
}
.step-eco-icon {
  color: var(--green-2);
  background: #e7ffe7;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8em auto;
  font-size: 2.2rem;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .farmers-hero h1 {
    font-size: 2.2rem;
  }
  .hero-main-img {
    width: 92vw;
  }
}

/* sustainibility CSS */

:root {
  --green: #6600cc;
  --green-2: #6600cc;
  --green-3: #6600cc;
}
.text-primary {
  color: var(--green);
}

.sustain-hero {
  min-height: 580px;
  background: linear-gradient(115deg, #e7ffe7 80%, #e6ffd5 100%);
  position: relative;
  align-items: center;
  justify-content: center;
}
.sustain-hero .particles-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.13;
  pointer-events: none;
}
.sustain-leaf-top {
  position: absolute;
  top: -26px;
  left: 6%;
  width: 86px;
  opacity: 0.16;
  z-index: 1;
}
.sustain-leaf-btm {
  position: absolute;
  bottom: -20px;
  right: 7%;
  width: 62px;
  opacity: 0.16;
  z-index: 1;
}
.sustain-highlight {
  color: var(--green);
  background: linear-gradient(90deg, #6f04d933 60%, #fff0 100%);
  border-radius: 0.38em;
  padding: 0 0.3em;
}
.sustain-hero-img {
  width: 340px;
  max-width: 98vw;
  border-radius: 1.6em;
  box-shadow: 0 8px 36px #6f04d944;
}
.sustain-badge {
  background: #6f04d933;
  color: var(--green-2);
  display: inline-block;
  border-radius: 2em;
  font-size: 1.07rem;
  padding: 0.5em 1.5em;
  font-weight: 600;
  margin-bottom: 0.7em;
  box-shadow: 0 1px 6px #6f04d915;
}
.sustain-list li {
  margin-bottom: 1.3em;
}
.sustain-card {
  border-radius: 1.3em;
  background: #fff;
  border: 1.5px solid #e6f4fd;
  box-shadow: 0 2px 12px #6f04d922;
  transition: box-shadow 0.18s, transform 0.15s;
}
.sustain-card:hover {
  box-shadow: 0 9px 30px 0 #6f04d945;
  transform: translateY(-6px) scale(1.04);
}
.sustain-icon {
  color: var(--green);
  background: #e7ffe7;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1em auto;
}
.eco-bg {
  background: linear-gradient(100deg, #e7ffe7 70%, #f5ffe6 100%);
}
.commitment-list li {
  margin-bottom: 1.1em;
  text-align: center;
}
.sustain-why-card {
  border-radius: 1.1em;
  background: #e7ffe7;
  font-size: 1.1rem;
  color: var(--green-2);
  box-shadow: 0 2px 8px #6f04d922;
  font-weight: 600;
  margin-bottom: 1em;
}
.sustain-reason-img {
  width: 260px;
  max-width: 80vw;
}
@media (max-width: 600px) {
  .sustain-hero h1 {
    font-size: 2rem;
  }
  .sustain-hero-img {
    width: 92vw;
  }
}

/* About us page */
.about-hero {
  min-height: 580px;
  background: linear-gradient(112deg, #f7f8fd 70%, #e7ffe7 100%);
  align-items: center;
  justify-content: center;
  position: relative;
}
.about-highlight {
  color: var(--green);
  background: linear-gradient(90deg, #6f04d933 60%, #fff0 100%);
  border-radius: 0.38em;
  padding: 0 0.3em;
}
.about-hero-img {
  width: 340px;
  max-width: 97vw;
  border-radius: 1.5em;
  box-shadow: 0 6px 30px #6f04d922;
}
.about-badge {
  background: #6f04d933;
  color: var(--green-2);
  display: inline-block;
  border-radius: 2em;
  font-size: 1.09rem;
  padding: 0.55em 1.7em;
  font-weight: 600;
  margin-bottom: 0.7em;
  box-shadow: 0 1px 6px #6f04d915;
}
.about-story-img,
.about-team-img,
.about-neo-img {
  width: 300px;
  max-width: 94vw;
  border-radius: 1.2em;
  box-shadow: 0 4px 22px #6f04d922;
}
.about-team-list li,
.about-neo-list li {
  margin-bottom: 0.7em;
}
.about-mission-card {
  border-radius: 1.3em;
  background: #fff;
  border: 1.3px solid #e6f4fd;
  box-shadow: 0 2px 11px #6f04d922;
  margin-bottom: 1em;
  font-size: 1.09rem;
  min-height: 150px;
}
.about-diff-card {
  border-radius: 1.1em;
  background: #e7ffe7;
  font-size: 1.05rem;
  color: var(--green-2);
  box-shadow: 0 1.5px 6px #6f04d922;
  font-weight: 600;
  margin-bottom: 1em;
}
.about-product-logo {
  width: 56px;
  height: 48px;
  object-fit: contain;
}
.product-carousel-card {
  background: #fff;
  border-radius: 1.6em;
  box-shadow: 0 2px 13px #6f04d933;
  min-height: 180px;
  max-width: 370px;
}
.about-cta {
  background: linear-gradient(90deg, #e7ffe7 70%, #f7f8fd 100%);
}
@media (max-width: 600px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  .about-hero-img {
    width: 92vw;
  }
}

/* Privacy Policy */

body {
  background: #f5f6fa;
  color: #e2e6ed;
  font-family: "Segoe UI", "Roboto", Arial, sans-serif;
}
.policy-box {
  max-width: 880px;
  margin: 48px auto 60px auto;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e6e9f0;
  box-shadow: 0 4px 16px rgba(44, 56, 96, 0.07);
  padding: 48px 36px 38px 36px;
}
.policy-box h1 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #222e37;
  margin-bottom: 1.2rem;
}
.policy-meta {
  font-size: 1rem;
  color: #777b83;
  margin-bottom: 2.1rem;
}
.policy-box h3 {
  color: #6f04d9;
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2.1rem;
  margin-bottom: 0.8rem;
}
.policy-box ul {
  padding-left: 1.15rem;
  margin-bottom: 1.25rem;
}
.policy-box li {
  margin-bottom: 0.35rem;
}
.policy-box strong {
  color: #1b1f2b;
}
.policy-box a {
  color: #6f04d9;
  text-decoration: underline;
}
.policy-box a:hover {
  color: #6f04d9;
  text-decoration: underline;
}
.policy-box hr {
  margin: 2.4rem 0;
  border-top: 1.5px solid #f1f3f8;
}
@media (max-width: 575px) {
  .policy-box {
    padding: 28px 8px 24px 8px;
  }
  .policy-box h1 {
    font-size: 1.6rem;
  }
  .policy-box h3 {
    font-size: 1.08rem;
  }
}

/* Terms and conditions */

body {
  background: #181d2f;
}
.terms-box {
  max-width: 880px;
  margin: 48px auto 60px auto;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e6e9f0;
  box-shadow: 0 4px 16px rgba(44, 56, 96, 0.07);
  padding: 48px 36px 38px 36px;
}
.terms-box h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #23324a;
  margin-bottom: 1.2rem;
}
.terms-meta {
  font-size: 1rem;
  color: #787878;
  margin-bottom: 2.1rem;
}
.terms-box h3 {
  color: #6f04d9;
  font-size: 1.22rem;
  font-weight: 600;
  margin-top: 2.1rem;
  margin-bottom: 0.7rem;
}
.terms-box ul,
.terms-box ol {
  padding-left: 1.15rem;
  margin-bottom: 1.2rem;
}
.terms-box li {
  margin-bottom: 0.35rem;
}
.terms-box strong {
  color: #1b1f2b;
}
.terms-box a {
  color: #6f04d9;
  text-decoration: underline;
}
.terms-box a:hover {
  color: #6f04d9;
  text-decoration: underline;
}
.terms-box hr {
  margin: 2.4rem 0;
  border-top: 1.5px solid #f1f3f8;
}
@media (max-width: 575px) {
  .terms-box {
    padding: 28px 8px 24px 8px;
  }
  .terms-box h1 {
    font-size: 1.4rem;
  }
  .terms-box h3 {
    font-size: 1.05rem;
  }
}

/* Contact us page */
.contact-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(44, 56, 96, 0.09);
  padding: 36px 28px 30px 28px;
  margin-bottom: 2.5rem;
}
.contact-icon {
  color: #6f04d9;
  margin-right: 10px;
  font-size: 1.3rem;
}
.contact-detail {
  margin-bottom: 0.8rem;
}
.contact-form label {
  font-weight: 500;
}
.contact-map {
  border-radius: 14px;
  min-height: 280px;
  width: 100%;
  border: none;
}
@media (max-width: 767px) {
  .contact-card {
    padding: 18px 6px 20px 6px;
  }
}

/* Services Page */

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(60, 60, 90, 0.1);
  padding: 34px 26px 30px 26px;
  margin-bottom: 2.2rem;
  transition: transform 0.15s cubic-bezier(0.29, 1.15, 0.37, 1.09),
    box-shadow 0.18s;
  border: 1px solid #f2f2f2;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(44, 80, 90, 0.13);
  transform: translateY(-6px) scale(1.03);
}
.service-icon {
  font-size: 2.5rem;
  color: #6f04d9;
  margin-bottom: 14px;
}
.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-desc {
  font-size: 1.03rem;
  min-height: 70px;
  color: #384453;
  margin-bottom: 0.8rem;
}
.service-link {
  color: #6f04d9;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.18s;
}
.service-link:hover {
  color: #167340;
}
@media (max-width: 767px) {
  .service-card {
    padding: 18px 8px 20px 8px;
  }
}

/* services Digital Marketing */

.hero-digital {
  background: linear-gradient(90deg, #f3faf6 0, #e0f3ee 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.digital-icon {
  color: #6f04d9;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.service-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(60, 80, 70, 0.07);
  padding: 40px 30px 36px 30px;
  margin-bottom: 2.2rem;
}
.feature-icon {
  color: #6f04d9;
  font-size: 2rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .service-section {
    padding: 20px 8px 18px 8px;
  }
}

/* App Promotion Page */

.hero-apppromo {
  background: linear-gradient(90deg, #f6f8fe 0, #e5fbef 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.app-icon {
  color: #6f04d9;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.service-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(60, 80, 70, 0.07);
  padding: 40px 30px 36px 30px;
  margin-bottom: 2.2rem;
}
.feature-icon {
  color: #6f04d9;
  font-size: 2rem;
  margin-bottom: 10px;
}
.process-step {
  background: #f4faf7;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 18px 16px 14px 16px;
  border-left: 5px solid #6f04d9;
}
@media (max-width: 767px) {
  .service-section {
    padding: 20px 8px 18px 8px;
  }
  .process-step {
    padding: 12px 7px 10px 12px;
  }
}

/* Social Media Marketing */

.hero-social {
  background: linear-gradient(90deg, #f3faf6 0, #e0f3ee 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.social-icon {
  color: #6f04d9;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.service-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(60, 80, 70, 0.07);
  padding: 40px 30px 36px 30px;
  margin-bottom: 2.2rem;
}
.feature-icon {
  color: #6f04d9;
  font-size: 2rem;
  margin-bottom: 10px;
}
.ai-badge {
  background: #e7ffe5;
  color: #6f04d9;
  font-weight: 600;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 1rem;
  display: inline-block;
  margin: 12px 0 0 0;
}
.process-step {
  background: #f8fafd;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 18px 16px 14px 16px;
  border-left: 5px solid #6f04d9;
}
@media (max-width: 767px) {
  .service-section {
    padding: 20px 8px 18px 8px;
  }
  .process-step {
    padding: 12px 7px 10px 12px;
  }
}

/* performance marketing */

.hero-performance {
  background: linear-gradient(90deg, #f8fafb 0, #f1fff6 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.perf-icon {
  color: #6f04d9;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.service-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(60, 80, 70, 0.07);
  padding: 40px 30px 36px 30px;
  margin-bottom: 2.2rem;
}
.feature-icon {
  color: #6f04d9;
  font-size: 2rem;
  margin-bottom: 10px;
}
.process-step {
  background: #f5f8fa;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 18px 16px 14px 16px;
  border-left: 5px solid #6f04d9;
}
@media (max-width: 767px) {
  .service-section {
    padding: 20px 8px 18px 8px;
  }
  .process-step {
    padding: 12px 7px 10px 12px;
  }
}

/* SEO and Content */

.hero-seo {
  background: linear-gradient(90deg, #f5f9ff 0, #e5fbea 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.seo-icon {
  color: #6f04d9;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.service-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(60, 80, 70, 0.07);
  padding: 40px 30px 36px 30px;
  margin-bottom: 2.2rem;
}
.feature-icon {
  color: #6f04d9;
  font-size: 2rem;
  margin-bottom: 10px;
}
.process-step {
  background: #f5f8fa;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 18px 16px 14px 16px;
  border-left: 5px solid #6f04d9;
}
.ai-badge {
  background: #e7ffe5;
  color: #6f04d9;
  font-weight: 600;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 1rem;
  display: inline-block;
  margin: 10px 0 0 0;
}
@media (max-width: 767px) {
  .service-section {
    padding: 20px 8px 18px 8px;
  }
  .process-step {
    padding: 12px 7px 10px 12px;
  }
}

/* Media and PR */

.hero-media {
  background: linear-gradient(90deg, #f7fafd 0, #eaf5ff 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.media-icon {
  color: #0e85c6;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.service-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(60, 80, 70, 0.07);
  padding: 40px 30px 36px 30px;
  margin-bottom: 2.2rem;
}
.feature-icon {
  color: #0e85c6;
  font-size: 2rem;
  margin-bottom: 10px;
}
.process-step {
  background: #f8fafd;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 18px 16px 14px 16px;
  border-left: 5px solid #0e85c6;
}
@media (max-width: 767px) {
  .service-section {
    padding: 20px 8px 18px 8px;
  }
  .process-step {
    padding: 12px 7px 10px 12px;
  }
}

/* Influencer Marketing */

.hero-influencer {
  background: linear-gradient(90deg, #fff7fa 0, #f2fffa 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.influencer-icon {
  color: #bb3e8d;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.service-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(60, 80, 70, 0.07);
  padding: 40px 30px 36px 30px;
  margin-bottom: 2.2rem;
}
.feature-icon {
  color: #bb3e8d;
  font-size: 2rem;
  margin-bottom: 10px;
}
.process-step {
  background: #f8fafd;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 18px 16px 14px 16px;
  border-left: 5px solid #bb3e8d;
}
@media (max-width: 767px) {
  .service-section {
    padding: 20px 8px 18px 8px;
  }
  .process-step {
    padding: 12px 7px 10px 12px;
  }
}

/* Web app analytics */

.hero-analytics {
  background: linear-gradient(90deg, #f5fafd 0, #e4f2ff 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.analytics-icon {
  color: #0099d6;
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.service-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(60, 80, 70, 0.07);
  padding: 40px 30px 36px 30px;
  margin-bottom: 2.2rem;
}
.feature-icon {
  color: #0099d6;
  font-size: 2rem;
  margin-bottom: 10px;
}
.process-step {
  background: #f8fafd;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 18px 16px 14px 16px;
  border-left: 5px solid #0099d6;
}
@media (max-width: 767px) {
  .service-section {
    padding: 20px 8px 18px 8px;
  }
  .process-step {
    padding: 12px 7px 10px 12px;
  }
}

/* Leadership Team */

.leader-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(60, 80, 70, 0.09);
  padding: 36px 30px 32px 30px;
  text-align: center;
  margin-bottom: 32px;
  transition: transform 0.14s cubic-bezier(0.4, 0, 0.2, 1);
}
.leader-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 28px rgba(34, 139, 169, 0.13);
}
.leader-img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 100%;
  border: 4px solid #6600cc;
  margin-bottom: 18px;
  background: #e5e5e5;
}
.leader-linkedin {
  color: #0a66c2;
  font-size: 1.4rem;
  margin-left: 5px;
}
.leadership-hero {
  background: linear-gradient(90deg, #eaf8ee 0, #f9f6ff 100%);
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fun-highlight {
  background: #fff3cd;
  color: #cf8500;
  border-radius: 6px;
  padding: 2px 8px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-left: 7px;
}
.quote {
  font-style: italic;
  color: #5f6d7a;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .leader-card {
    padding: 18px 8px 22px 8px;
  }
  .leader-img {
    width: 88px;
    height: 88px;
  }
}

/* industries page */

.industry-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(34, 139, 169, 0.09);
  padding: 38px 30px 32px 30px;
  margin-bottom: 2.2rem;
  transition: box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.13s cubic-bezier(0.4, 0, 0.2, 1);
}
.industry-card:hover {
  box-shadow: 0 12px 36px rgba(60, 80, 70, 0.13);
  transform: translateY(-4px) scale(1.01);
}
.industry-icon {
  font-size: 2.4rem;
  color: #6600cc;
  margin-bottom: 14px;
}
.industry-btn {
  min-width: 132px;
}
@media (max-width: 767px) {
  .industry-card {
    padding: 20px 8px 18px 8px;
  }
}

/* Industries - Fintech */

.fintech-hero {
  background: linear-gradient(90deg, #f4fafd 0, #e8f6fd 100%);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.fintech-icon {
  color: #6600cc;
  font-size: 2.5rem;
  margin-bottom: 14px;
}
.fintech-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 18px rgba(34, 139, 169, 0.08);
  padding: 38px 28px 32px 28px;
  margin-bottom: 2.1rem;
}
.feature-icon {
  color: #6600cc;
  font-size: 2rem;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .fintech-section {
    padding: 20px 7px 16px 7px;
  }
}

/* gaming fantasy page */
body {
  background: #181d2f;
  color: #e2e6ed;
  font-family: "Segoe UI", "Roboto", Arial, sans-serif;
}
.gaming-hero {
  position: relative;
  background: linear-gradient(120deg, #22284d 0, #1a1334 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}
.gaming-hero-content {
  z-index: 2;
  position: relative;
  padding: 70px 0 50px 0;
}
.gaming-image {
  width: 500px;
  margin-bottom: 10px;
}
.gaming-hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: #ffce45;
  letter-spacing: 1px;
  text-shadow: 2px 2px 16px #0e0727;
}
.gaming-hero-desc {
  font-size: 1.32rem;
  color: #c8e5e6;
  margin-bottom: 26px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 10px #10101073;
}
.gaming-btn-main {
  background: linear-gradient(90deg, #3acbe8 0, #4bffb0 100%);
  color: #191d3b;
  font-weight: 700;
  border: 0;
  border-radius: 8px;
  padding: 16px 40px;
  font-size: 1.12rem;
  box-shadow: 0 5px 28px 0 rgba(0, 255, 202, 0.22);
  margin-top: 12px;
  transition: 0.15s;
}
.gaming-btn-main:hover {
  background: linear-gradient(90deg, #38ffc8 0, #69b2ff 100%);
  color: #11113e;
  box-shadow: 0 8px 36px 0 rgba(36, 200, 242, 0.35);
}
.gaming-section {
  background: rgba(36, 44, 71, 0.96);
  border-radius: 22px;
  box-shadow: 0 8px 44px rgba(24, 30, 46, 0.22);
  padding: 46px 36px 38px 36px;
  margin-bottom: 2.6rem;
  position: relative;
  overflow: hidden;
}
.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #49e3f9;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.section-desc {
  font-size: 1.15rem;
  color: #b2c7f0;
  margin-bottom: 28px;
}
.gaming-card {
  background: #232849;
  border-radius: 12px;
  padding: 34px 22px 28px 22px;
  box-shadow: 0 3px 18px rgba(33, 255, 212, 0.08);
  margin-bottom: 2.1rem;
  text-align: center;
  transition: 0.12s cubic-bezier(0.4, 0, 0.2, 1);
}
.gaming-card:hover {
  background: #1e2238;
  box-shadow: 0 12px 34px rgba(97, 219, 255, 0.12);
  transform: translateY(-7px) scale(1.01);
}
.gaming-icon {
  font-size: 2.3rem;
  color: #48e5d5;
  margin-bottom: 14px;
  text-shadow: 0 3px 16px #1f1948b7;
}
.gaming-divider {
  border-top: 2px dashed #48e5d5;
  margin: 38px auto 38px auto;
  max-width: 240px;
  opacity: 0.7;
}
.gaming-avatar {
  width: 62px;
  height: 62px;
  border-radius: 100px;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #4beadf;
  background: #303868;
}
.gaming-faq .accordion-button {
  background: #1b2040;
  color: #53e7b1;
  font-weight: 500;
  border: 0;
}
.gaming-faq .accordion-body {
  background: #222651;
  color: #b5e9ee;
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
}
.gaming-faq .accordion-item {
  border-radius: 13px;
  margin-bottom: 1.3rem;
  border: 0;
  overflow: hidden;
}
.gaming-feature-img {
  width: 96px;
  height: 96px;
  border-radius: 19px;
  object-fit: cover;
  margin: 0 auto 10px auto;
  background: #2e395d;
}
@media (max-width: 767px) {
  .gaming-section {
    padding: 18px 4px 14px 4px;
  }
  .gaming-hero-content {
    padding: 28px 0 16px 0;
  }
  .section-title {
    font-size: 1.3rem;
  }
}

.gaming-table {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(120deg, #242b44 0, #1a1334 100%);
  box-shadow: 0 6px 36px rgba(0, 255, 202, 0.07);
  border: 2px solid #38e7c3;
}
.gaming-table th {
  background: #21244a;
  color: #ffce45;
  font-size: 1.18rem;
  font-weight: 800;
  text-align: center;
  border-bottom: 2px solid #38e7c3;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px #1a1334;
}
.gaming-table td {
  background: rgba(31, 38, 78, 0.97);
  color: #d1f8ff;
  font-size: 1.08rem;
  border: none;
  border-bottom: 1px solid #383c5d;
  vertical-align: middle;
  padding: 16px 22px;
  box-shadow: 0 1px 6px rgba(0, 255, 202, 0.01);
}
.gaming-table tbody tr:last-child td {
  border-bottom: none;
}
.gaming-table td:first-child {
  border-left: 4px solid #e447ff;
  font-weight: 600;
  background: rgba(46, 26, 65, 0.75);
  color: #ff9cf7;
}
.gaming-table td:last-child {
  border-right: 4px solid #38e7c3;
  font-weight: 700;
  background: rgba(30, 49, 61, 0.82);
  color: #59ffc8;
}
.gaming-table-striped tbody tr:nth-of-type(odd) td {
  background: rgba(29, 38, 70, 0.93);
}
@media (max-width: 767px) {
  .gaming-table td,
  .gaming-table th {
    padding: 10px 7px;
    font-size: 1rem;
  }
}
