
    body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      color: #f0eef5;
      background-color: #281549;
      background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    }

    /* navbar custom - deep purple matching vibe */
    .navbar {
      background-color: #281549 !important;
      backdrop-filter: blur(8px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      padding: 0.8rem 0;
      transition: all 0.2s;
      border-bottom: 1px solid rgba(255, 193, 7, 0.2);
    }

    .navbar-brand {
      font-weight: 800;
      font-size: 1.7rem;
      letter-spacing: -0.5px;
      color: #f9c74f !important;
    }
    .navbar-brand span {
      color: white;
      font-weight: 600;
    }
    .nav-link {
      color: #e0d6f0 !important;
      font-weight: 500;
      margin: 0 0.2rem;
      transition: 0.2s;
    }
    .nav-link:hover, .nav-link.active {
      color: #f9c74f !important;
      transform: translateY(-1px);
    }
    /* hero slider */
    .hero-slider {
      background: #1f1038;
      min-height: 550px;
    }
    .carousel-item {
      min-height: 550px;
      background-size: cover;
      background-position: center 30%;
      position: relative;
    }
    .carousel-item::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg, rgba(12,12,34,0.55) 50%);
    }
    .carousel-caption {
      bottom: 25%;
      text-align: left;
      left: 8%;
      right: auto;
      top: auto;
      max-width: 550px;
    }
    .carousel-caption h1 {
      font-size: 3.2rem;
      font-weight: 800;
      text-shadow: 2px 2px 12px rgba(0,0,0,0.5);
    }
    .carousel-caption p {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }
    .btn-outline-warning {
      border: 2px solid #f9c74f;
      color: #f9c74f;
      font-weight: 600;
    }
    .btn-outline-warning:hover {
      background: #f9c74f;
      color: rgb(40, 21, 73);
    }
    .btn-warning {
      background: #f9c74f;
      border: none;
      color: rgb(40, 21, 73);
      font-weight: 700;
    }
    /* section headings */
    .section-title {
      font-weight: 800;
      font-size: 2.3rem;
      position: relative;
      display: inline-block;
      margin-bottom: 2rem;
      color: #f9c74f;
    }
    .section-title:after {
      content: '';
      display: block;
      width: 65px;
      height: 4px;
      background: #f9c74f;
      margin-top: 10px;
      border-radius: 4px;
    }
    /* Card styling with semi-transparent / glassmorphism effect */
    .image-card {
  border: none;
  overflow: hidden;
  border-radius: 15px;
}

.image-card img {
  height: 250px;
  object-fit: cover;
  filter: brightness(70%);
  transition: transform 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.1);
}

.card-img-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  border-radius: 15px;
}

/*Css section for Mission and Values*/
    .mission-card {
  background: linear-gradient(135deg, #f4a261, #e76f51);
  transition: transform 0.3s ease;
}

.values-card {
  background: linear-gradient(135deg, #264653, #2a9d8f);
  transition: transform 0.3s ease;
}

.mission-card:hover,
.values-card:hover {
  transform: translateY(-10px);
}

.icon-box {
  background: rgba(255,255,255,0.2);
  display: inline-block;
  padding: 10px;
  border-radius: 50%;
}

    /* news & media cards */
    .news-card {
      border-radius: 24px;
      overflow: hidden;
      border: none;
      transition: 0.2s;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(2px);
      border: 1px solid rgba(249, 199, 79, 0.15);
    }
    .news-card:hover {
      transform: translateY(-4px);
      border-color: rgba(249, 199, 79, 0.4);
      background: rgba(255, 255, 255, 0.12);
    }
    .news-img {
      height: 200px;
      object-fit: cover;
      width: 100%;
      opacity: 0.9;
    }
    .donation-card {
      background: linear-gradient(135deg, rgba(30, 15, 55, 0.95) 0%, rgba(40, 21, 73, 0.98) 100%);
      border-radius: 2rem;
      padding: 2rem;
      color: white;
      border: 1px solid rgba(249, 199, 79, 0.3);
      backdrop-filter: blur(4px);
    }
    /* impact cards */
    .impact-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(249, 199, 79, 0.2);
      transition: all 0.2s;
      backdrop-filter: blur(2px);
      border-radius: 24px;
    }
    .impact-card:hover {
      transform: translateY(-4px);
      border-color: #f9c74f;
      background: rgba(255, 255, 255, 0.1);
    }
    footer {
      background: #281549;
      color: #cdc6e0;
      border-top: 1px solid rgba(249, 199, 79, 0.15);
    }
    .footer-link {
      color: #cdc6e0;
      text-decoration: none;
      transition: 0.2s;
    }
    .footer-link:hover {
      color: #f9c74f;
      text-decoration: underline;
    }
    .social-icon {
      background: rgba(255,255,255,0.1);
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.2s;
      margin-right: 10px;
      color: white;
    }
    .social-icon:hover {
      background: #f9c74f;
      color: rgb(40, 21, 73);
      transform: translateY(-3px);
    }
    /* partner card */
    .partner-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(249, 199, 79, 0.2);
      transition: all 0.2s;
      backdrop-filter: blur(2px);
      border-radius: 20px;
    }
    .partner-card:hover {
      border-color: #f9c74f;
      background: rgba(255, 255, 255, 0.1);
    }
    /* text adjustments for dark bg */
    .text-muted-light {
      color: #cbc3e0 !important;
    }
    .bg-warm-accent {
      background: rgba(249, 199, 79, 0.1);
      border-left: 3px solid #f9c74f;
    }
    @media (max-width: 768px) {
      .carousel-caption {
        left: 5%;
        bottom: 20%;
      }
      .carousel-caption h1 {
        font-size: 2rem;
      }
      .section-title {
        font-size: 1.9rem;
      }
    }
  
/* Our Players */
  .player-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.player-card:hover {
    transform: translateY(-5px);
}

.player-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f9c74f;
}

.text-muted-light {
    color: rgba(255,255,255,0.7);
}


/*=======Contact section=======*/
    .contact-form input, .contact-form textarea {
        background: rgba(0,0,0,0.3) !important;
        border: 1px solid rgba(249,199,79,0.3) !important;
        color: white !important;
        border-radius: 12px !important;
        padding: 12px !important;
    }
    .contact-form input:focus, .contact-form textarea:focus {
        border-color: #f9c74f !important;
        box-shadow: 0 0 0 0.2rem rgba(249,199,79,0.25) !important;
        outline: none;
    }
    .contact-form input::placeholder, .contact-form textarea::placeholder {
        color: #a0a0c0 !important;
    }

  /*================news pages====================*/
.article-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .article-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .article-category {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .category-scholarship { background: rgba(40, 167, 69, 0.2); color: #2ecc71; }
        .category-tournament { background: rgba(220, 53, 69, 0.2); color: #e74c3c; }
        .category-partnership { background: rgba(52, 152, 219, 0.2); color: #3498db; }
        .category-announcement { background: rgba(249, 199, 79, 0.2); color: #f9c74f; }
        .category-default { background: rgba(108, 117, 125, 0.2); color: #adb5bd; }
        
        .article-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
        }
        
        .article-meta {
            color: #c4c4e0;
            margin-bottom: 20px;
        }
        
        .featured-image {
            width: 100%;
            border-radius: 20px;
            margin-bottom: 30px;
        }
        
        .article-content {
            color: #c4c4e0;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .article-content p {
            margin-bottom: 20px;
        }
        
        .share-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin: 30px 0;
        }
        
        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .share-facebook { background: #1877f2; color: white; }
        .share-twitter { background: #1da1f2; color: white; }
        .share-whatsapp { background: #25d366; color: white; }
        .share-linkedin { background: #0077b5; color: white; }
        
        .share-btn:hover {
            transform: translateY(-3px);
            opacity: 0.9;
        }
        
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #f9c74f;
            text-decoration: none;
            margin-bottom: 20px;
        }
        
        .back-btn:hover {
            text-decoration: underline;
        }
        
        .related-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(249, 199, 79, 0.15);
            transition: all 0.3s;
            height: 100%;
        }
        
        .related-card:hover {
            transform: translateY(-3px);
            border-color: rgba(249, 199, 79, 0.4);
        }
        
        .related-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        
        .related-body {
            padding: 15px;
        }
        
        .related-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
        }


        /* Hero Section */
        .news-hero {
            background: linear-gradient(135deg, rgba(40,21,73,0.95) 0%, rgba(25,12,48,0.98) 100%);
            padding: 80px 0;
            text-align: center;
            border-bottom: 1px solid rgba(249, 199, 79, 0.2);
        }
        
        /* Featured News Card */
        .featured-news-card {
            background: linear-gradient(135deg, rgba(249, 199, 79, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(249, 199, 79, 0.3);
            transition: transform 0.3s;
            margin-bottom: 40px;
        }
        
        .featured-news-card:hover {
            transform: translateY(-5px);
        }
        
        .featured-image {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .featured-content {
            padding: 40px;
        }
        
        .featured-badge {
            background: #f9c74f;
            color: rgb(40, 21, 73);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .featured-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
        }
        
        /* News Card */
        .news-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(249, 199, 79, 0.15);
            transition: all 0.3s;
            height: 100%;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            border-color: rgba(249, 199, 79, 0.4);
        }
        
        .news-image-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        
        .news-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .news-card:hover .news-image {
            transform: scale(1.05);
        }
        
        .news-date-badge {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: #f9c74f;
            color: rgb(40, 21, 73);
            padding: 8px 12px;
            border-radius: 12px;
            text-align: center;
            font-weight: bold;
        }
        
        .news-date-badge .day {
            font-size: 18px;
            display: block;
            line-height: 1;
        }
        
        .news-date-badge .month {
            font-size: 11px;
            display: block;
        }
        
        .news-body {
            padding: 20px;
        }
        
        .news-category {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .category-scholarship { background: rgba(40, 167, 69, 0.2); color: #2ecc71; }
        .category-tournament { background: rgba(220, 53, 69, 0.2); color: #e74c3c; }
        .category-partnership { background: rgba(52, 152, 219, 0.2); color: #3498db; }
        .category-announcement { background: rgba(249, 199, 79, 0.2); color: #f9c74f; }
        .category-default { background: rgba(108, 117, 125, 0.2); color: #adb5bd; }
        
        .news-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .news-excerpt {
            color: #c4c4e0;
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }
        
        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .read-more {
            color: #f9c74f;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
        }
        
        .read-more:hover {
            text-decoration: underline;
        }
        
        /* Filter Buttons */
        .filter-section {
            margin-bottom: 30px;
        }
        
        .filter-btn {
            background: transparent;
            border: 1px solid rgba(249, 199, 79, 0.3);
            color: #c4c4e0;
            padding: 8px 24px;
            border-radius: 30px;
            transition: all 0.3s;
            margin: 0 5px 10px;
            text-decoration: none;
            display: inline-block;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: #f9c74f;
            color: rgb(40, 21, 73);
            border-color: #f9c74f;
        }
        
        /* Pagination */
        .pagination {
            justify-content: center;
            margin-top: 40px;
        }
        
        .page-link {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(249, 199, 79, 0.2);
            color: #c4c4e0;
            margin: 0 3px;
            border-radius: 10px;
        }
        
        .page-link:hover {
            background: #f9c74f;
            color: rgb(40, 21, 73);
            border-color: #f9c74f;
        }
        
        .page-item.active .page-link {
            background: #f9c74f;
            color: rgb(40, 21, 73);
            border-color: #f9c74f;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
        }
        
        .empty-state i {
            font-size: 64px;
            color: rgba(249, 199, 79, 0.3);
            margin-bottom: 20px;
        }
        
        /* Section Title */
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #f9c74f;
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            color: #c4c4e0;
            margin-bottom: 40px;
        }

  /*==================Gallery====================*/
   /* Hero Section */
        .gallery-hero {
            background: linear-gradient(135deg, rgba(40,21,73,0.95) 0%, rgba(25,12,48,0.98) 100%);
            padding: 80px 0;
            text-align: center;
            border-bottom: 1px solid rgba(249, 199, 79, 0.2);
        }
        
        /* Filter Buttons */
        .filter-section {
            margin-bottom: 40px;
        }
        
        .filter-btn {
            background: transparent;
            border: 1px solid rgba(249, 199, 79, 0.3);
            color: #c4c4e0;
            padding: 10px 28px;
            border-radius: 40px;
            transition: all 0.3s;
            margin: 0 6px 10px;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
        }
        
        .filter-btn:hover, .filter-btn.active {
            background: #f9c74f;
            color: rgb(40, 21, 73);
            border-color: #f9c74f;
        }
        
        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(249, 199, 79, 0.15);
            transition: all 0.3s;
        }
        
        .gallery-item:hover {
            transform: translateY(-8px);
            border-color: rgba(249, 199, 79, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 280px;
        }
        
        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover .gallery-image {
            transform: scale(1.08);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-caption {
            color: white;
        }
        
        .gallery-caption h5 {
            margin-bottom: 5px;
            font-size: 1rem;
            font-weight: 600;
        }
        
        .gallery-caption p {
            font-size: 0.75rem;
            color: #c4c4e0;
            margin-bottom: 0;
        }
        
        .gallery-zoom {
            background: #f9c74f;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(40, 21, 73);
            font-size: 18px;
            transition: all 0.3s;
        }
        
        .gallery-zoom:hover {
            transform: scale(1.1);
            background: white;
        }
        
        /* Pagination */
        .pagination {
            justify-content: center;
            margin-top: 50px;
        }
        
        .page-link {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(249, 199, 79, 0.2);
            color: #c4c4e0;
            margin: 0 4px;
            border-radius: 10px;
            padding: 10px 16px;
        }
        
        .page-link:hover {
            background: #f9c74f;
            color: rgb(40, 21, 73);
            border-color: #f9c74f;
        }
        
        .page-item.active .page-link {
            background: #f9c74f;
            color: rgb(40, 21, 73);
            border-color: #f9c74f;
        }
        
        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 24px;
        }
        
        .empty-state i {
            font-size: 80px;
            color: rgba(249, 199, 79, 0.2);
            margin-bottom: 20px;
        }
        
        .empty-state h4 {
            color: white;
            margin-bottom: 10px;
        }
        
        /* Stats Section */
        .stats-section {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 40px;
            margin-top: 50px;
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #f9c74f;
        }
        
        .stat-label {
            color: #c4c4e0;
            font-size: 0.9rem;
        }
        
        /* Lightbox Modal */
        .lightbox-modal .modal-content {
            background: transparent;
            border: none;
        }

          .lightbox-image {
              max-width: 100%;
              max-height: 80vh;
              transition: transform 0.3s ease;
              cursor: zoom-in;
              margin: 0 auto;
              width: auto;
            border-radius: 16px;
          }

          .lightbox-image.zoomed {
              transform: scale(2); /* adjust zoom level */
              cursor: zoom-out;
          }
        .lightbox-caption {
            text-align: center;
            color: white;
            margin-top: 15px;
        }
        
        /* Section Title */
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #f9c74f;
            margin-bottom: 15px;
        }
        
        .section-subtitle {
            color: #c4c4e0;
            margin-bottom: 40px;
        }
        
        /* Featured Strip */
        .featured-strip {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        
        .featured-strip::-webkit-scrollbar {
            height: 5px;
        }
        
        .featured-strip::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
        }
        
        .featured-strip::-webkit-scrollbar-thumb {
            background: rgba(249,199,79,0.3);
            border-radius: 10px;
        }
        
        .featured-thumb {
            min-width: 200px;
            height: 130px;
            border-radius: 12px;
            object-fit: cover;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .featured-thumb:hover {
            transform: scale(1.02);
            border-color: #f9c74f;
        }

                /* Make entire gallery item clickable */
        .gallery-item {
            cursor: pointer;
        }

        .gallery-image-wrapper {
            cursor: pointer;
        }

        .gallery-image {
            cursor: pointer;
            pointer-events: auto;
        }

        /* Ensure overlay doesn't block clicks on the image */
        .gallery-overlay {
            pointer-events: none;
        }

        .gallery-zoom {
            pointer-events: auto;
            cursor: pointer;
        }

        .gallery-caption {
            pointer-events: none;
        }



/*========== program section =========*/

  


     .program-hero {
            background: linear-gradient(135deg, rgba(40,21,73,0.95) 0%, rgba(25,12,48,0.98) 100%);
            padding: 80px 0;
            border-bottom: 1px solid rgba(249, 199, 79, 0.2);
        }
        .program-detail-image {
            width: 100%;
            border-radius: 24px;
            margin-bottom: 30px;
        }
        .program-info-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(249, 199, 79, 0.15);
        }
        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        .info-item:last-child {
            border-bottom: none;
        }
        .info-icon {
            width: 40px;
            height: 40px;
            background: rgba(249, 199, 79, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f9c74f;
        }
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #f9c74f;
            text-decoration: none;
            margin-bottom: 30px;
        }
        .back-btn:hover {
            text-decoration: underline;
        }
        .register-btn {
            background: #f9c74f;
            color: rgb(40, 21, 73);
            padding: 12px 30px;
            border-radius: 40px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }
        .register-btn:hover {
            background: white;
            transform: translateY(-2px);
        }