.promotions-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 20px 0;
}

.promotions-container .page-title {
      color: var(--light-orange);
      font-size: 48px;
      text-align: center;
      margin-bottom: 30px;
      text-shadow: 0px 2px 2px #000;
      text-transform: uppercase;
}

/* Navigation Tabs */
.promotions-container .nav-tabs {
      border: none;
      margin-bottom: 30px;
      justify-content: center;
}

.promotions-container .nav-tabs .nav-item {
      border-radius: 25px;
      transition: all 0.3s ease;
      margin: 0 5px 0 0;
}
.promotions-container .nav-tabs .nav-item.active a{
      color: #fff;
}
.promotions-container .nav-tabs .nav-link {
      border: none;
      background: none;
      color: var(--secondary-color);
      font-size: 16px;
      font-weight: 600;
      padding: 12px 24px;
      margin: 0 5px;
      border-radius: 25px;
      transition: all 0.3s ease;
}

.promotions-container .nav-tabs .nav-item:hover {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
}

.promotions-container .nav-tabs .nav-item.active {
      background: var(--blue-teal);
      color: #fff;
      box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Additional styling for btn-promotion */
.btn-promotion {
      cursor: pointer;
      transition: all 0.3s ease;
}

.btn-promotion .nav-link {
      transition: all 0.3s ease;
}


.promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(570px, 1fr));
      gap: 25px;
      margin-bottom: 40px;
}

.promotion-card {
      background: linear-gradient(135deg, var(--blue-teal) 0%, var(--teal) 100%);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
}

.promotion-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
      border-color: #007bff;
}

.promotion-image {
      position: relative;
      height: 210px;
      background: linear-gradient(45deg, #1e3c72, #2a5298);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
}

.promotion-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.3;
}

.promotion-image img {
      max-width: 100%;
      max-height: 100%;
      width: 100%;
      object-fit: cover;
      z-index: 1;
      position: relative;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.promotion-img {
      width: 100%;
}

.promotion-title h3 {
      font-size: 20px;
      font-weight: bold;
      margin: 0;
      background: linear-gradient(45deg, #ffd700, #ffed4e);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.promotion-content {
      padding: 10px;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
}

.promotion-description {
      color: #ccc;
      font-size: 14px;
      text-align: center;
      background: var(--bg-color);
      height: 10px;
}

.btn-details {
      background: linear-gradient(45deg, #ff6b35, #f7931e);
      border: none;
      color: #fff;
      padding: 6px 18px;
      border-radius: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-details:hover {
      background: linear-gradient(45deg, #e55a2b, #e0851a);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
      color: #fff;
}

.promotion-modal .modal-content {
      background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
      border: 1px solid #333;
      border-radius: 15px;
      color: #fff;
}

.promotion-modal .modal-header {
      background: linear-gradient(45deg, #1e3c72, #2a5298);
      border-bottom: 1px solid #333;
      border-radius: 15px 15px 0 0;
      padding: 10px 20px;
}

.promotion-modal .modal-title {
      color: #fff;
      font-size: 24px;
      font-weight: bold;
      margin: 0;
}

.promotion-modal .btn-close {
      color: #fff;
      opacity: 0.8;
      font-size: 24px;
      background: none;
      border: none;
}

.promotion-modal .btn-close:hover {
      opacity: 1;
}

.promotion-modal .modal-body {
      padding: 15px;
}

.promotion-banner {
      background: linear-gradient(45deg, #1e3c72, #2a5298);
      border-radius: 10px;
      margin-bottom: 25px;
      position: relative;
      overflow: hidden;
}

.promotion-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      opacity: 0.3;
}

.banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
      border-radius: 10px;
      border: 1px solid var(--teal);
}

.modal-body .banner-content img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
}

.promotion-details {
      margin-bottom: 25px;
}

.promotion-details h4 {
      color: #ffd700;
      font-size: 18px;
      margin-bottom: 15px;
      font-weight: bold;
}

.promotion-details ol {
      padding-left: 20px;
}

.promotion-details li {
      color: #ccc;
      margin-bottom: 8px;
      line-height: 1.5;
}

.promotion-modal .modal-footer {
      border-top: 1px solid #333;
      padding: 10px;
      text-align: center;
}

.btn-join-now {
      background: linear-gradient(45deg, #28a745, #20c997);
      border: none;
      color: #fff;
      padding: 12px 30px;
      border-radius: 25px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-join-now:hover {
      background: linear-gradient(45deg, #218838, #1ea085);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
      color: #fff;
      text-decoration: none;
}

/* Additional styling for better visual appeal */
.promotion-card {
      position: relative;
      overflow: hidden;
}

.promotion-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s;
      z-index: 1;
}

.promotion-card:hover::before {
      left: 100%;
}

.promotion-image {
      position: relative;
      z-index: 2;
}

.promotion-content {
      position: relative;
      z-index: 2;
}

/* Modal improvements */
.promotion-modal .modal-content {
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.promotion-banner {
      position: relative;
      overflow: hidden;
}

.promotion-banner::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 237, 78, 0.1));
      pointer-events: none;
}

/* Loading Animation */
.promotions-loading {
      display: none;
      text-align: center;
      padding: 40px;
}

.promotions-loading .spinner {
      border: 4px solid #333;
      border-top: 4px solid #007bff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      animation: spin 1s linear infinite;
      margin: 0 auto 20px;
}

@keyframes spin {
      0% {
            transform: rotate(0deg);
      }

      100% {
            transform: rotate(360deg);
      }
}