@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

:root {
  /* Updated Color Scheme: Red/Green/Yellow */
  --primary-color: #dc3545;
  /* Red (Bootstrap Danger) */
  --secondary-color: #198754;
  /* Green (Bootstrap Success) */
  --accent-color: #000000;
  /* Yellow (Bootstrap Warning) */
  --light-bg: #f0f2f5;
  --dark-bg: #212529;
  --white-color: #ffffff;
  --yellow-color: #ffc107;
  --text-dark: #343a40;
  --text-muted-light: #6c757d;
  --border-color: #dee2e6;
  --bs-body-font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --border-radius-base: 0.625rem;
  --border-radius-pill: 30px;
  --box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --box-shadow-base: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.1);
  --transition-base: all 0.3s ease;
}

body {
  font-family: var(--bs-body-font-family);
  background-color: var(--light-bg);
  color: var(--text-dark);
}

#header {
  position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.navbar-custom {
  background-color: var(--white-color) !important;
  box-shadow: var(--box-shadow-sm);
}

.navbar-brand img {
  height: 40px;
  vertical-align: middle;
}

.navbar-custom .navbar-brand {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.navbar-custom .nav-link,
.navbar-custom .dropdown-toggle {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: var(--transition-base);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link:focus,
.navbar-custom .dropdown-toggle:hover,
.navbar-custom .dropdown-toggle:focus {
  color: var(--primary-color) !important;
  background-color: rgba(220, 53, 69, 0.05);
}

/* Adjusted hover color */
.navbar-custom .nav-link.active {
  color: var(--primary-color) !important;
  font-weight: 700;
  background-color: transparent;
}

.navbar-custom .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 3px;
  background-color: var(--primary-color);
  /* Changed underline to primary */
  border-radius: 1.5px;
}

.navbar-custom .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-custom .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(220, 53, 69, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Changed toggler icon color */
.navbar-nav .dropdown-menu {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-base);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.6rem 1.2rem;
  color: var(--text-dark);
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: start;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: rgba(220, 53, 69, 0.05);
  color: var(--primary-color);
}

/* Adjusted hover color */
.dropdown-item i.fa-fw {
  width: 1.5em;
  text-align: center;
  margin-right: 0.5rem;
}

.dropdown-divider {
  border-top: 1px solid var(--border-color);
  opacity: 0.5;
}

.wallet-balance {
  background-color: transparent;
  border-radius: var(--border-radius-pill);
  padding: 8px 16px;
  color: var(--text-muted-light);
  font-size: 0.9rem;
  transition: var(--transition-base);
  border: 1px solid var(--border-color);
}

.wallet-balance:hover {
  border-color: var(--primary-color);
  background-color: rgba(220, 53, 69, 0.03);
}

/* Adjusted hover color */
.wallet-balance i {
  color: var(--secondary-color);
  margin-right: 5px;
}

/* Green icon for wallet */
.wallet-balance .balance-value {
  font-weight: bold;
  color: var(--secondary-color);
}

/* Green balance */
.btn {
  border-radius: var(--border-radius-pill);
  padding: 8px 20px;
  font-weight: 600;
  transition: var(--transition-base);
  border: none;
}

.btn-sm {
  padding: 6px 16px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 10px 25px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-primary:hover {
  background-color: #b02a37;
  color: var(--white-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Darker red hover */
.btn-secondary,
.btn-deposit {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

/* Green button, white text */
.btn-secondary:hover,
.btn-deposit:hover {
  background-color: #13653f;
  color: var(--white-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Darker green hover */
.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.carousel-custom {
  border-radius: var(--border-radius-base);
  overflow: hidden;
  box-shadow: var(--box-shadow-base);
  margin-bottom: 20px;
  /* Reduced margin */
}
.main-content {
  margin: 1rem 0;
}
.carousel-item img {
  height: 400px;
  object-fit: cover;
}

.carousel-caption {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  text-align: left;
  border-bottom-left-radius: var(--border-radius-base);
  border-bottom-right-radius: var(--border-radius-base);
}

.carousel-caption h2 {
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 0.75rem;
}

.carousel-caption p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.carousel-caption .btn {
  background-color: var(--accent-color);
  color: var(--dark-bg);
}

/* Yellow button */
.carousel-caption .btn:hover {
  background-color: #e0a800;
  color: var(--dark-bg);
}

/* Darker yellow hover */
.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
  opacity: 0.7;
  height: 4px;
  width: 30px;
  border-radius: 2px;
  margin: 0 5px;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: var(--accent-color);
}

/* Yellow active indicator */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(220, 53, 69, 0.5);
  border-radius: 50%;
  padding: 1rem;
  background-size: 50% 50%;
}

/* Red control background */
.section-title {
  color: #000;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-top: 0px;
  display: inline-block;
}

.game-card {
  border-radius: var(--border-radius-base);
  overflow: hidden;
  transition: var(--transition-base);
  margin-bottom: 30px;
  border: none;
  box-shadow: var(--box-shadow-base);
  background-color: var(--white-color);
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.game-card .card-img-top {
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid var(--secondary-color);
}

/* Green border bottom */
.game-card .card-body {
  padding: 20px;
  width: 100%;
  justify-content: space-between;
}

.game-card .card-title {
  font-weight: 700;
  color: #000;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.time-close.c-18h {
  color: #0040d7 !important;
}

.game-card .card-text {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
  min-height: 44px;
  /* Adjusted min-height */
}

.game-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  flex-direction: column;
  text-align: center;
}

.game-prize {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.5rem;
  /* Increased size */
}

.header-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.winner-flex {
  align-items: center;
  gap: 12px;
}

.game-time {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.game-time i {
  margin-right: 3px;
  color: var(--primary-color);
}

.game-card .btn-play {
  width: 100%;
  background-color: #198754;
  color: var(--white-color);
  margin-top: 0;
}

.game-card .btn-play:hover {
  background-color: #b02a37;
  color: var(--white-color);
}

.winner-card {
  border: none;
  box-shadow: var(--box-shadow-sm);
  border-radius: var(--border-radius-base);
  margin-bottom: 10px;
  transition: var(--transition-base);
  background-color: var(--white-color);
  padding: 15px;
}

.winner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-base);
}

.winner-info {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.winner-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 15px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Green avatar bg */
.winner-details {
  flex-grow: 1;
}

.winner-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.winner-prize {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 2px;
}

/* Yellow prize */
.winner-game {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.winner-date {
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.why-choose-section {
  padding: 1.2rem 0;
  /* Reduced padding */
}

.section-title-center {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 0px;
  text-align: center;
  display: block;
}

.heading-secondary-color.section-title-center {
  color: var(--secondary-color);
}

.heading-blue-color.section-title-center {
  color: #0040d7 !important;
  margin-bottom: 10px !important;
}

.why-choose-card {
  background-color: var(--white-color);
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow-base);
  padding: 2rem 1.5rem;
  border: none;
  transition: var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
}

.why-choose-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fceaea;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Light red bg for icon */
.why-choose-icon-wrapper i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

/* Red icon */
.why-choose-card h5 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.why-choose-card p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  flex-grow: 1;
}

.how-to-play-section {
  padding: 0;
}
.white-background {
  background-color: var(--white-color);
  padding: 3rem 1rem;
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow-sm);
}
.how-to-play-step {
  text-align: center;
  margin-bottom: 0px;
  margin-top: 0;
}

.how-to-play-icon-wrapper {
  background-color: var(--white-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow-sm);
  border: 3px solid var(--secondary-color);
}

/* Red border */
.how-to-play-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--secondary-color);
}

/* Red icon */
.how-to-play-step h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.how-to-play-step p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.footer {
  background-color: var(--dark-bg);
  color: #adb5bd;
  padding: 40px 0 20px;
}

.footer h5 {
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Yellow hover */
.social-links {
  font-size: 20px;
}

.social-links a {
  color: #adb5bd;
  margin-right: 15px;
  transition: var(--transition-base);
  display: inline-block;
}

.social-links a:hover {
  color: var(--white-color);
  transform: scale(1.1);
}

.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .text-center small {
  color: #888;
}

/* Styles specific to play page - keep for consistency if navigating */
.number-selection-grid,
.superball-selection-grid,
.promotion-selection-grid {
  display: grid;
  gap: 0.5rem;
  justify-content: center;
}

.number-selection-grid {
  grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
  max-width: 400px;
  margin: 0 auto;
}

.superball-selection-grid {
  grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
  max-width: 250px;
  margin: 0 auto;
}

.promotion-selection-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.number-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
  color: var(--text-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.1s ease;
  font-size: 0.9rem;
  padding: 0;
}

.number-btn:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
}

.number-btn.selected {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
  font-weight: 700;
}

.number-btn.selected.superball {
  background-color: var(--accent-color);
  color: var(--dark-bg);
  border-color: var(--accent-color);
}

/* Yellow superball */
.number-btn.selected.promotion {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
}

/* Green promotion */
.number-btn:active {
  transform: scale(0.95);
}

#selected-numbers-preview,
#modal-selected-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  min-height: 45px;
  padding: 0.5rem 0;
}

#selected-numbers-preview span,
#modal-selected-numbers span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white-color);
  box-shadow: var(--box-shadow-sm);
}

#selected-numbers-preview span.main,
#modal-selected-numbers span.main {
  background-color: var(--primary-color);
}

#selected-numbers-preview span.superball,
#modal-selected-numbers span.superball {
  background-color: var(--accent-color);
  color: var(--dark-bg);
}

/* Yellow superball */
#selected-numbers-preview span.promotion,
#modal-selected-numbers span.promotion {
  background-color: var(--secondary-color);
}

/* Green promotion */
#selected-numbers-preview span.placeholder,
#modal-selected-numbers span.placeholder {
  background-color: #e9ecef;
  border: 1px dashed #adb5bd;
  box-shadow: none;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: #f8f9fa;
  border: 1px solid transparent;
  border-top-left-radius: var(--border-radius-base);
  border-top-right-radius: var(--border-radius-base);
  color: var(--text-muted-light);
  font-weight: 600;
}

.nav-tabs .nav-link.active {
  color: var(--primary-color);
  background-color: var(--white-color);
  border-color: var(--border-color) var(--border-color) var(--white-color);
  font-weight: 700;
}

.tab-content {
  background-color: var(--white-color);
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--border-radius-base) var(--border-radius-base);
}

.ticket-summary-card {
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow-sm);
  background-color: var(--white-color);
  position: sticky;
  top: 80px;
}

.price-display {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* Yellow price display */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-accent {
  color: var(--accent-color) !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.btn-play {
  background-color: #198754;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 30px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: all 0.3s ease;
}

.btn-play:hover {
  background-color: #146c43;
  color: #ffffff;
  transform: scale(1.05);
}

.action-bar {
  background-color: var(--white-color);
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.action-bar .help-link a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.9rem;
}
.action-bar .help-link a:hover {
  text-decoration: underline;
}
.action-bar .total-cost-display {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.action-bar .total-cost-display strong {
  color: var(--accent-color);
  font-size: 1.4rem;
}
.action-bar .buy-btn {
  min-width: 120px;
  font-size: 1.1rem;
  padding: 0.6rem 1.5rem;
}
.sticky-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.col-w-20 {
  width: 20%;
}

.game-title {
  color: var(--primary-color);
  font-size: 1.4rem;
}

@media (max-width: 991.98px) {
  .navbar-custom .navbar-nav {
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
  }

  .wallet-balance,
  .btn-deposit,
  .navbar-custom .dropdown {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .wallet-balance {
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .navbar-custom .dropdown-toggle {
    display: block;
    text-align: start;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .navbar-custom .dropdown-menu {
    width: 100%;
    text-align: center;
  }
  .navbar-custom .navbar-nav {
    margin-top: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.5rem;
  }

  .navbar-custom .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
  }

  .navbar-collapse {
    background-color: white;
    padding: 1rem;
    border-radius: var(--border-radius-base);
    box-shadow: var(--box-shadow-sm);
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }

  .navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 767.98px) {
  .carousel-item img {
    height: 250px;
  }

  .carousel-caption {
    padding: 1rem;
    text-align: center;
  }

  .carousel-caption h2 {
    font-size: 1.5rem;
  }

  .section-title,
  .section-title-center {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .game-card .card-text {
    min-height: auto;
  }

  .why-choose-section {
    padding: 1rem 0;
  }

  /* Further reduced padding */
  .how-to-play-section {
    padding: 1rem 0.5rem;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  /* Further reduced padding */
  .footer {
    text-align: start;
  }

  .footer .col-lg-4 {
    margin-bottom: 30px;
  }

  .social-links {
    margin-top: 10px;
    justify-content: center;
    display: flex;
  }

  .social-links a {
    margin: 0 10px;
  }
  .action-bar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 10px;
  }
  .action-bar .total-cost-display {
    font-size: 1rem;
  }
  .action-bar .total-cost-display strong {
    font-size: 1.2rem;
  }
  .action-bar .buy-btn {
    min-width: 100px;
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
  .col-w-20 {
    width: 50%;
  }
  .col-w-20:last-child {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .tab-content {
    padding: 1rem;
  }

  .number-selection-grid,
  .superball-selection-grid {
    max-width: 100%;
    gap: 0.3rem;
  }

  .number-btn {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  #selected-numbers-preview span,
  #modal-selected-numbers span {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .promotion-selection-grid {
    gap: 0.5rem;
  }

  .promotion-selection-grid > div {
    margin-bottom: 0.5rem;
  }

  .ticket-summary-card {
    position: static;
    top: auto;
  }

  .carousel-custom {
    margin-bottom: 20px;
  }

  .row > .col-md-6.col-lg-4,
  .row > .col-md-6.col-lg-3,
  .row > .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer .row > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer .row > .col-lg-2.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .card-text {
    min-height: 0;
  }

  .game-card {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
  }

  .game-card .btn-play {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    margin-top: 10px;
  }

  .game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }

  .game-card .card-title {
    font-size: 1.3rem;
    font-weight: 700;
  }

  .game-card .card-text {
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 0px;
    text-align: start;
    margin-bottom: 0;
  }

  .game-card .game-prize {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
  }

  .game-card .btn-play {
    width: 100%;
    max-width: 250px;
  }

  .card.why-choose-card {
    padding: 15px;
    flex-direction: row;
    gap: 10px;
  }

  .why-chose-content {
    width: calc(100% - 80px);
    text-align: start;
  }

  .why-choose-card p {
    margin: 0;
  }

  .why-choose-card h5 {
    margin-bottom: 5px;
  }

  .why-choose-icon-wrapper {
    margin-bottom: 0;
  }

  .ft-contact-box {
    width: 100%;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}


