
    :root {
        --primary-black: #000000;
        --primary-gold: #ffc107;
        --primary-gradient: linear-gradient(135deg, #000000 0%, #ffc107 100%);
        --light-bg: #f8f9fa;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
    }
        .header-topbar{
            background: #000000de !important;
        }
        .header-navbar {
    background: black !important;
      }
      .btn-main{
    background: #ffc107 !important;
    border-color:#ffc107 !important;
}
.btn-white {
    color : black;
}
.footer-3 {
    background:black;
}
    /* Hero Section */
    .hero-section {
        position: relative;
        /*background: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.82)), url('/assets/images/hero-image.jpeg');*/
       background: linear-gradient(rgb(0 0 0 / 39%), rgb(0 0 0 / 35%)), url(/assets/images/hero-image.jpeg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        overflow: hidden;
        padding: 0px !important;
    }
    
    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.12) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
    }
    
    @keyframes pulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 1; }
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero-title {
        color: white;
        line-height: 1.2;
    }
    
    .hero-title .text-gold {
        color: #ffc107 !important;
        position: relative;
        display: inline-block;
    }
    
    .hero-text {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .btn-gold {
        background: #ffc107;
        border: 2px solid #ffc107;
        color: #000000;
        transition: all 0.3s ease;
        font-weight: 600;
    }
    
    .btn-gold:hover {
        background: transparent;
        color: #ffc107;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
    }
    
    .btn-outline-gold {
        border: 2px solid #ffc107;
        color: #ffc107;
        background: transparent;
        transition: all 0.3s ease;
        font-weight: 600;
    }
    
    .btn-outline-gold:hover {
        background: #ffc107;
        color: #000000;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
    }
    
    /* Counter Section */
    .counter-wrapper {
        position: relative;
        z-index: 1;
    }
    
    .counter-card {
        background: white;
        border-radius: 24px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .counter-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.15), transparent);
        transition: left 0.5s ease;
    }
    
    .counter-card:hover::before {
        left: 100%;
    }
    
    .counter-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(255, 193, 7, 0.25);
        border-color: rgba(255, 193, 7, 0.4);
    }
    
    .counter-icon {
        color: #000000;
        transition: all 0.3s ease;
    }
    
    .counter-card:hover .counter-icon {
        transform: scale(1.1) rotateY(180deg);
        color: #ffc107;
    }
    
    .counter-number {
        font-size: 3rem;
        font-weight: 800;
        color: #000000;
        transition: all 0.3s ease;
    }
    
    .counter-card:hover .counter-number {
        color: #ffc107;
        transform: scale(1.05);
    }
    
    .counter-symbol {
        font-size: 2rem;
        font-weight: 700;
        color: #000000;
        transition: all 0.3s ease;
    }
    
    .counter-card:hover .counter-symbol {
        color: #ffc107;
    }
    
    .counter-label {
        font-size: 1rem;
        font-weight: 600;
        color: #4a5568;
        position: relative;
        display: inline-block;
        padding-bottom: 5px;
    }
    
    .counter-label::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: #ffc107;
        transition: width 0.3s ease;
    }
    
    .counter-card:hover .counter-label::after {
        width: 50px;
    }
    
    /* Popular Programs Section - Black Background */
    .popular-programs-section {
        background: #000000;
        padding: 80px 0;
    }
    
    .section-title {
        color: #ffffff;
    }
    
    .text-gradient {
        background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .section-description {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
    }
    
    /* Program Card */
    .program-card {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.4s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .program-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
    }
    
    /* Program Image */
    .program-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 140px;
    }
    
    .program-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .program-card:hover .program-img {
        transform: scale(1.1);
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .program-card:hover .image-overlay {
        opacity: 1;
    }
    
    /* Program Content */
    .program-content {
        padding: 1.5rem;
        background: white;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .program-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 15px !important;
        color: #000000;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Program Button */
    .program-btn {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        background: #000000;
        color: white;
        padding: 0.7rem 1.25rem;
        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        margin-top: auto;
    }
    
    .program-btn i {
        transition: transform 0.3s ease;
    }
    
    .program-btn:hover {
        background: #ffc107;
        color: #000000;
    }
    
    .program-btn:hover i {
        transform: translateX(5px);
    }
    
    /* View All Button */
    .btn-view-all {
        display: inline-block;
        background: transparent;
        border: 2px solid #ffc107;
        color: #ffc107;
        padding: 0.85rem 2.5rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        transition: all 0.3s ease;
        text-decoration: none;
    }
    
    .btn-view-all:hover {
        background: #ffc107;
        color: #000000;
        border-color: #ffc107;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
    }
    
    /* B.Voc Information Section */
    .bvoc-info-section {
        background: #000000;
        position: relative;
        padding: 80px 0;
    }
    
    .feature-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        position: relative;
        transition: all 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: #ffc107;
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    
    .feature-card:hover::before {
        transform: scaleX(1);
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        background: rgba(0, 0, 0, 0.08);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon i {
        font-size: 1.75rem;
        color: #ffc107;
    }
    
    .feature-number {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 3rem;
        font-weight: 800;
        opacity: 0.1;
        color: #ffc107;
    }
    
    .feature-card h4 {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #000000;
    }
    
    /* Program Structure Section - Black Background */
    .structure-main-section {
        background: #000000;
        padding: 80px 0;
    }
    
    .structure-main-section .section-badge span {
        background: rgba(255, 193, 7, 0.2) !important;
        color: #ffc107 !important;
    }
    
    .structure-main-section h2 {
        color: white;
    }
    
    /*.structure-main-section .lead {*/
    /*    color: rgba(255, 255, 255, 0.7) !important;*/
    /*}*/
    
    /* Horizontal Timeline */
    .horizontal-timeline {
        padding: 80px 20px;
        background: #000000;
        overflow-x: auto;
        position: relative;
    }
    
    .timeline-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 1000px;
        position: relative;
        padding: 60px 20px;
    }
    
    .timeline-wrapper::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ffc107, #ffc107, #ffc107);
        transform: translateY(-50%);
        z-index: 1;
        box-shadow: 0 0 10px rgba(255, 193, 7, 0.3);
    }
    
    .timeline-item {
        flex: 1;
        position: relative;
        display: flex;
        justify-content: center;
        z-index: 2;
    }
    
    .timeline-item.top {
        margin-bottom: 80px;
    }
    
    .timeline-item.top .timeline-card {
        position: relative;
        bottom: 30px;
    }
    
    .timeline-item.bottom {
        margin-top: 80px;
    }
    
    .timeline-item.bottom .timeline-card {
        position: relative;
        top: 30px;
    }
    
    .timeline-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 16px;
        height: 16px;
        background: #ffc107;
        border-radius: 50%;
        z-index: 3;
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5); }
        70% { box-shadow: 0 0 0 12px rgba(255, 193, 7, 0); }
        100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
    }
    
    .timeline-item.top::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 50px;
        background: linear-gradient(180deg, #ffc107, #000000);
        z-index: 2;
    }
    
    .timeline-item.bottom::after {
        content: '';
        position: absolute;
        bottom: 50%;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 50px;
        background: linear-gradient(0deg, #ffc107, #000000);
        z-index: 2;
    }
    
    .timeline-card {
        background: white;
        border-radius: 20px;
        padding: 1.5rem;
        width: 240px;
        position: relative;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
        z-index: 4;
    }
    
    .timeline-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 40px rgba(255, 193, 7, 0.2);
    }
    
    .card-corner {
        position: absolute;
        width: 20px;
        height: 20px;
        background: #ffc107;
        clip-path: polygon(0 0, 100% 0, 100% 100%);
    }
    
    .timeline-item.top .card-corner {
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
        background: linear-gradient(135deg, #ffc107, #ffc107);
    }
    
    .timeline-item.bottom .card-corner {
        top: -10px;
        left: 50%;
        transform: translateX(-50%) rotate(-315deg);
        background: linear-gradient(315deg, #ffc107, #ffc107);
    }
    
    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }
    
    .step-number {
        font-size: 2.2rem;
        font-weight: 800;
        color: rgba(0, 0, 0, 0.06);
        line-height: 1;
        transition: all 0.3s ease;
    }
    
    .timeline-card:hover .step-number {
        transform: scale(1.1);
        color: rgba(255, 193, 7, 0.15);
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #000000, #1a1a1a);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .timeline-card:hover .step-icon {
        background: linear-gradient(135deg, #ffc107, #ffed4e);
        transform: scale(1.05) rotate(5deg);
    }
    
    .step-icon i {
        font-size: 1.4rem;
        color: #ffc107;
        transition: all 0.3s ease;
    }
    
    .timeline-card:hover .step-icon i {
        color: #000000;
    }
    
    .timeline-card h3 {
        font-size: 1.15rem;
        font-weight: 700;
        margin: 0.75rem 0 0.6rem;
        color: #000000;
    }
    
    .timeline-card p {
        font-size: 0.8rem;
        color: #6c757d;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .step-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(0, 0, 0, 0.05);
        padding: 0.3rem 0.8rem;
        border-radius: 30px;
        font-size: 0.7rem;
        font-weight: 500;
        color: #000000;
        margin-top: 0.5rem;
    }
    
    .step-badge i {
        color: #ffc107;
    }
    
    .skill-bars {
        margin-top: 0.75rem;
    }
    
    .skill-bar {
        margin-bottom: 0.6rem;
    }
    
    .bar-label {
        display: flex;
        justify-content: space-between;
        margin-bottom: 0.3rem;
        font-size: 0.65rem;
        font-weight: 500;
        color: #495057;
    }
    
    .bar-label span:last-child {
        color: #ffc107;
        font-weight: 700;
    }
    
    .bar-progress {
        background: rgba(0, 0, 0, 0.08);
        border-radius: 10px;
        height: 5px;
        overflow: hidden;
    }
    
    .bar-fill {
        background: linear-gradient(90deg, #000000, #ffc107);
        border-radius: 10px;
        height: 100%;
        transition: width 1s ease;
        position: relative;
    }
    
    .bar-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 2s infinite;
    }
    
    @keyframes shimmer {
        100% { left: 100%; }
    }
    
    .exit-steps {
        margin-top: 0.5rem;
    }
    
    .exit-step {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.4rem;
        padding: 0.35rem;
        margin-bottom: 0.35rem;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .exit-step:hover {
        background: rgba(255, 193, 7, 0.1);
        transform: translateX(5px);
    }
    
    .exit-year {
        background: #000000;
        color: #ffc107;
        padding: 0.15rem 0.5rem;
        border-radius: 20px;
        font-size: 0.65rem;
        font-weight: 700;
    }
    
    .exit-step i {
        color: #ffc107;
        font-size: 0.7rem;
    }
    
    .exit-degree {
        font-weight: 600;
        color: #000000;
        font-size: 0.65rem;
    }
    
    .level-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        margin-top: 0.75rem;
    }
    
    .level {
        background: linear-gradient(135deg, #000000, #1a1a1a);
        color: #ffc107;
        padding: 0.25rem 0.5rem;
        border-radius: 8px;
        font-size: 0.7rem;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .level:hover {
        background: linear-gradient(135deg, #ffc107, #ffed4e);
        color: #000000;
        transform: translateY(-3px) scale(1.05);
    }
    
    /* Blog Section */
    .course-grid {
        background: white;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        margin-bottom: 30px;
    }
    
    .course-grid:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2);
    }
    
    .course-thumb img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }
    
    .course-content {
        padding: 1.5rem;
    }
    
    .course-content h5 a {
        color: #000000;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .course-content h5 a:hover {
        color: #ffc107;
    }
    
    .btn-outline-gold-small {
        border: 2px solid #ffc107;
        color: #ffc107;
        background: transparent;
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .btn-outline-gold-small:hover {
        background: #ffc107;
        color: #000000;
        transform: translateX(5px);
    }
    
    .subheading {
        color: #ffc107;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    h2 {
        color: #000000;
    }
    
    /* Responsive */
    .min-vh-100 {
        min-height: 70vh !important;
    }
    
    @media (max-width: 1200px) {
        .hero-title { font-size: 3rem !important; }
    }
    
    @media (max-width: 991px) {
        .hero-title { font-size: 2.5rem !important; }
        .counter-number { font-size: 2.5rem; }
    }
    
    @media (max-width: 768px) {
        .hero-title { font-size: 2rem !important; }
        .hero-section { background-attachment: scroll; }
        .counter-number { font-size: 2rem; }
        .display-5 { font-size: 1.75rem; }
        .timeline-wrapper { min-width: 780px; }
        .timeline-card { width: 200px; padding: 1rem; }
    }
    
    @media (max-width: 576px) {
        .hero-title { font-size: 1.75rem !important; }
        .hero-text { font-size: 0.9rem; }
        .counter-card { padding: 1rem !important; }
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .hero-content, .counter-card, .feature-card, .program-card, .course-grid {
        animation: fadeInUp 0.6s ease forwards;
    }
    
    @keyframes slideInTop {
        from { opacity: 0; transform: translateY(-30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes slideInBottom {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .timeline-item.top .timeline-card { animation: slideInTop 0.5s ease forwards; }
    .timeline-item.bottom .timeline-card { animation: slideInBottom 0.5s ease forwards; }
    
    .timeline-item:hover::before {
        transform: translate(-50%, -50%) scale(1.3);
        background: #000000;
    }



/* ============================================
   STUDENT TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}



/* Section Badge */
.section-badge .badge {
    background: rgba(255, 193, 7, 0.15) !important;
    backdrop-filter: blur(10px);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

/* Featured Card */
.testimonial-card.featured {
    border: 2px solid #ffc107;
    background: linear-gradient(135deg, #ffffff 0%, #fffef5 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ffed4e);
}

.testimonial-card.featured::after {
    content: '★ Featured';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ffc107;
    color: #000000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 2rem;
    transform: rotate(45deg);
    width: 120px;
    text-align: center;
    letter-spacing: 1px;
}

/* Quote Icon */
.testimonial-quote-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    background: #ffc107;
    transform: scale(1.1) rotate(10deg);
}

.testimonial-quote-icon i {
    font-size: 1.5rem;
    color: #ffc107;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon i {
    color: #000000;
}

/* Testimonial Text */
.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #000000, #1a1a1a);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px #ffc107;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.25rem;
}

.author-course {
    font-size: 0.8rem;
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-rating {
    display: flex;
    gap: 0.2rem;
}

.author-rating i {
    font-size: 0.8rem;
    color: #ffc107;
}

.author-rating i.far {
    color: #dee2e6;
}

/* Company Info */
.testimonial-company {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #000000;
    width: fit-content;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-company {
    background: rgba(255, 193, 7, 0.1);
    transform: translateX(5px);
}

.testimonial-company i {
    color: #ffc107;
    font-size: 0.8rem;
}

/* Navigation Dots (for carousel) */
.testimonials-navigation {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    width: 30px;
    border-radius: 10px;
    background: #ffc107;
}

.nav-dot:hover {
    background: #ffc107;
    transform: scale(1.2);
}

/* View All Button */
.btn-view-testimonials {
    display: inline-block;
    background: transparent;
    border: 2px solid #ffc107;
    color: #ffc107;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.btn-view-testimonials:hover {
    background: #ffc107;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

/* Carousel Controls */
.testimonials-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-prev,
.carousel-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #000000;
    color: #ffc107;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #ffc107;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.carousel-prev:disabled,
.carousel-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .testimonial-quote-icon {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-quote-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .testimonial-card.featured::after {
        font-size: 0.6rem;
        padding: 0.2rem 1.5rem;
        top: 15px;
        right: -35px;
        width: 100px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-company {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }



/* ============================================
   SWIPER STYLES FOR TESTIMONIALS
   ============================================ */

.testimonials-swiper {
    overflow: hidden;
    position: relative;
    padding: 10px 0 50px 0;
}

.testimonials-swiper .swiper-wrapper {
    padding: 10px 0;
}

.testimonials-swiper .swiper-slide {
    height: auto;
}

/* Swiper Navigation Buttons */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: #000000;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
    color: #ffc107;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background: #ffc107;
    transform: scale(1.1);
}

.testimonials-swiper .swiper-button-next:hover:after,
.testimonials-swiper .swiper-button-prev:hover:after {
    color: #000000;
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination {
    bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #dee2e6;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 10px;
    background: #ffc107;
}

.testimonials-swiper .swiper-pagination-bullet:hover {
    background: #ffc107;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-swiper .swiper-button-next,
    .testimonials-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .testimonials-swiper .swiper-button-next:after,
    .testimonials-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
}




    /* Page Header - Black Theme */
    .page-header {
        background: #000000;
        position: relative;
        overflow: hidden;
        padding: 80px 0;
        margin-top: -1px;
    }
    
    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    }
    
    .page-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffc107, transparent);
    }
    
    .page-header .title-block {
        position: relative;
        z-index: 1;
    }
    
    .page-header h1 {
        font-size: 3.5rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 1rem;
    }
    
    .page-header h1 span {
        background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .header-bradcrumb {
        background: rgba(255, 193, 7, 0.1);
        display: inline-flex;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        list-style: none;
        margin: 0;
        border: 1px solid rgba(255, 193, 7, 0.2);
    }
    
    .header-bradcrumb li {
        display: inline-block;
        margin: 0 0.5rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .header-bradcrumb a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .header-bradcrumb a:hover {
        color: #ffc107;
    }
    
    .header-bradcrumb .active {
        color: #ffc107;
    }
    
  
  
  
  
  
  
  
  
  
  
  
  
    /* Page Header - Black Theme */
    .page-header {
        background: #000000;
        position: relative;
        overflow: hidden;
        padding: 80px 0;
        margin-top: -1px;
    }
    
    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    }
    
    .page-header::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffc107, transparent);
    }
    
    .page-header .title-block {
        position: relative;
        z-index: 1;
    }
    
    .page-header h1 {
        font-size: 3.5rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 1rem;
    }
    
    .page-header h1 span {
        background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .header-bradcrumb {
        background: rgba(255, 193, 7, 0.1);
        display: inline-flex;
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        list-style: none;
        margin: 0;
        border: 1px solid rgba(255, 193, 7, 0.2);
    }
    
    .header-bradcrumb li {
        display: inline-block;
        margin: 0 0.5rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .header-bradcrumb a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .header-bradcrumb a:hover {
        color: #ffc107;
    }
    
    .header-bradcrumb .active {
        color: #ffc107;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 80px 0;
        background: #ffffff;
    }
    
    /* Contact Info Wrapper */
    .contact-info-wrapper {
        background: #ffffff;
        border-radius: 24px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }
    
    .contact-info-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ffc107, #ffed4e);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }
    
    .contact-info-wrapper:hover::before {
        transform: scaleX(1);
    }
    
    .contact-info-wrapper:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
        border-color: rgba(255, 193, 7, 0.2);
    }
    
    .contact-info-wrapper h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 2rem;
        color: #000000;
    }
    
    .contact-info-wrapper h3 span {
        display: block;
        background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 2.2rem;
        margin-top: 0.5rem;
    }
    
    /* Contact Item Styles */
    .contact-item {
        display: flex;
        align-items: center;
        gap: 1.25rem;
        margin-bottom: 1.5rem;
        padding: 1rem 1.25rem;
        border-radius: 16px;
        transition: all 0.3s ease;
        background: #f8f9fa;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .contact-item:last-child {
        margin-bottom: 0;
    }
    
    .contact-item:hover {
        background: #ffffff;
        transform: translateX(10px);
        border-color: rgba(255, 193, 7, 0.3);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
    }
    
    .contact-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: #000000;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .contact-item:hover .contact-icon {
        background: #ffc107;
        transform: scale(1.1) rotate(360deg);
    }
    
    .contact-icon i {
        color: #ffc107 !important;
        font-size: 1.25rem;
        margin: 0;
        transition: all 0.3s ease;
    }
    
    .contact-item:hover .contact-icon i {
        color: #000000 !important;
    }
    
    .contact-content {
        flex: 1;
        min-width: 0;
    }
    
    .contact-content h5 {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: #4a5568;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        line-height: 1.5;
        transition: color 0.3s ease;
    }
    
    .contact-item:hover .contact-content h5 {
        color: #000000;
    }
    
    /* Form Styling */
    .contact__form {
        background: #ffffff;
        border-radius: 24px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
    }
    
    .contact__form:hover {
        box-shadow: 0 20px 40px rgba(255, 193, 7, 0.1);
        border-color: rgba(255, 193, 7, 0.2);
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-control {
        width: 100%;
        padding: 0.875rem 1.25rem;
        border: 2px solid #e2e8f0;
        border-radius: 14px;
        font-size: 1rem;
        transition: all 0.3s;
        background: #ffffff;
        color: #000000;
    }
    
    .form-control:focus {
        border-color: #ffc107;
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
    }
    
    .form-control::placeholder {
        color: #adb5bd;
    }
    
    /* Gold Button */
    .btn-gold {
        background: #ffc107;
        color: #000000;
        border: 2px solid #ffc107;
        border-radius: 50px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .btn-gold:hover {
        background: transparent;
        color: #ffc107;
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
    }
    
    .btn-gold:active {
        transform: translateY(0);
    }
    
    .btn-gold:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }
    
    /* Map Section */
    .map-section {
        padding: 0 0 80px 0;
        background: #ffffff;
    }
    
    .map-wrapper {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.4s ease;
    }
    
    .map-wrapper:hover {
        box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
        border-color: rgba(255, 193, 7, 0.2);
    }
    
    .map-wrapper iframe {
        width: 100%;
        height: 400px;
        display: block;
        filter: grayscale(0.1) contrast(1.1);
        transition: filter 0.3s ease;
    }
    
    .map-wrapper:hover iframe {
        filter: grayscale(0) contrast(1);
    }
    
    /* Responsive */
    @media (max-width: 991px) {
        .page-header { padding: 60px 0; }
        .page-header h1 { font-size: 2.5rem; }
        .contact-section { padding: 60px 0; }
        .contact-info-wrapper { margin-bottom: 30px; padding: 2rem; }
        .contact__form { padding: 2rem; }
        .map-wrapper iframe { height: 350px; }
    }
    
    @media (max-width: 768px) {
        .page-header { padding: 50px 0; }
        .page-header h1 { font-size: 2rem; }
        .contact-section { padding: 50px 0; }
        .contact-info-wrapper h3 { font-size: 1.4rem; text-align: center; }
        .contact-info-wrapper h3 span { font-size: 1.6rem; }
        .contact-item { padding: 0.875rem 1rem; }
        .map-section { padding: 0 0 50px 0; }
        .map-wrapper iframe { height: 300px; }
    }
    
    @media (max-width: 576px) {
        .page-header h1 { font-size: 1.75rem; }
        .contact-item { flex-direction: column; text-align: center; gap: 0.75rem; }
        .contact-icon { margin: 0 auto; }
        .contact-content h5 { text-align: center; }
        .map-wrapper iframe { height: 250px; }
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .contact-info-wrapper, .contact__form, .map-wrapper {
        animation: fadeInUp 0.6s ease forwards;
    }
    
    .contact-item {
        animation: fadeInUp 0.5s ease forwards;
        opacity: 0;
    }
    
    .contact-item:nth-child(1) { animation-delay: 0.1s; }
    .contact-item:nth-child(2) { animation-delay: 0.2s; }
    .contact-item:nth-child(3) { animation-delay: 0.3s; }
    
    .form-group {
        animation: fadeInUp 0.5s ease forwards;
        opacity: 0;
    }
    
    .form-group:nth-child(1) { animation-delay: 0.1s; }
    .form-group:nth-child(2) { animation-delay: 0.2s; }
    .form-group:nth-child(3) { animation-delay: 0.3s; }
    .form-group:nth-child(4) { animation-delay: 0.4s; }
    .form-group:nth-child(5) { animation-delay: 0.5s; }
    
    
    /* ============================================
   ABOUT US PAGE CSS - BLACK/GOLD THEME
   ============================================ */

/* About Section */
.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-badge .badge {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-img-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
}

.about-img-wrapper img {
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-highlight {
    background: linear-gradient(135deg, #fff8e7, #ffffff);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    margin-top: 1rem;
}

.about-highlight span {
    color: #000000;
    font-weight: 500;
}

/* Journey Section (Vision & Mission) */
.journey-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-description {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Journey Cards */
.journey-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ffed4e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.journey-card:hover::before {
    transform: scaleX(1);
}

.journey-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.2);
}

.card-badge {
    margin-bottom: 1rem;
}

.card-badge .badge {
    background: #000000;
    color: #ffc107;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.card-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
}

.card-image-wrapper img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.journey-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-card:hover .image-overlay {
    opacity: 1;
}

.icon-circle {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.journey-card:hover .icon-circle {
    transform: scale(1.1) rotate(360deg);
    background: #000000;
}

.icon-circle i {
    color: #000000;
    transition: all 0.3s ease;
}

.journey-card:hover .icon-circle i {
    color: #ffc107;
}

.card-content {
    margin-top: 1.5rem;
}

.vision-list i {
    color: #ffc107;
    width: 25px;
}

.vision-list p {
    color: #4a5568;
    line-height: 1.6;
}

.mission-number {
    width: 35px;
    height: 35px;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mission-item:hover .mission-number {
    background: #ffc107;
    color: #000000;
    transform: scale(1.1);
}

.mission-text p {
    color: #4a5568;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: #ffffff;
}

.leadership-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.2);
}

.leadership-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.leadership-card:hover .leadership-img-wrapper {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
}

.leadership-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.leadership-card:hover .leadership-img-wrapper img {
    transform: scale(1.05);
}

.leadership-content {
    position: relative;
    padding-left: 1rem;
}

.leadership-icon {
    width: 50px;
    height: 50px;
    background: #000000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.leadership-card:hover .leadership-icon {
    background: #ffc107;
    transform: scale(1.1) rotate(360deg);
}

.leadership-icon i {
    font-size: 1.5rem;
    color: #ffc107;
    transition: all 0.3s ease;
}

.leadership-card:hover .leadership-icon i {
    color: #000000;
}

.leadership-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.leadership-message {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.leadership-author h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
}

.leadership-author span {
    font-size: 0.9rem;
    color: #ffc107;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-section, .journey-section, .leadership-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .leadership-title {
        font-size: 1.5rem;
    }
    
    .leadership-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-section, .journey-section, .leadership-section {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .journey-card {
        padding: 1.5rem;
    }
    
    .card-image-wrapper {
        height: 180px;
    }
    
    .leadership-content {
        padding-left: 0;
        margin-top: 1rem;
    }
    
    .leadership-icon {
        width: 45px;
        height: 45px;
    }
    
    .leadership-icon i {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-section, .journey-section, .leadership-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .journey-card {
        padding: 1rem;
    }
    
    .card-image-wrapper {
        height: 150px;
    }
    
    .vision-list p, .mission-text p {
        font-size: 0.9rem;
    }
    
    .leadership-title {
        font-size: 1.3rem;
    }
    
    .leadership-message {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section,
.journey-section,
.leadership-section {
    animation: fadeInUp 0.6s ease forwards;
}

.journey-card,
.leadership-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.journey-card:nth-child(1) { animation-delay: 0.1s; }
.journey-card:nth-child(2) { animation-delay: 0.2s; }
.leadership-card:nth-child(1) { animation-delay: 0.1s; }
.leadership-card:nth-child(2) { animation-delay: 0.2s; }
.leadership-card:nth-child(3) { animation-delay: 0.3s; }


/* ============================================
   ABOUT US - MODERN BLACK/GOLD THEME
   ============================================ */

/* About Main Section */
.about-main {
    padding: 80px 0 60px;
    background: #ffffff;
}

.about-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.about-badge span {
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.about-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gold-text {
    background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-main-text {
    color: #5a6a7a;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffc107;
    margin-bottom: 5px;
}

.stat-item p {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
}

.about-image-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-box img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image-box:hover img {
    transform: scale(1.05);
}

.floating-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #000000;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.floating-card i {
    color: #ffc107;
    font-size: 1.2rem;
}

.floating-card span {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Highlights Section */
.about-highlights {
    padding: 40px 0 80px;
    background: #f8f9fa;
}

.highlight-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(255, 193, 7, 0.12);
    border-color: rgba(255, 193, 7, 0.3);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: #000000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    background: #ffc107;
    transform: scale(1.1) rotate(10deg);
}

.highlight-icon i {
    font-size: 2rem;
    color: #ffc107;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon i {
    color: #000000;
}

.highlight-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
}

.highlight-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Vision & Mission Section */
.vision-mission {
    padding: 80px 0;
    background: #ffffff;
}

.vm-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.vm-card.vision {
    border-bottom: 4px solid #ffc107;
}

.vm-card.mission {
    border-bottom: 4px solid #ffc107;
}

.vm-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.1);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.vm-icon {
    width: 55px;
    height: 55px;
    background: #000000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon {
    background: #ffc107;
}

.vm-icon i {
    font-size: 1.6rem;
    color: #ffc107;
    transition: all 0.3s ease;
}

.vm-card:hover .vm-icon i {
    color: #000000;
}

.vm-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #000000;
    margin: 0;
}

.vm-body p {
    color: #5a6a7a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-list li {
    margin-bottom: 12px;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vm-list li i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Leadership Section */
.leadership {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
}

.section-header p {
    color: #6c757d;
    font-size: 1.1rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.leader-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
}

.leader-img {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-img img {
    transform: scale(1.08);
}

.leader-social {
    position: absolute;
    bottom: -50px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #ffc107;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.leader-card:hover .leader-social {
    bottom: 20px;
}

.leader-social i {
    font-size: 1.3rem;
    color: #000000;
}

.leader-info {
    padding: 25px;
}

.leader-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.leader-title {
    display: inline-block;
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.leader-info p {
    color: #5a6a7a;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .about-main-title { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .vm-header h3 { font-size: 1.5rem; }
    .leadership-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-main { padding: 50px 0 30px; }
    .about-main-title { font-size: 2rem; text-align: center; }
    .about-badge { text-align: center; display: block; }
    .about-stats { justify-content: center; }
    .vision-mission { padding: 50px 0; }
    .leadership { padding: 50px 0; }
    .leadership-grid { grid-template-columns: 1fr; }
    .leader-img { height: 250px; }
}

@media (max-width: 576px) {
    .about-main-title { font-size: 1.6rem; text-align: center; }
    .about-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .stat-item h3 { font-size: 1.4rem; }
    .highlight-card { padding: 20px; }
    .vm-card { padding: 25px; }
    .section-header h2 { font-size: 1.6rem; }
    .leader-info { padding: 20px; }
}

/* ============================================
   VISION & MISSION SECTION - BLACK/GOLD THEME
   ============================================ */

.vision-mission-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.header-badge {
    margin-bottom: 20px;
}

.header-badge span {
    display: inline-block;
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
}

.gold-text {
    background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Vision Card */
.vision-card,
.mission-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

/* Card Image */
.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.vision-card:hover .card-image img,
.mission-card:hover .card-image img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vision-card:hover .image-overlay,
.mission-card:hover .image-overlay {
    opacity: 1;
}

/* Card Icon */
.card-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #000000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vision-card:hover .card-icon,
.mission-card:hover .card-icon {
    background: #ffc107;
    transform: scale(1.1) rotate(360deg);
}

.card-icon i {
    font-size: 1.6rem;
    color: #ffc107;
    transition: all 0.3s ease;
}

.vision-card:hover .card-icon i,
.mission-card:hover .card-icon i {
    color: #000000;
}

/* Card Body */
.card-body {
    padding: 30px 25px 35px;
}

.card-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-body h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.card-body h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ffed4e);
    border-radius: 3px;
}

/* Vision List */
.vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.vision-list li:last-child {
    margin-bottom: 0;
}

.vision-list li i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #ffc107;
    transition: all 0.3s ease;
}

.vision-card:hover .vision-list li i {
    background: #ffc107;
    color: #000000;
    transform: scale(1.05);
}

.vision-list li span {
    flex: 1;
    color: #4a5568;
    line-height: 1.6;
}

/* Mission List */
.mission-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-item {
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
    transform: translateX(5px);
}

.mission-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #ffc107;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-number {
    background: #ffc107;
    color: #000000;
    transform: scale(1.05);
}

.mission-item p {
    flex: 1;
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .vision-mission-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .card-body h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-body {
        padding: 25px 20px;
    }
    
    .card-body h3 {
        font-size: 1.5rem;
    }
    
    .vision-list li {
        gap: 12px;
    }
    
    .vision-list li i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .mission-item {
        padding: 10px 12px;
    }
    
    .mission-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .vision-mission-section {
        padding: 40px 0;
    }
    
    .header-badge span {
        font-size: 0.8rem;
        padding: 6px 18px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
    }
    
    .card-icon i {
        font-size: 1.3rem;
    }
    
    .vision-list li span,
    .mission-item p {
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision-card,
.mission-card {
    animation: fadeInUp 0.6s ease forwards;
}

.vision-card {
    animation-delay: 0.1s;
}

.mission-card {
    animation-delay: 0.2s;
}










/* ============================================
   BLOG SECTION - BLACK/GOLD THEME
   ============================================ */

.blog-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.header-badge {
    margin-bottom: 15px;
}

.header-badge span {
    display: inline-block;
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
}

.gold-text {
    background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1rem;
    color: #6c757d;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

/* Blog Image */
.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-icon {
    width: 50px;
    height: 50px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.blog-card:hover .read-icon {
    transform: scale(1);
}

.read-icon i {
    font-size: 1.3rem;
    color: #000000;
}

.read-icon:hover {
    background: #ffffff;
    transform: rotate(90deg);
}

.read-icon:hover i {
    color: #000000;
}

/* Blog Content */
.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #ffc107;
}

.blog-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.blog-footer {
    margin-top: auto;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #ffc107;
    border: 2px solid #ffc107;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-btn i {
    transition: transform 0.3s ease;
}

.blog-btn:hover {
    background: #ffc107;
    color: #000000;
    border-color: #ffc107;
}

.blog-btn:hover i {
    transform: translateX(5px);
}

/* No Data Message */
.no-blogs {
    text-align: center;
    padding: 60px;
    background: #f8f9fa;
    border-radius: 20px;
    color: #6c757d;
}

.no-blogs i {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 15px;
}

.no-blogs p {
    font-size: 1.1rem;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 50px;
    text-align: center;
}

.pagination {
    display: inline-flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination li a:hover,
.pagination li.active span {
    background: #000000;
    color: #ffc107;
    border-color: #000000;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
    }
    
    .blog-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .header-badge span {
        font-size: 0.75rem;
        padding: 4px 15px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 15px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }



@media (min-width: 1200px) {
    .container {
        max-width: 1601px;
    }
}




    /* ============================================
   COURSE LISTING SECTION - BLACK/GOLD THEME
   ============================================ */

.courses-listing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.header-badge {
    margin-bottom: 15px;
}

.header-badge span {
    display: inline-block;
    background: rgba(255, 193, 7, 0.12);
    color: #ffc107;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 10px;
}

.gold-text {
    background: linear-gradient(135deg, #ffc107 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1rem;
    color: #6c757d;
}

/* Sidebar Tabs - WITH SCROLL */
.tabs-sidebar {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Scrollbar for Sidebar */
.tabs-sidebar::-webkit-scrollbar {
    width: 5px;
}

.tabs-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.tabs-sidebar::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 10px;
}

.tabs-sidebar::-webkit-scrollbar-thumb:hover {
    background: #e6a800;
}

.tab-btn {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tab-btn:last-child {
    border-bottom: none;
}

.tab-btn i {
    color: #ffc107;
    font-size: 1rem;
}

.tab-btn .course-count {
    color: #6c757d;
    font-size: 0.8rem;
    font-weight: 500;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 20px;
}

.tab-btn:hover {
    background: rgba(255, 193, 7, 0.05);
    color: #000000;
    padding-left: 25px;
}

.tab-btn.active {
    background: linear-gradient(90deg, rgba(255, 193, 7, 0.1), transparent);
    color: #ffc107;
    border-left: 3px solid #ffc107;
}

.tab-btn.active i {
    color: #ffc107;
}

.tab-btn.active .course-count {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

/* Courses Grid Tab Content - WITH SCROLL */
.tab-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Scrollbar for Tab Content */
.tab-content::-webkit-scrollbar {
    width: 5px;
}

.tab-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.tab-content::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 10px;
}

.tab-content::-webkit-scrollbar-thumb:hover {
    background: #e6a800;
}

.courses-grid-wrapper {
    min-height: auto;
}

/* Program Card - Same as Homepage */
.program-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.15);
    border-color: rgba(255, 193, 7, 0.3);
}

.program-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 160px;
}

.program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover .image-overlay {
    opacity: 1;
}

.program-content {
    padding: 1.25rem;
    background: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #000000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.program-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: #000000;
    color: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.program-btn i {
    transition: transform 0.3s ease;
}

.program-btn:hover {
    background: #ffc107;
    color: #000000;
}

.program-btn:hover i {
    transform: translateX(5px);
}

/* No Courses Message */
.no-courses {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 16px;
}

.no-courses i {
    font-size: 3rem;
    color: #ffc107;
    margin-bottom: 15px;
}

.no-courses p {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
}

/* Tab Pane Animation */
.tab-pane {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .program-title {
        font-size: 0.9rem;
    }
    
    .program-btn {
        padding: 0.5rem 0.85rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 991px) {
    .courses-listing-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .tabs-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
        max-height: 300px;
        overflow-y: auto;
    }
    
    .tab-content {
        max-height: 500px;
        overflow-y: auto;
        padding: 20px;
    }
    
    .tab-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .program-image-wrapper {
        height: 150px;
    }
    
    .program-content {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .courses-listing-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .header-badge span {
        font-size: 0.75rem;
        padding: 4px 15px;
    }
    
    .tabs-sidebar {
        max-height: 250px;
    }
    
    .tab-content {
        max-height: 450px;
        padding: 15px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .program-image-wrapper {
        height: 140px;
    }
    
    .program-title {
        font-size: 0.85rem;
        min-height: 38px;
    }
    
    .program-btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .courses-listing-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .section-header p {
        font-size: 0.85rem;
    }
    
    .tabs-sidebar {
        margin-bottom: 20px;
        max-height: 200px;
    }
    
    .tab-content {
        max-height: 400px;
        padding: 12px;
    }
    
    .tab-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .program-image-wrapper {
        height: 120px;
    }
    
    .program-title {
        font-size: 0.8rem;
        min-height: 35px;
        margin-bottom: 10px;
    }
    
    .program-btn {
        padding: 0.4rem 0.65rem;
        font-size: 0.65rem;
    }
}

/* For desktop - ensure sticky works */
@media (min-width: 992px) {
    .tabs-sidebar {
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .tab-content {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
}
/* Tab Content with Scroll */
.tab-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom Scrollbar for Tab Content */
.tab-content::-webkit-scrollbar {
    width: 5px;
}

.tab-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.tab-content::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 10px;
}






/* Skill Programs Section */
.skill-programs-section {
    background: white;
    padding: 80px 0;
}

.skill-programs-section .section-title {
    color: black;
}

.skill-programs-section .section-description {
    color: black;
}

.skill-programs-section .header-badge span {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

.skill-programs-section .btn-view-all {
    display: inline-block;
    background: transparent;
    border: 2px solid #ffc107;
    color: #ffc107;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.skill-programs-section .btn-view-all:hover {
    background: #ffc107;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .popular-programs-section,
    .skill-programs-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .popular-programs-section,
    .skill-programs-section {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .popular-programs-section,
    .skill-programs-section {
        padding: 40px 0;
    }
}

