.benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 30px;
        }

        .benefit-card {
            background: white;
            border-radius: 50px;
            padding: 25px 35px;
            display: flex;
            align-items: center;
            gap: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .icon-wrapper {
            min-width: 70px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            transition: transform 0.3s ease;
        }

        .benefit-card:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .icon-wrapper i {
            font-size: 32px;
            color: white;
        }

        .content {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .content h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            font-weight: 600;
            color: white;
        }

        .content p {
            font-size: 0.95rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.95);
        }

        /* Color Schemes */
        .yellow {
            background: linear-gradient(135deg, #f39c12 0%, #f1c40f 100%);
        }

        .purple {
            background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
        }

        .orange {
            background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
        }

        .blue {
            background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
        }

        .red {
            background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
        }

        .cyan {
            background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
        }

        .pink {
            background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
        }

        .green {
            background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        }

        /* Icon backgrounds with lighter shade */
        .yellow .icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
        }

        .purple .icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
        }

        .orange .icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
        }

        .blue .icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
        }

        .red .icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
        }

        .cyan .icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
        }

        .pink .icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
        }

        .green .icon-wrapper {
            background: rgba(255, 255, 255, 0.25);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .header h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            body {
                padding: 20px 15px;
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .header p {
                font-size: 1rem;
            }

            .benefit-card {
                padding: 20px 25px;
                border-radius: 35px;
            }

            .icon-wrapper {
                min-width: 60px;
                width: 60px;
                height: 60px;
            }

            .icon-wrapper i {
                font-size: 28px;
            }

            .content h3 {
                font-size: 1.1rem;
            }

            .content p {
                font-size: 0.9rem;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .benefit-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .benefit-card:nth-child(1) { animation-delay: 0.1s; }
        .benefit-card:nth-child(2) { animation-delay: 0.2s; }
        .benefit-card:nth-child(3) { animation-delay: 0.3s; }
        .benefit-card:nth-child(4) { animation-delay: 0.4s; }
        .benefit-card:nth-child(5) { animation-delay: 0.5s; }
        .benefit-card:nth-child(6) { animation-delay: 0.6s; }
        .benefit-card:nth-child(7) { animation-delay: 0.7s; }
        .benefit-card:nth-child(8) { animation-delay: 0.8s; }

  .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .category {
            border: 2px solid #ddd;
            border-radius: 8px;
               padding: 10px 10px 15px 10px;
        }

        .category-1 {
            border-left: 5px solid #ff6b6b;
        }

        .category-2 {
            border-left: 5px solid #51cf66;
        }

        .category h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .category-1 h2 {
            color: #ff6b6b;
        }

        .category-2 h2 {
            color: #51cf66;
        }

        .category ul {
            list-style: none;
        }

        .category li {
            padding: 8px 0;
            padding-left: 20px;
            position: relative;
        }

        .category li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #999;
        }

        .note {
            background: #fff3cd;
            border: 1px solid #ffc107;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 40px;
        }

        .note p {
            margin: 0;
            color: #856404;
        }

        .note strong {
            color: #d32f2f;
        }

        .bank-details {
            border: 2px solid #2196f3;
            border-radius: 8px;
            overflow: hidden;
        }

        .bank-header {
            background: #2196f3;
            color: white;
            padding: 20px;
            text-align: center;
        }

        .bank-header h2 {
            font-size: 1.5rem;
            margin: 0;
        }

        .bank-content {
            padding: 30px;
        }

        .bank-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .bank-section h3 {
            font-size: 1.2rem;
            color: #2196f3;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e3f2fd;
        }

        .bank-item {
            margin-bottom: 15px;
        }

        .bank-label {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 3px;
        }

        .bank-value {
            font-weight: 600;
            color: #333;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 25px;
            }

            h1 {
                font-size: 1.6rem;
                margin-bottom: 30px;
            }

            .categories {
                grid-template-columns: 1fr;
            }

            .bank-grid {
                grid-template-columns: 1fr;
            }

            .bank-content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 15px;
            }

            .container {
                padding: 20px;
            }

            h1 {
                font-size: 1.4rem;
            }

            .category {
                padding: 20px;
            }

            .category h2 {
                font-size: 1.3rem;
            }
        }
     .card {
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .card:hover {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            transform: translateY(-4px);
        }

        .card-header {
            background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
            color: #333333;
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }

        .card-header h3 {
            font-size: 22px;
            font-weight: 600;
            margin: 0;
        }

        .card-body {
            padding: 30px 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #ffffff;
        }

        .text-center {
            text-align: center;
        }

        .list-group {
            list-style: none;
            padding: 0 60px 0 0;
        }

        .list-group li {
            padding: 12px 16px;
            margin-bottom: 10px;
            background: #f8f9fa;
            border-left: 3px solid #4CAF50;
            border-radius: 4px;
            font-size: 16px;
            color: #333333;
            transition: background 0.3s ease;
        }

        .list-group li:hover {
            background: #e9ecef;
        }

        .fw-bold {
            font-weight: 600;
            color: #333333;
            font-size: 18px;
        }

        .mb-3 {
            margin-bottom: 20px;
        }

        .btn-portal {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            font-size: 15px;
            transition: background 0.3s ease;
        }

        .btn-portal:hover {
          background: #FFF9C4;
          color: black;
        }

        .ms-2 {
            margin-left: 8px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .col-md-4 {
                flex: 0 0 50%;
                max-width: 50%;
            }

            .section-title h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .col-md-4 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .features.section {
                padding: 50px 0;
            }

            .section-title {
                margin-bottom: 40px;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .card-header h3 {
                font-size: 20px;
            }

            .card-body {
                padding: 25px 20px;
            }

            .list-group {
                padding-right: 0;
            }

            .list-group li {
                padding: 10px 14px;
                font-size: 15px;
            }

            .fw-bold {
                font-size: 16px;
            }

            .btn-portal {
                padding: 10px 24px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .section-title h2 {
                font-size: 24px;
            }

            .card-header {
                padding: 16px;
            }

            .card-header h3 {
                font-size: 18px;
            }

            .list-group li {
                padding: 10px 12px;
                font-size: 14px;
                margin-bottom: 8px;
            }
        }

        .about-images {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-top: 20px; */
}

.about-images .about-img {
  width: 100%;          
  max-width: 500px;     
 object-fit: cover;      
  border-radius: 10px;
}

/* Tablets */
@media (max-width: 992px) {
  .about-images .about-img {
    max-width: 100%;     /* fill container */
    max-height: none;    /* allow flexible height */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .row.gy-12 {
    flex-direction: column; /* stack text and image */
  }
  .about-images {
    margin-top: 20px;
  }
  .about-images .about-img {
    width: 100%;          /* fill column width */
    height: auto;         /* keep aspect ratio */
    max-width: 100%;      /* ensure no overflow */
  }
}


/* Events */
.tabs-container {
    display: flex;
    min-height: 600px;
    background: var(--background-color);
    border-radius: 10px;
    overflow: hidden;
}

/* LEFT VERTICAL TABS */
.vertical-tabs {
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
    flex: 0 0 260px;
    padding: 20px 0;
}

.nav-pills .nav-link {
    color: var(--default-color);
    border-radius: 0;
    padding: 15px 20px;
    margin: 4px 0;
    transition: 0.3s ease;
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.nav-pills .nav-link:hover {
    background: #e9ecef;
    border-left-color: var(--accent-color);
}

.nav-pills .nav-link.active {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-left-color: #3a9623;
}

.nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* RIGHT CONTENT AREA */
.tab-content-area {
    flex: 1;
    padding: 40px 30px;
    overflow-y: auto;
    max-height: 600px;
}

.tab-pane h2 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-pane h3 {
    color: var(--heading-color);
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
}

.tab-pane p {
    color: var(--default-color);
    line-height: 1.6;
}

.tab-pane img {
    width: 110px;
    margin-bottom: 20px;
}

/* Highlight Box */
.highlight-box {
    background: rgba(70, 181, 43, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 18px;
    border-radius: 8px;
    margin: 18px 0;
}

/* Problem List */
.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    background: var(--surface-color);
    padding: 14px 18px;
    margin: 10px 0;
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.problem-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(70, 181, 43, 0.2);
}

/* Prize Cards */
.prizes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.prize-card {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(70, 181, 43, 0.25);
    transition: 0.3s ease;
}

.prize-card:hover {
    transform: translateY(-5px);
}

.prize-card i {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .tabs-container {
        flex-direction: column;
    }

    .vertical-tabs {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        display: flex;
        overflow-x: auto;
        padding: 10px 0;
    }

    .nav-pills {
        flex-direction: row !important;
        width: 100%;
        padding: 0 10px;
        gap: 12px;
    }

    .nav-pills .nav-link {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 8px;
        padding: 10px 15px;
    }

    .nav-pills .nav-link.active {
        border-bottom: 3px solid var(--accent-color);
    }

    .tab-content-area {
        padding: 25px 20px;
        max-height: none;
    }

    .tab-pane img {
        width: 90px;
    }
}

/* Scrollbar */
.tab-content-area::-webkit-scrollbar {
    width: 8px;
}
.tab-content-area::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}


        .vertical-tabs {
            background: #f8f9fa;
            border-right: 1px solid #dee2e6;
            flex: 0 0 280px;
            padding: 20px 0;
        }

        .nav-pills .nav-link {
            color: var(--default-color);
            border-radius: 0;
            padding: 15px 25px;
            margin: 5px 0;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
            text-align: left;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-pills .nav-link:hover {
            background: #e9ecef;
            border-left-color: var(--accent-color);
        }

        .nav-pills .nav-link.active {
            background: var(--accent-color);
            color: var(--contrast-color);
            border-left-color: #3a9623;
        }

        .nav-link i {
            font-size: 1.2rem;
            width: 24px;
        }

        .tab-content-area {
            flex: 1;
            padding: 40px;
            overflow-y: auto;
            max-height: 600px;
            background: var(--background-color);
        }

        .tab-pane h2 {
            color: var(--heading-color);
            margin-bottom: 25px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .tab-pane h2 i {
            color: var(--accent-color);
        }

        .tab-pane h3 {
            color: var(--heading-color);
            margin-top: 30px;
            margin-bottom: 15px;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .tab-pane h3 i {
            color: var(--accent-color);
            margin-right: 8px;
        }

        .tab-pane p {
            color: var(--default-color);
            line-height: 1.6;
        }

        .highlight-box {
            background: rgba(70, 181, 43, 0.1);
            border-left: 4px solid var(--accent-color);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .highlight-box p {
            margin: 0;
            color: var(--default-color);
        }

        .problem-list {
            list-style: none;
            padding: 0;
        }

        .problem-list li {
            background: var(--surface-color);
            padding: 15px 20px;
            margin: 10px 0;
            border-radius: 8px;
            border-left: 3px solid var(--accent-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            color: var(--default-color);
        }

        .problem-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(70, 181, 43, 0.2);
        }

        .prizes-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .prize-card {
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(70, 181, 43, 0.25);
            transition: transform 0.3s ease;
        }

        .prize-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(70, 181, 43, 0.35);
        }

        .prize-card h4 {
            margin-bottom: 15px;
            font-size: 1.5rem;
            color: var(--contrast-color);
        }

        .prize-card p {
            color: var(--contrast-color);
            margin: 0;
            font-size: 1.1rem;
        }

        .prize-card i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--contrast-color);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .tabs-container {
                flex-direction: column;
            }

            .vertical-tabs {
                flex: none;
                border-right: none;
                border-bottom: 1px solid #dee2e6;
            }

            .tab-content-area {
                max-height: none;
            }

            .header h1 {
                font-size: 1.8rem;
            }

            .nav-pills .nav-link {
                padding: 12px 20px;
            }
        }

        /* Scrollbar styling */
        .tab-content-area::-webkit-scrollbar {
            width: 8px;
        }

        .tab-content-area::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .tab-content-area::-webkit-scrollbar-thumb {
            background: var(--accent-color);
            border-radius: 4px;
        }

        .tab-content-area::-webkit-scrollbar-thumb:hover {
            background: #3a9623;
        }