/* Auto-extracted from resources/views/about.blade.php */

.about-nav-tabs {
            margin: 0 0 32px;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        
        .about-tab-btn {
            padding: 12px 25px;
            border: 1px solid #2971b7;
            border-radius: 8px;
            background: white;
            color: #2971b7;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .about-tab-btn.active {
            background: #2971b7;
            color: white;
        }
        
        .about-tab-btn:hover {
            background: #2971b7;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(41, 113, 183, 0.2);
        }
        
        .about-content-section {
            margin: 0 0 40px;
            padding: 0;
        }
        
        /* Board of Studies Styles */
        .bos-department-section {
            margin-bottom: 60px;
        }
        
        .bos-department-title {
            font-size: 24px;
            font-weight: 800;
            color: #2971b7;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .bos-member-card {
            width: 100%;
            max-width: 280px;
            height: 350px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin: 0 auto;
        }
        
        .bos-member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .members-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            justify-content: center;
        }
        
        .bos-member-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .bos-member-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(0,0,0,0.95));
            color: white;
            text-align: center;
        }
        
        .bos-member-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 5px;
            line-height: 1.3;
        }
        
        .bos-member-designation {
            font-size: 13px;
            opacity: 0.8;
            font-weight: 400;
        }

        /* Original Content Styles */
        .about-main-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            margin-bottom: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .about-main-image img {
            width: 100%;
            display: block;
        }
        
        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .about-text-content h2 {
            font-size: 32px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 25px;
            text-transform: uppercase;
        }
        
        .about-text-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 60px;
        }
        
        .mission-vision-card {
            background: white;
        }
        
        .mv-image {
            width: 100%;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 25px;
        }
        
        .mv-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .mv-content h3 {
            font-size: 28px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 15px;
        }
        
        .mv-content p {
            font-size: 15px;
            line-height: 1.7;
            color: #666;
        }

        .about-doc-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 30px;
        }

        .about-doc-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .about-doc-card {
            background: white;
            padding: 24px;
            border-radius: 16px;
            border: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .about-doc-card:hover {
            border-color: #2971b7;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .about-doc-icon {
            width: 80px;
            height: 100px;
            background: #f8f9fa;
            border: 1px solid #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .about-doc-icon::before {
            content: "PDF";
            position: absolute;
            background: #e74c3c;
            color: white;
            font-size: 10px;
            font-weight: 700;
            padding: 2px 6px;
            border-radius: 3px;
            bottom: 15px;
        }

        .about-doc-details h4 {
            font-size: 18px;
            margin-bottom: 6px;
            color: #333;
        }

        .about-doc-details p {
            font-size: 14px;
            color: #888;
            margin: 0;
        }

        .about-doc-empty {
            background: #fff;
            border: 1px dashed #cbd5e1;
            border-radius: 16px;
            padding: 48px 24px;
            text-align: center;
            color: #64748b;
        }
        
        @media (max-width: 768px) {
            .mission-vision-grid {
                grid-template-columns: 1fr;
            }
            .about-nav-tabs {
                gap: 10px;
            }
            .about-tab-btn {
                padding: 10px 15px;
                font-size: 14px;
            }
            .about-doc-grid {
                grid-template-columns: 1fr;
            }
